From 16db4dc38519698031c9ffe395569bd7b8cd0c84 Mon Sep 17 00:00:00 2001 From: David Straub Date: Thu, 31 Oct 2019 15:21:05 +0100 Subject: [PATCH] Turn package into empty wrapper for wilson.wcxf --- README.md | 4 +- setup.py | 48 +- wcxf/__init__.py | 23 +- wcxf/bases | 1 - wcxf/classes.py | 569 -- wcxf/cli.py | 224 - .../SMEFTsim_param_card_elements.py | 304 - wcxf/converters/__init__.py | 0 wcxf/converters/dsixtools.py | 378 -- wcxf/converters/dsixtools_definitions.py | 1175 ---- wcxf/converters/eos.py | 62 - wcxf/converters/smeftsim.py | 5362 ----------------- wcxf/converters/test_dsixtools.py | 73 - wcxf/converters/test_eos.py | 36 - wcxf/converters/test_smeftsim.py | 55 - wcxf/converters/yamljson.py | 21 - wcxf/data/Options.dat | 13 - wcxf/data/SMInput-CPV.dat | 51 - wcxf/data/WCsInput-CPV-SMEFT.dat | 20 - wcxf/data/WCsInput-CPV-SMEFT.json | 64 - wcxf/data/WCsInput-CPV-SMEFT.yaml | 47 - wcxf/data/eos_btos.yaml | 216 - wcxf/data/eos_btou.yaml | 43 - wcxf/data/flavorkit_jms.json | 421 -- wcxf/data/flavorkit_jms_conj.json | 481 -- wcxf/data/test.Warsaw_mass.yml | 4474 -------------- wcxf/data/test.Warsaw_mass_incomplete.yml | 11 - wcxf/data/test.basis1.yml | 12 - wcxf/data/test.basis2.yml | 4 - wcxf/data/test.basis3.yml | 7 - wcxf/data/test.eft.yml | 5 - wcxf/data/test.otherbasis1.yml | 12 - wcxf/data/test.othereft.yml | 5 - wcxf/data/test.wcs.bern.out.yml | 51 - wcxf/data/test.wcs.bern.yml | 32 - wcxf/data/test.wcs.bern2.out.yml | 140 - wcxf/data/test.wcs.flavio.out.yml | 42 - wcxf/data/test.wcs.flavio.yml | 24 - wcxf/data/test.wcs.jms.yml | 106 - wcxf/data/test.wcs.yml | 9 - wcxf/matchers/__init__.py | 3 - wcxf/test_bases.py | 10 - wcxf/test_cli.py | 81 - wcxf/test_smeft.py | 20 - wcxf/test_wcxf.py | 101 - wcxf/test_wet.py | 237 - wcxf/translators/__init__.py | 3 - 47 files changed, 17 insertions(+), 15063 deletions(-) delete mode 160000 wcxf/bases delete mode 100644 wcxf/classes.py delete mode 100755 wcxf/cli.py delete mode 100644 wcxf/converters/SMEFTsim_param_card_elements.py delete mode 100644 wcxf/converters/__init__.py delete mode 100644 wcxf/converters/dsixtools.py delete mode 100644 wcxf/converters/dsixtools_definitions.py delete mode 100644 wcxf/converters/eos.py delete mode 100644 wcxf/converters/smeftsim.py delete mode 100644 wcxf/converters/test_dsixtools.py delete mode 100644 wcxf/converters/test_eos.py delete mode 100644 wcxf/converters/test_smeftsim.py delete mode 100644 wcxf/converters/yamljson.py delete mode 100644 wcxf/data/Options.dat delete mode 100644 wcxf/data/SMInput-CPV.dat delete mode 100644 wcxf/data/WCsInput-CPV-SMEFT.dat delete mode 100644 wcxf/data/WCsInput-CPV-SMEFT.json delete mode 100644 wcxf/data/WCsInput-CPV-SMEFT.yaml delete mode 100644 wcxf/data/eos_btos.yaml delete mode 100644 wcxf/data/eos_btou.yaml delete mode 100644 wcxf/data/flavorkit_jms.json delete mode 100644 wcxf/data/flavorkit_jms_conj.json delete mode 100644 wcxf/data/test.Warsaw_mass.yml delete mode 100644 wcxf/data/test.Warsaw_mass_incomplete.yml delete mode 100644 wcxf/data/test.basis1.yml delete mode 100644 wcxf/data/test.basis2.yml delete mode 100644 wcxf/data/test.basis3.yml delete mode 100644 wcxf/data/test.eft.yml delete mode 100644 wcxf/data/test.otherbasis1.yml delete mode 100644 wcxf/data/test.othereft.yml delete mode 100644 wcxf/data/test.wcs.bern.out.yml delete mode 100644 wcxf/data/test.wcs.bern.yml delete mode 100644 wcxf/data/test.wcs.bern2.out.yml delete mode 100644 wcxf/data/test.wcs.flavio.out.yml delete mode 100644 wcxf/data/test.wcs.flavio.yml delete mode 100644 wcxf/data/test.wcs.jms.yml delete mode 100644 wcxf/data/test.wcs.yml delete mode 100644 wcxf/matchers/__init__.py delete mode 100644 wcxf/test_bases.py delete mode 100644 wcxf/test_cli.py delete mode 100644 wcxf/test_smeft.py delete mode 100644 wcxf/test_wcxf.py delete mode 100644 wcxf/test_wet.py delete mode 100644 wcxf/translators/__init__.py diff --git a/README.md b/README.md index bff3736..5c33f75 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -[![Build Status](https://travis-ci.org/wcxf/wcxf-python.svg?branch=master)](https://travis-ci.org/wcxf/wcxf-python) [![Coverage Status](https://coveralls.io/repos/github/wcxf/wcxf-python/badge.svg?branch=master)](https://coveralls.io/github/wcxf/wcxf-python?branch=master) - # WCxf Python API and command line interface +**Note: the wcxf package has been merged into [wilson](https://github.com/wilson-eft/wilson) and is deprecated as a standalone package.** + This Python package provides a Python API and command line interface to perform the following operations on WCxf files (or dictionaries): diff --git a/setup.py b/setup.py index 6195dc4..69413fb 100644 --- a/setup.py +++ b/setup.py @@ -1,38 +1,18 @@ from setuptools import setup, find_packages -with open('README.md') as f: +with open("README.md") as f: LONG_DESCRIPTION = f.read() -setup(name='wcxf', - version='1.6.2', - author='David M. Straub, Jason Aebischer', - author_email='david.straub@tum.de, jason.aebischer@tum.de', - license='MIT', - url='https://wcxf.github.io', - description='Python API and command line interface for the Wilson Coefficient exchange format', - long_description=LONG_DESCRIPTION, - long_description_content_type='text/markdown', - packages=find_packages(), - package_data={ - 'wcxf': ['data/*.yml', - 'data/*.yaml', - 'data/*.json', - 'bases/*.json', - 'bases/child/*.json', - ] - }, - install_requires=['pyyaml', 'ckmutil>=0.3.2', 'pandas', - 'wilson'], - extras_require={ - 'testing': ['nose'], - }, - entry_points={ - 'console_scripts': [ - 'wcxf = wcxf.cli:wcxf_cli', - 'wcxf2eos = wcxf.cli:eos', - 'wcxf2dsixtools = wcxf.cli:wcxf2dsixtools', - 'dsixtools2wcxf = wcxf.cli:dsixtools2wcxf', - 'wcxf2smeftsim = wcxf.cli:smeftsim', - ] - }, - ) +setup( + name="wcxf", + version="2.0", + author="David M. Straub, Jason Aebischer", + author_email="david.straub@tum.de, jason.aebischer@tum.de", + license="MIT", + url="https://wcxf.github.io", + description="Python API and command line interface for the Wilson Coefficient exchange format", + long_description=LONG_DESCRIPTION, + long_description_content_type="text/markdown", + packages=find_packages(), + install_requires=["wilson"], +) diff --git a/wcxf/__init__.py b/wcxf/__init__.py index 4266218..52a9efd 100644 --- a/wcxf/__init__.py +++ b/wcxf/__init__.py @@ -1,22 +1 @@ -from .classes import * -from . import matchers -from . import translators -from wilson import util - -# read all EFTs and bases from the wcxf-bases submodule - -import os -import glob - -_root = os.path.abspath(os.path.dirname(__file__)) -all_efts = glob.glob(os.path.join(_root, 'bases', '*.eft.json')) -all_bases = glob.glob(os.path.join(_root, 'bases', '*.basis.json')) -child_bases = glob.glob(os.path.join(_root, 'bases', 'child', '*.basis.json')) - -for eft in all_efts: - with open(eft, 'r') as f: - EFT.load(f) - -for basis in all_bases + child_bases: - with open(basis, 'r') as f: - Basis.load(f) +from wilson.wcxf import * \ No newline at end of file diff --git a/wcxf/bases b/wcxf/bases deleted file mode 160000 index 6c544e2..0000000 --- a/wcxf/bases +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 6c544e2dea790c32a29721674ef7c795024f94f6 diff --git a/wcxf/classes.py b/wcxf/classes.py deleted file mode 100644 index 39fa6f0..0000000 --- a/wcxf/classes.py +++ /dev/null @@ -1,569 +0,0 @@ -import json -import yaml -import logging -from collections import OrderedDict, Counter -import tempfile -import shutil -import os -import subprocess -from pandas import DataFrame -import random - -# the following is necessary to get pretty representations of -# OrderedDict and defaultdict instances in YAML -def _represent_dict_order(self, data): - return self.represent_mapping('tag:yaml.org,2002:map', data.items()) -yaml.add_representer(OrderedDict, _represent_dict_order) - -# the following is necessary to have Null values be represented by -# emptyness rather than 'null' -def represent_none(self, _): - return self.represent_scalar('tag:yaml.org,2002:null', '') -yaml.add_representer(type(None), represent_none) - -# the following is necessary to load YAML mappings as OrderedDicts -_mapping_tag = yaml.resolver.BaseResolver.DEFAULT_MAPPING_TAG -def _dict_constructor(loader, node): - return OrderedDict(loader.construct_pairs(node)) -yaml.add_constructor(_mapping_tag, _dict_constructor) - -def _load_yaml_json(stream, **kwargs): - """Load a JSON or YAML file from a string or stream.""" - if isinstance(stream, str): - ss = stream - else: - ss = stream.read() - try: - return json.loads(ss, **kwargs) - except ValueError: - return yaml.safe_load(ss, **kwargs) - -def _dump_json(d, stream=None, **kwargs): - """Dump to a JSON string (if `stream` is None) or stream.""" - if stream is not None: - return json.dump(d, stream, **kwargs) - else: - return json.dumps(d, **kwargs) - -def _yaml_to_json(stream_in, stream_out, **kwargs): - d = yaml.safe_load(stream_in) - return _dump_json(d, stream_out, **kwargs) - -def _json_to_yaml(stream_in, stream_out, **kwargs): - d = json.load(stream_in) - return yaml.dump(d, stream_out, **kwargs) - - -def _testtex(s, delete=True): - """Function that takes a string and tries to compile a LaTeX file with - the string as document body. Returns a dictionary with keys 'success' - (True or False) and 'log', trying to extract the first error message.""" - _preamble = r"""\documentclass{article} - \usepackage{amsmath,amssymb} - \begin{document} - """ - _enddoc = r""" - \end{document}""" - doc = _preamble + s + _enddoc - tmpd = tempfile.mkdtemp() - tmpf = os.path.join(tmpd, 'textest.tex') - with open(tmpf, 'w') as f: - f.write(doc) - try: - p = subprocess.run(['latex', '-halt-on-error', - '-output-directory', tmpd, tmpf], - stdout=subprocess.DEVNULL) - except FileNotFoundError: - logging.warn('latex executable not found. Cannot check tex code') - return {'success': True} - if p.returncode == 0: - res = {'success': True} - else: - res = {'success': False} - logf = os.path.join(tmpd, 'textest.log') - res['log'] = '' - try: - with open(logf, 'r') as f: - logl = f.readlines() - except FileNotFoundError: - pass - fail = False - for i, l in enumerate(logl): - if 'Undefined control sequence' in l or 'Emergency stop' in l: - fail = True - break - if fail: - l = logl[i] - while l.strip() != '': - res['log'] += logl[i] - i += 1 - try: - l = logl[i] - except IndexError: - break - if delete: - shutil.rmtree(tmpd) - return res - - -class NamedInstanceMetaclass(type): - # this is just needed to implement the getitem method on NamedInstanceClass - # to allow the syntax MyClass['instancename'] as shorthand for - # MyClass.get_instance('instancename'); same for - # del MyClass['instancename'] instead of MyClass.del_instance('instancename') - def __getitem__(cls, item): - return cls.get_instance(item) - - def __delitem__(cls, item): - return cls.del_instance(item) - -class NamedInstanceClass(object, metaclass=NamedInstanceMetaclass): - """Base class for classes that have named instances that can be accessed - by their name. - - Parameters - ---------- - - name: string - - Methods - ------- - - del_instance(name) - Delete an instance - - get_instance(name) - Get an instance - - set_description(description) - Set the description - """ - - def __init__(self, _name): - if not hasattr(self.__class__, 'instances'): - self.__class__.instances = OrderedDict() - self.__class__.instances[_name] = self - self._name = _name - - @classmethod - def get_instance(cls, _name): - return cls.instances[_name] - - @classmethod - def del_instance(cls, _name): - del cls.instances[_name] - - @classmethod - def clear_all(cls): - """Delete all instances.""" - cls.instances = OrderedDict() - - -class WCxf(object): - """Base class for WCxf files (not meant to be used directly).""" - - @classmethod - def load(cls, stream, **kwargs): - """Load the object data from a JSON or YAML file.""" - wcxf = _load_yaml_json(stream, **kwargs) - return cls(**wcxf) - - def dump(self, stream=None, fmt='json', **kwargs): - """Dump the object data to a JSON or YAML file. - - Optional arguments: - - - `stream`: if None (default), return a string. Otherwise, - should be a writable file-like object - - `fmt`: format, should be 'json' (default) or 'yaml' - - Additional keyword arguments will be passed to the `json.dump(s)` - or `yaml.dump` methods. - """ - d = {k: v for k,v in self.__dict__.items() if k[0] != '_'} - if fmt.lower() == 'json': - # set indent=2 unless specified otherwise - indent = kwargs.pop('indent', 2) - return _dump_json(d, stream=stream, - indent=indent, - **kwargs) - elif fmt.lower() == 'yaml': - # set default_flow_style=False unless specified otherwise - default_flow_style = kwargs.pop('default_flow_style', False) - return yaml.dump(d, stream, - default_flow_style=default_flow_style, - **kwargs) - else: - raise ValueError("Format {} unknown: use 'json' or 'yaml'.".format(fmt)) - -class EFT(WCxf, NamedInstanceClass): - """Class representing EFT files.""" - def __init__(self, eft, sectors, **kwargs): - """Instantiate the EFT file object.""" - self.eft = eft - self.sectors = sectors - super().__init__(eft) - for k, v in kwargs.items(): - setattr(self, k, v) - - @property - def known_bases(self): - """Return a list of known bases for this EFT.""" - return tuple(basis[1] for basis in Basis.instances if basis[0] == self.eft) - - @property - def known_translators(self): - """Return a list of known translators between bases of this EFT.""" - return tuple(t for t in Translator.instances if t[0] == self.eft) - - -class Basis(WCxf, NamedInstanceClass): - """Class representing basis files.""" - def __init__(self, eft, basis, sectors, **kwargs): - """Instantiate the basis file object.""" - self.eft = eft - self.basis = basis - super().__init__((eft, basis)) - for k, v in kwargs.items(): - setattr(self, k, v) - if hasattr(self, 'parent'): - try: - self.sectors = Basis[self.eft, self.parent].sectors.copy() - self.sectors.update(sectors) - except (AttributeError, KeyError): - raise ValueError("Parent basis {} not found".format(self.parent)) - else: - self.sectors = sectors - self._all_wcs = None - - @property - def known_translators(self): - """Return a list of known translators to and from this basis.""" - kt = {} - kt['from'] = tuple(t for t in Translator.instances - if t[0] == self.eft and t[1] == self.basis) - kt['to'] = tuple(t for t in Translator.instances - if t[0] == self.eft and t[2] == self.basis) - return kt - - @property - def all_wcs(self): - """Return a list with all Wilson coefficients defined in this basis.""" - if self._all_wcs is None: - self._all_wcs = [wc for sector, wcs in self.sectors.items() for wc in wcs] - return self._all_wcs - - def validate(self): - """Validate the basis file.""" - try: - eft_instance = EFT[self.eft] - except (AttributeError, KeyError): - raise ValueError("EFT {} not defined".format(self.eft)) - unknown_sectors = set(self.sectors.keys()) - set(eft_instance.sectors.keys()) - if unknown_sectors: - raise ValueError("Unknown sectors: {}".format(unknown_sectors)) - all_keys = [k for s in self.sectors.values() for k, v in s.items()] - if len(all_keys) != len(set(all_keys)): # we have duplicate keys! - cnt = Counter(all_keys) - dupes = [k for k, v in cnt.items() if v > 1] - raise ValueError("Duplicate coefficients in different sectors:" - " {}".format(dupes)) - # check for LaTeX errors - # string with all tex values - alltex = '${}$'.format('$, $'.join([d.get('tex', '') - for c in self.sectors.values() - for d in c.values() - if d is not None])) - res = _testtex(alltex) - if not res['success']: - raise ValueError("Validation of basis {}/{}: " - .format(self.eft, self.basis) - + "LaTeX compilation errors encountered:\n" - + "{}".format(res['log'])) - - def __repr__(self): - return "wcxf.Basis('{}', '{}', {{...}})".format(self.eft, self.basis) - - def _repr_markdown_(self): - md = "# Basis `{}` (EFT `{}`)\n\n".format(self.basis, self.eft) - if hasattr(self, 'metadata') and 'description' in self.metadata: - md += self.metadata['description'] + "\n\n" - return md - - def _markdown_tables(self): - md = "## Sectors\n\n" - md += "The effective Lagrangian is defined as\n" - # general definition of Leff according to WCxf papaer - md += (r"$$\mathcal L_\text{eff} = -\mathcal H_\text{eff} =" - r"\sum_{O_i= O_i^\dagger} C_i \, O_i + \sum_{O_i\neq O_i^\dagger}" - r"\left( C_i \, O_i + C^*_i \, O^\dagger_i\right).$$") - md += "\n\n" - for s, wcs in self.sectors.items(): - md += "### `{}`\n\n".format(s) - if wcs: - md += "| WC name | Operator | Type |\n" - # NB: this is meant for pandoc; it computes column widths - # in latex by counting the number of "-" separators as - # fractions of line width (default: 72) - md += "|" + 18 * "-" + "|" + 48 * "-" + "|" + 6 * "-" + "|\n" - for name, d in wcs.items(): - if 'real' not in d or not d['real']: - t = 'C' - else: - t = 'R' - md += "| `{}` | ${}$ | {} |\n".format(name, - d.get('tex', ''), t) - return md - - def __str__(self): - md = self._repr_markdown_() - md += self._markdown_tables() - return md - - -class WC(WCxf): - """Class representing Wilson coefficient files.""" - def __init__(self, eft, basis, scale, values, **kwargs): - """Instantiate the Wilson coefficient file object.""" - self.eft = eft - self.basis = basis - self.scale = float(scale) - self.values = values - self._dict = None - self._df = None - self._hash = hash(random.random()) - super().__init__() - for k, v in kwargs.items(): - setattr(self, k, v) - - def __hash__(self): - return self._hash - - @staticmethod - def _to_number(v): - """Turn a Wilson coefficient value - that could be a number or a Re/Im - dict - into a number.""" - if isinstance(v, dict): - return float(v.get('Re', 0)) + 1j*float(v.get('Im', 0)) - else: - return float(v) - - @staticmethod - def _to_complex_dict(v): - """Turn a numeric Wilson coefficient value into a Re/Im dict if it is - complex.""" - if v.imag != 0: - return {'Re': float(v.real), 'Im': float(v.imag)} - else: - return float(v.real) - - @classmethod - def dict2values(cls, d): - return {k: cls._to_complex_dict(v) for k, v in d.items()} - - def __getitem__(self, key): - try: - return self.dict[key] - except KeyError: - return 0 - - def validate(self): - """Validate the Wilson coefficient file.""" - try: - eft_instance = EFT[self.eft] - except (AttributeError, KeyError): - raise ValueError("EFT {} not defined".format(self.eft)) - try: - basis_instance = Basis[self.eft, self.basis] - except (AttributeError, KeyError): - raise ValueError("Basis {} not defined for EFT {}".format(self.basis, self.eft)) - unknown_keys = set(self.values.keys()) - set(basis_instance.all_wcs) - assert unknown_keys == set(), \ - "Wilson coefficients do not exist in this basis: " + str(unknown_keys) - - @property - def dict(self): - """Return a dictionary with the Wilson coefficient values. - The dictionary will be cached when called for the first time.""" - if self._dict is None: - self._dict = {k: self._to_number(v) for k, v in self.values.items()} - return self._dict - - @property - def df(self): - """Return a pandas.DataFrame with the Wilson coefficient values - split by real and imaginary part. - The DataFrame will be cached when called for the first time.""" - if self._df is None: - re = [self.dict[k].real for k in self.values] - im = [self.dict[k].imag for k in self.values] - self._df = DataFrame({'Re': re, 'Im': im}, - index=self.values, - columns=('Re', 'Im')) - return self._df - - def __repr__(self): - return ("wcxf.WC(eft='{}', basis='{}', scale='{}', values={{...}})" - .format(self.eft, self.basis, self.scale)) - - def __str__(self): - return self._repr_markdown_() - - def _repr_markdown_(self): - md = "## WCxf Wilson coefficients\n\n" - md += "**EFT:** `{}`\n\n".format(self.eft) - md += "**Basis:** `{}`\n\n".format(self.basis) - md += "**Scale:** {} GeV\n\n".format(self.scale) - md += "### Values\n\n" - md += "| WC name | Value |\n" - # NB: this is meant for pandoc; it computes column widths - # in latex by counting the number of "-" separators as - # fractions of line width (default: 72) - md += "|" + 20 * "-" + "|" + 52 * "-" + "|\n" - for name, v in self.dict.items(): - md += "| `{}` | {} |\n".format(name, v) - return md - - def _repr_html_(self): - html = "

WCxf Wilson coefficients

\n\n" - html += """ - - - - - - - - - - - - - - -
EFTBasisscale
{}{}{} GeV
-""".format(self.eft, self.basis, self.scale) - html += "

Values

\n\n" - html += self.df._repr_html_() - return html - - def translate(self, to_basis, parameters=None, sectors=None): - """Translate the Wilson coefficients to a different basis. - Returns a WC instance. - - Parameters: - - `to_basis`: name of output basis - - parameters: an optional dictionary of parameters specific to the - translation function - - sectors: an optional iterable of sector names of interest that the - translator function may choose (but is not obliged) to limit itself - to in the output.""" - if to_basis == self.basis: - return self # nothing to do - try: - translator = Translator[self.eft, self.basis, to_basis] - except (KeyError, AttributeError): - raise ValueError("No translator from basis {} to {} found.".format(self.basis, to_basis)) - return translator.translate(self, parameters=parameters, sectors=sectors) - - def match(self, to_eft, to_basis, parameters=None): - """Match the Wilson coefficients to a different EFT. - Returns a WC instance.""" - if to_eft == self.eft and to_basis == self.basis: - return self # nothing to do - try: - matcher = Matcher[self.eft, self.basis, to_eft, to_basis] - except (KeyError, AttributeError): - raise ValueError("No matcher from EFT {} in basis {} to EFT {} in basis {} found.".format(self.eft, self.basis, to_eft, to_basis)) - return matcher.match(self, parameters=parameters) - - -class Translator(NamedInstanceClass): - """Class for translating between different bases of the same EFT.""" - def __init__(self, eft, from_basis, to_basis, function): - """Initialize the Translator instance.""" - super().__init__((eft, from_basis, to_basis)) - self.eft = eft - self.from_basis = from_basis - self.to_basis = to_basis - self.function = function - - def translate(self, WC_in, parameters=None, sectors=None): - r"""Translate a WC object from `from_basis` to `to_basis`. - - Parameters: - - `WC_in`: the input `WC` instance - - parameters: an optional dictionary of parameters specific to the - translation function - - sectors: an optional iterable of sector names of interest that the - translator function may choose (but is not obliged) to limit itself - to in the output.""" - if sectors is None: - dict_out = self.function(WC_in.dict, WC_in.scale, parameters) - else: - dict_out = self.function(WC_in.dict, WC_in.scale, parameters, sectors=sectors) - # filter out zero values - dict_out = {k: v for k, v in dict_out.items() if v != 0} - values = WC.dict2values(dict_out) - WC_out = WC(self.eft, self.to_basis, WC_in.scale, values) - return WC_out - - -class Matcher(NamedInstanceClass): - """Class for matching from a UV to an IR EFT.""" - def __init__(self, from_eft, from_basis, to_eft, to_basis, function): - """Initialize the Matcher instance.""" - super().__init__((from_eft, from_basis, to_eft, to_basis)) - self.from_eft = from_eft - self.from_basis = from_basis - self.to_eft = to_eft - self.to_basis = to_basis - self.function = function - - def match(self, WC_in, parameters=None): - """Translate a WC object in EFT `from_eft` and basis `from_basis` - to EFT `to_eft` and basis `to_basis`.""" - dict_out = self.function(WC_in.dict, WC_in.scale, parameters) - # filter out zero values - dict_out = {k: v for k, v in dict_out.items() if v != 0} - values = WC.dict2values(dict_out) - WC_out = WC(self.to_eft, self.to_basis, WC_in.scale, values) - return WC_out - -def parametrized(dec): - """Decorator for a decorator allowing it to take arguments. - See https://stackoverflow.com/a/26151604.""" - def layer(*args, **kwargs): - def repl(f): - return dec(f, *args, **kwargs) - return repl - return layer - -@parametrized -def translator(func, eft, from_basis, to_basis): - """Decorator for basis translation functions. - - Usage: - - ```python - @translator('myEFT', 'myBasis_from', 'myBasis_to') - def myFunction(wc_dict_from): - ... # do something - return wc_dict_to - ``` - """ - Translator(eft, from_basis, to_basis, func) - return func - - -@parametrized -def matcher(func, from_eft, from_basis, to_eft, to_basis): - """Decorator for matching functions. - - Usage: - - ```python - @matcher('myEFT_from', 'myBasis_from', 'myEFT_to', 'myBasis_to') - def myFunction(wc_dict_from): - ... # do something - return wc_dict_to - ``` - """ - Matcher(from_eft, from_basis, to_eft, to_basis, func) - return func diff --git a/wcxf/cli.py b/wcxf/cli.py deleted file mode 100755 index 1c04640..0000000 --- a/wcxf/cli.py +++ /dev/null @@ -1,224 +0,0 @@ -import argparse -import wcxf -import sys -import logging -import os -import yaml -import pylha - - -def wcxf_cli(): - parser = argparse.ArgumentParser(description="Command line interface to manipulate WCxf files.") - subparsers = parser.add_subparsers(title='subcommands') - - # convert - - parser_convert = subparsers.add_parser('convert', - description="Command line script to convert WCxf files between YAML and JSON.", - help="convert between YAML and JSON formats") - parser_convert.add_argument("FORMAT", type=str, - help="Output format (should be yaml or json)") - parser_convert.add_argument("FILE", nargs='?', type=argparse.FileType('r'), - default=sys.stdin, - help="Input file. If \"-\", read from standard input") - parser_convert.add_argument("--output", nargs='?', - type=argparse.FileType('w'), - default=sys.stdout, - help="Output file. If absent, print to standard output") - parser_convert.set_defaults(func=convert) - - # translate - - parser_translate = subparsers.add_parser('translate', - description="Command line script for basis translation of WCxf files.", - help="Translate between different bases") - parser_translate.add_argument("BASIS", help="Output basis", type=str) - parser_translate.add_argument("FILE", nargs='?', - type=argparse.FileType('r'), - default=sys.stdin, - help="Input file. If \"-\", read from standard input") - parser_translate.add_argument("--output", nargs='?', - type=argparse.FileType('w'), default=sys.stdout, - help="Output file. If absent, print to standard output") - parser_translate.add_argument("--format", type=str, - default="json", - help="Output format (default: json)") - parser_translate.set_defaults(func=translate) - - # match - - parser_match = subparsers.add_parser('match', - description="Command line script for matching of WCxf files.", - help="Match between different EFTs") - parser_match.add_argument("EFT", help="Output EFT", type=str) - parser_match.add_argument("BASIS", help="Output basis", type=str) - parser_match.add_argument("FILE", nargs='?', - type=argparse.FileType('r'), default=sys.stdin, - help="Input file. If \"-\", read from standard input") - parser_match.add_argument("--output", nargs='?', - type=argparse.FileType('w'), default=sys.stdout, - help="Output file. If absent, print to standard output") - parser_match.add_argument("--format", type=str, default="json", - help="Output format (default: json)") - parser_match.set_defaults(func=match) - - # validate - - parser_validate = subparsers.add_parser('validate', - description="Command line script for validation of WCxf files.", - help="Validate basis or Wilson coefficient files") - parser_validate.add_argument("TYPE", type=str, - help="Type of file to validate: should be 'eft', 'basis', or 'wc'") - parser_validate.add_argument("FILE", nargs='?', - type=argparse.FileType('r'), default=sys.stdin, - help="Input file. If \"-\", read from standard input") - parser_validate.set_defaults(func=validate) - - args = parser.parse_args() - try: - args.func(args) - except AttributeError: - parser.print_help() - - -def convert(args): - from wcxf.converters.yamljson import convert_json, convert_yaml - if args.FORMAT.lower() == 'json': - convert_json(args.FILE, args.output) - if args.FORMAT.lower() == 'yaml': - convert_yaml(args.FILE, args.output) - - -def translate(args): - wc_in = wcxf.WC.load(args.FILE) - wc_out = wc_in.translate(args.BASIS) - wc_out.dump(stream=args.output, fmt=args.format) - - -def match(args): - wc_in = wcxf.WC.load(args.FILE) - wc_out = wc_in.match(args.EFT, args.BASIS) - wc_out.dump(stream=args.output, fmt=args.format) - - -def validate(args): - if args.TYPE == 'eft': - eft = wcxf.EFT.load(args.FILE) - elif args.TYPE == 'basis': - basis = wcxf.Basis.load(args.FILE) - basis.validate() - elif args.TYPE == 'wc': - wc = wcxf.WC.load(args.FILE) - wc.validate() - else: - logging.error("TYPE should be 'eft', 'basis', or 'wc'") - return 1 - print("Validation successful.") - return 0 - - -def eos(): - from wcxf.converters.eos import wcxf2eos, get_sm_wcs - parser = argparse.ArgumentParser(description="""Command line script to convert a WCxf file to an EOS Wilson coefficient parameter file.""", - formatter_class=argparse.RawTextHelpFormatter) - parser.add_argument("FILE", nargs='?', help="Input file. If \"-\", read from standard input", - type=argparse.FileType('r'), default=sys.stdin) - parser.add_argument("--eosprefix", help="Installation prefix for the EOS installation. Defaults to /usr", - default='/usr') - parser.add_argument("--output", nargs='?', help="Output file. If absent, print to standard output", - type=argparse.FileType('w'), default=sys.stdout) - parser.add_argument("--eoshome", help="EOS home directory. If specified, values will be written to EOSHOME/parameters/wcxf.yaml. Cannot be used simultaneously with output", - default=None) - args = parser.parse_args() - # check sanity of inputs - if args.output != sys.stdout and args.eoshome is not None: - logging.error("Cannot use --output and --eoshome arguments simultaneously") - return 1 - elif args.output == sys.stdout and args.eoshome is not None: - output_dir = os.path.join(args.eoshome, 'parameters') - if not os.path.isdir(output_dir): - logging.error("Output directory {} does not exist".format(output_dir)) - return 1 - f = open(os.path.join(output_dir, 'wcxf.yaml'), 'w') - else: - f = args.output - # read in & validate WCxf file - wc = wcxf.WC.load(args.FILE) - wc.validate() - # read EOS SM contributions - sm_wc_dict = get_sm_wcs(os.path.join(args.eosprefix, 'share/eos', 'parameters')) - # convert to EOS parameters - eos_dict = wcxf2eos(wc, sm_wc_dict) - yaml.dump(eos_dict, f, default_flow_style=False) - f.close() - return 0 - - -def smeftsim(): - from wcxf.converters.smeftsim import initialize_smeftsim_card, smeftsim_card_fill, smeftsim_card_text - parser = argparse.ArgumentParser(description="""Command line script to convert a WCxf file to a MadGraph param_card file for SMEFTsim.""", - formatter_class=argparse.RawTextHelpFormatter) - parser.add_argument("FILE", nargs='?', help="Input file. Must be specified.", - type=argparse.FileType('r'), default="{}") - parser.add_argument("--output", nargs='?', help="Output file. Default is wcxf2smeftsim_param_card.dat.", default="wcxf2smeftsim_param_card.dat") - parser.add_argument("--input-scheme", nargs='?', help="Input parameters set. Can be either alpha (alpha_ew, m_Z, G_F) or mw (m_W, m_Z, G_F). Default is alpha.", choices=['alpha','mw'], default='alpha') - parser.add_argument("--cutoff-scale", nargs='?', help="Value of the EFT cutoff scale in GeV. Default is 1 TeV.", type=float, default=1000) - parser.add_argument("--model-set", nargs='?', help="SMEFTsim model set to be used. Can be either A or B, default is A.", choices=['A','B'],default="A") - - args = parser.parse_args() - - - # read in & validate WCxf file - wc = wcxf.WC.load(args.FILE) - wc.validate() - # check that the input is in the Warsaw mass basis. quit otherwise. - if wc.basis != "Warsaw mass": - print(''' -WARNING: The input file must be in the 'Warsaw mass' basis! -Please translate into 'Warsaw mass' before converting to SMEFTsim. - -Press 'i' to ignore this warning or any other key to exit.''') - - key = input() - if key != 'i' and key != 'I': quit() - - f = open(args.output, 'w') - - # initialize and fill the dictionary for the param_card - card = initialize_smeftsim_card(args.model_set) - card_filled = smeftsim_card_fill(card, wc, args.model_set, args.cutoff_scale, args.input_scheme) - - # write output file - f.write(smeftsim_card_text(args.model_set, args.input_scheme)[0]) - pylha.dump(card_filled, fmt='lha', stream = f) - f.write(smeftsim_card_text(args.model_set, args.input_scheme)[1]) - f.close() - return 0 - - -def wcxf2dsixtools(): - from wcxf.converters import dsixtools - parser = argparse.ArgumentParser(description="""Command line script to convert a WCxf file to a DsixTools Wilson coefficient file.""", - formatter_class=argparse.RawTextHelpFormatter) - parser.add_argument("FILE", nargs='?', help="Input file. If \"-\", read from standard input", - type=argparse.FileType('r'), default=sys.stdin) - parser.add_argument("--output", nargs='?', help="Output file. If absent, print to standard output", - type=argparse.FileType('w'), default=sys.stdout) - args = parser.parse_args() - wc = wcxf.WC.load(args.FILE) - wc.validate() - dsixtools.wcxf2dsixtools(wc, stream=args.output) - return 0 - - -def dsixtools2wcxf(): - from wcxf.converters import dsixtools - parser = argparse.ArgumentParser(description="""Command line script to convert DsixTools output files to a WCxf file.""", - formatter_class=argparse.RawTextHelpFormatter) - parser.add_argument("FILE", nargs='+', help="Input file(s).", - type=argparse.FileType('r'), default=sys.stdin) - parser.add_argument("--output", nargs='?', help="Output file. If absent, print to standard output", - type=argparse.FileType('w'), default=sys.stdout) - args = parser.parse_args() - dsixtools.dsixtools2wcxf(tuple(f for f in args.FILE), stream=args.output) - return 0 diff --git a/wcxf/converters/SMEFTsim_param_card_elements.py b/wcxf/converters/SMEFTsim_param_card_elements.py deleted file mode 100644 index f1f52c1..0000000 --- a/wcxf/converters/SMEFTsim_param_card_elements.py +++ /dev/null @@ -1,304 +0,0 @@ -preamble_A = ''' -###################################################################### -## PARAM_CARD FOR SMEFTSIM SET A v2.0 - FLAVOR_GENERAL ALPHA_INPUTS ##### -###################################################################### - -################################### -## INFORMATION FOR SMINPUTS -################################### -Block SMINPUTS - 1 7.815553e-03 # aEW - 2 1.166379e-05 # Gf - 3 1.181000e-01 # aS - -################################### -## INFORMATION FOR MASS -################################### -Block MASS - 1 4.700000e-03 # MD - 2 2.200000e-03 # MU - 3 9.600000e-02 # MS - 4 1.280000e+00 # MC - 5 4.180000e+00 # MB - 6 1.732000e+02 # MT - 11 5.110000e-04 # Me - 13 1.056600e-01 # MMU - 15 1.777000e+00 # MTA - 23 9.118760e+01 # MZ - 25 1.250900e+02 # MH -## Not dependent paramater. -## Those values should be edited following analytical the -## analytical expression. Some generator could simply ignore -## those values and use the analytical expression - 22 0.000000 # a : 0.0 - 24 73.187688 # W+ : dMW + MW0 - 21 0.000000 # g : 0.0 - 9000001 0.000000 # ghA : 0.0 - 9000003 73.187688 # ghWp : dMW + MW0 - 9000004 73.187688 # ghWm : dMW + MW0 - 82 0.000000 # ghG : 0.0 - 12 0.000000 # ve : 0.0 - 14 0.000000 # vm : 0.0 - 16 0.000000 # vt : 0.0 - 251 73.187688 # G+ : dMW + MW0 - 9000002 91.187600 # ghZ : MZ - 250 91.187600 # G0 : MZ - -################################### -## INFORMATION FOR DECAY -################################### -DECAY 6 1.508336e+00 -DECAY 23 2.495200e+00 -DECAY 24 2.085000e+00 -DECAY 25 4.070000e-03 -## Not dependent paramater. -## Those values should be edited following analytical the -## analytical expression. Some generator could simply ignore -## those values and use the analytical expression -DECAY 22 0.000000 # a : 0.0 -DECAY 21 0.000000 # g : 0.0 -DECAY 9000001 0.000000 # ghA : 0.0 -DECAY 82 0.000000 # ghG : 0.0 -DECAY 12 0.000000 # ve : 0.0 -DECAY 14 0.000000 # vm : 0.0 -DECAY 16 0.000000 # vt : 0.0 -DECAY 11 0.000000 # e- : 0.0 -DECAY 13 0.000000 # mu- : 0.0 -DECAY 15 0.000000 # ta- : 0.0 -DECAY 2 0.000000 # u : 0.0 -DECAY 4 0.000000 # c : 0.0 -DECAY 1 0.000000 # d : 0.0 -DECAY 3 0.000000 # s : 0.0 -DECAY 5 0.000000 # b : 0.0 -DECAY 9000002 2.495200 # ghZ : WZ -DECAY 9000003 2.085000 # ghWp : WW -DECAY 9000004 2.085000 # ghWm : WW -DECAY 250 2.495200 # G0 : WZ -DECAY 251 2.085000 # G+ : WW - -################################### -## INFORMATION FOR CKMBLOCK -################################### -Block CKMBLOCK - 1 2.277360e-01 # cabi - 2 2.250600e-01 # CKMlambda - 3 8.110000e-01 # CKMA - 4 1.240000e-01 # CKMrho - 5 3.560000e-01 # CKMeta - -''' - -postamble_A = ''' - -################################### -## INFORMATION FOR YUKAWA -################################### -Block YUKAWA - 1 4.700000e-03 # ymdo - 2 2.200000e-03 # ymup - 3 9.600000e-02 # yms - 4 1.280000e+00 # ymc - 5 4.180000e+00 # ymb - 6 1.732000e+02 # ymt - 11 5.110000e-04 # yme - 13 1.056600e-01 # ymm - 15 1.777000e+00 # ymtau -#=========================================================== -# QUANTUM NUMBERS OF NEW STATE(S) (NON SM PDG CODE) -#=========================================================== - -Block QNUMBERS 9000001 # ghA - 1 0 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 9000002 # ghZ - 1 0 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 9000003 # ghWp - 1 3 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 9000004 # ghWm - 1 -3 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 82 # ghG - 1 0 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 8 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 250 # G0 - 1 0 # 3 times electric charge - 2 1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 0 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 251 # G+ - 1 3 # 3 times electric charge - 2 1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -''' - - - -preamble_B = ''' -###################################################################### -## PARAM_CARD FOR SMEFTSIM SET B - FLAVOR_GENERAL ALPHA_INPUTS ##### -###################################################################### - -################################### -## INFORMATION FOR SMINPUTS -################################### -Block SMINPUTS - 1 1.279000e+02 # aEWM1 - 2 1.166370e-05 # Gf - 3 1.181000e-01 # aS - -################################### -## INFORMATION FOR MASS -################################### -Block MASS - 1 4.700000e-03 # MD - 2 2.200000e-03 # MU - 3 9.600000e-02 # MS - 4 1.280000e+00 # MC - 5 4.180000e+00 # MB - 6 1.731000e+02 # MT - 11 5.110000e-04 # Me - 13 1.056600e-01 # MMU - 15 1.777000e+00 # MTA - 23 9.118750e+01 # MZ - 25 1.250900e+02 # MH -## Not dependent paramater. -## Those values should be edited following analytical the -## analytical expression. Some generator could simply ignore -## those values and use the analytical expression - 22 0.000000 # a : 0.0 - 24 79.824234 # W+ : dMW + MW0 - 21 0.000000 # g : 0.0 - 9000001 0.000000 # ghA : 0.0 - 9000003 79.824234 # ghWp : dMW + MW0 - 9000004 79.824234 # ghWm : dMW + MW0 - 82 0.000000 # ghG : 0.0 - 12 0.000000 # ve : 0.0 - 14 0.000000 # vm : 0.0 - 16 0.000000 # vt : 0.0 - 251 79.824234 # G+ : dMW + MW0 - 9000002 91.187500 # ghZ : MZ - 250 91.187500 # G0 : MZ - -################################### -## INFORMATION FOR DECAY -################################### -DECAY 6 1.508336e+00 -DECAY 23 2.495200e+00 -DECAY 24 2.085000e+00 -DECAY 25 4.070000e-03 -## Not dependent paramater. -## Those values should be edited following analytical the -## analytical expression. Some generator could simply ignore -## those values and use the analytical expression -DECAY 22 0.000000 # a : 0.0 -DECAY 21 0.000000 # g : 0.0 -DECAY 9000001 0.000000 # ghA : 0.0 -DECAY 82 0.000000 # ghG : 0.0 -DECAY 12 0.000000 # ve : 0.0 -DECAY 14 0.000000 # vm : 0.0 -DECAY 16 0.000000 # vt : 0.0 -DECAY 11 0.000000 # e- : 0.0 -DECAY 13 0.000000 # mu- : 0.0 -DECAY 15 0.000000 # ta- : 0.0 -DECAY 2 0.000000 # u : 0.0 -DECAY 4 0.000000 # c : 0.0 -DECAY 1 0.000000 # d : 0.0 -DECAY 3 0.000000 # s : 0.0 -DECAY 5 0.000000 # b : 0.0 -DECAY 9000002 2.495200 # ghZ : WZ -DECAY 9000003 2.085000 # ghWp : WW -DECAY 9000004 2.085000 # ghWm : WW -DECAY 250 2.495200 # G0 : WZ -DECAY 251 2.085000 # G+ : WW - -################################### -## INFORMATION FOR CKMBLOCK -################################### -Block CKMBLOCK - 1 2.277360e-01 # cabi - 2 9.743400e-01 # CKM11 - 3 2.250600e-01 # CKM12 - 4 3.570000e-03 # CKM13 - 5 2.249200e-01 # CKM21 - 6 9.735100e-01 # CKM22 - 7 4.110000e-02 # CKM23 - 8 8.750000e-03 # CKM31 - 9 4.030000e-02 # CKM32 - 10 9.991500e-01 # CKM33 - -''' - -postamble_B = ''' - -################################### -## INFORMATION FOR NEWCOUPAUX -################################### -Block NEWCOUPaux - 0 1.000000e+00 # WC - -################################### -## INFORMATION FOR YUKAWA -################################### -Block YUKAWA - 1 4.700000e-03 # ymdo - 2 2.200000e-03 # ymup - 3 9.600000e-02 # yms - 4 1.280000e+00 # ymc - 5 4.180000e+00 # ymb - 6 1.731000e+02 # ymt - 11 5.110000e-04 # yme - 13 1.056600e-01 # ymm - 15 1.777000e+00 # ymtau -#=========================================================== -# QUANTUM NUMBERS OF NEW STATE(S) (NON SM PDG CODE) -#=========================================================== - -Block QNUMBERS 9000001 # ghA - 1 0 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 9000002 # ghZ - 1 0 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 9000003 # ghWp - 1 3 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 9000004 # ghWm - 1 -3 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 82 # ghG - 1 0 # 3 times electric charge - 2 -1 # number of spin states (2S+1) - 3 8 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 250 # G0 - 1 0 # 3 times electric charge - 2 1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 0 # Particle/Antiparticle distinction (0=own anti) -Block QNUMBERS 251 # G+ - 1 3 # 3 times electric charge - 2 1 # number of spin states (2S+1) - 3 1 # colour rep (1: singlet, 3: triplet, 8: octet) - 4 1 # Particle/Antiparticle distinction (0=own anti) -''' \ No newline at end of file diff --git a/wcxf/converters/__init__.py b/wcxf/converters/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/wcxf/converters/dsixtools.py b/wcxf/converters/dsixtools.py deleted file mode 100644 index 3a1b403..0000000 --- a/wcxf/converters/dsixtools.py +++ /dev/null @@ -1,378 +0,0 @@ -import numpy as np -from collections import OrderedDict, defaultdict -import pylha -import json -import yaml -from math import sqrt -import ckmutil -from wilson.util import smeftutil -from . import dsixtools_definitions as definitions -import wilson - - -def load(stream, fmt='lha'): - """Load a parameter file in DSixTools SLHA-like format or its JSON or - YAML representation.""" - if fmt == 'lha': - return pylha.load(stream) - elif fmt == 'json': - if isinstance(stream, str): - return json.loads(stream) - else: - return json.load(stream) - elif fmt == 'yaml': - return yaml.safe_load(stream) - -def lha2matrix(values, shape): - """Return a matrix given a list of values of the form - [[1, 1, float], [1, 2, float], ...] - referring to the (1,1)-element etc. - `shape` is the shape of the final matrix. All elements not provided - will be assumed to be zero. Also works for higher-rank tensors.""" - M = np.zeros(shape) - for v in values: - M[tuple([int(i-1) for i in v[:-1]])] = v[-1] - return M - -def matrix2lha(M): - """Inverse function to lha2matrix: return a LHA-like list given a tensor.""" - l = [] - ind = np.indices(M.shape).reshape(M.ndim, M.size).T - for i in ind: - l.append([j+1 for j in i] + [M[tuple(i)]]) - return l - -def sm_lha2dict(lha): - """Convert a dictionary returned by pylha from a DSixTools SM input file - into a dictionary of SM values.""" - d = OrderedDict() - v = dict(lha['BLOCK']['GAUGE']['values']) - d['g'] = v[1] - d['gp'] = v[2] - d['gs'] = v[3] - v = dict(lha['BLOCK']['SCALAR']['values']) - d['Lambda'] = v[1] - d['m2'] = v[2] - d['Gu'] = lha2matrix(lha['BLOCK']['GU']['values'], (3,3)) - if 'IMGU' in lha['BLOCK']: - d['Gu'] = d['Gu'] + 1j*lha2matrix(lha['BLOCK']['IMGU']['values'], (3,3)) - d['Gd'] = lha2matrix(lha['BLOCK']['GD']['values'], (3,3)) - if 'IMGD' in lha['BLOCK']: - d['Gd'] = d['Gd'] + 1j*lha2matrix(lha['BLOCK']['IMGD']['values'], (3,3)) - d['Ge'] = lha2matrix(lha['BLOCK']['GE']['values'], (3,3)) - if 'IMGE' in lha['BLOCK']: - d['Ge'] = d['Ge'] + 1j*lha2matrix(lha['BLOCK']['IMGE']['values'], (3,3)) - # thetas default to 0 - if 'THETA' in lha['BLOCK']: - v = dict(lha['BLOCK']['THETA']['values']) - d['Theta'] = v.get(1, 0) - d['Thetap'] = v.get(2, 0) - d['Thetas'] = v.get(3, 0) - else: - d['Theta'] = 0 - d['Thetap'] = 0 - d['Thetas'] = 0 - return d - -def sm_dict2lha(d): - """Convert a a dictionary of SM parameters into - a dictionary that pylha can convert into a DSixTools SM output file.""" - blocks = OrderedDict([ - ('GAUGE', {'values': [[1, d['g'].real], [2, d['gp'].real], [3, d['gs'].real]]}), - ('SCALAR', {'values': [[1, d['Lambda'].real], [2, d['m2'].real]]}), - ('GU', {'values': matrix2lha(d['Gu'].real)}), - ('IMGU', {'values': matrix2lha(d['Gu'].imag)}), - ('GD', {'values': matrix2lha(d['Gd'].real)}), - ('IMGD', {'values': matrix2lha(d['Gd'].imag)}), - ('GE', {'values': matrix2lha(d['Ge'].real)}), - ('IMGE', {'values': matrix2lha(d['Ge'].imag)}), - ('THETA', {'values': [[1, d['Theta'].real], [2, d['Thetap'].real], [3, d['Thetas'].real]]}), - ]) - return {'BLOCK': blocks} - -# dictionary necessary for translating to DSixTools IO format -WC_dict_0f = OrderedDict([ -('G', ('WC1', 1)), -('Gtilde', ('WC1', 2)), -('W', ('WC1', 3)), -('Wtilde', ('WC1', 4)), -('phi', ('WC2', 1)), -('phiBox', ('WC3', 1)), -('phiD', ('WC3', 2)), -('phiG', ('WC4', 1)), -('phiB', ('WC4', 2)), -('phiW', ('WC4', 3)), -('phiWB', ('WC4', 4)), -('phiGtilde', ('WC4', 5)), -('phiBtilde', ('WC4', 6)), -('phiWtilde', ('WC4', 7)), -('phiWtildeB', ('WC4', 8)), -]) - -def lha2scale(lha): - """Extract the high scale from a dictionary eturned by pylha from - a DSixTools options file.""" - return dict(lha['BLOCK']['SCALES']['values'])[1] - -def wc_lha2dict(lha): - """Convert a dictionary returned by pylha from a DSixTools WC input file - into a dictionary of Wilson coefficients.""" - C = OrderedDict() - # try to read all WCs with 0, 2, or 4 fermions; if not found, set to zero - for k, (block, i) in WC_dict_0f.items(): - try: - C[k] = dict(lha['BLOCK'][block]['values'])[i] - except KeyError: - C[k] = 0 - for k in smeftutil.WC_keys_2f: - try: - C[k] = lha2matrix(lha['BLOCK']['WC' + k.upper()]['values'], (3,3)).real - except KeyError: - C[k] = np.zeros((3,3)) - try: # try to add imaginary part - C[k] = C[k] + 1j*lha2matrix(lha['BLOCK']['IMWC' + k.upper()]['values'], (3,3)) - except KeyError: - pass - for k in smeftutil.WC_keys_4f: - try: - C[k] = lha2matrix(lha['BLOCK']['WC' + k.upper()]['values'], (3,3,3,3)) - except KeyError: - C[k] = np.zeros((3,3,3,3)) - try: # try to add imaginary part - C[k] = C[k] + 1j*lha2matrix(lha['BLOCK']['IMWC' + k.upper()]['values'], (3,3,3,3)) - except KeyError: - pass - return C - -def wc_dict2lha(wc, skip_redundant=True, skip_zero=True): - """Convert a a dictionary of Wilson coefficients into - a dictionary that pylha can convert into a DSixTools WC output file.""" - d = OrderedDict() - for name, (block, i) in WC_dict_0f.items(): - if block not in d: - d[block] = defaultdict(list) - if wc[name] != 0: - d[block]['values'].append([i, wc[name].real]) - for name in smeftutil.WC_keys_2f: - reblock = 'WC'+name.upper() - imblock = 'IMWC'+name.upper() - if reblock not in d: - d[reblock] = defaultdict(list) - if imblock not in d: - d[imblock] = defaultdict(list) - for i in range(3): - for j in range(3): - if (i, j) in definitions.redundant_elements[name] and skip_redundant: - # skip redundant elements - continue - if wc[name][i, j].real != 0 or not skip_zero: - d[reblock]['values'].append([i+1, j+1, float(wc[name][i, j].real)]) - if wc[name][i, j].imag != 0 or not skip_zero: - # omit Im parts that have to vanish by symmetry - if (i, j) not in definitions.vanishing_im_parts[name]: - d[imblock]['values'].append([i+1, j+1, float(wc[name][i, j].imag)]) - for name in smeftutil.WC_keys_4f: - reblock = 'WC'+name.upper() - imblock = 'IMWC'+name.upper() - if reblock not in d: - d[reblock] = defaultdict(list) - if imblock not in d: - d[imblock] = defaultdict(list) - for i in range(3): - for j in range(3): - for k in range(3): - for l in range(3): - if (i, j, k, l) in definitions.redundant_elements[name] and skip_redundant: - # skip redundant elements - continue - if wc[name][i, j, k, l].real != 0 or not skip_zero: - d[reblock]['values'].append([i+1, j+1, k+1, l+1, float(wc[name][i, j, k, l].real)]) - if wc[name][i, j, k, l].imag != 0 or not skip_zero: - # omit Im parts that have to vanish by symmetry - if (i, j, k, l) not in definitions.vanishing_im_parts[name]: - d[imblock]['values'].append([i+1, j+1, k+1, l+1, float(wc[name][i, j, k, l].imag)]) - # remove empty blocks - empty = [] - for block in d: - if d[block] == {}: - empty.append(block) - for block in empty: - del d[block] - return {'BLOCK': d} - - -class SMEFTio(object): - - def __init__(self): - """Initialize the SMEFTio instance.""" - self.C_in = None - self.scale_in = None - self.scale_high = None - - def set_initial(self, C_in, scale_in, scale_high): - r"""Set the initial values for parameters and Wilson coefficients at - the scale `scale_in`, setting the new physics scale $\Lambda$ to - `scale_high`.""" - self.C_in = C_in - self.scale_in = scale_in - self.scale_high = scale_high - - def load_initial(self, streams): - """Load the initial values for parameters and Wilson coefficients from - one or several files. - - `streams` should be a tuple of file-like objects strings.""" - d = {} - for stream in streams: - s = load(stream) - if 'BLOCK' not in s: - raise ValueError("No BLOCK found") - d.update(s['BLOCK']) - d = {'BLOCK': d} - C = wc_lha2dict(d) - sm = sm_lha2dict(d) - self.scale_high = lha2scale(d) - self.scale_in = lha2scale(d) - C.update(sm) - C = smeftutil.symmetrize(C) - self.C_in = C - - def set_initial_wcxf(self, wc, scale_high=None): - """Load the initial values for Wilson coefficients from a - wcxf.WC instance. - - Parameters: - - - `scale_high`: since Wilson coefficients are dimensionless in - DsixTools but not in WCxf, the high scale in GeV has to be provided. - If this parameter is None (default), either a previously defined - value will be used, or the scale attribute of the WC instance will - be used. - """ - import wcxf - if wc.eft != 'SMEFT': - raise ValueError("Wilson coefficients use wrong EFT.") - if wc.basis != 'Warsaw': - raise ValueError("Wilson coefficients use wrong basis.") - if scale_high is not None: - self.scale_high = scale_high - elif self.scale_high is None: - self.scale_high = wc.scale - C = smeftutil.wcxf2arrays(wc.dict) - keys_dim5 = ['llphiphi'] - keys_dim6 = list(set(smeftutil.WC_keys_0f + smeftutil.WC_keys_2f + smeftutil.WC_keys_4f) - set(keys_dim5)) - self.scale_in = wc.scale - for k in keys_dim5: - if k in C: - C[k] = C[k]*self.scale_high - for k in keys_dim6: - if k in C: - C[k] = C[k]*self.scale_high**2 - C = smeftutil.symmetrize(C) - # fill in zeros for missing WCs - for k, s in smeftutil.C_keys_shape.items(): - if k not in C and k not in smeftutil.SM_keys: - if s == 1: - C[k] = 0 - else: - C[k] = np.zeros(s) - if self.C_in is None: - self.C_in = C - else: - self.C_in.update(C) - - def load_wcxf(self, stream): - """Load the initial values for Wilson coefficients from - a file-like object or a string in WCxf format. - - Note that Standard Model parameters have to be provided separately - and are assumed to be in the weak basis used for the Warsaw basis as - defined in WCxf, i.e. in the basis where the down-type and charged - lepton mass matrices are diagonal.""" - import wcxf - wc = wcxf.WC.load(stream) - self.set_initial_wcxf(wc) - - def dump(self, C_out, scale_out=None, stream=None, fmt='lha', skip_redundant=True): - """Return a string representation of the parameters and Wilson - coefficients `C_out` in DSixTools output format. If `stream` is - specified, export it to a file. `fmt` defaults to `lha` (the SLHA-like - DSixTools format), but can also be `json` or `yaml` (see the - pylha documentation).""" - C = OrderedDict() - if scale_out is not None: - C['SCALES'] = {'values': [[1, self.scale_high], [2, scale_out]]} - else: - C['SCALES'] = {'values': [[1, self.scale_high]]} - # sm = sm_dict2lha(C_out)['BLOCK'] - # C.update(sm) - wc = wc_dict2lha(C_out, skip_redundant=skip_redundant)['BLOCK'] - C.update(wc) - return pylha.dump({'BLOCK': C}, fmt=fmt, stream=stream) - - def get_wcxf(self, C_out, scale_out): - """Return the Wilson coefficients `C_out` as a wcxf.WC instance. - - Note that the Wilson coefficients are rotated into the Warsaw basis - as defined in WCxf, i.e. to the basis where the down-type and charged - lepton mass matrices are diagonal.""" - import wcxf - # C = self.rotate_defaultbasis(C_out) - C = C_out.copy() # FIXME - d = smeftutil.arrays2wcxf(C) - basis = wcxf.Basis['SMEFT', 'Warsaw'] - d = {k: v for k, v in d.items() if k in basis.all_wcs and v != 0} - keys_dim5 = ['llphiphi'] - keys_dim6 = list(set(smeftutil.WC_keys_0f + smeftutil.WC_keys_2f - + smeftutil.WC_keys_4f) - set(keys_dim5)) - for k in d: - if k.split('_')[0] in keys_dim5: - d[k] = d[k] / self.scale_high - for k in d: - if k.split('_')[0] in keys_dim6: - d[k] = d[k] / self.scale_high**2 - # d = {k: v for k, v in d.items() if v != 0} - d = wcxf.WC.dict2values(d) - wc = wcxf.WC('SMEFT', 'Warsaw', scale_out, d) - return wc - - def dump_wcxf(self, C_out, scale_out, fmt='yaml', stream=None, **kwargs): - """Return a string representation of the Wilson coefficients `C_out` - in WCxf format. If `stream` is specified, export it to a file. - `fmt` defaults to `yaml`, but can also be `json`. - - Note that the Wilson coefficients are rotated into the Warsaw basis - as defined in WCxf, i.e. to the basis where the down-type and charged - lepton mass matrices are diagonal.""" - wc = self.get_wcxf(C_out, scale_out) - return wc.dump(fmt=fmt, stream=stream, **kwargs) - - def rotate_defaultbasis(self, C): - """Rotate all parameters to the basis where the running down-type quark - and charged lepton mass matrices are diagonal and where the running - up-type quark mass matrix has the form V.S, with V unitary and S real - diagonal, and where the CKM and PMNS matrices have the standard - phase convention.""" - v = 246.22 - Mep = v/sqrt(2) * (C['Ge'] - C['ephi'] * v**2/self.scale_high**2/2) - Mup = v/sqrt(2) * (C['Gu'] - C['uphi'] * v**2/self.scale_high**2/2) - Mdp = v/sqrt(2) * (C['Gd'] - C['dphi'] * v**2/self.scale_high**2/2) - Mnup = -v**2 * C['llphiphi'] - UeL, Me, UeR = ckmutil.diag.msvd(Mep) - UuL, Mu, UuR = ckmutil.diag.msvd(Mup) - UdL, Md, UdR = ckmutil.diag.msvd(Mdp) - Unu, Mnu = ckmutil.diag.mtakfac(Mnup) - UuL, UdL, UuR, UdR = ckmutil.phases.rephase_standard(UuL, UdL, UuR, UdR) - Unu, UeL, UeR = ckmutil.phases.rephase_pmns_standard(Unu, UeL, UeR) - return smeftutil.flavor_rotation(C, Uq=UdL, Uu=UuR, Ud=UdR, Ul=UeL, Ue=UeR) - - -def wcxf2dsixtools(wc, stream=None): - smeftio = SMEFTio() - smeftio.set_initial_wcxf(wc) - return smeftio.dump(smeftio.C_in, stream=stream) - -def dsixtools2wcxf(streams, stream=None): - smeftio = SMEFTio() - smeftio.load_initial(streams) - return smeftio.dump_wcxf(smeftio.C_in, smeftio.scale_in, stream=stream) diff --git a/wcxf/converters/dsixtools_definitions.py b/wcxf/converters/dsixtools_definitions.py deleted file mode 100644 index 3b3550b..0000000 --- a/wcxf/converters/dsixtools_definitions.py +++ /dev/null @@ -1,1175 +0,0 @@ - -# elements that are redundant and can thus be omitted in the input/output -redundant_elements = {'G': [], - 'Gd': [], - 'Ge': [], - 'Gtilde': [], - 'Gu': [], - 'Lambda': [], - 'Theta': [], - 'Thetap': [], - 'Thetas': [], - 'W': [], - 'Wtilde': [], - 'dB': [], - 'dG': [], - 'dW': [], - 'dd': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (0, 1, 0, 0), - (0, 2, 0, 0), - (0, 2, 0, 1), - (0, 2, 1, 0), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 0, 0), - (1, 1, 0, 1), - (1, 1, 0, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (1, 2, 0, 0), - (1, 2, 0, 1), - (1, 2, 0, 2), - (1, 2, 1, 0), - (1, 2, 1, 1), - (1, 2, 2, 0), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 0, 0), - (2, 2, 0, 1), - (2, 2, 0, 2), - (2, 2, 1, 0), - (2, 2, 1, 1), - (2, 2, 1, 2), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'dphi': [], - 'duql': [], - 'duue': [], - 'eB': [], - 'eW': [], - 'ed': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'ee': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (0, 1, 0, 0), - (0, 1, 1, 0), - (0, 1, 2, 0), - (0, 2, 0, 0), - (0, 2, 0, 1), - (0, 2, 1, 0), - (0, 2, 1, 1), - (0, 2, 2, 0), - (0, 2, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 0, 0), - (1, 1, 0, 1), - (1, 1, 0, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (1, 2, 0, 0), - (1, 2, 0, 1), - (1, 2, 0, 2), - (1, 2, 1, 0), - (1, 2, 1, 1), - (1, 2, 2, 0), - (1, 2, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 0, 0), - (2, 2, 0, 1), - (2, 2, 0, 2), - (2, 2, 1, 0), - (2, 2, 1, 1), - (2, 2, 1, 2), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'ephi': [], - 'eu': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'g': [], - 'gp': [], - 'gs': [], - 'ld': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'le': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'ledq': [], - 'lequ1': [], - 'lequ3': [], - 'll': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (0, 1, 0, 0), - (0, 2, 0, 0), - (0, 2, 0, 1), - (0, 2, 1, 0), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 0, 0), - (1, 1, 0, 1), - (1, 1, 0, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (1, 2, 0, 0), - (1, 2, 0, 1), - (1, 2, 0, 2), - (1, 2, 1, 0), - (1, 2, 1, 1), - (1, 2, 2, 0), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 0, 0), - (2, 2, 0, 1), - (2, 2, 0, 2), - (2, 2, 1, 0), - (2, 2, 1, 1), - (2, 2, 1, 2), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'llphiphi': [(1, 0), (2, 0), (2, 1)], - 'lq1': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'lq3': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'lu': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'm2': [], - 'phi': [], - 'phiB': [], - 'phiBox': [], - 'phiBtilde': [], - 'phiD': [], - 'phiG': [], - 'phiGtilde': [], - 'phiW': [], - 'phiWB': [], - 'phiWtilde': [], - 'phiWtildeB': [], - 'phid': [(1, 0), (2, 0), (2, 1)], - 'phie': [(1, 0), (2, 0), (2, 1)], - 'phil1': [(1, 0), (2, 0), (2, 1)], - 'phil3': [(1, 0), (2, 0), (2, 1)], - 'phiq1': [(1, 0), (2, 0), (2, 1)], - 'phiq3': [(1, 0), (2, 0), (2, 1)], - 'phiu': [(1, 0), (2, 0), (2, 1)], - 'phiud': [], - 'qd1': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'qd8': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'qe': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'qq1': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (0, 1, 0, 0), - (0, 2, 0, 0), - (0, 2, 0, 1), - (0, 2, 1, 0), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 0, 0), - (1, 1, 0, 1), - (1, 1, 0, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (1, 2, 0, 0), - (1, 2, 0, 1), - (1, 2, 0, 2), - (1, 2, 1, 0), - (1, 2, 1, 1), - (1, 2, 2, 0), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 0, 0), - (2, 2, 0, 1), - (2, 2, 0, 2), - (2, 2, 1, 0), - (2, 2, 1, 1), - (2, 2, 1, 2), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'qq3': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (0, 1, 0, 0), - (0, 2, 0, 0), - (0, 2, 0, 1), - (0, 2, 1, 0), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 0, 0), - (1, 1, 0, 1), - (1, 1, 0, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (1, 2, 0, 0), - (1, 2, 0, 1), - (1, 2, 0, 2), - (1, 2, 1, 0), - (1, 2, 1, 1), - (1, 2, 2, 0), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 0, 0), - (2, 2, 0, 1), - (2, 2, 0, 2), - (2, 2, 1, 0), - (2, 2, 1, 1), - (2, 2, 1, 2), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'qqql': [(1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 1, 0, 0), - (1, 1, 0, 1), - (1, 1, 0, 2), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 2, 0, 0), - (2, 2, 0, 1), - (2, 2, 0, 2), - (2, 2, 1, 0), - (2, 2, 1, 1), - (2, 2, 1, 2)], - 'qque': [(1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2)], - 'qu1': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'qu8': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'quqd1': [], - 'quqd8': [], - 'uB': [], - 'uG': [], - 'uW': [], - 'ud1': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'ud8': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 1, 0), - (2, 2, 2, 0), - (2, 2, 2, 1)], - 'uphi': [], - 'uu': [(0, 0, 1, 0), - (0, 0, 2, 0), - (0, 0, 2, 1), - (0, 1, 0, 0), - (0, 2, 0, 0), - (0, 2, 0, 1), - (0, 2, 1, 0), - (1, 0, 0, 0), - (1, 0, 0, 1), - (1, 0, 0, 2), - (1, 0, 1, 0), - (1, 0, 1, 1), - (1, 0, 1, 2), - (1, 0, 2, 0), - (1, 0, 2, 1), - (1, 0, 2, 2), - (1, 1, 0, 0), - (1, 1, 0, 1), - (1, 1, 0, 2), - (1, 1, 1, 0), - (1, 1, 2, 0), - (1, 1, 2, 1), - (1, 2, 0, 0), - (1, 2, 0, 1), - (1, 2, 0, 2), - (1, 2, 1, 0), - (1, 2, 1, 1), - (1, 2, 2, 0), - (2, 0, 0, 0), - (2, 0, 0, 1), - (2, 0, 0, 2), - (2, 0, 1, 0), - (2, 0, 1, 1), - (2, 0, 1, 2), - (2, 0, 2, 0), - (2, 0, 2, 1), - (2, 0, 2, 2), - (2, 1, 0, 0), - (2, 1, 0, 1), - (2, 1, 0, 2), - (2, 1, 1, 0), - (2, 1, 1, 1), - (2, 1, 1, 2), - (2, 1, 2, 0), - (2, 1, 2, 1), - (2, 1, 2, 2), - (2, 2, 0, 0), - (2, 2, 0, 1), - (2, 2, 0, 2), - (2, 2, 1, 0), - (2, 2, 1, 1), - (2, 2, 1, 2), - (2, 2, 2, 0), - (2, 2, 2, 1)]} - -# elements where the imaginary part must be zero and which can thus -# be omitted in the input/output -vanishing_im_parts = {'G': [], - 'Gd': [], - 'Ge': [], - 'Gtilde': [], - 'Gu': [], - 'Lambda': [], - 'Theta': [], - 'Thetap': [], - 'Thetas': [], - 'W': [], - 'Wtilde': [], - 'dB': [], - 'dG': [], - 'dW': [], - 'dd': [(1, 1, 2, 2), - (2, 2, 2, 2), - (1, 2, 2, 1), - (1, 1, 1, 1), - (0, 2, 2, 0), - (0, 1, 1, 0), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2)], - 'dphi': [], - 'duql': [], - 'duue': [], - 'eB': [], - 'eW': [], - 'ed': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'ee': [(1, 1, 2, 2), - (2, 2, 2, 2), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2)], - 'ephi': [], - 'eu': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'g': [], - 'gp': [], - 'gs': [], - 'ld': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'le': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'ledq': [], - 'lequ1': [], - 'lequ3': [], - 'll': [(1, 1, 2, 2), - (2, 2, 2, 2), - (1, 2, 2, 1), - (1, 1, 1, 1), - (0, 2, 2, 0), - (0, 1, 1, 0), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2)], - 'llphiphi': [], - 'lq1': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'lq3': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'lu': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'm2': [], - 'phi': [], - 'phiB': [], - 'phiBox': [], - 'phiBtilde': [], - 'phiD': [], - 'phiG': [], - 'phiGtilde': [], - 'phiW': [], - 'phiWB': [], - 'phiWtilde': [], - 'phiWtildeB': [], - 'phid': [(0, 0), (1, 1), (2, 2)], - 'phie': [(0, 0), (1, 1), (2, 2)], - 'phil1': [(0, 0), (1, 1), (2, 2)], - 'phil3': [(0, 0), (1, 1), (2, 2)], - 'phiq1': [(0, 0), (1, 1), (2, 2)], - 'phiq3': [(0, 0), (1, 1), (2, 2)], - 'phiu': [(0, 0), (1, 1), (2, 2)], - 'phiud': [], - 'qd1': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'qd8': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'qe': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'qq1': [(1, 1, 2, 2), - (2, 2, 2, 2), - (1, 2, 2, 1), - (1, 1, 1, 1), - (0, 2, 2, 0), - (0, 1, 1, 0), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2)], - 'qq3': [(1, 1, 2, 2), - (2, 2, 2, 2), - (1, 2, 2, 1), - (1, 1, 1, 1), - (0, 2, 2, 0), - (0, 1, 1, 0), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2)], - 'qqql': [], - 'qque': [], - 'qu1': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'qu8': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'quqd1': [], - 'quqd8': [], - 'uB': [], - 'uG': [], - 'uW': [], - 'ud1': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'ud8': [(1, 1, 2, 2), - (2, 2, 1, 1), - (2, 2, 2, 2), - (1, 1, 0, 0), - (1, 1, 1, 1), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2), - (2, 2, 0, 0)], - 'uphi': [], - 'uu': [(1, 1, 2, 2), - (2, 2, 2, 2), - (1, 2, 2, 1), - (1, 1, 1, 1), - (0, 2, 2, 0), - (0, 1, 1, 0), - (0, 0, 0, 0), - (0, 0, 1, 1), - (0, 0, 2, 2)]} diff --git a/wcxf/converters/eos.py b/wcxf/converters/eos.py deleted file mode 100644 index 6691874..0000000 --- a/wcxf/converters/eos.py +++ /dev/null @@ -1,62 +0,0 @@ -"""Functions to convert WCxf files to EOS parameter files.""" - -from collections import OrderedDict -import yaml -import glob -import os -import re - - -def get_sm_wcs(eos_parameter_dir): - """Read SM contributions to EOS Wilson coefficients from the EOS - installation parameter directory and return them as a dictionary.""" - all_wcs = {} - yamlfiles = glob.glob(os.path.join(eos_parameter_dir, '*.yaml')) - for yamlfile in yamlfiles: - with open(yamlfile, 'r') as f: - wcs = yaml.safe_load(f) - meta = wcs.get('@metadata@', {}) - if 'wcxf-relevant' in meta and meta['wcxf-relevant']: - del wcs['@metadata@'] - all_wcs.update(wcs) - return all_wcs - - -def get_eos_np(sm_key, wc): - """Get the NP contribution to an EOS Wilson coefficient identified - by the name `sm_key` from a wcxf.WC instance `wc`""" - if sm_key in wc.dict: - return wc.dict[sm_key].real - elif r'Re{' in sm_key: # if the EOS name contains "Re" - k2 = re.sub(r'Re\{([^\}]+)\}', r'\1', sm_key) # name of the coeff in the basis file - if k2 in wc.dict: - return wc.dict[k2].real - elif k2.replace('lnu', 'enue') in wc.dict or k2.replace('lnu', 'munumu') in wc.dict: - # for charged-current WCs, check if the WCxf file is LFU, else raise an error - if wc.dict.get(k2.replace('lnu', 'enue'), 0) != wc.dict.get(k2.replace('lnu', 'munumu'), 0): - raise ValueError("Found lepton flavour non-universal charged-current coefficients") - return wc.dict.get(k2.replace('lnu', 'enue'), 0).real - elif r'Im{' in sm_key: # if the EOS name contains "Im" - k2 = re.sub(r'Im\{([^\}]+)\}', r'\1', sm_key) # name of the coeff in the basis file - if k2 in wc.dict: - return wc.dict[k2].imag - elif k2.replace('lnu', 'enue') in wc.dict or k2.replace('lnu', 'munumu') in wc.dict: - # for charged-current WCs, check if the WCxf file is LFU, else raise an error - if wc.dict.get(k2.replace('lnu', 'enue'), 0) != wc.dict.get(k2.replace('lnu', 'munumu'), 0): - raise ValueError("Found lepton flavour non-universal charged-current coefficients") - return wc.dict.get(k2.replace('lnu', 'enue'), 0).imag - return 0 - - -def wcxf2eos(wc, sm_wc_dict): - """From a wcxf.WC instance wc and a dictionary of EOS Wilson coefficient - SM contributions, return a dictionary of EOS Wilson coefficient parameter - values including SM and NP contributions.""" - eosd = OrderedDict() - for k, v in sm_wc_dict.items(): - sm = v['central'] - np = get_eos_np(k, wc) - eosd[k] = OrderedDict() - for q in ['central', 'min', 'max']: - eosd[k][q] = sm + np - return eosd diff --git a/wcxf/converters/smeftsim.py b/wcxf/converters/smeftsim.py deleted file mode 100644 index 64bdbdb..0000000 --- a/wcxf/converters/smeftsim.py +++ /dev/null @@ -1,5362 +0,0 @@ -"""Functions to convert WCxf files to MadGraph param_cards for SMEFTsim.""" - -from numpy import angle -from collections import OrderedDict -from wcxf.converters.SMEFTsim_param_card_elements import * -from wilson.util import smeftutil - - -def initialize_smeftsim_card(model_set): - - if model_set == 'A': - # initialize card with empty blocks - card = {'Block': OrderedDict()} - card['Block']['FRBlock'] = OrderedDict() - card['Block']['FRBlock10'] = OrderedDict() - card['Block']['FRBlock11'] = OrderedDict() - card['Block']['FRBlock12'] = OrderedDict() - card['Block']['FRBlock13'] = OrderedDict() - card['Block']['FRBlock14'] = OrderedDict() - card['Block']['FRBlock15'] = OrderedDict() - card['Block']['FRBlock16'] = OrderedDict() - card['Block']['FRBlock17'] = OrderedDict() - card['Block']['FRBlock18'] = OrderedDict() - card['Block']['FRBlock19'] = OrderedDict() - card['Block']['FRBlock2'] = OrderedDict() - card['Block']['FRBlock20'] = OrderedDict() - card['Block']['FRBlock21'] = OrderedDict() - card['Block']['FRBlock25'] = OrderedDict() - card['Block']['FRBlock26'] = OrderedDict() - card['Block']['FRBlock27'] = OrderedDict() - card['Block']['FRBlock28'] = OrderedDict() - card['Block']['FRBlock29'] = OrderedDict() - card['Block']['FRBlock3'] = OrderedDict() - card['Block']['FRBlock30'] = OrderedDict() - card['Block']['FRBlock31'] = OrderedDict() - card['Block']['FRBlock32'] = OrderedDict() - card['Block']['FRBlock4'] = OrderedDict() - card['Block']['FRBlock48'] = OrderedDict() - card['Block']['FRBlock5'] = OrderedDict() - card['Block']['FRBlock6'] = OrderedDict() - card['Block']['FRBlock7'] = OrderedDict() - card['Block']['FRBlock70'] = OrderedDict() - card['Block']['FRBlock71'] = OrderedDict() - card['Block']['FRBlock72'] = OrderedDict() - card['Block']['FRBlock73'] = OrderedDict() - card['Block']['FRBlock74'] = OrderedDict() - card['Block']['FRBlock8'] = OrderedDict() - card['Block']['FRBlock9'] = OrderedDict() - - elif model_set == 'B': - card = {'Block': OrderedDict()} - card['Block']['FRBlock'] = OrderedDict() - card['Block']['FRBlock10'] = OrderedDict() - card['Block']['FRBlock11'] = OrderedDict() - card['Block']['FRBlock15'] = OrderedDict() - card['Block']['FRBlock16'] = OrderedDict() - card['Block']['FRBlock18'] = OrderedDict() - card['Block']['FRBlock19'] = OrderedDict() - card['Block']['FRBlock21'] = OrderedDict() - card['Block']['FRBlock22'] = OrderedDict() - card['Block']['FRBlock24'] = OrderedDict() - card['Block']['FRBlock25'] = OrderedDict() - card['Block']['FRBlock27'] = OrderedDict() - card['Block']['FRBlock28'] = OrderedDict() - card['Block']['FRBlock30'] = OrderedDict() - card['Block']['FRBlock31'] = OrderedDict() - card['Block']['FRBlock33'] = OrderedDict() - card['Block']['FRBlock34'] = OrderedDict() - card['Block']['FRBlock36'] = OrderedDict() - card['Block']['FRBlock37'] = OrderedDict() - card['Block']['FRBlock45'] = OrderedDict() - card['Block']['FRBlock46'] = OrderedDict() - card['Block']['FRBlock6'] = OrderedDict() - card['Block']['FRBlock69'] = OrderedDict() - card['Block']['FRBlock7'] = OrderedDict() - card['Block']['FRBlock70'] = OrderedDict() - card['Block']['FRBlock72'] = OrderedDict() - card['Block']['FRBlock73'] = OrderedDict() - card['Block']['FRBlock75'] = OrderedDict() - card['Block']['FRBlock76'] = OrderedDict() - card['Block']['FRBlock78'] = OrderedDict() - card['Block']['FRBlock79'] = OrderedDict() - card['Block']['FRBlock8'] = OrderedDict() - card['Block']['FRBlock81'] = OrderedDict() - card['Block']['FRBlock82'] = OrderedDict() - card['Block']['FRBlock9'] = OrderedDict() - card['Block']['NEWCOUP'] = OrderedDict() - - return card - - -def smeftsim_card_fill(card, wc, model_set, lambda_smeft_value, input_scheme_value): - - _symm_fac = smeftutil.arrays2wcxf(smeftutil._scale_dict) - def scaled_wc(key): - """Return the coefficient scaled by the appropriate symmetry factor - to account for the change from the flavor-non-redundant WCxf convention - to the symmetrized SMEFTsim convention.""" - return wc[key] / _symm_fac[key] - - - if model_set == 'A': - # set block entries to WC values - card['Block']['FRBlock'] = {'values': [ - [1, format(angle(scaled_wc('phil1_12')),'.6e'), '# cHl1Ph12'], - [2, format(angle(scaled_wc('phil1_13')),'.6e'), '# cHl1Ph13'], - [3, format(angle(scaled_wc('phil1_23')),'.6e'), '# cHl1Ph23'], - [4, format(angle(scaled_wc('phil3_12')),'.6e'), '# cHl3Ph12'], - [5, format(angle(scaled_wc('phil3_13')),'.6e'), '# cHl3Ph13'], - [6, format(angle(scaled_wc('phil3_23')),'.6e'), '# cHl3Ph23'], - [7, format(angle(scaled_wc('phie_12')),'.6e'), '# cHePh12'], - [8, format(angle(scaled_wc('phie_13')),'.6e'), '# cHePh13'], - [9, format(angle(scaled_wc('phie_23')),'.6e'), '# cHePh23'], - [10, format(angle(scaled_wc('phiq1_12')),'.6e'), '# cHq1Ph12'], - [11, format(angle(scaled_wc('phiq1_13')),'.6e'), '# cHq1Ph13'], - [12, format(angle(scaled_wc('phiq1_23')),'.6e'), '# cHq1Ph23'], - [13, format(angle(scaled_wc('phiq3_12')),'.6e'), '# cHq3Ph12'], - [14, format(angle(scaled_wc('phiq3_13')),'.6e'), '# cHq3Ph13'], - [15, format(angle(scaled_wc('phiq3_23')),'.6e'), '# cHq3Ph23'], - [16, format(angle(scaled_wc('phiu_12')),'.6e'), '# cHuPh12'], - [17, format(angle(scaled_wc('phiu_13')),'.6e'), '# cHuPh13'], - [18, format(angle(scaled_wc('phiu_23')),'.6e'), '# cHuPh23'], - [19, format(angle(scaled_wc('phid_12')),'.6e'), '# cHdPh12'], - [20, format(angle(scaled_wc('phid_13')),'.6e'), '# cHdPh13'], - [21, format(angle(scaled_wc('phid_23')),'.6e'), '# cHdPh23'], - [22, format(angle(scaled_wc('ll_1112')),'.6e'), '# cllPh1112'], - [23, format(angle(scaled_wc('ll_1113')),'.6e'), '# cllPh1113'], - [24, format(angle(scaled_wc('ll_1123')),'.6e'), '# cllPh1123'], - [25, format(angle(scaled_wc('ll_1212')),'.6e'), '# cllPh1212'], - [26, format(angle(scaled_wc('ll_1213')),'.6e'), '# cllPh1213'], - [27, format(angle(scaled_wc('ll_1231')),'.6e'), '# cllPh1231'], - [28, format(angle(scaled_wc('ll_1222')),'.6e'), '# cllPh1222'], - [29, format(angle(scaled_wc('ll_1223')),'.6e'), '# cllPh1223'], - [30, format(angle(scaled_wc('ll_1232')),'.6e'), '# cllPh1232'], - [31, format(angle(scaled_wc('ll_1233')),'.6e'), '# cllPh1233'], - [32, format(angle(scaled_wc('ll_1313')),'.6e'), '# cllPh1313'], - [33, format(angle(scaled_wc('ll_1322')),'.6e'), '# cllPh1322'], - [34, format(angle(scaled_wc('ll_1332')),'.6e'), '# cllPh1332'], - [35, format(angle(scaled_wc('ll_1323')),'.6e'), '# cllPh1323'], - [36, format(angle(scaled_wc('ll_1333')),'.6e'), '# cllPh1333'], - [37, format(angle(scaled_wc('ll_2223')),'.6e'), '# cllPh2223'], - [38, format(angle(scaled_wc('ll_2323')),'.6e'), '# cllPh2323'], - [39, format(angle(scaled_wc('ll_2333')),'.6e'), '# cllPh3323'], - [40, format(angle(scaled_wc('qq1_1112')),'.6e'), '# cqq1Ph1112'], - [41, format(angle(scaled_wc('qq1_1113')),'.6e'), '# cqq1Ph1113'], - [42, format(angle(scaled_wc('qq1_1123')),'.6e'), '# cqq1Ph1123'], - [43, format(angle(scaled_wc('qq1_1212')),'.6e'), '# cqq1Ph1212'], - [44, format(angle(scaled_wc('qq1_1213')),'.6e'), '# cqq1Ph1213'], - [45, format(angle(scaled_wc('qq1_1231')),'.6e'), '# cqq1Ph1231'], - [46, format(angle(scaled_wc('qq1_1222')),'.6e'), '# cqq1Ph1222'], - [47, format(angle(scaled_wc('qq1_1223')),'.6e'), '# cqq1Ph1223'], - [48, format(angle(scaled_wc('qq1_1232')),'.6e'), '# cqq1Ph1232'], - [49, format(angle(scaled_wc('qq1_1233')),'.6e'), '# cqq1Ph1233'], - [50, format(angle(scaled_wc('qq1_1313')),'.6e'), '# cqq1Ph1313'], - [51, format(angle(scaled_wc('qq1_1322')),'.6e'), '# cqq1Ph1322'], - [52, format(angle(scaled_wc('qq1_1332')),'.6e'), '# cqq1Ph1332'], - [53, format(angle(scaled_wc('qq1_1323')),'.6e'), '# cqq1Ph1323'], - [54, format(angle(scaled_wc('qq1_1333')),'.6e'), '# cqq1Ph1333'], - [55, format(angle(scaled_wc('qq1_2223')),'.6e'), '# cqq1Ph2223'], - [56, format(angle(scaled_wc('qq1_2323')),'.6e'), '# cqq1Ph2323'], - [57, format(angle(scaled_wc('qq1_2333')),'.6e'), '# cqq1Ph3323'], - [58, format(angle(scaled_wc('qq3_1112')),'.6e'), '# cqq3Ph1112'], - [59, format(angle(scaled_wc('qq3_1113')),'.6e'), '# cqq3Ph1113'], - [60, format(angle(scaled_wc('qq3_1123')),'.6e'), '# cqq3Ph1123'], - [61, format(angle(scaled_wc('qq3_1212')),'.6e'), '# cqq3Ph1212'], - [62, format(angle(scaled_wc('qq3_1213')),'.6e'), '# cqq3Ph1213'], - [63, format(angle(scaled_wc('qq3_1231')),'.6e'), '# cqq3Ph1231'], - [64, format(angle(scaled_wc('qq3_1222')),'.6e'), '# cqq3Ph1222'], - [65, format(angle(scaled_wc('qq3_1223')),'.6e'), '# cqq3Ph1223'], - [66, format(angle(scaled_wc('qq3_1232')),'.6e'), '# cqq3Ph1232'], - [67, format(angle(scaled_wc('qq3_1233')),'.6e'), '# cqq3Ph1233'], - [68, format(angle(scaled_wc('qq3_1313')),'.6e'), '# cqq3Ph1313'], - [69, format(angle(scaled_wc('qq3_1322')),'.6e'), '# cqq3Ph1322'], - [70, format(angle(scaled_wc('qq3_1332')),'.6e'), '# cqq3Ph1332'], - [71, format(angle(scaled_wc('qq3_1323')),'.6e'), '# cqq3Ph1323'], - [72, format(angle(scaled_wc('qq3_1333')),'.6e'), '# cqq3Ph1333'], - [73, format(angle(scaled_wc('qq3_2223')),'.6e'), '# cqq3Ph2223'], - [74, format(angle(scaled_wc('qq3_2323')),'.6e'), '# cqq3Ph2323'], - [75, format(angle(scaled_wc('qq3_2333')),'.6e'), '# cqq3Ph3323'], - [76, format(angle(scaled_wc('uu_1112')),'.6e'), '# cuuPh1112'], - [77, format(angle(scaled_wc('uu_1113')),'.6e'), '# cuuPh1113'], - [78, format(angle(scaled_wc('uu_1123')),'.6e'), '# cuuPh1123'], - [79, format(angle(scaled_wc('uu_1212')),'.6e'), '# cuuPh1212'], - [80, format(angle(scaled_wc('uu_1213')),'.6e'), '# cuuPh1213'], - [81, format(angle(scaled_wc('uu_1231')),'.6e'), '# cuuPh1231'], - [82, format(angle(scaled_wc('uu_1222')),'.6e'), '# cuuPh1222'], - [83, format(angle(scaled_wc('uu_1223')),'.6e'), '# cuuPh1223'], - [84, format(angle(scaled_wc('uu_1232')),'.6e'), '# cuuPh1232'], - [85, format(angle(scaled_wc('uu_1233')),'.6e'), '# cuuPh1233'], - [86, format(angle(scaled_wc('uu_1313')),'.6e'), '# cuuPh1313'], - [87, format(angle(scaled_wc('uu_1322')),'.6e'), '# cuuPh1322'], - [88, format(angle(scaled_wc('uu_1332')),'.6e'), '# cuuPh1332'], - [89, format(angle(scaled_wc('uu_1323')),'.6e'), '# cuuPh1323'], - [90, format(angle(scaled_wc('uu_1333')),'.6e'), '# cuuPh1333'], - [91, format(angle(scaled_wc('uu_2223')),'.6e'), '# cuuPh2223'], - [92, format(angle(scaled_wc('uu_2323')),'.6e'), '# cuuPh2323'], - [93, format(angle(scaled_wc('uu_2333')),'.6e'), '# cuuPh3323'], - [94, format(angle(scaled_wc('dd_1112')),'.6e'), '# cddPh1112'], - [95, format(angle(scaled_wc('dd_1113')),'.6e'), '# cddPh1113'], - [96, format(angle(scaled_wc('dd_1123')),'.6e'), '# cddPh1123'], - [97, format(angle(scaled_wc('dd_1212')),'.6e'), '# cddPh1212'], - [98, format(angle(scaled_wc('dd_1213')),'.6e'), '# cddPh1213'], - [99, format(angle(scaled_wc('dd_1231')),'.6e'), '# cddPh1231'], - [100, format(angle(scaled_wc('dd_1222')),'.6e'), '# cddPh1222'], - [101, format(angle(scaled_wc('dd_1223')),'.6e'), '# cddPh1223'], - [102, format(angle(scaled_wc('dd_1232')),'.6e'), '# cddPh1232'], - [103, format(angle(scaled_wc('dd_1233')),'.6e'), '# cddPh1233'], - [104, format(angle(scaled_wc('dd_1313')),'.6e'), '# cddPh1313'], - [105, format(angle(scaled_wc('dd_1322')),'.6e'), '# cddPh1322'], - [106, format(angle(scaled_wc('dd_1332')),'.6e'), '# cddPh1332'], - [107, format(angle(scaled_wc('dd_1323')),'.6e'), '# cddPh1323'], - [108, format(angle(scaled_wc('dd_1333')),'.6e'), '# cddPh1333'], - [109, format(angle(scaled_wc('dd_2223')),'.6e'), '# cddPh2223'], - [110, format(angle(scaled_wc('dd_2323')),'.6e'), '# cddPh2323'], - [111, format(angle(scaled_wc('dd_2333')),'.6e'), '# cddPh3323'], - [112, format(angle(scaled_wc('ee_1112')),'.6e'), '# ceePh1112'], - [113, format(angle(scaled_wc('ee_1113')),'.6e'), '# ceePh1113'], - [114, format(angle(scaled_wc('ee_1123')),'.6e'), '# ceePh1123'], - [115, format(angle(scaled_wc('ee_1212')),'.6e'), '# ceePh1212'], - [116, format(angle(scaled_wc('ee_1213')),'.6e'), '# ceePh1213'], - [117, format(angle(scaled_wc('ee_1222')),'.6e'), '# ceePh1222'], - [118, format(angle(scaled_wc('ee_1232')),'.6e'), '# ceePh1232'], - [119, format(angle(scaled_wc('ee_1233')),'.6e'), '# ceePh1233'], - [120, format(angle(scaled_wc('ee_1313')),'.6e'), '# ceePh1313'], - [121, format(angle(scaled_wc('ee_1223')),'.6e'), '# ceePh1322'], # element 1322 replaced with 1223 in wcxf - [122, format(angle(scaled_wc('ee_1323')),'.6e'), '# ceePh1323'], - [123, format(angle(scaled_wc('ee_1333')),'.6e'), '# ceePh1333'], - [124, format(angle(scaled_wc('ee_2223')),'.6e'), '# ceePh2223'], - [125, format(angle(scaled_wc('ee_2323')),'.6e'), '# ceePh2323'], - [126, format(angle(scaled_wc('ee_2333')),'.6e'), '# ceePh3323'], - [127, format(angle(scaled_wc('lq1_1112')),'.6e'), '# clq1Ph1112'], - [128, format(angle(scaled_wc('lq1_1113')),'.6e'), '# clq1Ph1113'], - [129, format(angle(scaled_wc('lq1_1123')),'.6e'), '# clq1Ph1123'], - [130, format(angle(scaled_wc('lq1_1211')),'.6e'), '# clq1Ph1211'], - [131, format(angle(scaled_wc('lq1_1212')),'.6e'), '# clq1Ph1212'], - [132, format(angle(scaled_wc('lq1_1221')),'.6e'), '# clq1Ph1221'], - [133, format(angle(scaled_wc('lq1_1213')),'.6e'), '# clq1Ph1213'], - [134, format(angle(scaled_wc('lq1_1231')),'.6e'), '# clq1Ph1231'], - [135, format(angle(scaled_wc('lq1_1222')),'.6e'), '# clq1Ph1222'], - [136, format(angle(scaled_wc('lq1_1223')),'.6e'), '# clq1Ph1223'], - [137, format(angle(scaled_wc('lq1_1232')),'.6e'), '# clq1Ph1232'], - [138, format(angle(scaled_wc('lq1_1233')),'.6e'), '# clq1Ph1233'], - [139, format(angle(scaled_wc('lq1_1311')),'.6e'), '# clq1Ph1311'], - [140, format(angle(scaled_wc('lq1_1312')),'.6e'), '# clq1Ph1312'], - [141, format(angle(scaled_wc('lq1_1313')),'.6e'), '# clq1Ph1313'], - [142, format(angle(scaled_wc('lq1_1331')),'.6e'), '# clq1Ph1331'], - [143, format(angle(scaled_wc('lq1_1321')),'.6e'), '# clq1Ph1321'], - [144, format(angle(scaled_wc('lq1_1322')),'.6e'), '# clq1Ph1322'], - [145, format(angle(scaled_wc('lq1_1332')),'.6e'), '# clq1Ph1332'], - [146, format(angle(scaled_wc('lq1_1323')),'.6e'), '# clq1Ph1323'], - [147, format(angle(scaled_wc('lq1_1333')),'.6e'), '# clq1Ph1333'], - [148, format(angle(scaled_wc('lq1_2212')),'.6e'), '# clq1Ph2212'], - [149, format(angle(scaled_wc('lq1_2213')),'.6e'), '# clq1Ph2213'], - [150, format(angle(scaled_wc('lq1_2223')),'.6e'), '# clq1Ph2223'], - [151, format(angle(scaled_wc('lq1_2311')),'.6e'), '# clq1Ph2311'], - [152, format(angle(scaled_wc('lq1_2312')),'.6e'), '# clq1Ph2312'], - [153, format(angle(scaled_wc('lq1_2313')),'.6e'), '# clq1Ph2313'], - [154, format(angle(scaled_wc('lq1_2321')),'.6e'), '# clq1Ph2321'], - [155, format(angle(scaled_wc('lq1_2322')),'.6e'), '# clq1Ph2322'], - [156, format(angle(scaled_wc('lq1_2323')),'.6e'), '# clq1Ph2323'], - [157, format(angle(scaled_wc('lq1_2331')),'.6e'), '# clq1Ph2331'], - [158, format(angle(scaled_wc('lq1_2332')),'.6e'), '# clq1Ph2332'], - [159, format(angle(scaled_wc('lq1_2333')),'.6e'), '# clq1Ph2333'], - [160, format(angle(scaled_wc('lq1_3312')),'.6e'), '# clq1Ph3312'], - [161, format(angle(scaled_wc('lq1_3313')),'.6e'), '# clq1Ph3313'], - [162, format(angle(scaled_wc('lq1_3323')),'.6e'), '# clq1Ph3323'], - [163, format(angle(scaled_wc('lq3_1112')),'.6e'), '# clq3Ph1112'], - [164, format(angle(scaled_wc('lq3_1113')),'.6e'), '# clq3Ph1113'], - [165, format(angle(scaled_wc('lq3_1123')),'.6e'), '# clq3Ph1123'], - [166, format(angle(scaled_wc('lq3_1211')),'.6e'), '# clq3Ph1211'], - [167, format(angle(scaled_wc('lq3_1212')),'.6e'), '# clq3Ph1212'], - [168, format(angle(scaled_wc('lq3_1221')),'.6e'), '# clq3Ph1221'], - [169, format(angle(scaled_wc('lq3_1213')),'.6e'), '# clq3Ph1213'], - [170, format(angle(scaled_wc('lq3_1231')),'.6e'), '# clq3Ph1231'], - [171, format(angle(scaled_wc('lq3_1222')),'.6e'), '# clq3Ph1222'], - [172, format(angle(scaled_wc('lq3_1223')),'.6e'), '# clq3Ph1223'], - [173, format(angle(scaled_wc('lq3_1232')),'.6e'), '# clq3Ph1232'], - [174, format(angle(scaled_wc('lq3_1233')),'.6e'), '# clq3Ph1233'], - [175, format(angle(scaled_wc('lq3_1311')),'.6e'), '# clq3Ph1311'], - [176, format(angle(scaled_wc('lq3_1312')),'.6e'), '# clq3Ph1312'], - [177, format(angle(scaled_wc('lq3_1313')),'.6e'), '# clq3Ph1313'], - [178, format(angle(scaled_wc('lq3_1331')),'.6e'), '# clq3Ph1331'], - [179, format(angle(scaled_wc('lq3_1321')),'.6e'), '# clq3Ph1321'], - [180, format(angle(scaled_wc('lq3_1322')),'.6e'), '# clq3Ph1322'], - [181, format(angle(scaled_wc('lq3_1332')),'.6e'), '# clq3Ph1332'], - [182, format(angle(scaled_wc('lq3_1323')),'.6e'), '# clq3Ph1323'], - [183, format(angle(scaled_wc('lq3_1333')),'.6e'), '# clq3Ph1333'], - [184, format(angle(scaled_wc('lq3_2212')),'.6e'), '# clq3Ph2212'], - [185, format(angle(scaled_wc('lq3_2213')),'.6e'), '# clq3Ph2213'], - [186, format(angle(scaled_wc('lq3_2223')),'.6e'), '# clq3Ph2223'], - [187, format(angle(scaled_wc('lq3_2311')),'.6e'), '# clq3Ph2311'], - [188, format(angle(scaled_wc('lq3_2312')),'.6e'), '# clq3Ph2312'], - [189, format(angle(scaled_wc('lq3_2313')),'.6e'), '# clq3Ph2313'], - [190, format(angle(scaled_wc('lq3_2321')),'.6e'), '# clq3Ph2321'], - [191, format(angle(scaled_wc('lq3_2322')),'.6e'), '# clq3Ph2322'], - [192, format(angle(scaled_wc('lq3_2323')),'.6e'), '# clq3Ph2323'], - [193, format(angle(scaled_wc('lq3_2331')),'.6e'), '# clq3Ph2331'], - [194, format(angle(scaled_wc('lq3_2332')),'.6e'), '# clq3Ph2332'], - [195, format(angle(scaled_wc('lq3_2333')),'.6e'), '# clq3Ph2333'], - [196, format(angle(scaled_wc('lq3_3312')),'.6e'), '# clq3Ph3312'], - [197, format(angle(scaled_wc('lq3_3313')),'.6e'), '# clq3Ph3313'], - [198, format(angle(scaled_wc('lq3_3323')),'.6e'), '# clq3Ph3323'], - [199, format(angle(scaled_wc('eu_1112')),'.6e'), '# ceuPh1112'], - [200, format(angle(scaled_wc('eu_1113')),'.6e'), '# ceuPh1113'], - [201, format(angle(scaled_wc('eu_1123')),'.6e'), '# ceuPh1123'], - [202, format(angle(scaled_wc('eu_1211')),'.6e'), '# ceuPh1211'], - [203, format(angle(scaled_wc('eu_1212')),'.6e'), '# ceuPh1212'], - [204, format(angle(scaled_wc('eu_1221')),'.6e'), '# ceuPh1221'], - [205, format(angle(scaled_wc('eu_1213')),'.6e'), '# ceuPh1213'], - [206, format(angle(scaled_wc('eu_1231')),'.6e'), '# ceuPh1231'], - [207, format(angle(scaled_wc('eu_1222')),'.6e'), '# ceuPh1222'], - [208, format(angle(scaled_wc('eu_1223')),'.6e'), '# ceuPh1223'], - [209, format(angle(scaled_wc('eu_1232')),'.6e'), '# ceuPh1232'], - [210, format(angle(scaled_wc('eu_1233')),'.6e'), '# ceuPh1233'], - [211, format(angle(scaled_wc('eu_1311')),'.6e'), '# ceuPh1311'], - [212, format(angle(scaled_wc('eu_1312')),'.6e'), '# ceuPh1312'], - [213, format(angle(scaled_wc('eu_1313')),'.6e'), '# ceuPh1313'], - [214, format(angle(scaled_wc('eu_1331')),'.6e'), '# ceuPh1331'], - [215, format(angle(scaled_wc('eu_1321')),'.6e'), '# ceuPh1321'], - [216, format(angle(scaled_wc('eu_1322')),'.6e'), '# ceuPh1322'], - [217, format(angle(scaled_wc('eu_1332')),'.6e'), '# ceuPh1332'], - [218, format(angle(scaled_wc('eu_1323')),'.6e'), '# ceuPh1323'], - [219, format(angle(scaled_wc('eu_1333')),'.6e'), '# ceuPh1333'], - [220, format(angle(scaled_wc('eu_2212')),'.6e'), '# ceuPh2212'], - [221, format(angle(scaled_wc('eu_2213')),'.6e'), '# ceuPh2213'], - [222, format(angle(scaled_wc('eu_2223')),'.6e'), '# ceuPh2223'], - [223, format(angle(scaled_wc('eu_2311')),'.6e'), '# ceuPh2311'], - [224, format(angle(scaled_wc('eu_2312')),'.6e'), '# ceuPh2312'], - [225, format(angle(scaled_wc('eu_2313')),'.6e'), '# ceuPh2313'], - [226, format(angle(scaled_wc('eu_2321')),'.6e'), '# ceuPh2321'], - [227, format(angle(scaled_wc('eu_2322')),'.6e'), '# ceuPh2322'], - [228, format(angle(scaled_wc('eu_2323')),'.6e'), '# ceuPh2323'], - [229, format(angle(scaled_wc('eu_2331')),'.6e'), '# ceuPh2331'], - [230, format(angle(scaled_wc('eu_2332')),'.6e'), '# ceuPh2332'], - [231, format(angle(scaled_wc('eu_2333')),'.6e'), '# ceuPh2333'], - [232, format(angle(scaled_wc('eu_3312')),'.6e'), '# ceuPh3312'], - [233, format(angle(scaled_wc('eu_3313')),'.6e'), '# ceuPh3313'], - [234, format(angle(scaled_wc('eu_3323')),'.6e'), '# ceuPh3323'], - [235, format(angle(scaled_wc('ed_1112')),'.6e'), '# cedPh1112'], - [236, format(angle(scaled_wc('ed_1113')),'.6e'), '# cedPh1113'], - [237, format(angle(scaled_wc('ed_1123')),'.6e'), '# cedPh1123'], - [238, format(angle(scaled_wc('ed_1211')),'.6e'), '# cedPh1211'], - [239, format(angle(scaled_wc('ed_1212')),'.6e'), '# cedPh1212'], - [240, format(angle(scaled_wc('ed_1221')),'.6e'), '# cedPh1221'], - [241, format(angle(scaled_wc('ed_1213')),'.6e'), '# cedPh1213'], - [242, format(angle(scaled_wc('ed_1231')),'.6e'), '# cedPh1231'], - [243, format(angle(scaled_wc('ed_1222')),'.6e'), '# cedPh1222'], - [244, format(angle(scaled_wc('ed_1223')),'.6e'), '# cedPh1223'], - [245, format(angle(scaled_wc('ed_1232')),'.6e'), '# cedPh1232'], - [246, format(angle(scaled_wc('ed_1233')),'.6e'), '# cedPh1233'], - [247, format(angle(scaled_wc('ed_1311')),'.6e'), '# cedPh1311'], - [248, format(angle(scaled_wc('ed_1312')),'.6e'), '# cedPh1312'], - [249, format(angle(scaled_wc('ed_1313')),'.6e'), '# cedPh1313'], - [250, format(angle(scaled_wc('ed_1331')),'.6e'), '# cedPh1331'], - [251, format(angle(scaled_wc('ed_1321')),'.6e'), '# cedPh1321'], - [252, format(angle(scaled_wc('ed_1322')),'.6e'), '# cedPh1322'], - [253, format(angle(scaled_wc('ed_1332')),'.6e'), '# cedPh1332'], - [254, format(angle(scaled_wc('ed_1323')),'.6e'), '# cedPh1323'], - [255, format(angle(scaled_wc('ed_1333')),'.6e'), '# cedPh1333'], - [256, format(angle(scaled_wc('ed_2212')),'.6e'), '# cedPh2212'], - [257, format(angle(scaled_wc('ed_2213')),'.6e'), '# cedPh2213'], - [258, format(angle(scaled_wc('ed_2223')),'.6e'), '# cedPh2223'], - [259, format(angle(scaled_wc('ed_2311')),'.6e'), '# cedPh2311'], - [260, format(angle(scaled_wc('ed_2312')),'.6e'), '# cedPh2312'], - [261, format(angle(scaled_wc('ed_2313')),'.6e'), '# cedPh2313'], - [262, format(angle(scaled_wc('ed_2321')),'.6e'), '# cedPh2321'], - [263, format(angle(scaled_wc('ed_2322')),'.6e'), '# cedPh2322'], - [264, format(angle(scaled_wc('ed_2323')),'.6e'), '# cedPh2323'], - [265, format(angle(scaled_wc('ed_2331')),'.6e'), '# cedPh2331'], - [266, format(angle(scaled_wc('ed_2332')),'.6e'), '# cedPh2332'], - [267, format(angle(scaled_wc('ed_2333')),'.6e'), '# cedPh2333'], - [268, format(angle(scaled_wc('ed_3312')),'.6e'), '# cedPh3312'], - [269, format(angle(scaled_wc('ed_3313')),'.6e'), '# cedPh3313'], - [270, format(angle(scaled_wc('ed_3323')),'.6e'), '# cedPh3323'], - [271, format(angle(scaled_wc('ud1_1112')),'.6e'), '# cud1Ph1112'], - [272, format(angle(scaled_wc('ud1_1113')),'.6e'), '# cud1Ph1113'], - [273, format(angle(scaled_wc('ud1_1123')),'.6e'), '# cud1Ph1123'], - [274, format(angle(scaled_wc('ud1_1211')),'.6e'), '# cud1Ph1211'], - [275, format(angle(scaled_wc('ud1_1212')),'.6e'), '# cud1Ph1212'], - [276, format(angle(scaled_wc('ud1_1221')),'.6e'), '# cud1Ph1221'], - [277, format(angle(scaled_wc('ud1_1213')),'.6e'), '# cud1Ph1213'], - [278, format(angle(scaled_wc('ud1_1231')),'.6e'), '# cud1Ph1231'], - [279, format(angle(scaled_wc('ud1_1222')),'.6e'), '# cud1Ph1222'], - [280, format(angle(scaled_wc('ud1_1223')),'.6e'), '# cud1Ph1223'], - [281, format(angle(scaled_wc('ud1_1232')),'.6e'), '# cud1Ph1232'], - [282, format(angle(scaled_wc('ud1_1233')),'.6e'), '# cud1Ph1233'], - [283, format(angle(scaled_wc('ud1_1311')),'.6e'), '# cud1Ph1311'], - [284, format(angle(scaled_wc('ud1_1312')),'.6e'), '# cud1Ph1312'], - [285, format(angle(scaled_wc('ud1_1313')),'.6e'), '# cud1Ph1313'], - [286, format(angle(scaled_wc('ud1_1331')),'.6e'), '# cud1Ph1331'], - [287, format(angle(scaled_wc('ud1_1321')),'.6e'), '# cud1Ph1321'], - [288, format(angle(scaled_wc('ud1_1322')),'.6e'), '# cud1Ph1322'], - [289, format(angle(scaled_wc('ud1_1332')),'.6e'), '# cud1Ph1332'], - [290, format(angle(scaled_wc('ud1_1323')),'.6e'), '# cud1Ph1323'], - [291, format(angle(scaled_wc('ud1_1333')),'.6e'), '# cud1Ph1333'], - [292, format(angle(scaled_wc('ud1_2212')),'.6e'), '# cud1Ph2212'], - [293, format(angle(scaled_wc('ud1_2213')),'.6e'), '# cud1Ph2213'], - [294, format(angle(scaled_wc('ud1_2223')),'.6e'), '# cud1Ph2223'], - [295, format(angle(scaled_wc('ud1_2311')),'.6e'), '# cud1Ph2311'], - [296, format(angle(scaled_wc('ud1_2312')),'.6e'), '# cud1Ph2312'], - [297, format(angle(scaled_wc('ud1_2313')),'.6e'), '# cud1Ph2313'], - [298, format(angle(scaled_wc('ud1_2321')),'.6e'), '# cud1Ph2321'], - [299, format(angle(scaled_wc('ud1_2322')),'.6e'), '# cud1Ph2322'], - [300, format(angle(scaled_wc('ud1_2323')),'.6e'), '# cud1Ph2323'], - [301, format(angle(scaled_wc('ud1_2331')),'.6e'), '# cud1Ph2331'], - [302, format(angle(scaled_wc('ud1_2332')),'.6e'), '# cud1Ph2332'], - [303, format(angle(scaled_wc('ud1_2333')),'.6e'), '# cud1Ph2333'], - [304, format(angle(scaled_wc('ud1_3312')),'.6e'), '# cud1Ph3312'], - [305, format(angle(scaled_wc('ud1_3313')),'.6e'), '# cud1Ph3313'], - [306, format(angle(scaled_wc('ud1_3323')),'.6e'), '# cud1Ph3323'], - [307, format(angle(scaled_wc('ud8_1112')),'.6e'), '# cud8Ph1112'], - [308, format(angle(scaled_wc('ud8_1113')),'.6e'), '# cud8Ph1113'], - [309, format(angle(scaled_wc('ud8_1123')),'.6e'), '# cud8Ph1123'], - [310, format(angle(scaled_wc('ud8_1211')),'.6e'), '# cud8Ph1211'], - [311, format(angle(scaled_wc('ud8_1212')),'.6e'), '# cud8Ph1212'], - [312, format(angle(scaled_wc('ud8_1221')),'.6e'), '# cud8Ph1221'], - [313, format(angle(scaled_wc('ud8_1213')),'.6e'), '# cud8Ph1213'], - [314, format(angle(scaled_wc('ud8_1231')),'.6e'), '# cud8Ph1231'], - [315, format(angle(scaled_wc('ud8_1222')),'.6e'), '# cud8Ph1222'], - [316, format(angle(scaled_wc('ud8_1223')),'.6e'), '# cud8Ph1223'], - [317, format(angle(scaled_wc('ud8_1232')),'.6e'), '# cud8Ph1232'], - [318, format(angle(scaled_wc('ud8_1233')),'.6e'), '# cud8Ph1233'], - [319, format(angle(scaled_wc('ud8_1311')),'.6e'), '# cud8Ph1311'], - [320, format(angle(scaled_wc('ud8_1312')),'.6e'), '# cud8Ph1312'], - [321, format(angle(scaled_wc('ud8_1313')),'.6e'), '# cud8Ph1313'], - [322, format(angle(scaled_wc('ud8_1331')),'.6e'), '# cud8Ph1331'], - [323, format(angle(scaled_wc('ud8_1321')),'.6e'), '# cud8Ph1321'], - [324, format(angle(scaled_wc('ud8_1322')),'.6e'), '# cud8Ph1322'], - [325, format(angle(scaled_wc('ud8_1332')),'.6e'), '# cud8Ph1332'], - [326, format(angle(scaled_wc('ud8_1323')),'.6e'), '# cud8Ph1323'], - [327, format(angle(scaled_wc('ud8_1333')),'.6e'), '# cud8Ph1333'], - [328, format(angle(scaled_wc('ud8_2212')),'.6e'), '# cud8Ph2212'], - [329, format(angle(scaled_wc('ud8_2213')),'.6e'), '# cud8Ph2213'], - [330, format(angle(scaled_wc('ud8_2223')),'.6e'), '# cud8Ph2223'], - [331, format(angle(scaled_wc('ud8_2311')),'.6e'), '# cud8Ph2311'], - [332, format(angle(scaled_wc('ud8_2312')),'.6e'), '# cud8Ph2312'], - [333, format(angle(scaled_wc('ud8_2313')),'.6e'), '# cud8Ph2313'], - [334, format(angle(scaled_wc('ud8_2321')),'.6e'), '# cud8Ph2321'], - [335, format(angle(scaled_wc('ud8_2322')),'.6e'), '# cud8Ph2322'], - [336, format(angle(scaled_wc('ud8_2323')),'.6e'), '# cud8Ph2323'], - [337, format(angle(scaled_wc('ud8_2331')),'.6e'), '# cud8Ph2331'], - [338, format(angle(scaled_wc('ud8_2332')),'.6e'), '# cud8Ph2332'], - [339, format(angle(scaled_wc('ud8_2333')),'.6e'), '# cud8Ph2333'], - [340, format(angle(scaled_wc('ud8_3312')),'.6e'), '# cud8Ph3312'], - [341, format(angle(scaled_wc('ud8_3313')),'.6e'), '# cud8Ph3313'], - [342, format(angle(scaled_wc('ud8_3323')),'.6e'), '# cud8Ph3323'], - [343, format(angle(scaled_wc('le_1112')),'.6e'), '# clePh1112'], - [344, format(angle(scaled_wc('le_1113')),'.6e'), '# clePh1113'], - [345, format(angle(scaled_wc('le_1123')),'.6e'), '# clePh1123'], - [346, format(angle(scaled_wc('le_1211')),'.6e'), '# clePh1211'], - [347, format(angle(scaled_wc('le_1212')),'.6e'), '# clePh1212'], - [348, format(angle(scaled_wc('le_1221')),'.6e'), '# clePh1221'], - [349, format(angle(scaled_wc('le_1213')),'.6e'), '# clePh1213'], - [350, format(angle(scaled_wc('le_1231')),'.6e'), '# clePh1231'], - [351, format(angle(scaled_wc('le_1222')),'.6e'), '# clePh1222'], - [352, format(angle(scaled_wc('le_1223')),'.6e'), '# clePh1223'], - [353, format(angle(scaled_wc('le_1232')),'.6e'), '# clePh1232'], - [354, format(angle(scaled_wc('le_1233')),'.6e'), '# clePh1233'], - [355, format(angle(scaled_wc('le_1311')),'.6e'), '# clePh1311'], - [356, format(angle(scaled_wc('le_1312')),'.6e'), '# clePh1312'], - [357, format(angle(scaled_wc('le_1313')),'.6e'), '# clePh1313'], - [358, format(angle(scaled_wc('le_1331')),'.6e'), '# clePh1331'], - [359, format(angle(scaled_wc('le_1321')),'.6e'), '# clePh1321'], - [360, format(angle(scaled_wc('le_1322')),'.6e'), '# clePh1322'], - [361, format(angle(scaled_wc('le_1332')),'.6e'), '# clePh1332'], - [362, format(angle(scaled_wc('le_1323')),'.6e'), '# clePh1323'], - [363, format(angle(scaled_wc('le_1333')),'.6e'), '# clePh1333'], - [364, format(angle(scaled_wc('le_2212')),'.6e'), '# clePh2212'], - [365, format(angle(scaled_wc('le_2213')),'.6e'), '# clePh2213'], - [366, format(angle(scaled_wc('le_2223')),'.6e'), '# clePh2223'], - [367, format(angle(scaled_wc('le_2311')),'.6e'), '# clePh2311'], - [368, format(angle(scaled_wc('le_2312')),'.6e'), '# clePh2312'], - [369, format(angle(scaled_wc('le_2313')),'.6e'), '# clePh2313'], - [370, format(angle(scaled_wc('le_2321')),'.6e'), '# clePh2321'], - [371, format(angle(scaled_wc('le_2322')),'.6e'), '# clePh2322'], - [372, format(angle(scaled_wc('le_2323')),'.6e'), '# clePh2323'], - [373, format(angle(scaled_wc('le_2331')),'.6e'), '# clePh2331'], - [374, format(angle(scaled_wc('le_2332')),'.6e'), '# clePh2332'], - [375, format(angle(scaled_wc('le_2333')),'.6e'), '# clePh2333'], - [376, format(angle(scaled_wc('le_3312')),'.6e'), '# clePh3312'], - [377, format(angle(scaled_wc('le_3313')),'.6e'), '# clePh3313'], - [378, format(angle(scaled_wc('le_3323')),'.6e'), '# clePh3323'], - [379, format(angle(scaled_wc('lu_1112')),'.6e'), '# cluPh1112'], - [380, format(angle(scaled_wc('lu_1113')),'.6e'), '# cluPh1113'], - [381, format(angle(scaled_wc('lu_1123')),'.6e'), '# cluPh1123'], - [382, format(angle(scaled_wc('lu_1211')),'.6e'), '# cluPh1211'], - [383, format(angle(scaled_wc('lu_1212')),'.6e'), '# cluPh1212'], - [384, format(angle(scaled_wc('lu_1221')),'.6e'), '# cluPh1221'], - [385, format(angle(scaled_wc('lu_1213')),'.6e'), '# cluPh1213'], - [386, format(angle(scaled_wc('lu_1231')),'.6e'), '# cluPh1231'], - [387, format(angle(scaled_wc('lu_1222')),'.6e'), '# cluPh1222'], - [388, format(angle(scaled_wc('lu_1223')),'.6e'), '# cluPh1223'], - [389, format(angle(scaled_wc('lu_1232')),'.6e'), '# cluPh1232'], - [390, format(angle(scaled_wc('lu_1233')),'.6e'), '# cluPh1233'], - [391, format(angle(scaled_wc('lu_1311')),'.6e'), '# cluPh1311'], - [392, format(angle(scaled_wc('lu_1312')),'.6e'), '# cluPh1312'], - [393, format(angle(scaled_wc('lu_1313')),'.6e'), '# cluPh1313'], - [394, format(angle(scaled_wc('lu_1331')),'.6e'), '# cluPh1331'], - [395, format(angle(scaled_wc('lu_1321')),'.6e'), '# cluPh1321'], - [396, format(angle(scaled_wc('lu_1322')),'.6e'), '# cluPh1322'], - [397, format(angle(scaled_wc('lu_1332')),'.6e'), '# cluPh1332'], - [398, format(angle(scaled_wc('lu_1323')),'.6e'), '# cluPh1323'], - [399, format(angle(scaled_wc('lu_1333')),'.6e'), '# cluPh1333'], - [400, format(angle(scaled_wc('lu_2212')),'.6e'), '# cluPh2212'], - [401, format(angle(scaled_wc('lu_2213')),'.6e'), '# cluPh2213'], - [402, format(angle(scaled_wc('lu_2223')),'.6e'), '# cluPh2223'], - [403, format(angle(scaled_wc('lu_2311')),'.6e'), '# cluPh2311'], - [404, format(angle(scaled_wc('lu_2312')),'.6e'), '# cluPh2312'], - [405, format(angle(scaled_wc('lu_2313')),'.6e'), '# cluPh2313'], - [406, format(angle(scaled_wc('lu_2321')),'.6e'), '# cluPh2321'], - [407, format(angle(scaled_wc('lu_2322')),'.6e'), '# cluPh2322'], - [408, format(angle(scaled_wc('lu_2323')),'.6e'), '# cluPh2323'], - [409, format(angle(scaled_wc('lu_2331')),'.6e'), '# cluPh2331'], - [410, format(angle(scaled_wc('lu_2332')),'.6e'), '# cluPh2332'], - [411, format(angle(scaled_wc('lu_2333')),'.6e'), '# cluPh2333'], - [412, format(angle(scaled_wc('lu_3312')),'.6e'), '# cluPh3312'], - [413, format(angle(scaled_wc('lu_3313')),'.6e'), '# cluPh3313'], - [414, format(angle(scaled_wc('lu_3323')),'.6e'), '# cluPh3323'], - [415, format(angle(scaled_wc('ld_1112')),'.6e'), '# cldPh1112'], - [416, format(angle(scaled_wc('ld_1113')),'.6e'), '# cldPh1113'], - [417, format(angle(scaled_wc('ld_1123')),'.6e'), '# cldPh1123'], - [418, format(angle(scaled_wc('ld_1211')),'.6e'), '# cldPh1211'], - [419, format(angle(scaled_wc('ld_1212')),'.6e'), '# cldPh1212'], - [420, format(angle(scaled_wc('ld_1221')),'.6e'), '# cldPh1221'], - [421, format(angle(scaled_wc('ld_1213')),'.6e'), '# cldPh1213'], - [422, format(angle(scaled_wc('ld_1231')),'.6e'), '# cldPh1231'], - [423, format(angle(scaled_wc('ld_1222')),'.6e'), '# cldPh1222'], - [424, format(angle(scaled_wc('ld_1223')),'.6e'), '# cldPh1223'], - [425, format(angle(scaled_wc('ld_1232')),'.6e'), '# cldPh1232'], - [426, format(angle(scaled_wc('ld_1233')),'.6e'), '# cldPh1233'], - [427, format(angle(scaled_wc('ld_1311')),'.6e'), '# cldPh1311'], - [428, format(angle(scaled_wc('ld_1312')),'.6e'), '# cldPh1312'], - [429, format(angle(scaled_wc('ld_1313')),'.6e'), '# cldPh1313'], - [430, format(angle(scaled_wc('ld_1331')),'.6e'), '# cldPh1331'], - [431, format(angle(scaled_wc('ld_1321')),'.6e'), '# cldPh1321'], - [432, format(angle(scaled_wc('ld_1322')),'.6e'), '# cldPh1322'], - [433, format(angle(scaled_wc('ld_1332')),'.6e'), '# cldPh1332'], - [434, format(angle(scaled_wc('ld_1323')),'.6e'), '# cldPh1323'], - [435, format(angle(scaled_wc('ld_1333')),'.6e'), '# cldPh1333'], - [436, format(angle(scaled_wc('ld_2212')),'.6e'), '# cldPh2212'], - [437, format(angle(scaled_wc('ld_2213')),'.6e'), '# cldPh2213'], - [438, format(angle(scaled_wc('ld_2223')),'.6e'), '# cldPh2223'], - [439, format(angle(scaled_wc('ld_2311')),'.6e'), '# cldPh2311'], - [440, format(angle(scaled_wc('ld_2312')),'.6e'), '# cldPh2312'], - [441, format(angle(scaled_wc('ld_2313')),'.6e'), '# cldPh2313'], - [442, format(angle(scaled_wc('ld_2321')),'.6e'), '# cldPh2321'], - [443, format(angle(scaled_wc('ld_2322')),'.6e'), '# cldPh2322'], - [444, format(angle(scaled_wc('ld_2323')),'.6e'), '# cldPh2323'], - [445, format(angle(scaled_wc('ld_2331')),'.6e'), '# cldPh2331'], - [446, format(angle(scaled_wc('ld_2332')),'.6e'), '# cldPh2332'], - [447, format(angle(scaled_wc('ld_2333')),'.6e'), '# cldPh2333'], - [448, format(angle(scaled_wc('ld_3312')),'.6e'), '# cldPh3312'], - [449, format(angle(scaled_wc('ld_3313')),'.6e'), '# cldPh3313'], - [450, format(angle(scaled_wc('ld_3323')),'.6e'), '# cldPh3323'], - [451, format(angle(scaled_wc('qe_1112')),'.6e'), '# cqePh1112'], - [452, format(angle(scaled_wc('qe_1113')),'.6e'), '# cqePh1113'], - [453, format(angle(scaled_wc('qe_1123')),'.6e'), '# cqePh1123'], - [454, format(angle(scaled_wc('qe_1211')),'.6e'), '# cqePh1211'], - [455, format(angle(scaled_wc('qe_1212')),'.6e'), '# cqePh1212'], - [456, format(angle(scaled_wc('qe_1221')),'.6e'), '# cqePh1221'], - [457, format(angle(scaled_wc('qe_1213')),'.6e'), '# cqePh1213'], - [458, format(angle(scaled_wc('qe_1231')),'.6e'), '# cqePh1231'], - [459, format(angle(scaled_wc('qe_1222')),'.6e'), '# cqePh1222'], - [460, format(angle(scaled_wc('qe_1223')),'.6e'), '# cqePh1223'], - [461, format(angle(scaled_wc('qe_1232')),'.6e'), '# cqePh1232'], - [462, format(angle(scaled_wc('qe_1233')),'.6e'), '# cqePh1233'], - [463, format(angle(scaled_wc('qe_1311')),'.6e'), '# cqePh1311'], - [464, format(angle(scaled_wc('qe_1312')),'.6e'), '# cqePh1312'], - [465, format(angle(scaled_wc('qe_1313')),'.6e'), '# cqePh1313'], - [466, format(angle(scaled_wc('qe_1331')),'.6e'), '# cqePh1331'], - [467, format(angle(scaled_wc('qe_1321')),'.6e'), '# cqePh1321'], - [468, format(angle(scaled_wc('qe_1322')),'.6e'), '# cqePh1322'], - [469, format(angle(scaled_wc('qe_1332')),'.6e'), '# cqePh1332'], - [470, format(angle(scaled_wc('qe_1323')),'.6e'), '# cqePh1323'], - [471, format(angle(scaled_wc('qe_1333')),'.6e'), '# cqePh1333'], - [472, format(angle(scaled_wc('qe_2212')),'.6e'), '# cqePh2212'], - [473, format(angle(scaled_wc('qe_2213')),'.6e'), '# cqePh2213'], - [474, format(angle(scaled_wc('qe_2223')),'.6e'), '# cqePh2223'], - [475, format(angle(scaled_wc('qe_2311')),'.6e'), '# cqePh2311'], - [476, format(angle(scaled_wc('qe_2312')),'.6e'), '# cqePh2312'], - [477, format(angle(scaled_wc('qe_2313')),'.6e'), '# cqePh2313'], - [478, format(angle(scaled_wc('qe_2321')),'.6e'), '# cqePh2321'], - [479, format(angle(scaled_wc('qe_2322')),'.6e'), '# cqePh2322'], - [480, format(angle(scaled_wc('qe_2323')),'.6e'), '# cqePh2323'], - [481, format(angle(scaled_wc('qe_2331')),'.6e'), '# cqePh2331'], - [482, format(angle(scaled_wc('qe_2332')),'.6e'), '# cqePh2332'], - [483, format(angle(scaled_wc('qe_2333')),'.6e'), '# cqePh2333'], - [484, format(angle(scaled_wc('qe_3312')),'.6e'), '# cqePh3312'], - [485, format(angle(scaled_wc('qe_3313')),'.6e'), '# cqePh3313'], - [486, format(angle(scaled_wc('qe_3323')),'.6e'), '# cqePh3323'], - [487, format(angle(scaled_wc('qu1_1112')),'.6e'), '# cqu1Ph1112'], - [488, format(angle(scaled_wc('qu1_1113')),'.6e'), '# cqu1Ph1113'], - [489, format(angle(scaled_wc('qu1_1123')),'.6e'), '# cqu1Ph1123'], - [490, format(angle(scaled_wc('qu1_1211')),'.6e'), '# cqu1Ph1211'], - [491, format(angle(scaled_wc('qu1_1212')),'.6e'), '# cqu1Ph1212'], - [492, format(angle(scaled_wc('qu1_1221')),'.6e'), '# cqu1Ph1221'], - [493, format(angle(scaled_wc('qu1_1213')),'.6e'), '# cqu1Ph1213'], - [494, format(angle(scaled_wc('qu1_1231')),'.6e'), '# cqu1Ph1231'], - [495, format(angle(scaled_wc('qu1_1222')),'.6e'), '# cqu1Ph1222'], - [496, format(angle(scaled_wc('qu1_1223')),'.6e'), '# cqu1Ph1223'], - [497, format(angle(scaled_wc('qu1_1232')),'.6e'), '# cqu1Ph1232'], - [498, format(angle(scaled_wc('qu1_1233')),'.6e'), '# cqu1Ph1233'], - [499, format(angle(scaled_wc('qu1_1311')),'.6e'), '# cqu1Ph1311'], - [500, format(angle(scaled_wc('qu1_1312')),'.6e'), '# cqu1Ph1312'], - [501, format(angle(scaled_wc('qu1_1313')),'.6e'), '# cqu1Ph1313'], - [502, format(angle(scaled_wc('qu1_1331')),'.6e'), '# cqu1Ph1331'], - [503, format(angle(scaled_wc('qu1_1321')),'.6e'), '# cqu1Ph1321'], - [504, format(angle(scaled_wc('qu1_1322')),'.6e'), '# cqu1Ph1322'], - [505, format(angle(scaled_wc('qu1_1332')),'.6e'), '# cqu1Ph1332'], - [506, format(angle(scaled_wc('qu1_1323')),'.6e'), '# cqu1Ph1323'], - [507, format(angle(scaled_wc('qu1_1333')),'.6e'), '# cqu1Ph1333'], - [508, format(angle(scaled_wc('qu1_2212')),'.6e'), '# cqu1Ph2212'], - [509, format(angle(scaled_wc('qu1_2213')),'.6e'), '# cqu1Ph2213'], - [510, format(angle(scaled_wc('qu1_2223')),'.6e'), '# cqu1Ph2223'], - [511, format(angle(scaled_wc('qu1_2311')),'.6e'), '# cqu1Ph2311'], - [512, format(angle(scaled_wc('qu1_2312')),'.6e'), '# cqu1Ph2312'], - [513, format(angle(scaled_wc('qu1_2313')),'.6e'), '# cqu1Ph2313'], - [514, format(angle(scaled_wc('qu1_2321')),'.6e'), '# cqu1Ph2321'], - [515, format(angle(scaled_wc('qu1_2322')),'.6e'), '# cqu1Ph2322'], - [516, format(angle(scaled_wc('qu1_2323')),'.6e'), '# cqu1Ph2323'], - [517, format(angle(scaled_wc('qu1_2331')),'.6e'), '# cqu1Ph2331'], - [518, format(angle(scaled_wc('qu1_2332')),'.6e'), '# cqu1Ph2332'], - [519, format(angle(scaled_wc('qu1_2333')),'.6e'), '# cqu1Ph2333'], - [520, format(angle(scaled_wc('qu1_3312')),'.6e'), '# cqu1Ph3312'], - [521, format(angle(scaled_wc('qu1_3313')),'.6e'), '# cqu1Ph3313'], - [522, format(angle(scaled_wc('qu1_3323')),'.6e'), '# cqu1Ph3323'], - [523, format(angle(scaled_wc('qd1_1112')),'.6e'), '# cqd1Ph1112'], - [524, format(angle(scaled_wc('qd1_1113')),'.6e'), '# cqd1Ph1113'], - [525, format(angle(scaled_wc('qd1_1123')),'.6e'), '# cqd1Ph1123'], - [526, format(angle(scaled_wc('qd1_1211')),'.6e'), '# cqd1Ph1211'], - [527, format(angle(scaled_wc('qd1_1212')),'.6e'), '# cqd1Ph1212'], - [528, format(angle(scaled_wc('qd1_1221')),'.6e'), '# cqd1Ph1221'], - [529, format(angle(scaled_wc('qd1_1213')),'.6e'), '# cqd1Ph1213'], - [530, format(angle(scaled_wc('qd1_1231')),'.6e'), '# cqd1Ph1231'], - [531, format(angle(scaled_wc('qd1_1222')),'.6e'), '# cqd1Ph1222'], - [532, format(angle(scaled_wc('qd1_1223')),'.6e'), '# cqd1Ph1223'], - [533, format(angle(scaled_wc('qd1_1232')),'.6e'), '# cqd1Ph1232'], - [534, format(angle(scaled_wc('qd1_1233')),'.6e'), '# cqd1Ph1233'], - [535, format(angle(scaled_wc('qd1_1311')),'.6e'), '# cqd1Ph1311'], - [536, format(angle(scaled_wc('qd1_1312')),'.6e'), '# cqd1Ph1312'], - [537, format(angle(scaled_wc('qd1_1313')),'.6e'), '# cqd1Ph1313'], - [538, format(angle(scaled_wc('qd1_1331')),'.6e'), '# cqd1Ph1331'], - [539, format(angle(scaled_wc('qd1_1321')),'.6e'), '# cqd1Ph1321'], - [540, format(angle(scaled_wc('qd1_1322')),'.6e'), '# cqd1Ph1322'], - [541, format(angle(scaled_wc('qd1_1332')),'.6e'), '# cqd1Ph1332'], - [542, format(angle(scaled_wc('qd1_1323')),'.6e'), '# cqd1Ph1323'], - [543, format(angle(scaled_wc('qd1_1333')),'.6e'), '# cqd1Ph1333'], - [544, format(angle(scaled_wc('qd1_2212')),'.6e'), '# cqd1Ph2212'], - [545, format(angle(scaled_wc('qd1_2213')),'.6e'), '# cqd1Ph2213'], - [546, format(angle(scaled_wc('qd1_2223')),'.6e'), '# cqd1Ph2223'], - [547, format(angle(scaled_wc('qd1_2311')),'.6e'), '# cqd1Ph2311'], - [548, format(angle(scaled_wc('qd1_2312')),'.6e'), '# cqd1Ph2312'], - [549, format(angle(scaled_wc('qd1_2313')),'.6e'), '# cqd1Ph2313'], - [550, format(angle(scaled_wc('qd1_2321')),'.6e'), '# cqd1Ph2321'], - [551, format(angle(scaled_wc('qd1_2322')),'.6e'), '# cqd1Ph2322'], - [552, format(angle(scaled_wc('qd1_2323')),'.6e'), '# cqd1Ph2323'], - [553, format(angle(scaled_wc('qd1_2331')),'.6e'), '# cqd1Ph2331'], - [554, format(angle(scaled_wc('qd1_2332')),'.6e'), '# cqd1Ph2332'], - [555, format(angle(scaled_wc('qd1_2333')),'.6e'), '# cqd1Ph2333'], - [556, format(angle(scaled_wc('qd1_3312')),'.6e'), '# cqd1Ph3312'], - [557, format(angle(scaled_wc('qd1_3313')),'.6e'), '# cqd1Ph3313'], - [558, format(angle(scaled_wc('qd1_3323')),'.6e'), '# cqd1Ph3323'], - [559, format(angle(scaled_wc('qu8_1112')),'.6e'), '# cqu8Ph1112'], - [560, format(angle(scaled_wc('qu8_1113')),'.6e'), '# cqu8Ph1113'], - [561, format(angle(scaled_wc('qu8_1123')),'.6e'), '# cqu8Ph1123'], - [562, format(angle(scaled_wc('qu8_1211')),'.6e'), '# cqu8Ph1211'], - [563, format(angle(scaled_wc('qu8_1212')),'.6e'), '# cqu8Ph1212'], - [564, format(angle(scaled_wc('qu8_1221')),'.6e'), '# cqu8Ph1221'], - [565, format(angle(scaled_wc('qu8_1213')),'.6e'), '# cqu8Ph1213'], - [566, format(angle(scaled_wc('qu8_1231')),'.6e'), '# cqu8Ph1231'], - [567, format(angle(scaled_wc('qu8_1222')),'.6e'), '# cqu8Ph1222'], - [568, format(angle(scaled_wc('qu8_1223')),'.6e'), '# cqu8Ph1223'], - [569, format(angle(scaled_wc('qu8_1232')),'.6e'), '# cqu8Ph1232'], - [570, format(angle(scaled_wc('qu8_1233')),'.6e'), '# cqu8Ph1233'], - [571, format(angle(scaled_wc('qu8_1311')),'.6e'), '# cqu8Ph1311'], - [572, format(angle(scaled_wc('qu8_1312')),'.6e'), '# cqu8Ph1312'], - [573, format(angle(scaled_wc('qu8_1313')),'.6e'), '# cqu8Ph1313'], - [574, format(angle(scaled_wc('qu8_1331')),'.6e'), '# cqu8Ph1331'], - [575, format(angle(scaled_wc('qu8_1321')),'.6e'), '# cqu8Ph1321'], - [576, format(angle(scaled_wc('qu8_1322')),'.6e'), '# cqu8Ph1322'], - [577, format(angle(scaled_wc('qu8_1332')),'.6e'), '# cqu8Ph1332'], - [578, format(angle(scaled_wc('qu8_1323')),'.6e'), '# cqu8Ph1323'], - [579, format(angle(scaled_wc('qu8_1333')),'.6e'), '# cqu8Ph1333'], - [580, format(angle(scaled_wc('qu8_2212')),'.6e'), '# cqu8Ph2212'], - [581, format(angle(scaled_wc('qu8_2213')),'.6e'), '# cqu8Ph2213'], - [582, format(angle(scaled_wc('qu8_2223')),'.6e'), '# cqu8Ph2223'], - [583, format(angle(scaled_wc('qu8_2311')),'.6e'), '# cqu8Ph2311'], - [584, format(angle(scaled_wc('qu8_2312')),'.6e'), '# cqu8Ph2312'], - [585, format(angle(scaled_wc('qu8_2313')),'.6e'), '# cqu8Ph2313'], - [586, format(angle(scaled_wc('qu8_2321')),'.6e'), '# cqu8Ph2321'], - [587, format(angle(scaled_wc('qu8_2322')),'.6e'), '# cqu8Ph2322'], - [588, format(angle(scaled_wc('qu8_2323')),'.6e'), '# cqu8Ph2323'], - [589, format(angle(scaled_wc('qu8_2331')),'.6e'), '# cqu8Ph2331'], - [590, format(angle(scaled_wc('qu8_2332')),'.6e'), '# cqu8Ph2332'], - [591, format(angle(scaled_wc('qu8_2333')),'.6e'), '# cqu8Ph2333'], - [592, format(angle(scaled_wc('qu8_3312')),'.6e'), '# cqu8Ph3312'], - [593, format(angle(scaled_wc('qu8_3313')),'.6e'), '# cqu8Ph3313'], - [594, format(angle(scaled_wc('qu8_3323')),'.6e'), '# cqu8Ph3323'], - [595, format(angle(scaled_wc('qd8_1112')),'.6e'), '# cqd8Ph1112'], - [596, format(angle(scaled_wc('qd8_1113')),'.6e'), '# cqd8Ph1113'], - [597, format(angle(scaled_wc('qd8_1123')),'.6e'), '# cqd8Ph1123'], - [598, format(angle(scaled_wc('qd8_1211')),'.6e'), '# cqd8Ph1211'], - [599, format(angle(scaled_wc('qd8_1212')),'.6e'), '# cqd8Ph1212'], - [600, format(angle(scaled_wc('qd8_1221')),'.6e'), '# cqd8Ph1221'], - [601, format(angle(scaled_wc('qd8_1213')),'.6e'), '# cqd8Ph1213'], - [602, format(angle(scaled_wc('qd8_1231')),'.6e'), '# cqd8Ph1231'], - [603, format(angle(scaled_wc('qd8_1222')),'.6e'), '# cqd8Ph1222'], - [604, format(angle(scaled_wc('qd8_1223')),'.6e'), '# cqd8Ph1223'], - [605, format(angle(scaled_wc('qd8_1232')),'.6e'), '# cqd8Ph1232'], - [606, format(angle(scaled_wc('qd8_1233')),'.6e'), '# cqd8Ph1233'], - [607, format(angle(scaled_wc('qd8_1311')),'.6e'), '# cqd8Ph1311'], - [608, format(angle(scaled_wc('qd8_1312')),'.6e'), '# cqd8Ph1312'], - [609, format(angle(scaled_wc('qd8_1313')),'.6e'), '# cqd8Ph1313'], - [610, format(angle(scaled_wc('qd8_1331')),'.6e'), '# cqd8Ph1331'], - [611, format(angle(scaled_wc('qd8_1321')),'.6e'), '# cqd8Ph1321'], - [612, format(angle(scaled_wc('qd8_1322')),'.6e'), '# cqd8Ph1322'], - [613, format(angle(scaled_wc('qd8_1332')),'.6e'), '# cqd8Ph1332'], - [614, format(angle(scaled_wc('qd8_1323')),'.6e'), '# cqd8Ph1323'], - [615, format(angle(scaled_wc('qd8_1333')),'.6e'), '# cqd8Ph1333'], - [616, format(angle(scaled_wc('qd8_2212')),'.6e'), '# cqd8Ph2212'], - [617, format(angle(scaled_wc('qd8_2213')),'.6e'), '# cqd8Ph2213'], - [618, format(angle(scaled_wc('qd8_2223')),'.6e'), '# cqd8Ph2223'], - [619, format(angle(scaled_wc('qd8_2311')),'.6e'), '# cqd8Ph2311'], - [620, format(angle(scaled_wc('qd8_2312')),'.6e'), '# cqd8Ph2312'], - [621, format(angle(scaled_wc('qd8_2313')),'.6e'), '# cqd8Ph2313'], - [622, format(angle(scaled_wc('qd8_2321')),'.6e'), '# cqd8Ph2321'], - [623, format(angle(scaled_wc('qd8_2322')),'.6e'), '# cqd8Ph2322'], - [624, format(angle(scaled_wc('qd8_2323')),'.6e'), '# cqd8Ph2323'], - [625, format(angle(scaled_wc('qd8_2331')),'.6e'), '# cqd8Ph2331'], - [626, format(angle(scaled_wc('qd8_2332')),'.6e'), '# cqd8Ph2332'], - [627, format(angle(scaled_wc('qd8_2333')),'.6e'), '# cqd8Ph2333'], - [628, format(angle(scaled_wc('qd8_3312')),'.6e'), '# cqd8Ph3312'], - [629, format(angle(scaled_wc('qd8_3313')),'.6e'), '# cqd8Ph3313'], - [630, format(angle(scaled_wc('qd8_3323')),'.6e'), '# cqd8Ph3323'], - [631, format(lambda_smeft_value, '.6e'), '# LambdaSMEFT'], - [632, format(scaled_wc('G') * lambda_smeft_value**2,'.6e'), '# cG'], - [633, format(scaled_wc('Gtilde') * lambda_smeft_value**2,'.6e'), '# cGtil'], - [634, format(scaled_wc('W') * lambda_smeft_value**2,'.6e'), '# cW'], - [635, format(scaled_wc('Wtilde') * lambda_smeft_value**2,'.6e'), '# cWtil'], - [636, format(scaled_wc('phi') * lambda_smeft_value**2,'.6e'), '# cH'], - [637, format(scaled_wc('phiBox') * lambda_smeft_value**2,'.6e'), '# cHbox'], - [638, format(scaled_wc('phiD') * lambda_smeft_value**2,'.6e'), '# cHDD'], - [639, format(scaled_wc('phiG') * lambda_smeft_value**2,'.6e'), '# cHG'], - [640, format(scaled_wc('phiGtilde') * lambda_smeft_value**2,'.6e'), '# cHGtil'], - [641, format(scaled_wc('phiW') * lambda_smeft_value**2,'.6e'), '# cHW'], - [642, format(scaled_wc('phiWtilde') * lambda_smeft_value**2,'.6e'), '# cHWtil'], - [643, format(scaled_wc('phiB') * lambda_smeft_value**2,'.6e'), '# cHB'], - [644, format(scaled_wc('phiBtilde') * lambda_smeft_value**2,'.6e'), '# cHBtil'], - [645, format(scaled_wc('phiWB') * lambda_smeft_value**2,'.6e'), '# cHWB'], - [646, format(scaled_wc('phiWtildeB') * lambda_smeft_value**2,'.6e'), '# cHWBtil'], - [647, format(abs(scaled_wc('phil1_11')) * lambda_smeft_value**2,'.6e'), '# cHl1Abs11'], - [648, format(abs(scaled_wc('phil1_12')) * lambda_smeft_value**2,'.6e'), '# cHl1Abs12'], - [649, format(abs(scaled_wc('phil1_13')) * lambda_smeft_value**2,'.6e'), '# cHl1Abs13'], - [650, format(abs(scaled_wc('phil1_22')) * lambda_smeft_value**2,'.6e'), '# cHl1Abs22'], - [651, format(abs(scaled_wc('phil1_23')) * lambda_smeft_value**2,'.6e'), '# cHl1Abs23'], - [652, format(abs(scaled_wc('phil1_33')) * lambda_smeft_value**2,'.6e'), '# cHl1Abs33'], - [653, format(abs(scaled_wc('phil3_11')) * lambda_smeft_value**2,'.6e'), '# cHl3Abs11'], - [654, format(abs(scaled_wc('phil3_12')) * lambda_smeft_value**2,'.6e'), '# cHl3Abs12'], - [655, format(abs(scaled_wc('phil3_13')) * lambda_smeft_value**2,'.6e'), '# cHl3Abs13'], - [656, format(abs(scaled_wc('phil3_22')) * lambda_smeft_value**2,'.6e'), '# cHl3Abs22'], - [657, format(abs(scaled_wc('phil3_23')) * lambda_smeft_value**2,'.6e'), '# cHl3Abs23'], - [658, format(abs(scaled_wc('phil3_33')) * lambda_smeft_value**2,'.6e'), '# cHl3Abs33'], - [659, format(abs(scaled_wc('phiq1_11')) * lambda_smeft_value**2,'.6e'), '# cHq1Abs11'], - [660, format(abs(scaled_wc('phiq1_12')) * lambda_smeft_value**2,'.6e'), '# cHq1Abs12'], - [661, format(abs(scaled_wc('phiq1_13')) * lambda_smeft_value**2,'.6e'), '# cHq1Abs13'], - [662, format(abs(scaled_wc('phiq1_22')) * lambda_smeft_value**2,'.6e'), '# cHq1Abs22'], - [663, format(abs(scaled_wc('phiq1_23')) * lambda_smeft_value**2,'.6e'), '# cHq1Abs23'], - [664, format(abs(scaled_wc('phiq1_33')) * lambda_smeft_value**2,'.6e'), '# cHq1Abs33'], - [665, format(abs(scaled_wc('phiq3_11')) * lambda_smeft_value**2,'.6e'), '# cHq3Abs11'], - [666, format(abs(scaled_wc('phiq3_12')) * lambda_smeft_value**2,'.6e'), '# cHq3Abs12'], - [667, format(abs(scaled_wc('phiq3_13')) * lambda_smeft_value**2,'.6e'), '# cHq3Abs13'], - [668, format(abs(scaled_wc('phiq3_22')) * lambda_smeft_value**2,'.6e'), '# cHq3Abs22'], - [669, format(abs(scaled_wc('phiq3_23')) * lambda_smeft_value**2,'.6e'), '# cHq3Abs23'], - [670, format(abs(scaled_wc('phiq3_33')) * lambda_smeft_value**2,'.6e'), '# cHq3Abs33'], - [671, format(abs(scaled_wc('phie_11')) * lambda_smeft_value**2,'.6e'), '# cHeAbs11'], - [672, format(abs(scaled_wc('phie_12')) * lambda_smeft_value**2,'.6e'), '# cHeAbs12'], - [673, format(abs(scaled_wc('phie_13')) * lambda_smeft_value**2,'.6e'), '# cHeAbs13'], - [674, format(abs(scaled_wc('phie_22')) * lambda_smeft_value**2,'.6e'), '# cHeAbs22'], - [675, format(abs(scaled_wc('phie_23')) * lambda_smeft_value**2,'.6e'), '# cHeAbs23'], - [676, format(abs(scaled_wc('phie_33')) * lambda_smeft_value**2,'.6e'), '# cHeAbs33'], - [677, format(abs(scaled_wc('phiu_11')) * lambda_smeft_value**2,'.6e'), '# cHuAbs11'], - [678, format(abs(scaled_wc('phiu_12')) * lambda_smeft_value**2,'.6e'), '# cHuAbs12'], - [679, format(abs(scaled_wc('phiu_13')) * lambda_smeft_value**2,'.6e'), '# cHuAbs13'], - [680, format(abs(scaled_wc('phiu_22')) * lambda_smeft_value**2,'.6e'), '# cHuAbs22'], - [681, format(abs(scaled_wc('phiu_23')) * lambda_smeft_value**2,'.6e'), '# cHuAbs23'], - [682, format(abs(scaled_wc('phiu_33')) * lambda_smeft_value**2,'.6e'), '# cHuAbs33'], - [683, format(abs(scaled_wc('phid_11')) * lambda_smeft_value**2,'.6e'), '# cHdAbs11'], - [684, format(abs(scaled_wc('phid_12')) * lambda_smeft_value**2,'.6e'), '# cHdAbs12'], - [685, format(abs(scaled_wc('phid_13')) * lambda_smeft_value**2,'.6e'), '# cHdAbs13'], - [686, format(abs(scaled_wc('phid_22')) * lambda_smeft_value**2,'.6e'), '# cHdAbs22'], - [687, format(abs(scaled_wc('phid_23')) * lambda_smeft_value**2,'.6e'), '# cHdAbs23'], - [688, format(abs(scaled_wc('phid_33')) * lambda_smeft_value**2,'.6e'), '# cHdAbs33'], - [689, format(scaled_wc('ll_1111') * lambda_smeft_value**2,'.6e'), '# cllAbs1111'], - [690, format(scaled_wc('ll_1122') * lambda_smeft_value**2,'.6e'), '# cllAbs1122'], - [691, format(scaled_wc('ll_1221') * lambda_smeft_value**2,'.6e'), '# cllAbs1221'], - [692, format(scaled_wc('ll_1133') * lambda_smeft_value**2,'.6e'), '# cllAbs1133'], - [693, format(scaled_wc('ll_1331') * lambda_smeft_value**2,'.6e'), '# cllAbs1331'], - [694, format(scaled_wc('ll_2222') * lambda_smeft_value**2,'.6e'), '# cllAbs2222'], - [695, format(scaled_wc('ll_2233') * lambda_smeft_value**2,'.6e'), '# cllAbs2233'], - [696, format(scaled_wc('ll_2332') * lambda_smeft_value**2,'.6e'), '# cllAbs2332'], - [697, format(scaled_wc('ll_3333') * lambda_smeft_value**2,'.6e'), '# cllAbs3333'], - [698, format(abs(scaled_wc('ll_1112')) * lambda_smeft_value**2,'.6e'), '# cllAbs1112'], - [699, format(abs(scaled_wc('ll_1113')) * lambda_smeft_value**2,'.6e'), '# cllAbs1113'], - [700, format(abs(scaled_wc('ll_1123')) * lambda_smeft_value**2,'.6e'), '# cllAbs1123'], - [701, format(abs(scaled_wc('ll_1212')) * lambda_smeft_value**2,'.6e'), '# cllAbs1212'], - [702, format(abs(scaled_wc('ll_1213')) * lambda_smeft_value**2,'.6e'), '# cllAbs1213'], - [703, format(abs(scaled_wc('ll_1231')) * lambda_smeft_value**2,'.6e'), '# cllAbs1231'], - [704, format(abs(scaled_wc('ll_1222')) * lambda_smeft_value**2,'.6e'), '# cllAbs1222'], - [705, format(abs(scaled_wc('ll_1223')) * lambda_smeft_value**2,'.6e'), '# cllAbs1223'], - [706, format(abs(scaled_wc('ll_1232')) * lambda_smeft_value**2,'.6e'), '# cllAbs1232'], - [707, format(abs(scaled_wc('ll_1233')) * lambda_smeft_value**2,'.6e'), '# cllAbs1233'], - [708, format(abs(scaled_wc('ll_1313')) * lambda_smeft_value**2,'.6e'), '# cllAbs1313'], - [709, format(abs(scaled_wc('ll_1322')) * lambda_smeft_value**2,'.6e'), '# cllAbs1322'], - [710, format(abs(scaled_wc('ll_1332')) * lambda_smeft_value**2,'.6e'), '# cllAbs1332'], - [711, format(abs(scaled_wc('ll_1323')) * lambda_smeft_value**2,'.6e'), '# cllAbs1323'], - [712, format(abs(scaled_wc('ll_1333')) * lambda_smeft_value**2,'.6e'), '# cllAbs1333'], - [713, format(abs(scaled_wc('ll_2223')) * lambda_smeft_value**2,'.6e'), '# cllAbs2223'], - [714, format(abs(scaled_wc('ll_2323')) * lambda_smeft_value**2,'.6e'), '# cllAbs2323'], - [715, format(abs(scaled_wc('ll_2333')) * lambda_smeft_value**2,'.6e'), '# cllAbs3323'], - [716, format(scaled_wc('qq1_1111') * lambda_smeft_value**2,'.6e'), '# cqq1Abs1111'], - [717, format(scaled_wc('qq1_1122') * lambda_smeft_value**2,'.6e'), '# cqq1Abs1122'], - [718, format(scaled_wc('qq1_1221') * lambda_smeft_value**2,'.6e'), '# cqq1Abs1221'], - [719, format(scaled_wc('qq1_1133') * lambda_smeft_value**2,'.6e'), '# cqq1Abs1133'], - [720, format(scaled_wc('qq1_1331') * lambda_smeft_value**2,'.6e'), '# cqq1Abs1331'], - [721, format(scaled_wc('qq1_2222') * lambda_smeft_value**2,'.6e'), '# cqq1Abs2222'], - [722, format(scaled_wc('qq1_2233') * lambda_smeft_value**2,'.6e'), '# cqq1Abs2233'], - [723, format(scaled_wc('qq1_2332') * lambda_smeft_value**2,'.6e'), '# cqq1Abs2332'], - [724, format(scaled_wc('qq1_3333') * lambda_smeft_value**2,'.6e'), '# cqq1Abs3333'], - [725, format(abs(scaled_wc('qq1_1112')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1112'], - [726, format(abs(scaled_wc('qq1_1113')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1113'], - [727, format(abs(scaled_wc('qq1_1123')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1123'], - [728, format(abs(scaled_wc('qq1_1212')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1212'], - [729, format(abs(scaled_wc('qq1_1213')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1213'], - [730, format(abs(scaled_wc('qq1_1231')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1231'], - [731, format(abs(scaled_wc('qq1_1222')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1222'], - [732, format(abs(scaled_wc('qq1_1223')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1223'], - [733, format(abs(scaled_wc('qq1_1232')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1232'], - [734, format(abs(scaled_wc('qq1_1233')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1233'], - [735, format(abs(scaled_wc('qq1_1313')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1313'], - [736, format(abs(scaled_wc('qq1_1322')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1322'], - [737, format(abs(scaled_wc('qq1_1332')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1332'], - [738, format(abs(scaled_wc('qq1_1323')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1323'], - [739, format(abs(scaled_wc('qq1_1333')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs1333'], - [740, format(abs(scaled_wc('qq1_2223')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs2223'], - [741, format(abs(scaled_wc('qq1_2323')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs2323'], - [742, format(abs(scaled_wc('qq1_2333')) * lambda_smeft_value**2,'.6e'), '# cqq1Abs3323'], - [743, format(scaled_wc('qq3_1111') * lambda_smeft_value**2,'.6e'), '# cqq3Abs1111'], - [744, format(scaled_wc('qq3_1122') * lambda_smeft_value**2,'.6e'), '# cqq3Abs1122'], - [745, format(scaled_wc('qq3_1221') * lambda_smeft_value**2,'.6e'), '# cqq3Abs1221'], - [746, format(scaled_wc('qq3_1133') * lambda_smeft_value**2,'.6e'), '# cqq3Abs1133'], - [747, format(scaled_wc('qq3_1331') * lambda_smeft_value**2,'.6e'), '# cqq3Abs1331'], - [748, format(scaled_wc('qq3_2222') * lambda_smeft_value**2,'.6e'), '# cqq3Abs2222'], - [749, format(scaled_wc('qq3_2233') * lambda_smeft_value**2,'.6e'), '# cqq3Abs2233'], - [750, format(scaled_wc('qq3_2332') * lambda_smeft_value**2,'.6e'), '# cqq3Abs2332'], - [751, format(scaled_wc('qq3_3333') * lambda_smeft_value**2,'.6e'), '# cqq3Abs3333'], - [752, format(abs(scaled_wc('qq3_1112')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1112'], - [753, format(abs(scaled_wc('qq3_1113')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1113'], - [754, format(abs(scaled_wc('qq3_1123')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1123'], - [755, format(abs(scaled_wc('qq3_1212')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1212'], - [756, format(abs(scaled_wc('qq3_1213')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1213'], - [757, format(abs(scaled_wc('qq3_1231')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1231'], - [758, format(abs(scaled_wc('qq3_1222')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1222'], - [759, format(abs(scaled_wc('qq3_1223')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1223'], - [760, format(abs(scaled_wc('qq3_1232')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1232'], - [761, format(abs(scaled_wc('qq3_1233')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1233'], - [762, format(abs(scaled_wc('qq3_1313')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1313'], - [763, format(abs(scaled_wc('qq3_1322')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1322'], - [764, format(abs(scaled_wc('qq3_1332')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1332'], - [765, format(abs(scaled_wc('qq3_1323')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1323'], - [766, format(abs(scaled_wc('qq3_1333')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs1333'], - [767, format(abs(scaled_wc('qq3_2223')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs2223'], - [768, format(abs(scaled_wc('qq3_2323')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs2323'], - [769, format(abs(scaled_wc('qq3_2333')) * lambda_smeft_value**2,'.6e'), '# cqq3Abs3323'], - [770, format(scaled_wc('lq1_1111') * lambda_smeft_value**2,'.6e'), '# clq1Abs1111'], - [771, format(abs(scaled_wc('lq1_1112')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1112'], - [772, format(abs(scaled_wc('lq1_1113')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1113'], - [773, format(abs(scaled_wc('lq1_1123')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1123'], - [774, format(scaled_wc('lq1_1122') * lambda_smeft_value**2,'.6e'), '# clq1Abs1122'], - [775, format(scaled_wc('lq1_1133') * lambda_smeft_value**2,'.6e'), '# clq1Abs1133'], - [776, format(abs(scaled_wc('lq1_1211')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1211'], - [777, format(abs(scaled_wc('lq1_1212')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1212'], - [778, format(abs(scaled_wc('lq1_1221')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1221'], - [779, format(abs(scaled_wc('lq1_1213')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1213'], - [780, format(abs(scaled_wc('lq1_1231')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1231'], - [781, format(abs(scaled_wc('lq1_1222')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1222'], - [782, format(abs(scaled_wc('lq1_1223')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1223'], - [783, format(abs(scaled_wc('lq1_1232')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1232'], - [784, format(abs(scaled_wc('lq1_1233')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1233'], - [785, format(abs(scaled_wc('lq1_1311')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1311'], - [786, format(abs(scaled_wc('lq1_1312')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1312'], - [787, format(abs(scaled_wc('lq1_1313')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1313'], - [788, format(abs(scaled_wc('lq1_1331')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1331'], - [789, format(abs(scaled_wc('lq1_1321')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1321'], - [790, format(abs(scaled_wc('lq1_1322')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1322'], - [791, format(abs(scaled_wc('lq1_1332')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1332'], - [792, format(abs(scaled_wc('lq1_1323')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1323'], - [793, format(abs(scaled_wc('lq1_1333')) * lambda_smeft_value**2,'.6e'), '# clq1Abs1333'], - [794, format(scaled_wc('lq1_2211') * lambda_smeft_value**2,'.6e'), '# clq1Abs2211'], - [795, format(abs(scaled_wc('lq1_2212')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2212'], - [796, format(abs(scaled_wc('lq1_2213')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2213'], - [797, format(scaled_wc('lq1_2222') * lambda_smeft_value**2,'.6e'), '# clq1Abs2222'], - [798, format(abs(scaled_wc('lq1_2223')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2223'], - [799, format(scaled_wc('lq1_2233') * lambda_smeft_value**2,'.6e'), '# clq1Abs2233'], - [800, format(abs(scaled_wc('lq1_2311')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2311'], - [801, format(abs(scaled_wc('lq1_2312')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2312'], - [802, format(abs(scaled_wc('lq1_2313')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2313'], - [803, format(abs(scaled_wc('lq1_2321')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2321'], - [804, format(abs(scaled_wc('lq1_2322')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2322'], - [805, format(abs(scaled_wc('lq1_2323')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2323'], - [806, format(abs(scaled_wc('lq1_2331')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2331'], - [807, format(abs(scaled_wc('lq1_2332')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2332'], - [808, format(abs(scaled_wc('lq1_2333')) * lambda_smeft_value**2,'.6e'), '# clq1Abs2333'], - [809, format(scaled_wc('lq1_3311') * lambda_smeft_value**2,'.6e'), '# clq1Abs3311'], - [810, format(abs(scaled_wc('lq1_3312')) * lambda_smeft_value**2,'.6e'), '# clq1Abs3312'], - [811, format(abs(scaled_wc('lq1_3313')) * lambda_smeft_value**2,'.6e'), '# clq1Abs3313'], - [812, format(scaled_wc('lq1_3322') * lambda_smeft_value**2,'.6e'), '# clq1Abs3322'], - [813, format(scaled_wc('lq1_3333') * lambda_smeft_value**2,'.6e'), '# clq1Abs3333'], - [814, format(abs(scaled_wc('lq1_3323')) * lambda_smeft_value**2,'.6e'), '# clq1Abs3323'], - [815, format(scaled_wc('lq3_1111') * lambda_smeft_value**2,'.6e'), '# clq3Abs1111'], - [816, format(abs(scaled_wc('lq3_1112')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1112'], - [817, format(abs(scaled_wc('lq3_1113')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1113'], - [818, format(abs(scaled_wc('lq3_1123')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1123'], - [819, format(scaled_wc('lq3_1122') * lambda_smeft_value**2,'.6e'), '# clq3Abs1122'], - [820, format(scaled_wc('lq3_1133') * lambda_smeft_value**2,'.6e'), '# clq3Abs1133'], - [821, format(abs(scaled_wc('lq3_1211')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1211'], - [822, format(abs(scaled_wc('lq3_1212')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1212'], - [823, format(abs(scaled_wc('lq3_1221')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1221'], - [824, format(abs(scaled_wc('lq3_1213')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1213'], - [825, format(abs(scaled_wc('lq3_1231')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1231'], - [826, format(abs(scaled_wc('lq3_1222')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1222'], - [827, format(abs(scaled_wc('lq3_1223')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1223'], - [828, format(abs(scaled_wc('lq3_1232')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1232'], - [829, format(abs(scaled_wc('lq3_1233')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1233'], - [830, format(abs(scaled_wc('lq3_1311')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1311'], - [831, format(abs(scaled_wc('lq3_1312')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1312'], - [832, format(abs(scaled_wc('lq3_1313')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1313'], - [833, format(abs(scaled_wc('lq3_1331')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1331'], - [834, format(abs(scaled_wc('lq3_1321')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1321'], - [835, format(abs(scaled_wc('lq3_1322')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1322'], - [836, format(abs(scaled_wc('lq3_1332')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1332'], - [837, format(abs(scaled_wc('lq3_1323')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1323'], - [838, format(abs(scaled_wc('lq3_1333')) * lambda_smeft_value**2,'.6e'), '# clq3Abs1333'], - [839, format(scaled_wc('lq3_2211') * lambda_smeft_value**2,'.6e'), '# clq3Abs2211'], - [840, format(abs(scaled_wc('lq3_2212')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2212'], - [841, format(abs(scaled_wc('lq3_2213')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2213'], - [842, format(scaled_wc('lq3_2222') * lambda_smeft_value**2,'.6e'), '# clq3Abs2222'], - [843, format(abs(scaled_wc('lq3_2223')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2223'], - [844, format(scaled_wc('lq3_2233') * lambda_smeft_value**2,'.6e'), '# clq3Abs2233'], - [845, format(abs(scaled_wc('lq3_2311')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2311'], - [846, format(abs(scaled_wc('lq3_2312')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2312'], - [847, format(abs(scaled_wc('lq3_2313')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2313'], - [848, format(abs(scaled_wc('lq3_2321')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2321'], - [849, format(abs(scaled_wc('lq3_2322')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2322'], - [850, format(abs(scaled_wc('lq3_2323')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2323'], - [851, format(abs(scaled_wc('lq3_2331')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2331'], - [852, format(abs(scaled_wc('lq3_2332')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2332'], - [853, format(abs(scaled_wc('lq3_2333')) * lambda_smeft_value**2,'.6e'), '# clq3Abs2333'], - [854, format(scaled_wc('lq3_3311') * lambda_smeft_value**2,'.6e'), '# clq3Abs3311'], - [855, format(abs(scaled_wc('lq3_3312')) * lambda_smeft_value**2,'.6e'), '# clq3Abs3312'], - [856, format(abs(scaled_wc('lq3_3313')) * lambda_smeft_value**2,'.6e'), '# clq3Abs3313'], - [857, format(scaled_wc('lq3_3322') * lambda_smeft_value**2,'.6e'), '# clq3Abs3322'], - [858, format(scaled_wc('lq3_3333') * lambda_smeft_value**2,'.6e'), '# clq3Abs3333'], - [859, format(abs(scaled_wc('lq3_3323')) * lambda_smeft_value**2,'.6e'), '# clq3Abs3323'], - [860, format(scaled_wc('ee_1111') * lambda_smeft_value**2,'.6e'), '# ceeAbs1111'], - [861, format(scaled_wc('ee_1122') * lambda_smeft_value**2,'.6e'), '# ceeAbs1122'], - [862, format(scaled_wc('ee_1133') * lambda_smeft_value**2,'.6e'), '# ceeAbs1133'], - [863, format(scaled_wc('ee_2222') * lambda_smeft_value**2,'.6e'), '# ceeAbs2222'], - [864, format(scaled_wc('ee_2233') * lambda_smeft_value**2,'.6e'), '# ceeAbs2233'], - [865, format(abs(scaled_wc('ee_1112')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1112'], - [866, format(abs(scaled_wc('ee_3333')) * lambda_smeft_value**2,'.6e'), '# ceeAbs3333'], - [867, format(abs(scaled_wc('ee_1123')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1123'], - [868, format(abs(scaled_wc('ee_1113')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1113'], - [869, format(abs(scaled_wc('ee_1213')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1213'], - [870, format(abs(scaled_wc('ee_1212')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1212'], - [871, format(abs(scaled_wc('ee_1232')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1232'], - [872, format(abs(scaled_wc('ee_1222')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1222'], - [873, format(abs(scaled_wc('ee_1313')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1313'], - [874, format(abs(scaled_wc('ee_1233')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1233'], - [875, format(abs(scaled_wc('ee_1323')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1323'], - [876, format(abs(scaled_wc('ee_1223')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1322'], # element 1322 replaced with 1223 in wcxf - [877, format(abs(scaled_wc('ee_2223')) * lambda_smeft_value**2,'.6e'), '# ceeAbs2223'], - [878, format(abs(scaled_wc('ee_1333')) * lambda_smeft_value**2,'.6e'), '# ceeAbs1333'], - [879, format(abs(scaled_wc('ee_2333')) * lambda_smeft_value**2,'.6e'), '# ceeAbs3323'], # element 3323 replaced with 2223 in wcxf - [880, format(abs(scaled_wc('ee_2323')) * lambda_smeft_value**2,'.6e'), '# ceeAbs2323'], - [881, format(scaled_wc('uu_1111') * lambda_smeft_value**2,'.6e'), '# cuuAbs1111'], - [882, format(scaled_wc('uu_1122') * lambda_smeft_value**2,'.6e'), '# cuuAbs1122'], - [883, format(scaled_wc('uu_1221') * lambda_smeft_value**2,'.6e'), '# cuuAbs1221'], - [884, format(scaled_wc('uu_1133') * lambda_smeft_value**2,'.6e'), '# cuuAbs1133'], - [885, format(scaled_wc('uu_1331') * lambda_smeft_value**2,'.6e'), '# cuuAbs1331'], - [886, format(scaled_wc('uu_2222') * lambda_smeft_value**2,'.6e'), '# cuuAbs2222'], - [887, format(scaled_wc('uu_2233') * lambda_smeft_value**2,'.6e'), '# cuuAbs2233'], - [888, format(scaled_wc('uu_2332') * lambda_smeft_value**2,'.6e'), '# cuuAbs2332'], - [889, format(scaled_wc('uu_3333') * lambda_smeft_value**2,'.6e'), '# cuuAbs3333'], - [890, format(abs(scaled_wc('uu_1112')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1112'], - [891, format(abs(scaled_wc('uu_1113')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1113'], - [892, format(abs(scaled_wc('uu_1123')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1123'], - [893, format(abs(scaled_wc('uu_1212')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1212'], - [894, format(abs(scaled_wc('uu_1213')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1213'], - [895, format(abs(scaled_wc('uu_1231')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1231'], - [896, format(abs(scaled_wc('uu_1222')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1222'], - [897, format(abs(scaled_wc('uu_1223')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1223'], - [898, format(abs(scaled_wc('uu_1232')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1232'], - [899, format(abs(scaled_wc('uu_1233')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1233'], - [900, format(abs(scaled_wc('uu_1313')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1313'], - [901, format(abs(scaled_wc('uu_1322')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1322'], - [902, format(abs(scaled_wc('uu_1332')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1332'], - [903, format(abs(scaled_wc('uu_1323')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1323'], - [904, format(abs(scaled_wc('uu_1333')) * lambda_smeft_value**2,'.6e'), '# cuuAbs1333'], - [905, format(abs(scaled_wc('uu_2223')) * lambda_smeft_value**2,'.6e'), '# cuuAbs2223'], - [906, format(abs(scaled_wc('uu_2323')) * lambda_smeft_value**2,'.6e'), '# cuuAbs2323'], - [907, format(abs(scaled_wc('uu_2333')) * lambda_smeft_value**2,'.6e'), '# cuuAbs3323'], - [908, format(scaled_wc('dd_1111') * lambda_smeft_value**2,'.6e'), '# cddAbs1111'], - [909, format(scaled_wc('dd_1122') * lambda_smeft_value**2,'.6e'), '# cddAbs1122'], - [910, format(scaled_wc('dd_1221') * lambda_smeft_value**2,'.6e'), '# cddAbs1221'], - [911, format(scaled_wc('dd_1133') * lambda_smeft_value**2,'.6e'), '# cddAbs1133'], - [912, format(scaled_wc('dd_1331') * lambda_smeft_value**2,'.6e'), '# cddAbs1331'], - [913, format(scaled_wc('dd_2222') * lambda_smeft_value**2,'.6e'), '# cddAbs2222'], - [914, format(scaled_wc('dd_2233') * lambda_smeft_value**2,'.6e'), '# cddAbs2233'], - [915, format(scaled_wc('dd_2332') * lambda_smeft_value**2,'.6e'), '# cddAbs2332'], - [916, format(scaled_wc('dd_3333') * lambda_smeft_value**2,'.6e'), '# cddAbs3333'], - [917, format(abs(scaled_wc('dd_1112')) * lambda_smeft_value**2,'.6e'), '# cddAbs1112'], - [918, format(abs(scaled_wc('dd_1113')) * lambda_smeft_value**2,'.6e'), '# cddAbs1113'], - [919, format(abs(scaled_wc('dd_1123')) * lambda_smeft_value**2,'.6e'), '# cddAbs1123'], - [920, format(abs(scaled_wc('dd_1212')) * lambda_smeft_value**2,'.6e'), '# cddAbs1212'], - [921, format(abs(scaled_wc('dd_1213')) * lambda_smeft_value**2,'.6e'), '# cddAbs1213'], - [922, format(abs(scaled_wc('dd_1231')) * lambda_smeft_value**2,'.6e'), '# cddAbs1231'], - [923, format(abs(scaled_wc('dd_1222')) * lambda_smeft_value**2,'.6e'), '# cddAbs1222'], - [924, format(abs(scaled_wc('dd_1223')) * lambda_smeft_value**2,'.6e'), '# cddAbs1223'], - [925, format(abs(scaled_wc('dd_1232')) * lambda_smeft_value**2,'.6e'), '# cddAbs1232'], - [926, format(abs(scaled_wc('dd_1233')) * lambda_smeft_value**2,'.6e'), '# cddAbs1233'], - [927, format(abs(scaled_wc('dd_1313')) * lambda_smeft_value**2,'.6e'), '# cddAbs1313'], - [928, format(abs(scaled_wc('dd_1322')) * lambda_smeft_value**2,'.6e'), '# cddAbs1322'], - [929, format(abs(scaled_wc('dd_1332')) * lambda_smeft_value**2,'.6e'), '# cddAbs1332'], - [930, format(abs(scaled_wc('dd_1323')) * lambda_smeft_value**2,'.6e'), '# cddAbs1323'], - [931, format(abs(scaled_wc('dd_1333')) * lambda_smeft_value**2,'.6e'), '# cddAbs1333'], - [932, format(abs(scaled_wc('dd_2223')) * lambda_smeft_value**2,'.6e'), '# cddAbs2223'], - [933, format(abs(scaled_wc('dd_2323')) * lambda_smeft_value**2,'.6e'), '# cddAbs2323'], - [934, format(abs(scaled_wc('dd_2333')) * lambda_smeft_value**2,'.6e'), '# cddAbs3323'], - [935, format(scaled_wc('eu_1111') * lambda_smeft_value**2,'.6e'), '# ceuAbs1111'], - [936, format(abs(scaled_wc('eu_1112')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1112'], - [937, format(abs(scaled_wc('eu_1113')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1113'], - [938, format(abs(scaled_wc('eu_1123')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1123'], - [939, format(scaled_wc('eu_1122') * lambda_smeft_value**2,'.6e'), '# ceuAbs1122'], - [940, format(scaled_wc('eu_1133') * lambda_smeft_value**2,'.6e'), '# ceuAbs1133'], - [941, format(abs(scaled_wc('eu_1211')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1211'], - [942, format(abs(scaled_wc('eu_1212')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1212'], - [943, format(abs(scaled_wc('eu_1221')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1221'], - [944, format(abs(scaled_wc('eu_1213')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1213'], - [945, format(abs(scaled_wc('eu_1231')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1231'], - [946, format(abs(scaled_wc('eu_1222')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1222'], - [947, format(abs(scaled_wc('eu_1223')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1223'], - [948, format(abs(scaled_wc('eu_1232')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1232'], - [949, format(abs(scaled_wc('eu_1233')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1233'], - [950, format(abs(scaled_wc('eu_1311')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1311'], - [951, format(abs(scaled_wc('eu_1312')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1312'], - [952, format(abs(scaled_wc('eu_1313')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1313'], - [953, format(abs(scaled_wc('eu_1331')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1331'], - [954, format(abs(scaled_wc('eu_1321')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1321'], - [955, format(abs(scaled_wc('eu_1322')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1322'], - [956, format(abs(scaled_wc('eu_1332')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1332'], - [957, format(abs(scaled_wc('eu_1323')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1323'], - [958, format(abs(scaled_wc('eu_1333')) * lambda_smeft_value**2,'.6e'), '# ceuAbs1333'], - [959, format(scaled_wc('eu_2211') * lambda_smeft_value**2,'.6e'), '# ceuAbs2211'], - [960, format(abs(scaled_wc('eu_2212')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2212'], - [961, format(abs(scaled_wc('eu_2213')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2213'], - [962, format(scaled_wc('eu_2222') * lambda_smeft_value**2,'.6e'), '# ceuAbs2222'], - [963, format(abs(scaled_wc('eu_2223')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2223'], - [964, format(scaled_wc('eu_2233') * lambda_smeft_value**2,'.6e'), '# ceuAbs2233'], - [965, format(abs(scaled_wc('eu_2311')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2311'], - [966, format(abs(scaled_wc('eu_2312')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2312'], - [967, format(abs(scaled_wc('eu_2313')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2313'], - [968, format(abs(scaled_wc('eu_2321')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2321'], - [969, format(abs(scaled_wc('eu_2322')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2322'], - [970, format(abs(scaled_wc('eu_2323')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2323'], - [971, format(abs(scaled_wc('eu_2331')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2331'], - [972, format(abs(scaled_wc('eu_2332')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2332'], - [973, format(abs(scaled_wc('eu_2333')) * lambda_smeft_value**2,'.6e'), '# ceuAbs2333'], - [974, format(scaled_wc('eu_3311') * lambda_smeft_value**2,'.6e'), '# ceuAbs3311'], - [975, format(abs(scaled_wc('eu_3312')) * lambda_smeft_value**2,'.6e'), '# ceuAbs3312'], - [976, format(abs(scaled_wc('eu_3313')) * lambda_smeft_value**2,'.6e'), '# ceuAbs3313'], - [977, format(scaled_wc('eu_3322') * lambda_smeft_value**2,'.6e'), '# ceuAbs3322'], - [978, format(scaled_wc('eu_3333') * lambda_smeft_value**2,'.6e'), '# ceuAbs3333'], - [979, format(abs(scaled_wc('eu_3323')) * lambda_smeft_value**2,'.6e'), '# ceuAbs3323'], - [980, format(scaled_wc('ed_1111') * lambda_smeft_value**2,'.6e'), '# cedAbs1111'], - [981, format(abs(scaled_wc('ed_1112')) * lambda_smeft_value**2,'.6e'), '# cedAbs1112'], - [982, format(abs(scaled_wc('ed_1113')) * lambda_smeft_value**2,'.6e'), '# cedAbs1113'], - [983, format(abs(scaled_wc('ed_1123')) * lambda_smeft_value**2,'.6e'), '# cedAbs1123'], - [984, format(scaled_wc('ed_1122') * lambda_smeft_value**2,'.6e'), '# cedAbs1122'], - [985, format(scaled_wc('ed_1133') * lambda_smeft_value**2,'.6e'), '# cedAbs1133'], - [986, format(abs(scaled_wc('ed_1211')) * lambda_smeft_value**2,'.6e'), '# cedAbs1211'], - [987, format(abs(scaled_wc('ed_1212')) * lambda_smeft_value**2,'.6e'), '# cedAbs1212'], - [988, format(abs(scaled_wc('ed_1221')) * lambda_smeft_value**2,'.6e'), '# cedAbs1221'], - [989, format(abs(scaled_wc('ed_1213')) * lambda_smeft_value**2,'.6e'), '# cedAbs1213'], - [990, format(abs(scaled_wc('ed_1231')) * lambda_smeft_value**2,'.6e'), '# cedAbs1231'], - [991, format(abs(scaled_wc('ed_1222')) * lambda_smeft_value**2,'.6e'), '# cedAbs1222'], - [992, format(abs(scaled_wc('ed_1223')) * lambda_smeft_value**2,'.6e'), '# cedAbs1223'], - [993, format(abs(scaled_wc('ed_1232')) * lambda_smeft_value**2,'.6e'), '# cedAbs1232'], - [994, format(abs(scaled_wc('ed_1233')) * lambda_smeft_value**2,'.6e'), '# cedAbs1233'], - [995, format(abs(scaled_wc('ed_1311')) * lambda_smeft_value**2,'.6e'), '# cedAbs1311'], - [996, format(abs(scaled_wc('ed_1312')) * lambda_smeft_value**2,'.6e'), '# cedAbs1312'], - [997, format(abs(scaled_wc('ed_1313')) * lambda_smeft_value**2,'.6e'), '# cedAbs1313'], - [998, format(abs(scaled_wc('ed_1331')) * lambda_smeft_value**2,'.6e'), '# cedAbs1331'], - [999, format(abs(scaled_wc('ed_1321')) * lambda_smeft_value**2,'.6e'), '# cedAbs1321'], - [1000, format(abs(scaled_wc('ed_1322')) * lambda_smeft_value**2,'.6e'), '# cedAbs1322'], - [1001, format(abs(scaled_wc('ed_1332')) * lambda_smeft_value**2,'.6e'), '# cedAbs1332'], - [1002, format(abs(scaled_wc('ed_1323')) * lambda_smeft_value**2,'.6e'), '# cedAbs1323'], - [1003, format(abs(scaled_wc('ed_1333')) * lambda_smeft_value**2,'.6e'), '# cedAbs1333'], - [1004, format(scaled_wc('ed_2211') * lambda_smeft_value**2,'.6e'), '# cedAbs2211'], - [1005, format(abs(scaled_wc('ed_2212')) * lambda_smeft_value**2,'.6e'), '# cedAbs2212'], - [1006, format(abs(scaled_wc('ed_2213')) * lambda_smeft_value**2,'.6e'), '# cedAbs2213'], - [1007, format(scaled_wc('ed_2222') * lambda_smeft_value**2,'.6e'), '# cedAbs2222'], - [1008, format(abs(scaled_wc('ed_2223')) * lambda_smeft_value**2,'.6e'), '# cedAbs2223'], - [1009, format(scaled_wc('ed_2233') * lambda_smeft_value**2,'.6e'), '# cedAbs2233'], - [1010, format(abs(scaled_wc('ed_2311')) * lambda_smeft_value**2,'.6e'), '# cedAbs2311'], - [1011, format(abs(scaled_wc('ed_2312')) * lambda_smeft_value**2,'.6e'), '# cedAbs2312'], - [1012, format(abs(scaled_wc('ed_2313')) * lambda_smeft_value**2,'.6e'), '# cedAbs2313'], - [1013, format(abs(scaled_wc('ed_2321')) * lambda_smeft_value**2,'.6e'), '# cedAbs2321'], - [1014, format(abs(scaled_wc('ed_2322')) * lambda_smeft_value**2,'.6e'), '# cedAbs2322'], - [1015, format(abs(scaled_wc('ed_2323')) * lambda_smeft_value**2,'.6e'), '# cedAbs2323'], - [1016, format(abs(scaled_wc('ed_2331')) * lambda_smeft_value**2,'.6e'), '# cedAbs2331'], - [1017, format(abs(scaled_wc('ed_2332')) * lambda_smeft_value**2,'.6e'), '# cedAbs2332'], - [1018, format(abs(scaled_wc('ed_2333')) * lambda_smeft_value**2,'.6e'), '# cedAbs2333'], - [1019, format(scaled_wc('ed_3311') * lambda_smeft_value**2,'.6e'), '# cedAbs3311'], - [1020, format(abs(scaled_wc('ed_3312')) * lambda_smeft_value**2,'.6e'), '# cedAbs3312'], - [1021, format(abs(scaled_wc('ed_3313')) * lambda_smeft_value**2,'.6e'), '# cedAbs3313'], - [1022, format(scaled_wc('ed_3322') * lambda_smeft_value**2,'.6e'), '# cedAbs3322'], - [1023, format(scaled_wc('ed_3333') * lambda_smeft_value**2,'.6e'), '# cedAbs3333'], - [1024, format(abs(scaled_wc('ed_3323')) * lambda_smeft_value**2,'.6e'), '# cedAbs3323'], - [1025, format(scaled_wc('ud1_1111') * lambda_smeft_value**2,'.6e'), '# cud1Abs1111'], - [1026, format(abs(scaled_wc('ud1_1112')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1112'], - [1027, format(abs(scaled_wc('ud1_1113')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1113'], - [1028, format(abs(scaled_wc('ud1_1123')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1123'], - [1029, format(scaled_wc('ud1_1122') * lambda_smeft_value**2,'.6e'), '# cud1Abs1122'], - [1030, format(scaled_wc('ud1_1133') * lambda_smeft_value**2,'.6e'), '# cud1Abs1133'], - [1031, format(abs(scaled_wc('ud1_1211')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1211'], - [1032, format(abs(scaled_wc('ud1_1212')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1212'], - [1033, format(abs(scaled_wc('ud1_1221')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1221'], - [1034, format(abs(scaled_wc('ud1_1213')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1213'], - [1035, format(abs(scaled_wc('ud1_1231')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1231'], - [1036, format(abs(scaled_wc('ud1_1222')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1222'], - [1037, format(abs(scaled_wc('ud1_1223')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1223'], - [1038, format(abs(scaled_wc('ud1_1232')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1232'], - [1039, format(abs(scaled_wc('ud1_1233')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1233'], - [1040, format(abs(scaled_wc('ud1_1311')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1311'], - [1041, format(abs(scaled_wc('ud1_1312')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1312'], - [1042, format(abs(scaled_wc('ud1_1313')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1313'], - [1043, format(abs(scaled_wc('ud1_1331')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1331'], - [1044, format(abs(scaled_wc('ud1_1321')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1321'], - [1045, format(abs(scaled_wc('ud1_1322')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1322'], - [1046, format(abs(scaled_wc('ud1_1332')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1332'], - [1047, format(abs(scaled_wc('ud1_1323')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1323'], - [1048, format(abs(scaled_wc('ud1_1333')) * lambda_smeft_value**2,'.6e'), '# cud1Abs1333'], - [1049, format(scaled_wc('ud1_2211') * lambda_smeft_value**2,'.6e'), '# cud1Abs2211'], - [1050, format(abs(scaled_wc('ud1_2212')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2212'], - [1051, format(abs(scaled_wc('ud1_2213')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2213'], - [1052, format(scaled_wc('ud1_2222') * lambda_smeft_value**2,'.6e'), '# cud1Abs2222'], - [1053, format(abs(scaled_wc('ud1_2223')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2223'], - [1054, format(scaled_wc('ud1_2233') * lambda_smeft_value**2,'.6e'), '# cud1Abs2233'], - [1055, format(abs(scaled_wc('ud1_2311')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2311'], - [1056, format(abs(scaled_wc('ud1_2312')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2312'], - [1057, format(abs(scaled_wc('ud1_2313')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2313'], - [1058, format(abs(scaled_wc('ud1_2321')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2321'], - [1059, format(abs(scaled_wc('ud1_2322')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2322'], - [1060, format(abs(scaled_wc('ud1_2323')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2323'], - [1061, format(abs(scaled_wc('ud1_2331')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2331'], - [1062, format(abs(scaled_wc('ud1_2332')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2332'], - [1063, format(abs(scaled_wc('ud1_2333')) * lambda_smeft_value**2,'.6e'), '# cud1Abs2333'], - [1064, format(scaled_wc('ud1_3311') * lambda_smeft_value**2,'.6e'), '# cud1Abs3311'], - [1065, format(abs(scaled_wc('ud1_3312')) * lambda_smeft_value**2,'.6e'), '# cud1Abs3312'], - [1066, format(abs(scaled_wc('ud1_3313')) * lambda_smeft_value**2,'.6e'), '# cud1Abs3313'], - [1067, format(scaled_wc('ud1_3322') * lambda_smeft_value**2,'.6e'), '# cud1Abs3322'], - [1068, format(scaled_wc('ud1_3333') * lambda_smeft_value**2,'.6e'), '# cud1Abs3333'], - [1069, format(abs(scaled_wc('ud1_3323')) * lambda_smeft_value**2,'.6e'), '# cud1Abs3323'], - [1070, format(scaled_wc('ud8_1111') * lambda_smeft_value**2,'.6e'), '# cud8Abs1111'], - [1071, format(abs(scaled_wc('ud8_1112')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1112'], - [1072, format(abs(scaled_wc('ud8_1113')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1113'], - [1073, format(abs(scaled_wc('ud8_1123')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1123'], - [1074, format(scaled_wc('ud8_1122') * lambda_smeft_value**2,'.6e'), '# cud8Abs1122'], - [1075, format(scaled_wc('ud8_1133') * lambda_smeft_value**2,'.6e'), '# cud8Abs1133'], - [1076, format(abs(scaled_wc('ud8_1211')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1211'], - [1077, format(abs(scaled_wc('ud8_1212')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1212'], - [1078, format(abs(scaled_wc('ud8_1221')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1221'], - [1079, format(abs(scaled_wc('ud8_1213')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1213'], - [1080, format(abs(scaled_wc('ud8_1231')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1231'], - [1081, format(abs(scaled_wc('ud8_1222')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1222'], - [1082, format(abs(scaled_wc('ud8_1223')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1223'], - [1083, format(abs(scaled_wc('ud8_1232')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1232'], - [1084, format(abs(scaled_wc('ud8_1233')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1233'], - [1085, format(abs(scaled_wc('ud8_1311')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1311'], - [1086, format(abs(scaled_wc('ud8_1312')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1312'], - [1087, format(abs(scaled_wc('ud8_1313')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1313'], - [1088, format(abs(scaled_wc('ud8_1331')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1331'], - [1089, format(abs(scaled_wc('ud8_1321')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1321'], - [1090, format(abs(scaled_wc('ud8_1322')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1322'], - [1091, format(abs(scaled_wc('ud8_1332')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1332'], - [1092, format(abs(scaled_wc('ud8_1323')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1323'], - [1093, format(abs(scaled_wc('ud8_1333')) * lambda_smeft_value**2,'.6e'), '# cud8Abs1333'], - [1094, format(scaled_wc('ud8_2211') * lambda_smeft_value**2,'.6e'), '# cud8Abs2211'], - [1095, format(abs(scaled_wc('ud8_2212')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2212'], - [1096, format(abs(scaled_wc('ud8_2213')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2213'], - [1097, format(scaled_wc('ud8_2222') * lambda_smeft_value**2,'.6e'), '# cud8Abs2222'], - [1098, format(abs(scaled_wc('ud8_2223')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2223'], - [1099, format(scaled_wc('ud8_2233') * lambda_smeft_value**2,'.6e'), '# cud8Abs2233'], - [1100, format(abs(scaled_wc('ud8_2311')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2311'], - [1101, format(abs(scaled_wc('ud8_2312')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2312'], - [1102, format(abs(scaled_wc('ud8_2313')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2313'], - [1103, format(abs(scaled_wc('ud8_2321')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2321'], - [1104, format(abs(scaled_wc('ud8_2322')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2322'], - [1105, format(abs(scaled_wc('ud8_2323')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2323'], - [1106, format(abs(scaled_wc('ud8_2331')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2331'], - [1107, format(abs(scaled_wc('ud8_2332')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2332'], - [1108, format(abs(scaled_wc('ud8_2333')) * lambda_smeft_value**2,'.6e'), '# cud8Abs2333'], - [1109, format(scaled_wc('ud8_3311') * lambda_smeft_value**2,'.6e'), '# cud8Abs3311'], - [1110, format(abs(scaled_wc('ud8_3312')) * lambda_smeft_value**2,'.6e'), '# cud8Abs3312'], - [1111, format(abs(scaled_wc('ud8_3313')) * lambda_smeft_value**2,'.6e'), '# cud8Abs3313'], - [1112, format(scaled_wc('ud8_3322') * lambda_smeft_value**2,'.6e'), '# cud8Abs3322'], - [1113, format(scaled_wc('ud8_3333') * lambda_smeft_value**2,'.6e'), '# cud8Abs3333'], - [1114, format(abs(scaled_wc('ud8_3323')) * lambda_smeft_value**2,'.6e'), '# cud8Abs3323'], - [1115, format(scaled_wc('le_1111') * lambda_smeft_value**2,'.6e'), '# cleAbs1111'], - [1116, format(abs(scaled_wc('le_1112')) * lambda_smeft_value**2,'.6e'), '# cleAbs1112'], - [1117, format(abs(scaled_wc('le_1113')) * lambda_smeft_value**2,'.6e'), '# cleAbs1113'], - [1118, format(abs(scaled_wc('le_1123')) * lambda_smeft_value**2,'.6e'), '# cleAbs1123'], - [1119, format(scaled_wc('le_1122') * lambda_smeft_value**2,'.6e'), '# cleAbs1122'], - [1120, format(scaled_wc('le_1133') * lambda_smeft_value**2,'.6e'), '# cleAbs1133'], - [1121, format(abs(scaled_wc('le_1211')) * lambda_smeft_value**2,'.6e'), '# cleAbs1211'], - [1122, format(abs(scaled_wc('le_1212')) * lambda_smeft_value**2,'.6e'), '# cleAbs1212'], - [1123, format(abs(scaled_wc('le_1221')) * lambda_smeft_value**2,'.6e'), '# cleAbs1221'], - [1124, format(abs(scaled_wc('le_1213')) * lambda_smeft_value**2,'.6e'), '# cleAbs1213'], - [1125, format(abs(scaled_wc('le_1231')) * lambda_smeft_value**2,'.6e'), '# cleAbs1231'], - [1126, format(abs(scaled_wc('le_1222')) * lambda_smeft_value**2,'.6e'), '# cleAbs1222'], - [1127, format(abs(scaled_wc('le_1223')) * lambda_smeft_value**2,'.6e'), '# cleAbs1223'], - [1128, format(abs(scaled_wc('le_1232')) * lambda_smeft_value**2,'.6e'), '# cleAbs1232'], - [1129, format(abs(scaled_wc('le_1233')) * lambda_smeft_value**2,'.6e'), '# cleAbs1233'], - [1130, format(abs(scaled_wc('le_1311')) * lambda_smeft_value**2,'.6e'), '# cleAbs1311'], - [1131, format(abs(scaled_wc('le_1312')) * lambda_smeft_value**2,'.6e'), '# cleAbs1312'], - [1132, format(abs(scaled_wc('le_1313')) * lambda_smeft_value**2,'.6e'), '# cleAbs1313'], - [1133, format(abs(scaled_wc('le_1331')) * lambda_smeft_value**2,'.6e'), '# cleAbs1331'], - [1134, format(abs(scaled_wc('le_1321')) * lambda_smeft_value**2,'.6e'), '# cleAbs1321'], - [1135, format(abs(scaled_wc('le_1322')) * lambda_smeft_value**2,'.6e'), '# cleAbs1322'], - [1136, format(abs(scaled_wc('le_1332')) * lambda_smeft_value**2,'.6e'), '# cleAbs1332'], - [1137, format(abs(scaled_wc('le_1323')) * lambda_smeft_value**2,'.6e'), '# cleAbs1323'], - [1138, format(abs(scaled_wc('le_1333')) * lambda_smeft_value**2,'.6e'), '# cleAbs1333'], - [1139, format(scaled_wc('le_2211') * lambda_smeft_value**2,'.6e'), '# cleAbs2211'], - [1140, format(abs(scaled_wc('le_2212')) * lambda_smeft_value**2,'.6e'), '# cleAbs2212'], - [1141, format(abs(scaled_wc('le_2213')) * lambda_smeft_value**2,'.6e'), '# cleAbs2213'], - [1142, format(scaled_wc('le_2222') * lambda_smeft_value**2,'.6e'), '# cleAbs2222'], - [1143, format(abs(scaled_wc('le_2223')) * lambda_smeft_value**2,'.6e'), '# cleAbs2223'], - [1144, format(scaled_wc('le_2233') * lambda_smeft_value**2,'.6e'), '# cleAbs2233'], - [1145, format(abs(scaled_wc('le_2311')) * lambda_smeft_value**2,'.6e'), '# cleAbs2311'], - [1146, format(abs(scaled_wc('le_2312')) * lambda_smeft_value**2,'.6e'), '# cleAbs2312'], - [1147, format(abs(scaled_wc('le_2313')) * lambda_smeft_value**2,'.6e'), '# cleAbs2313'], - [1148, format(abs(scaled_wc('le_2321')) * lambda_smeft_value**2,'.6e'), '# cleAbs2321'], - [1149, format(abs(scaled_wc('le_2322')) * lambda_smeft_value**2,'.6e'), '# cleAbs2322'], - [1150, format(abs(scaled_wc('le_2323')) * lambda_smeft_value**2,'.6e'), '# cleAbs2323'], - [1151, format(abs(scaled_wc('le_2331')) * lambda_smeft_value**2,'.6e'), '# cleAbs2331'], - [1152, format(abs(scaled_wc('le_2332')) * lambda_smeft_value**2,'.6e'), '# cleAbs2332'], - [1153, format(abs(scaled_wc('le_2333')) * lambda_smeft_value**2,'.6e'), '# cleAbs2333'], - [1154, format(scaled_wc('le_3311') * lambda_smeft_value**2,'.6e'), '# cleAbs3311'], - [1155, format(abs(scaled_wc('le_3312')) * lambda_smeft_value**2,'.6e'), '# cleAbs3312'], - [1156, format(abs(scaled_wc('le_3313')) * lambda_smeft_value**2,'.6e'), '# cleAbs3313'], - [1157, format(scaled_wc('le_3322') * lambda_smeft_value**2,'.6e'), '# cleAbs3322'], - [1158, format(scaled_wc('le_3333') * lambda_smeft_value**2,'.6e'), '# cleAbs3333'], - [1159, format(abs(scaled_wc('le_3323')) * lambda_smeft_value**2,'.6e'), '# cleAbs3323'], - [1160, format(scaled_wc('lu_1111') * lambda_smeft_value**2,'.6e'), '# cluAbs1111'], - [1161, format(abs(scaled_wc('lu_1112')) * lambda_smeft_value**2,'.6e'), '# cluAbs1112'], - [1162, format(abs(scaled_wc('lu_1113')) * lambda_smeft_value**2,'.6e'), '# cluAbs1113'], - [1163, format(abs(scaled_wc('lu_1123')) * lambda_smeft_value**2,'.6e'), '# cluAbs1123'], - [1164, format(scaled_wc('lu_1122') * lambda_smeft_value**2,'.6e'), '# cluAbs1122'], - [1165, format(scaled_wc('lu_1133') * lambda_smeft_value**2,'.6e'), '# cluAbs1133'], - [1166, format(abs(scaled_wc('lu_1211')) * lambda_smeft_value**2,'.6e'), '# cluAbs1211'], - [1167, format(abs(scaled_wc('lu_1212')) * lambda_smeft_value**2,'.6e'), '# cluAbs1212'], - [1168, format(abs(scaled_wc('lu_1221')) * lambda_smeft_value**2,'.6e'), '# cluAbs1221'], - [1169, format(abs(scaled_wc('lu_1213')) * lambda_smeft_value**2,'.6e'), '# cluAbs1213'], - [1170, format(abs(scaled_wc('lu_1231')) * lambda_smeft_value**2,'.6e'), '# cluAbs1231'], - [1171, format(abs(scaled_wc('lu_1222')) * lambda_smeft_value**2,'.6e'), '# cluAbs1222'], - [1172, format(abs(scaled_wc('lu_1223')) * lambda_smeft_value**2,'.6e'), '# cluAbs1223'], - [1173, format(abs(scaled_wc('lu_1232')) * lambda_smeft_value**2,'.6e'), '# cluAbs1232'], - [1174, format(abs(scaled_wc('lu_1233')) * lambda_smeft_value**2,'.6e'), '# cluAbs1233'], - [1175, format(abs(scaled_wc('lu_1311')) * lambda_smeft_value**2,'.6e'), '# cluAbs1311'], - [1176, format(abs(scaled_wc('lu_1312')) * lambda_smeft_value**2,'.6e'), '# cluAbs1312'], - [1177, format(abs(scaled_wc('lu_1313')) * lambda_smeft_value**2,'.6e'), '# cluAbs1313'], - [1178, format(abs(scaled_wc('lu_1331')) * lambda_smeft_value**2,'.6e'), '# cluAbs1331'], - [1179, format(abs(scaled_wc('lu_1321')) * lambda_smeft_value**2,'.6e'), '# cluAbs1321'], - [1180, format(abs(scaled_wc('lu_1322')) * lambda_smeft_value**2,'.6e'), '# cluAbs1322'], - [1181, format(abs(scaled_wc('lu_1332')) * lambda_smeft_value**2,'.6e'), '# cluAbs1332'], - [1182, format(abs(scaled_wc('lu_1323')) * lambda_smeft_value**2,'.6e'), '# cluAbs1323'], - [1183, format(abs(scaled_wc('lu_1333')) * lambda_smeft_value**2,'.6e'), '# cluAbs1333'], - [1184, format(scaled_wc('lu_2211') * lambda_smeft_value**2,'.6e'), '# cluAbs2211'], - [1185, format(abs(scaled_wc('lu_2212')) * lambda_smeft_value**2,'.6e'), '# cluAbs2212'], - [1186, format(abs(scaled_wc('lu_2213')) * lambda_smeft_value**2,'.6e'), '# cluAbs2213'], - [1187, format(scaled_wc('lu_2222') * lambda_smeft_value**2,'.6e'), '# cluAbs2222'], - [1188, format(abs(scaled_wc('lu_2223')) * lambda_smeft_value**2,'.6e'), '# cluAbs2223'], - [1189, format(scaled_wc('lu_2233') * lambda_smeft_value**2,'.6e'), '# cluAbs2233'], - [1190, format(abs(scaled_wc('lu_2311')) * lambda_smeft_value**2,'.6e'), '# cluAbs2311'], - [1191, format(abs(scaled_wc('lu_2312')) * lambda_smeft_value**2,'.6e'), '# cluAbs2312'], - [1192, format(abs(scaled_wc('lu_2313')) * lambda_smeft_value**2,'.6e'), '# cluAbs2313'], - [1193, format(abs(scaled_wc('lu_2321')) * lambda_smeft_value**2,'.6e'), '# cluAbs2321'], - [1194, format(abs(scaled_wc('lu_2322')) * lambda_smeft_value**2,'.6e'), '# cluAbs2322'], - [1195, format(abs(scaled_wc('lu_2323')) * lambda_smeft_value**2,'.6e'), '# cluAbs2323'], - [1196, format(abs(scaled_wc('lu_2331')) * lambda_smeft_value**2,'.6e'), '# cluAbs2331'], - [1197, format(abs(scaled_wc('lu_2332')) * lambda_smeft_value**2,'.6e'), '# cluAbs2332'], - [1198, format(abs(scaled_wc('lu_2333')) * lambda_smeft_value**2,'.6e'), '# cluAbs2333'], - [1199, format(scaled_wc('lu_3311') * lambda_smeft_value**2,'.6e'), '# cluAbs3311'], - [1200, format(abs(scaled_wc('lu_3312')) * lambda_smeft_value**2,'.6e'), '# cluAbs3312'], - [1201, format(abs(scaled_wc('lu_3313')) * lambda_smeft_value**2,'.6e'), '# cluAbs3313'], - [1202, format(scaled_wc('lu_3322') * lambda_smeft_value**2,'.6e'), '# cluAbs3322'], - [1203, format(scaled_wc('lu_3333') * lambda_smeft_value**2,'.6e'), '# cluAbs3333'], - [1204, format(abs(scaled_wc('lu_3323')) * lambda_smeft_value**2,'.6e'), '# cluAbs3323'], - [1205, format(scaled_wc('ld_1111') * lambda_smeft_value**2,'.6e'), '# cldAbs1111'], - [1206, format(abs(scaled_wc('ld_1112')) * lambda_smeft_value**2,'.6e'), '# cldAbs1112'], - [1207, format(abs(scaled_wc('ld_1113')) * lambda_smeft_value**2,'.6e'), '# cldAbs1113'], - [1208, format(abs(scaled_wc('ld_1123')) * lambda_smeft_value**2,'.6e'), '# cldAbs1123'], - [1209, format(scaled_wc('ld_1122') * lambda_smeft_value**2,'.6e'), '# cldAbs1122'], - [1210, format(scaled_wc('ld_1133') * lambda_smeft_value**2,'.6e'), '# cldAbs1133'], - [1211, format(abs(scaled_wc('ld_1211')) * lambda_smeft_value**2,'.6e'), '# cldAbs1211'], - [1212, format(abs(scaled_wc('ld_1212')) * lambda_smeft_value**2,'.6e'), '# cldAbs1212'], - [1213, format(abs(scaled_wc('ld_1221')) * lambda_smeft_value**2,'.6e'), '# cldAbs1221'], - [1214, format(abs(scaled_wc('ld_1213')) * lambda_smeft_value**2,'.6e'), '# cldAbs1213'], - [1215, format(abs(scaled_wc('ld_1231')) * lambda_smeft_value**2,'.6e'), '# cldAbs1231'], - [1216, format(abs(scaled_wc('ld_1222')) * lambda_smeft_value**2,'.6e'), '# cldAbs1222'], - [1217, format(abs(scaled_wc('ld_1223')) * lambda_smeft_value**2,'.6e'), '# cldAbs1223'], - [1218, format(abs(scaled_wc('ld_1232')) * lambda_smeft_value**2,'.6e'), '# cldAbs1232'], - [1219, format(abs(scaled_wc('ld_1233')) * lambda_smeft_value**2,'.6e'), '# cldAbs1233'], - [1220, format(abs(scaled_wc('ld_1311')) * lambda_smeft_value**2,'.6e'), '# cldAbs1311'], - [1221, format(abs(scaled_wc('ld_1312')) * lambda_smeft_value**2,'.6e'), '# cldAbs1312'], - [1222, format(abs(scaled_wc('ld_1313')) * lambda_smeft_value**2,'.6e'), '# cldAbs1313'], - [1223, format(abs(scaled_wc('ld_1331')) * lambda_smeft_value**2,'.6e'), '# cldAbs1331'], - [1224, format(abs(scaled_wc('ld_1321')) * lambda_smeft_value**2,'.6e'), '# cldAbs1321'], - [1225, format(abs(scaled_wc('ld_1322')) * lambda_smeft_value**2,'.6e'), '# cldAbs1322'], - [1226, format(abs(scaled_wc('ld_1332')) * lambda_smeft_value**2,'.6e'), '# cldAbs1332'], - [1227, format(abs(scaled_wc('ld_1323')) * lambda_smeft_value**2,'.6e'), '# cldAbs1323'], - [1228, format(abs(scaled_wc('ld_1333')) * lambda_smeft_value**2,'.6e'), '# cldAbs1333'], - [1229, format(scaled_wc('ld_2211') * lambda_smeft_value**2,'.6e'), '# cldAbs2211'], - [1230, format(abs(scaled_wc('ld_2212')) * lambda_smeft_value**2,'.6e'), '# cldAbs2212'], - [1231, format(abs(scaled_wc('ld_2213')) * lambda_smeft_value**2,'.6e'), '# cldAbs2213'], - [1232, format(scaled_wc('ld_2222') * lambda_smeft_value**2,'.6e'), '# cldAbs2222'], - [1233, format(abs(scaled_wc('ld_2223')) * lambda_smeft_value**2,'.6e'), '# cldAbs2223'], - [1234, format(scaled_wc('ld_2233') * lambda_smeft_value**2,'.6e'), '# cldAbs2233'], - [1235, format(abs(scaled_wc('ld_2311')) * lambda_smeft_value**2,'.6e'), '# cldAbs2311'], - [1236, format(abs(scaled_wc('ld_2312')) * lambda_smeft_value**2,'.6e'), '# cldAbs2312'], - [1237, format(abs(scaled_wc('ld_2313')) * lambda_smeft_value**2,'.6e'), '# cldAbs2313'], - [1238, format(abs(scaled_wc('ld_2321')) * lambda_smeft_value**2,'.6e'), '# cldAbs2321'], - [1239, format(abs(scaled_wc('ld_2322')) * lambda_smeft_value**2,'.6e'), '# cldAbs2322'], - [1240, format(abs(scaled_wc('ld_2323')) * lambda_smeft_value**2,'.6e'), '# cldAbs2323'], - [1241, format(abs(scaled_wc('ld_2331')) * lambda_smeft_value**2,'.6e'), '# cldAbs2331'], - [1242, format(abs(scaled_wc('ld_2332')) * lambda_smeft_value**2,'.6e'), '# cldAbs2332'], - [1243, format(abs(scaled_wc('ld_2333')) * lambda_smeft_value**2,'.6e'), '# cldAbs2333'], - [1244, format(scaled_wc('ld_3311') * lambda_smeft_value**2,'.6e'), '# cldAbs3311'], - [1245, format(abs(scaled_wc('ld_3312')) * lambda_smeft_value**2,'.6e'), '# cldAbs3312'], - [1246, format(abs(scaled_wc('ld_3313')) * lambda_smeft_value**2,'.6e'), '# cldAbs3313'], - [1247, format(scaled_wc('ld_3322') * lambda_smeft_value**2,'.6e'), '# cldAbs3322'], - [1248, format(scaled_wc('ld_3333') * lambda_smeft_value**2,'.6e'), '# cldAbs3333'], - [1249, format(abs(scaled_wc('ld_3323')) * lambda_smeft_value**2,'.6e'), '# cldAbs3323'], - [1250, format(scaled_wc('qe_1111') * lambda_smeft_value**2,'.6e'), '# cqeAbs1111'], - [1251, format(abs(scaled_wc('qe_1112')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1112'], - [1252, format(abs(scaled_wc('qe_1113')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1113'], - [1253, format(abs(scaled_wc('qe_1123')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1123'], - [1254, format(scaled_wc('qe_1122') * lambda_smeft_value**2,'.6e'), '# cqeAbs1122'], - [1255, format(scaled_wc('qe_1133') * lambda_smeft_value**2,'.6e'), '# cqeAbs1133'], - [1256, format(abs(scaled_wc('qe_1211')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1211'], - [1257, format(abs(scaled_wc('qe_1212')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1212'], - [1258, format(abs(scaled_wc('qe_1221')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1221'], - [1259, format(abs(scaled_wc('qe_1213')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1213'], - [1260, format(abs(scaled_wc('qe_1231')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1231'], - [1261, format(abs(scaled_wc('qe_1222')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1222'], - [1262, format(abs(scaled_wc('qe_1223')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1223'], - [1263, format(abs(scaled_wc('qe_1232')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1232'], - [1264, format(abs(scaled_wc('qe_1233')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1233'], - [1265, format(abs(scaled_wc('qe_1311')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1311'], - [1266, format(abs(scaled_wc('qe_1312')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1312'], - [1267, format(abs(scaled_wc('qe_1313')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1313'], - [1268, format(abs(scaled_wc('qe_1331')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1331'], - [1269, format(abs(scaled_wc('qe_1321')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1321'], - [1270, format(abs(scaled_wc('qe_1322')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1322'], - [1271, format(abs(scaled_wc('qe_1332')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1332'], - [1272, format(abs(scaled_wc('qe_1323')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1323'], - [1273, format(abs(scaled_wc('qe_1333')) * lambda_smeft_value**2,'.6e'), '# cqeAbs1333'], - [1274, format(scaled_wc('qe_2211') * lambda_smeft_value**2,'.6e'), '# cqeAbs2211'], - [1275, format(abs(scaled_wc('qe_2212')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2212'], - [1276, format(abs(scaled_wc('qe_2213')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2213'], - [1277, format(scaled_wc('qe_2222') * lambda_smeft_value**2,'.6e'), '# cqeAbs2222'], - [1278, format(abs(scaled_wc('qe_2223')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2223'], - [1279, format(scaled_wc('qe_2233') * lambda_smeft_value**2,'.6e'), '# cqeAbs2233'], - [1280, format(abs(scaled_wc('qe_2311')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2311'], - [1281, format(abs(scaled_wc('qe_2312')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2312'], - [1282, format(abs(scaled_wc('qe_2313')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2313'], - [1283, format(abs(scaled_wc('qe_2321')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2321'], - [1284, format(abs(scaled_wc('qe_2322')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2322'], - [1285, format(abs(scaled_wc('qe_2323')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2323'], - [1286, format(abs(scaled_wc('qe_2331')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2331'], - [1287, format(abs(scaled_wc('qe_2332')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2332'], - [1288, format(abs(scaled_wc('qe_2333')) * lambda_smeft_value**2,'.6e'), '# cqeAbs2333'], - [1289, format(scaled_wc('qe_3311') * lambda_smeft_value**2,'.6e'), '# cqeAbs3311'], - [1290, format(abs(scaled_wc('qe_3312')) * lambda_smeft_value**2,'.6e'), '# cqeAbs3312'], - [1291, format(abs(scaled_wc('qe_3313')) * lambda_smeft_value**2,'.6e'), '# cqeAbs3313'], - [1292, format(scaled_wc('qe_3322') * lambda_smeft_value**2,'.6e'), '# cqeAbs3322'], - [1293, format(scaled_wc('qe_3333') * lambda_smeft_value**2,'.6e'), '# cqeAbs3333'], - [1294, format(abs(scaled_wc('qe_3323')) * lambda_smeft_value**2,'.6e'), '# cqeAbs3323'], - [1295, format(scaled_wc('qu1_1111') * lambda_smeft_value**2,'.6e'), '# cqu1Abs1111'], - [1296, format(abs(scaled_wc('qu1_1112')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1112'], - [1297, format(abs(scaled_wc('qu1_1113')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1113'], - [1298, format(abs(scaled_wc('qu1_1123')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1123'], - [1299, format(scaled_wc('qu1_1122') * lambda_smeft_value**2,'.6e'), '# cqu1Abs1122'], - [1300, format(scaled_wc('qu1_1133') * lambda_smeft_value**2,'.6e'), '# cqu1Abs1133'], - [1301, format(abs(scaled_wc('qu1_1211')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1211'], - [1302, format(abs(scaled_wc('qu1_1212')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1212'], - [1303, format(abs(scaled_wc('qu1_1221')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1221'], - [1304, format(abs(scaled_wc('qu1_1213')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1213'], - [1305, format(abs(scaled_wc('qu1_1231')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1231'], - [1306, format(abs(scaled_wc('qu1_1222')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1222'], - [1307, format(abs(scaled_wc('qu1_1223')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1223'], - [1308, format(abs(scaled_wc('qu1_1232')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1232'], - [1309, format(abs(scaled_wc('qu1_1233')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1233'], - [1310, format(abs(scaled_wc('qu1_1311')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1311'], - [1311, format(abs(scaled_wc('qu1_1312')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1312'], - [1312, format(abs(scaled_wc('qu1_1313')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1313'], - [1313, format(abs(scaled_wc('qu1_1331')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1331'], - [1314, format(abs(scaled_wc('qu1_1321')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1321'], - [1315, format(abs(scaled_wc('qu1_1322')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1322'], - [1316, format(abs(scaled_wc('qu1_1332')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1332'], - [1317, format(abs(scaled_wc('qu1_1323')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1323'], - [1318, format(abs(scaled_wc('qu1_1333')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs1333'], - [1319, format(scaled_wc('qu1_2211') * lambda_smeft_value**2,'.6e'), '# cqu1Abs2211'], - [1320, format(abs(scaled_wc('qu1_2212')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2212'], - [1321, format(abs(scaled_wc('qu1_2213')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2213'], - [1322, format(scaled_wc('qu1_2222') * lambda_smeft_value**2,'.6e'), '# cqu1Abs2222'], - [1323, format(abs(scaled_wc('qu1_2223')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2223'], - [1324, format(scaled_wc('qu1_2233') * lambda_smeft_value**2,'.6e'), '# cqu1Abs2233'], - [1325, format(abs(scaled_wc('qu1_2311')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2311'], - [1326, format(abs(scaled_wc('qu1_2312')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2312'], - [1327, format(abs(scaled_wc('qu1_2313')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2313'], - [1328, format(abs(scaled_wc('qu1_2321')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2321'], - [1329, format(abs(scaled_wc('qu1_2322')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2322'], - [1330, format(abs(scaled_wc('qu1_2323')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2323'], - [1331, format(abs(scaled_wc('qu1_2331')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2331'], - [1332, format(abs(scaled_wc('qu1_2332')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2332'], - [1333, format(abs(scaled_wc('qu1_2333')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs2333'], - [1334, format(scaled_wc('qu1_3311') * lambda_smeft_value**2,'.6e'), '# cqu1Abs3311'], - [1335, format(abs(scaled_wc('qu1_3312')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs3312'], - [1336, format(abs(scaled_wc('qu1_3313')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs3313'], - [1337, format(scaled_wc('qu1_3322') * lambda_smeft_value**2,'.6e'), '# cqu1Abs3322'], - [1338, format(scaled_wc('qu1_3333') * lambda_smeft_value**2,'.6e'), '# cqu1Abs3333'], - [1339, format(abs(scaled_wc('qu1_3323')) * lambda_smeft_value**2,'.6e'), '# cqu1Abs3323'], - [1340, format(scaled_wc('qu8_1111') * lambda_smeft_value**2,'.6e'), '# cqu8Abs1111'], - [1341, format(abs(scaled_wc('qu8_1112')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1112'], - [1342, format(abs(scaled_wc('qu8_1113')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1113'], - [1343, format(abs(scaled_wc('qu8_1123')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1123'], - [1344, format(scaled_wc('qu8_1122') * lambda_smeft_value**2,'.6e'), '# cqu8Abs1122'], - [1345, format(scaled_wc('qu8_1133') * lambda_smeft_value**2,'.6e'), '# cqu8Abs1133'], - [1346, format(abs(scaled_wc('qu8_1211')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1211'], - [1347, format(abs(scaled_wc('qu8_1212')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1212'], - [1348, format(abs(scaled_wc('qu8_1221')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1221'], - [1349, format(abs(scaled_wc('qu8_1213')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1213'], - [1350, format(abs(scaled_wc('qu8_1231')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1231'], - [1351, format(abs(scaled_wc('qu8_1222')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1222'], - [1352, format(abs(scaled_wc('qu8_1223')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1223'], - [1353, format(abs(scaled_wc('qu8_1232')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1232'], - [1354, format(abs(scaled_wc('qu8_1233')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1233'], - [1355, format(abs(scaled_wc('qu8_1311')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1311'], - [1356, format(abs(scaled_wc('qu8_1312')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1312'], - [1357, format(abs(scaled_wc('qu8_1313')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1313'], - [1358, format(abs(scaled_wc('qu8_1331')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1331'], - [1359, format(abs(scaled_wc('qu8_1321')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1321'], - [1360, format(abs(scaled_wc('qu8_1322')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1322'], - [1361, format(abs(scaled_wc('qu8_1332')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1332'], - [1362, format(abs(scaled_wc('qu8_1323')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1323'], - [1363, format(abs(scaled_wc('qu8_1333')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs1333'], - [1364, format(scaled_wc('qu8_2211') * lambda_smeft_value**2,'.6e'), '# cqu8Abs2211'], - [1365, format(abs(scaled_wc('qu8_2212')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2212'], - [1366, format(abs(scaled_wc('qu8_2213')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2213'], - [1367, format(scaled_wc('qu8_2222') * lambda_smeft_value**2,'.6e'), '# cqu8Abs2222'], - [1368, format(abs(scaled_wc('qu8_2223')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2223'], - [1369, format(scaled_wc('qu8_2233') * lambda_smeft_value**2,'.6e'), '# cqu8Abs2233'], - [1370, format(abs(scaled_wc('qu8_2311')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2311'], - [1371, format(abs(scaled_wc('qu8_2312')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2312'], - [1372, format(abs(scaled_wc('qu8_2313')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2313'], - [1373, format(abs(scaled_wc('qu8_2321')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2321'], - [1374, format(abs(scaled_wc('qu8_2322')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2322'], - [1375, format(abs(scaled_wc('qu8_2323')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2323'], - [1376, format(abs(scaled_wc('qu8_2331')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2331'], - [1377, format(abs(scaled_wc('qu8_2332')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2332'], - [1378, format(abs(scaled_wc('qu8_2333')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs2333'], - [1379, format(scaled_wc('qu8_3311') * lambda_smeft_value**2,'.6e'), '# cqu8Abs3311'], - [1380, format(abs(scaled_wc('qu8_3312')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs3312'], - [1381, format(abs(scaled_wc('qu8_3313')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs3313'], - [1382, format(scaled_wc('qu8_3322') * lambda_smeft_value**2,'.6e'), '# cqu8Abs3322'], - [1383, format(scaled_wc('qu8_3333') * lambda_smeft_value**2,'.6e'), '# cqu8Abs3333'], - [1384, format(abs(scaled_wc('qu8_3323')) * lambda_smeft_value**2,'.6e'), '# cqu8Abs3323'], - [1385, format(scaled_wc('qd1_1111') * lambda_smeft_value**2,'.6e'), '# cqd1Abs1111'], - [1386, format(abs(scaled_wc('qd1_1112')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1112'], - [1387, format(abs(scaled_wc('qd1_1113')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1113'], - [1388, format(abs(scaled_wc('qd1_1123')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1123'], - [1389, format(scaled_wc('qd1_1122') * lambda_smeft_value**2,'.6e'), '# cqd1Abs1122'], - [1390, format(scaled_wc('qd1_1133') * lambda_smeft_value**2,'.6e'), '# cqd1Abs1133'], - [1391, format(abs(scaled_wc('qd1_1211')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1211'], - [1392, format(abs(scaled_wc('qd1_1212')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1212'], - [1393, format(abs(scaled_wc('qd1_1221')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1221'], - [1394, format(abs(scaled_wc('qd1_1213')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1213'], - [1395, format(abs(scaled_wc('qd1_1231')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1231'], - [1396, format(abs(scaled_wc('qd1_1222')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1222'], - [1397, format(abs(scaled_wc('qd1_1223')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1223'], - [1398, format(abs(scaled_wc('qd1_1232')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1232'], - [1399, format(abs(scaled_wc('qd1_1233')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1233'], - [1400, format(abs(scaled_wc('qd1_1311')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1311'], - [1401, format(abs(scaled_wc('qd1_1312')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1312'], - [1402, format(abs(scaled_wc('qd1_1313')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1313'], - [1403, format(abs(scaled_wc('qd1_1331')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1331'], - [1404, format(abs(scaled_wc('qd1_1321')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1321'], - [1405, format(abs(scaled_wc('qd1_1322')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1322'], - [1406, format(abs(scaled_wc('qd1_1332')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1332'], - [1407, format(abs(scaled_wc('qd1_1323')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1323'], - [1408, format(abs(scaled_wc('qd1_1333')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs1333'], - [1409, format(scaled_wc('qd1_2211') * lambda_smeft_value**2,'.6e'), '# cqd1Abs2211'], - [1410, format(abs(scaled_wc('qd1_2212')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2212'], - [1411, format(abs(scaled_wc('qd1_2213')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2213'], - [1412, format(scaled_wc('qd1_2222') * lambda_smeft_value**2,'.6e'), '# cqd1Abs2222'], - [1413, format(abs(scaled_wc('qd1_2223')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2223'], - [1414, format(scaled_wc('qd1_2233') * lambda_smeft_value**2,'.6e'), '# cqd1Abs2233'], - [1415, format(abs(scaled_wc('qd1_2311')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2311'], - [1416, format(abs(scaled_wc('qd1_2312')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2312'], - [1417, format(abs(scaled_wc('qd1_2313')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2313'], - [1418, format(abs(scaled_wc('qd1_2321')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2321'], - [1419, format(abs(scaled_wc('qd1_2322')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2322'], - [1420, format(abs(scaled_wc('qd1_2323')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2323'], - [1421, format(abs(scaled_wc('qd1_2331')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2331'], - [1422, format(abs(scaled_wc('qd1_2332')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2332'], - [1423, format(abs(scaled_wc('qd1_2333')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs2333'], - [1424, format(scaled_wc('qd1_3311') * lambda_smeft_value**2,'.6e'), '# cqd1Abs3311'], - [1425, format(abs(scaled_wc('qd1_3312')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs3312'], - [1426, format(abs(scaled_wc('qd1_3313')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs3313'], - [1427, format(scaled_wc('qd1_3322') * lambda_smeft_value**2,'.6e'), '# cqd1Abs3322'], - [1428, format(scaled_wc('qd1_3333') * lambda_smeft_value**2,'.6e'), '# cqd1Abs3333'], - [1429, format(abs(scaled_wc('qd1_3323')) * lambda_smeft_value**2,'.6e'), '# cqd1Abs3323'], - [1430, format(scaled_wc('qd8_1111') * lambda_smeft_value**2,'.6e'), '# cqd8Abs1111'], - [1431, format(abs(scaled_wc('qd8_1112')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1112'], - [1432, format(abs(scaled_wc('qd8_1113')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1113'], - [1433, format(abs(scaled_wc('qd8_1123')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1123'], - [1434, format(scaled_wc('qd8_1122') * lambda_smeft_value**2,'.6e'), '# cqd8Abs1122'], - [1435, format(scaled_wc('qd8_1133') * lambda_smeft_value**2,'.6e'), '# cqd8Abs1133'], - [1436, format(abs(scaled_wc('qd8_1211')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1211'], - [1437, format(abs(scaled_wc('qd8_1212')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1212'], - [1438, format(abs(scaled_wc('qd8_1221')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1221'], - [1439, format(abs(scaled_wc('qd8_1213')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1213'], - [1440, format(abs(scaled_wc('qd8_1231')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1231'], - [1441, format(abs(scaled_wc('qd8_1222')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1222'], - [1442, format(abs(scaled_wc('qd8_1223')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1223'], - [1443, format(abs(scaled_wc('qd8_1232')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1232'], - [1444, format(abs(scaled_wc('qd8_1233')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1233'], - [1445, format(abs(scaled_wc('qd8_1311')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1311'], - [1446, format(abs(scaled_wc('qd8_1312')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1312'], - [1447, format(abs(scaled_wc('qd8_1313')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1313'], - [1448, format(abs(scaled_wc('qd8_1331')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1331'], - [1449, format(abs(scaled_wc('qd8_1321')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1321'], - [1450, format(abs(scaled_wc('qd8_1322')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1322'], - [1451, format(abs(scaled_wc('qd8_1332')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1332'], - [1452, format(abs(scaled_wc('qd8_1323')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1323'], - [1453, format(abs(scaled_wc('qd8_1333')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs1333'], - [1454, format(scaled_wc('qd8_2211') * lambda_smeft_value**2,'.6e'), '# cqd8Abs2211'], - [1455, format(abs(scaled_wc('qd8_2212')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2212'], - [1456, format(abs(scaled_wc('qd8_2213')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2213'], - [1457, format(scaled_wc('qd8_2222') * lambda_smeft_value**2,'.6e'), '# cqd8Abs2222'], - [1458, format(abs(scaled_wc('qd8_2223')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2223'], - [1459, format(scaled_wc('qd8_2233') * lambda_smeft_value**2,'.6e'), '# cqd8Abs2233'], - [1460, format(abs(scaled_wc('qd8_2311')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2311'], - [1461, format(abs(scaled_wc('qd8_2312')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2312'], - [1462, format(abs(scaled_wc('qd8_2313')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2313'], - [1463, format(abs(scaled_wc('qd8_2321')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2321'], - [1464, format(abs(scaled_wc('qd8_2322')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2322'], - [1465, format(abs(scaled_wc('qd8_2323')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2323'], - [1466, format(abs(scaled_wc('qd8_2331')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2331'], - [1467, format(abs(scaled_wc('qd8_2332')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2332'], - [1468, format(abs(scaled_wc('qd8_2333')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs2333'], - [1469, format(scaled_wc('qd8_3311') * lambda_smeft_value**2,'.6e'), '# cqd8Abs3311'], - [1470, format(abs(scaled_wc('qd8_3312')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs3312'], - [1471, format(abs(scaled_wc('qd8_3313')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs3313'], - [1472, format(scaled_wc('qd8_3322') * lambda_smeft_value**2,'.6e'), '# cqd8Abs3322'], - [1473, format(scaled_wc('qd8_3333') * lambda_smeft_value**2,'.6e'), '# cqd8Abs3333'], - [1474, format(abs(scaled_wc('qd8_3323')) * lambda_smeft_value**2,'.6e'), '# cqd8Abs3323'] - ]} - - card['Block']['FRBlock10'] = {'values': [ - [1, 1, format(angle(scaled_wc('phiud_11')),'.6e'), '# cHudPh1x1'], - [1, 2, format(angle(scaled_wc('phiud_12')),'.6e'), '# cHudPh1x2'], - [1, 3, format(angle(scaled_wc('phiud_13')),'.6e'), '# cHudPh1x3'], - [2, 1, format(angle(scaled_wc('phiud_21')),'.6e'), '# cHudPh2x1'], - [2, 2, format(angle(scaled_wc('phiud_22')),'.6e'), '# cHudPh2x2'], - [2, 3, format(angle(scaled_wc('phiud_23')),'.6e'), '# cHudPh2x3'], - [3, 1, format(angle(scaled_wc('phiud_31')),'.6e'), '# cHudPh3x1'], - [3, 2, format(angle(scaled_wc('phiud_32')),'.6e'), '# cHudPh3x2'], - [3, 3, format(angle(scaled_wc('phiud_33')),'.6e'), '# cHudPh3x3'], - ]} - - card['Block']['FRBlock11'] = {'values': [ - [1, 1, format(angle(scaled_wc('ephi_11')),'.6e'), '# ceHPh1x1'], - [1, 2, format(angle(scaled_wc('ephi_12')),'.6e'), '# ceHPh1x2'], - [1, 3, format(angle(scaled_wc('ephi_13')),'.6e'), '# ceHPh1x3'], - [2, 1, format(angle(scaled_wc('ephi_21')),'.6e'), '# ceHPh2x1'], - [2, 2, format(angle(scaled_wc('ephi_22')),'.6e'), '# ceHPh2x2'], - [2, 3, format(angle(scaled_wc('ephi_23')),'.6e'), '# ceHPh2x3'], - [3, 1, format(angle(scaled_wc('ephi_31')),'.6e'), '# ceHPh3x1'], - [3, 2, format(angle(scaled_wc('ephi_32')),'.6e'), '# ceHPh3x2'], - [3, 3, format(angle(scaled_wc('ephi_33')),'.6e'), '# ceHPh3x3'], - ]} - - card['Block']['FRBlock12'] = {'values': [ - [1, 1, format(angle(scaled_wc('uphi_11')),'.6e'), '# cuHPh1x1'], - [1, 2, format(angle(scaled_wc('uphi_12')),'.6e'), '# cuHPh1x2'], - [1, 3, format(angle(scaled_wc('uphi_13')),'.6e'), '# cuHPh1x3'], - [2, 1, format(angle(scaled_wc('uphi_21')),'.6e'), '# cuHPh2x1'], - [2, 2, format(angle(scaled_wc('uphi_22')),'.6e'), '# cuHPh2x2'], - [2, 3, format(angle(scaled_wc('uphi_23')),'.6e'), '# cuHPh2x3'], - [3, 1, format(angle(scaled_wc('uphi_31')),'.6e'), '# cuHPh3x1'], - [3, 2, format(angle(scaled_wc('uphi_32')),'.6e'), '# cuHPh3x2'], - [3, 3, format(angle(scaled_wc('uphi_33')),'.6e'), '# cuHPh3x3'], - ]} - - card['Block']['FRBlock13'] = {'values': [ - [1, 1, format(angle(scaled_wc('dphi_11')),'.6e'), '# cdHPh1x1'], - [1, 2, format(angle(scaled_wc('dphi_12')),'.6e'), '# cdHPh1x2'], - [1, 3, format(angle(scaled_wc('dphi_13')),'.6e'), '# cdHPh1x3'], - [2, 1, format(angle(scaled_wc('dphi_21')),'.6e'), '# cdHPh2x1'], - [2, 2, format(angle(scaled_wc('dphi_22')),'.6e'), '# cdHPh2x2'], - [2, 3, format(angle(scaled_wc('dphi_23')),'.6e'), '# cdHPh2x3'], - [3, 1, format(angle(scaled_wc('dphi_31')),'.6e'), '# cdHPh3x1'], - [3, 2, format(angle(scaled_wc('dphi_32')),'.6e'), '# cdHPh3x2'], - [3, 3, format(angle(scaled_wc('dphi_33')),'.6e'), '# cdHPh3x3'], - ]} - - card['Block']['FRBlock14'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('ledq_1111')),'.6e'), '# cledqPh1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('ledq_1112')),'.6e'), '# cledqPh1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('ledq_1113')),'.6e'), '# cledqPh1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('ledq_1121')),'.6e'), '# cledqPh1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('ledq_1122')),'.6e'), '# cledqPh1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('ledq_1123')),'.6e'), '# cledqPh1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('ledq_1131')),'.6e'), '# cledqPh1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('ledq_1132')),'.6e'), '# cledqPh1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('ledq_1133')),'.6e'), '# cledqPh1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('ledq_1211')),'.6e'), '# cledqPh1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('ledq_1212')),'.6e'), '# cledqPh1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('ledq_1213')),'.6e'), '# cledqPh1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('ledq_1221')),'.6e'), '# cledqPh1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('ledq_1222')),'.6e'), '# cledqPh1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('ledq_1223')),'.6e'), '# cledqPh1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('ledq_1231')),'.6e'), '# cledqPh1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('ledq_1232')),'.6e'), '# cledqPh1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('ledq_1233')),'.6e'), '# cledqPh1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('ledq_1311')),'.6e'), '# cledqPh1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('ledq_1312')),'.6e'), '# cledqPh1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('ledq_1313')),'.6e'), '# cledqPh1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('ledq_1321')),'.6e'), '# cledqPh1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('ledq_1322')),'.6e'), '# cledqPh1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('ledq_1323')),'.6e'), '# cledqPh1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('ledq_1331')),'.6e'), '# cledqPh1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('ledq_1332')),'.6e'), '# cledqPh1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('ledq_1333')),'.6e'), '# cledqPh1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('ledq_2111')),'.6e'), '# cledqPh2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('ledq_2112')),'.6e'), '# cledqPh2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('ledq_2113')),'.6e'), '# cledqPh2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('ledq_2121')),'.6e'), '# cledqPh2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('ledq_2122')),'.6e'), '# cledqPh2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('ledq_2123')),'.6e'), '# cledqPh2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('ledq_2131')),'.6e'), '# cledqPh2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('ledq_2132')),'.6e'), '# cledqPh2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('ledq_2133')),'.6e'), '# cledqPh2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('ledq_2211')),'.6e'), '# cledqPh2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('ledq_2212')),'.6e'), '# cledqPh2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('ledq_2213')),'.6e'), '# cledqPh2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('ledq_2221')),'.6e'), '# cledqPh2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('ledq_2222')),'.6e'), '# cledqPh2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('ledq_2223')),'.6e'), '# cledqPh2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('ledq_2231')),'.6e'), '# cledqPh2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('ledq_2232')),'.6e'), '# cledqPh2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('ledq_2233')),'.6e'), '# cledqPh2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('ledq_2311')),'.6e'), '# cledqPh2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('ledq_2312')),'.6e'), '# cledqPh2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('ledq_2313')),'.6e'), '# cledqPh2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('ledq_2321')),'.6e'), '# cledqPh2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('ledq_2322')),'.6e'), '# cledqPh2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('ledq_2323')),'.6e'), '# cledqPh2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('ledq_2331')),'.6e'), '# cledqPh2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('ledq_2332')),'.6e'), '# cledqPh2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('ledq_2333')),'.6e'), '# cledqPh2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('ledq_3111')),'.6e'), '# cledqPh3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('ledq_3112')),'.6e'), '# cledqPh3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('ledq_3113')),'.6e'), '# cledqPh3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('ledq_3121')),'.6e'), '# cledqPh3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('ledq_3122')),'.6e'), '# cledqPh3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('ledq_3123')),'.6e'), '# cledqPh3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('ledq_3131')),'.6e'), '# cledqPh3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('ledq_3132')),'.6e'), '# cledqPh3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('ledq_3133')),'.6e'), '# cledqPh3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('ledq_3211')),'.6e'), '# cledqPh3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('ledq_3212')),'.6e'), '# cledqPh3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('ledq_3213')),'.6e'), '# cledqPh3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('ledq_3221')),'.6e'), '# cledqPh3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('ledq_3222')),'.6e'), '# cledqPh3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('ledq_3223')),'.6e'), '# cledqPh3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('ledq_3231')),'.6e'), '# cledqPh3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('ledq_3232')),'.6e'), '# cledqPh3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('ledq_3233')),'.6e'), '# cledqPh3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('ledq_3311')),'.6e'), '# cledqPh3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('ledq_3312')),'.6e'), '# cledqPh3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('ledq_3313')),'.6e'), '# cledqPh3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('ledq_3321')),'.6e'), '# cledqPh3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('ledq_3322')),'.6e'), '# cledqPh3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('ledq_3323')),'.6e'), '# cledqPh3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('ledq_3331')),'.6e'), '# cledqPh3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('ledq_3332')),'.6e'), '# cledqPh3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('ledq_3333')),'.6e'), '# cledqPh3x3x3x3'], - ]} - - card['Block']['FRBlock15'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('quqd1_1111')),'.6e'), '# cquqd1Ph1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('quqd1_1112')),'.6e'), '# cquqd1Ph1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('quqd1_1113')),'.6e'), '# cquqd1Ph1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('quqd1_1121')),'.6e'), '# cquqd1Ph1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('quqd1_1122')),'.6e'), '# cquqd1Ph1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('quqd1_1123')),'.6e'), '# cquqd1Ph1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('quqd1_1131')),'.6e'), '# cquqd1Ph1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('quqd1_1132')),'.6e'), '# cquqd1Ph1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('quqd1_1133')),'.6e'), '# cquqd1Ph1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('quqd1_1211')),'.6e'), '# cquqd1Ph1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('quqd1_1212')),'.6e'), '# cquqd1Ph1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('quqd1_1213')),'.6e'), '# cquqd1Ph1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('quqd1_1221')),'.6e'), '# cquqd1Ph1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('quqd1_1222')),'.6e'), '# cquqd1Ph1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('quqd1_1223')),'.6e'), '# cquqd1Ph1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('quqd1_1231')),'.6e'), '# cquqd1Ph1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('quqd1_1232')),'.6e'), '# cquqd1Ph1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('quqd1_1233')),'.6e'), '# cquqd1Ph1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('quqd1_1311')),'.6e'), '# cquqd1Ph1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('quqd1_1312')),'.6e'), '# cquqd1Ph1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('quqd1_1313')),'.6e'), '# cquqd1Ph1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('quqd1_1321')),'.6e'), '# cquqd1Ph1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('quqd1_1322')),'.6e'), '# cquqd1Ph1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('quqd1_1323')),'.6e'), '# cquqd1Ph1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('quqd1_1331')),'.6e'), '# cquqd1Ph1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('quqd1_1332')),'.6e'), '# cquqd1Ph1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('quqd1_1333')),'.6e'), '# cquqd1Ph1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('quqd1_2111')),'.6e'), '# cquqd1Ph2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('quqd1_2112')),'.6e'), '# cquqd1Ph2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('quqd1_2113')),'.6e'), '# cquqd1Ph2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('quqd1_2121')),'.6e'), '# cquqd1Ph2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('quqd1_2122')),'.6e'), '# cquqd1Ph2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('quqd1_2123')),'.6e'), '# cquqd1Ph2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('quqd1_2131')),'.6e'), '# cquqd1Ph2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('quqd1_2132')),'.6e'), '# cquqd1Ph2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('quqd1_2133')),'.6e'), '# cquqd1Ph2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('quqd1_2211')),'.6e'), '# cquqd1Ph2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('quqd1_2212')),'.6e'), '# cquqd1Ph2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('quqd1_2213')),'.6e'), '# cquqd1Ph2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('quqd1_2221')),'.6e'), '# cquqd1Ph2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('quqd1_2222')),'.6e'), '# cquqd1Ph2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('quqd1_2223')),'.6e'), '# cquqd1Ph2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('quqd1_2231')),'.6e'), '# cquqd1Ph2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('quqd1_2232')),'.6e'), '# cquqd1Ph2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('quqd1_2233')),'.6e'), '# cquqd1Ph2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('quqd1_2311')),'.6e'), '# cquqd1Ph2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('quqd1_2312')),'.6e'), '# cquqd1Ph2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('quqd1_2313')),'.6e'), '# cquqd1Ph2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('quqd1_2321')),'.6e'), '# cquqd1Ph2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('quqd1_2322')),'.6e'), '# cquqd1Ph2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('quqd1_2323')),'.6e'), '# cquqd1Ph2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('quqd1_2331')),'.6e'), '# cquqd1Ph2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('quqd1_2332')),'.6e'), '# cquqd1Ph2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('quqd1_2333')),'.6e'), '# cquqd1Ph2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('quqd1_3111')),'.6e'), '# cquqd1Ph3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('quqd1_3112')),'.6e'), '# cquqd1Ph3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('quqd1_3113')),'.6e'), '# cquqd1Ph3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('quqd1_3121')),'.6e'), '# cquqd1Ph3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('quqd1_3122')),'.6e'), '# cquqd1Ph3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('quqd1_3123')),'.6e'), '# cquqd1Ph3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('quqd1_3131')),'.6e'), '# cquqd1Ph3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('quqd1_3132')),'.6e'), '# cquqd1Ph3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('quqd1_3133')),'.6e'), '# cquqd1Ph3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('quqd1_3211')),'.6e'), '# cquqd1Ph3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('quqd1_3212')),'.6e'), '# cquqd1Ph3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('quqd1_3213')),'.6e'), '# cquqd1Ph3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('quqd1_3221')),'.6e'), '# cquqd1Ph3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('quqd1_3222')),'.6e'), '# cquqd1Ph3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('quqd1_3223')),'.6e'), '# cquqd1Ph3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('quqd1_3231')),'.6e'), '# cquqd1Ph3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('quqd1_3232')),'.6e'), '# cquqd1Ph3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('quqd1_3233')),'.6e'), '# cquqd1Ph3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('quqd1_3311')),'.6e'), '# cquqd1Ph3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('quqd1_3312')),'.6e'), '# cquqd1Ph3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('quqd1_3313')),'.6e'), '# cquqd1Ph3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('quqd1_3321')),'.6e'), '# cquqd1Ph3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('quqd1_3322')),'.6e'), '# cquqd1Ph3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('quqd1_3323')),'.6e'), '# cquqd1Ph3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('quqd1_3331')),'.6e'), '# cquqd1Ph3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('quqd1_3332')),'.6e'), '# cquqd1Ph3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('quqd1_3333')),'.6e'), '# cquqd1Ph3x3x3x3'], - ]} - - card['Block']['FRBlock16'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('quqd8_1111')),'.6e'), '# cquqd8Ph1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('quqd8_1112')),'.6e'), '# cquqd8Ph1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('quqd8_1113')),'.6e'), '# cquqd8Ph1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('quqd8_1121')),'.6e'), '# cquqd8Ph1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('quqd8_1122')),'.6e'), '# cquqd8Ph1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('quqd8_1123')),'.6e'), '# cquqd8Ph1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('quqd8_1131')),'.6e'), '# cquqd8Ph1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('quqd8_1132')),'.6e'), '# cquqd8Ph1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('quqd8_1133')),'.6e'), '# cquqd8Ph1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('quqd8_1211')),'.6e'), '# cquqd8Ph1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('quqd8_1212')),'.6e'), '# cquqd8Ph1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('quqd8_1213')),'.6e'), '# cquqd8Ph1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('quqd8_1221')),'.6e'), '# cquqd8Ph1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('quqd8_1222')),'.6e'), '# cquqd8Ph1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('quqd8_1223')),'.6e'), '# cquqd8Ph1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('quqd8_1231')),'.6e'), '# cquqd8Ph1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('quqd8_1232')),'.6e'), '# cquqd8Ph1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('quqd8_1233')),'.6e'), '# cquqd8Ph1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('quqd8_1311')),'.6e'), '# cquqd8Ph1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('quqd8_1312')),'.6e'), '# cquqd8Ph1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('quqd8_1313')),'.6e'), '# cquqd8Ph1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('quqd8_1321')),'.6e'), '# cquqd8Ph1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('quqd8_1322')),'.6e'), '# cquqd8Ph1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('quqd8_1323')),'.6e'), '# cquqd8Ph1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('quqd8_1331')),'.6e'), '# cquqd8Ph1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('quqd8_1332')),'.6e'), '# cquqd8Ph1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('quqd8_1333')),'.6e'), '# cquqd8Ph1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('quqd8_2111')),'.6e'), '# cquqd8Ph2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('quqd8_2112')),'.6e'), '# cquqd8Ph2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('quqd8_2113')),'.6e'), '# cquqd8Ph2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('quqd8_2121')),'.6e'), '# cquqd8Ph2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('quqd8_2122')),'.6e'), '# cquqd8Ph2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('quqd8_2123')),'.6e'), '# cquqd8Ph2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('quqd8_2131')),'.6e'), '# cquqd8Ph2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('quqd8_2132')),'.6e'), '# cquqd8Ph2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('quqd8_2133')),'.6e'), '# cquqd8Ph2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('quqd8_2211')),'.6e'), '# cquqd8Ph2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('quqd8_2212')),'.6e'), '# cquqd8Ph2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('quqd8_2213')),'.6e'), '# cquqd8Ph2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('quqd8_2221')),'.6e'), '# cquqd8Ph2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('quqd8_2222')),'.6e'), '# cquqd8Ph2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('quqd8_2223')),'.6e'), '# cquqd8Ph2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('quqd8_2231')),'.6e'), '# cquqd8Ph2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('quqd8_2232')),'.6e'), '# cquqd8Ph2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('quqd8_2233')),'.6e'), '# cquqd8Ph2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('quqd8_2311')),'.6e'), '# cquqd8Ph2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('quqd8_2312')),'.6e'), '# cquqd8Ph2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('quqd8_2313')),'.6e'), '# cquqd8Ph2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('quqd8_2321')),'.6e'), '# cquqd8Ph2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('quqd8_2322')),'.6e'), '# cquqd8Ph2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('quqd8_2323')),'.6e'), '# cquqd8Ph2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('quqd8_2331')),'.6e'), '# cquqd8Ph2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('quqd8_2332')),'.6e'), '# cquqd8Ph2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('quqd8_2333')),'.6e'), '# cquqd8Ph2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('quqd8_3111')),'.6e'), '# cquqd8Ph3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('quqd8_3112')),'.6e'), '# cquqd8Ph3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('quqd8_3113')),'.6e'), '# cquqd8Ph3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('quqd8_3121')),'.6e'), '# cquqd8Ph3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('quqd8_3122')),'.6e'), '# cquqd8Ph3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('quqd8_3123')),'.6e'), '# cquqd8Ph3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('quqd8_3131')),'.6e'), '# cquqd8Ph3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('quqd8_3132')),'.6e'), '# cquqd8Ph3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('quqd8_3133')),'.6e'), '# cquqd8Ph3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('quqd8_3211')),'.6e'), '# cquqd8Ph3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('quqd8_3212')),'.6e'), '# cquqd8Ph3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('quqd8_3213')),'.6e'), '# cquqd8Ph3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('quqd8_3221')),'.6e'), '# cquqd8Ph3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('quqd8_3222')),'.6e'), '# cquqd8Ph3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('quqd8_3223')),'.6e'), '# cquqd8Ph3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('quqd8_3231')),'.6e'), '# cquqd8Ph3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('quqd8_3232')),'.6e'), '# cquqd8Ph3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('quqd8_3233')),'.6e'), '# cquqd8Ph3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('quqd8_3311')),'.6e'), '# cquqd8Ph3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('quqd8_3312')),'.6e'), '# cquqd8Ph3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('quqd8_3313')),'.6e'), '# cquqd8Ph3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('quqd8_3321')),'.6e'), '# cquqd8Ph3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('quqd8_3322')),'.6e'), '# cquqd8Ph3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('quqd8_3323')),'.6e'), '# cquqd8Ph3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('quqd8_3331')),'.6e'), '# cquqd8Ph3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('quqd8_3332')),'.6e'), '# cquqd8Ph3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('quqd8_3333')),'.6e'), '# cquqd8Ph3x3x3x3'], - ]} - - card['Block']['FRBlock17'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('lequ1_1111')),'.6e'), '# clequ1Ph1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('lequ1_1112')),'.6e'), '# clequ1Ph1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('lequ1_1113')),'.6e'), '# clequ1Ph1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('lequ1_1121')),'.6e'), '# clequ1Ph1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('lequ1_1122')),'.6e'), '# clequ1Ph1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('lequ1_1123')),'.6e'), '# clequ1Ph1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('lequ1_1131')),'.6e'), '# clequ1Ph1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('lequ1_1132')),'.6e'), '# clequ1Ph1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('lequ1_1133')),'.6e'), '# clequ1Ph1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('lequ1_1211')),'.6e'), '# clequ1Ph1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('lequ1_1212')),'.6e'), '# clequ1Ph1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('lequ1_1213')),'.6e'), '# clequ1Ph1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('lequ1_1221')),'.6e'), '# clequ1Ph1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('lequ1_1222')),'.6e'), '# clequ1Ph1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('lequ1_1223')),'.6e'), '# clequ1Ph1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('lequ1_1231')),'.6e'), '# clequ1Ph1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('lequ1_1232')),'.6e'), '# clequ1Ph1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('lequ1_1233')),'.6e'), '# clequ1Ph1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('lequ1_1311')),'.6e'), '# clequ1Ph1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('lequ1_1312')),'.6e'), '# clequ1Ph1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('lequ1_1313')),'.6e'), '# clequ1Ph1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('lequ1_1321')),'.6e'), '# clequ1Ph1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('lequ1_1322')),'.6e'), '# clequ1Ph1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('lequ1_1323')),'.6e'), '# clequ1Ph1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('lequ1_1331')),'.6e'), '# clequ1Ph1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('lequ1_1332')),'.6e'), '# clequ1Ph1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('lequ1_1333')),'.6e'), '# clequ1Ph1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('lequ1_2111')),'.6e'), '# clequ1Ph2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('lequ1_2112')),'.6e'), '# clequ1Ph2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('lequ1_2113')),'.6e'), '# clequ1Ph2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('lequ1_2121')),'.6e'), '# clequ1Ph2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('lequ1_2122')),'.6e'), '# clequ1Ph2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('lequ1_2123')),'.6e'), '# clequ1Ph2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('lequ1_2131')),'.6e'), '# clequ1Ph2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('lequ1_2132')),'.6e'), '# clequ1Ph2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('lequ1_2133')),'.6e'), '# clequ1Ph2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('lequ1_2211')),'.6e'), '# clequ1Ph2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('lequ1_2212')),'.6e'), '# clequ1Ph2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('lequ1_2213')),'.6e'), '# clequ1Ph2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('lequ1_2221')),'.6e'), '# clequ1Ph2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('lequ1_2222')),'.6e'), '# clequ1Ph2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('lequ1_2223')),'.6e'), '# clequ1Ph2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('lequ1_2231')),'.6e'), '# clequ1Ph2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('lequ1_2232')),'.6e'), '# clequ1Ph2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('lequ1_2233')),'.6e'), '# clequ1Ph2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('lequ1_2311')),'.6e'), '# clequ1Ph2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('lequ1_2312')),'.6e'), '# clequ1Ph2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('lequ1_2313')),'.6e'), '# clequ1Ph2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('lequ1_2321')),'.6e'), '# clequ1Ph2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('lequ1_2322')),'.6e'), '# clequ1Ph2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('lequ1_2323')),'.6e'), '# clequ1Ph2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('lequ1_2331')),'.6e'), '# clequ1Ph2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('lequ1_2332')),'.6e'), '# clequ1Ph2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('lequ1_2333')),'.6e'), '# clequ1Ph2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('lequ1_3111')),'.6e'), '# clequ1Ph3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('lequ1_3112')),'.6e'), '# clequ1Ph3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('lequ1_3113')),'.6e'), '# clequ1Ph3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('lequ1_3121')),'.6e'), '# clequ1Ph3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('lequ1_3122')),'.6e'), '# clequ1Ph3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('lequ1_3123')),'.6e'), '# clequ1Ph3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('lequ1_3131')),'.6e'), '# clequ1Ph3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('lequ1_3132')),'.6e'), '# clequ1Ph3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('lequ1_3133')),'.6e'), '# clequ1Ph3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('lequ1_3211')),'.6e'), '# clequ1Ph3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('lequ1_3212')),'.6e'), '# clequ1Ph3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('lequ1_3213')),'.6e'), '# clequ1Ph3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('lequ1_3221')),'.6e'), '# clequ1Ph3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('lequ1_3222')),'.6e'), '# clequ1Ph3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('lequ1_3223')),'.6e'), '# clequ1Ph3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('lequ1_3231')),'.6e'), '# clequ1Ph3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('lequ1_3232')),'.6e'), '# clequ1Ph3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('lequ1_3233')),'.6e'), '# clequ1Ph3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('lequ1_3311')),'.6e'), '# clequ1Ph3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('lequ1_3312')),'.6e'), '# clequ1Ph3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('lequ1_3313')),'.6e'), '# clequ1Ph3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('lequ1_3321')),'.6e'), '# clequ1Ph3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('lequ1_3322')),'.6e'), '# clequ1Ph3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('lequ1_3323')),'.6e'), '# clequ1Ph3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('lequ1_3331')),'.6e'), '# clequ1Ph3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('lequ1_3332')),'.6e'), '# clequ1Ph3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('lequ1_3333')),'.6e'), '# clequ1Ph3x3x3x3'], - ]} - - card['Block']['FRBlock18'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('lequ3_1111')),'.6e'), '# clequ3Ph1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('lequ3_1112')),'.6e'), '# clequ3Ph1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('lequ3_1113')),'.6e'), '# clequ3Ph1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('lequ3_1121')),'.6e'), '# clequ3Ph1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('lequ3_1122')),'.6e'), '# clequ3Ph1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('lequ3_1123')),'.6e'), '# clequ3Ph1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('lequ3_1131')),'.6e'), '# clequ3Ph1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('lequ3_1132')),'.6e'), '# clequ3Ph1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('lequ3_1133')),'.6e'), '# clequ3Ph1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('lequ3_1211')),'.6e'), '# clequ3Ph1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('lequ3_1212')),'.6e'), '# clequ3Ph1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('lequ3_1213')),'.6e'), '# clequ3Ph1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('lequ3_1221')),'.6e'), '# clequ3Ph1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('lequ3_1222')),'.6e'), '# clequ3Ph1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('lequ3_1223')),'.6e'), '# clequ3Ph1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('lequ3_1231')),'.6e'), '# clequ3Ph1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('lequ3_1232')),'.6e'), '# clequ3Ph1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('lequ3_1233')),'.6e'), '# clequ3Ph1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('lequ3_1311')),'.6e'), '# clequ3Ph1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('lequ3_1312')),'.6e'), '# clequ3Ph1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('lequ3_1313')),'.6e'), '# clequ3Ph1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('lequ3_1321')),'.6e'), '# clequ3Ph1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('lequ3_1322')),'.6e'), '# clequ3Ph1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('lequ3_1323')),'.6e'), '# clequ3Ph1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('lequ3_1331')),'.6e'), '# clequ3Ph1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('lequ3_1332')),'.6e'), '# clequ3Ph1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('lequ3_1333')),'.6e'), '# clequ3Ph1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('lequ3_2111')),'.6e'), '# clequ3Ph2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('lequ3_2112')),'.6e'), '# clequ3Ph2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('lequ3_2113')),'.6e'), '# clequ3Ph2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('lequ3_2121')),'.6e'), '# clequ3Ph2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('lequ3_2122')),'.6e'), '# clequ3Ph2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('lequ3_2123')),'.6e'), '# clequ3Ph2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('lequ3_2131')),'.6e'), '# clequ3Ph2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('lequ3_2132')),'.6e'), '# clequ3Ph2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('lequ3_2133')),'.6e'), '# clequ3Ph2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('lequ3_2211')),'.6e'), '# clequ3Ph2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('lequ3_2212')),'.6e'), '# clequ3Ph2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('lequ3_2213')),'.6e'), '# clequ3Ph2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('lequ3_2221')),'.6e'), '# clequ3Ph2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('lequ3_2222')),'.6e'), '# clequ3Ph2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('lequ3_2223')),'.6e'), '# clequ3Ph2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('lequ3_2231')),'.6e'), '# clequ3Ph2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('lequ3_2232')),'.6e'), '# clequ3Ph2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('lequ3_2233')),'.6e'), '# clequ3Ph2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('lequ3_2311')),'.6e'), '# clequ3Ph2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('lequ3_2312')),'.6e'), '# clequ3Ph2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('lequ3_2313')),'.6e'), '# clequ3Ph2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('lequ3_2321')),'.6e'), '# clequ3Ph2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('lequ3_2322')),'.6e'), '# clequ3Ph2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('lequ3_2323')),'.6e'), '# clequ3Ph2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('lequ3_2331')),'.6e'), '# clequ3Ph2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('lequ3_2332')),'.6e'), '# clequ3Ph2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('lequ3_2333')),'.6e'), '# clequ3Ph2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('lequ3_3111')),'.6e'), '# clequ3Ph3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('lequ3_3112')),'.6e'), '# clequ3Ph3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('lequ3_3113')),'.6e'), '# clequ3Ph3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('lequ3_3121')),'.6e'), '# clequ3Ph3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('lequ3_3122')),'.6e'), '# clequ3Ph3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('lequ3_3123')),'.6e'), '# clequ3Ph3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('lequ3_3131')),'.6e'), '# clequ3Ph3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('lequ3_3132')),'.6e'), '# clequ3Ph3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('lequ3_3133')),'.6e'), '# clequ3Ph3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('lequ3_3211')),'.6e'), '# clequ3Ph3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('lequ3_3212')),'.6e'), '# clequ3Ph3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('lequ3_3213')),'.6e'), '# clequ3Ph3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('lequ3_3221')),'.6e'), '# clequ3Ph3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('lequ3_3222')),'.6e'), '# clequ3Ph3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('lequ3_3223')),'.6e'), '# clequ3Ph3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('lequ3_3231')),'.6e'), '# clequ3Ph3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('lequ3_3232')),'.6e'), '# clequ3Ph3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('lequ3_3233')),'.6e'), '# clequ3Ph3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('lequ3_3311')),'.6e'), '# clequ3Ph3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('lequ3_3312')),'.6e'), '# clequ3Ph3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('lequ3_3313')),'.6e'), '# clequ3Ph3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('lequ3_3321')),'.6e'), '# clequ3Ph3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('lequ3_3322')),'.6e'), '# clequ3Ph3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('lequ3_3323')),'.6e'), '# clequ3Ph3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('lequ3_3331')),'.6e'), '# clequ3Ph3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('lequ3_3332')),'.6e'), '# clequ3Ph3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('lequ3_3333')),'.6e'), '# clequ3Ph3x3x3x3'], - ]} - - card['Block']['FRBlock19'] = {'values': [ - [1, 1, format(abs(scaled_wc('ephi_11')) * lambda_smeft_value**2,'.6e'), '# ceHAbs1x1'], - [1, 2, format(abs(scaled_wc('ephi_12')) * lambda_smeft_value**2,'.6e'), '# ceHAbs1x2'], - [1, 3, format(abs(scaled_wc('ephi_13')) * lambda_smeft_value**2,'.6e'), '# ceHAbs1x3'], - [2, 1, format(abs(scaled_wc('ephi_21')) * lambda_smeft_value**2,'.6e'), '# ceHAbs2x1'], - [2, 2, format(abs(scaled_wc('ephi_22')) * lambda_smeft_value**2,'.6e'), '# ceHAbs2x2'], - [2, 3, format(abs(scaled_wc('ephi_23')) * lambda_smeft_value**2,'.6e'), '# ceHAbs2x3'], - [3, 1, format(abs(scaled_wc('ephi_31')) * lambda_smeft_value**2,'.6e'), '# ceHAbs3x1'], - [3, 2, format(abs(scaled_wc('ephi_32')) * lambda_smeft_value**2,'.6e'), '# ceHAbs3x2'], - [3, 3, format(abs(scaled_wc('ephi_33')) * lambda_smeft_value**2,'.6e'), '# ceHAbs3x3'], - ]} - - card['Block']['FRBlock2'] = {'values': [ - [1, 1, format(angle(scaled_wc('eW_11')),'.6e'), '# ceWPh1x1'], - [1, 2, format(angle(scaled_wc('eW_12')),'.6e'), '# ceWPh1x2'], - [1, 3, format(angle(scaled_wc('eW_13')),'.6e'), '# ceWPh1x3'], - [2, 1, format(angle(scaled_wc('eW_21')),'.6e'), '# ceWPh2x1'], - [2, 2, format(angle(scaled_wc('eW_22')),'.6e'), '# ceWPh2x2'], - [2, 3, format(angle(scaled_wc('eW_23')),'.6e'), '# ceWPh2x3'], - [3, 1, format(angle(scaled_wc('eW_31')),'.6e'), '# ceWPh3x1'], - [3, 2, format(angle(scaled_wc('eW_32')),'.6e'), '# ceWPh3x2'], - [3, 3, format(angle(scaled_wc('eW_33')),'.6e'), '# ceWPh3x3'], - ]} - - card['Block']['FRBlock20'] = {'values': [ - [1, 1, format(abs(scaled_wc('uphi_11')) * lambda_smeft_value**2,'.6e'), '# cuHAbs1x1'], - [1, 2, format(abs(scaled_wc('uphi_12')) * lambda_smeft_value**2,'.6e'), '# cuHAbs1x2'], - [1, 3, format(abs(scaled_wc('uphi_13')) * lambda_smeft_value**2,'.6e'), '# cuHAbs1x3'], - [2, 1, format(abs(scaled_wc('uphi_21')) * lambda_smeft_value**2,'.6e'), '# cuHAbs2x1'], - [2, 2, format(abs(scaled_wc('uphi_22')) * lambda_smeft_value**2,'.6e'), '# cuHAbs2x2'], - [2, 3, format(abs(scaled_wc('uphi_23')) * lambda_smeft_value**2,'.6e'), '# cuHAbs2x3'], - [3, 1, format(abs(scaled_wc('uphi_31')) * lambda_smeft_value**2,'.6e'), '# cuHAbs3x1'], - [3, 2, format(abs(scaled_wc('uphi_32')) * lambda_smeft_value**2,'.6e'), '# cuHAbs3x2'], - [3, 3, format(abs(scaled_wc('uphi_33')) * lambda_smeft_value**2,'.6e'), '# cuHAbs3x3'], - ]} - - card['Block']['FRBlock21'] = {'values': [ - [1, 1, format(abs(scaled_wc('dphi_11')) * lambda_smeft_value**2,'.6e'), '# cdHAbs1x1'], - [1, 2, format(abs(scaled_wc('dphi_12')) * lambda_smeft_value**2,'.6e'), '# cdHAbs1x2'], - [1, 3, format(abs(scaled_wc('dphi_13')) * lambda_smeft_value**2,'.6e'), '# cdHAbs1x3'], - [2, 1, format(abs(scaled_wc('dphi_21')) * lambda_smeft_value**2,'.6e'), '# cdHAbs2x1'], - [2, 2, format(abs(scaled_wc('dphi_22')) * lambda_smeft_value**2,'.6e'), '# cdHAbs2x2'], - [2, 3, format(abs(scaled_wc('dphi_23')) * lambda_smeft_value**2,'.6e'), '# cdHAbs2x3'], - [3, 1, format(abs(scaled_wc('dphi_31')) * lambda_smeft_value**2,'.6e'), '# cdHAbs3x1'], - [3, 2, format(abs(scaled_wc('dphi_32')) * lambda_smeft_value**2,'.6e'), '# cdHAbs3x2'], - [3, 3, format(abs(scaled_wc('dphi_33')) * lambda_smeft_value**2,'.6e'), '# cdHAbs3x3'], - ]} - - card['Block']['FRBlock25'] = {'values': [ - [1, 1, format(abs(scaled_wc('eW_11')) * lambda_smeft_value**2,'.6e'), '# ceWAbs1x1'], - [1, 2, format(abs(scaled_wc('eW_12')) * lambda_smeft_value**2,'.6e'), '# ceWAbs1x2'], - [1, 3, format(abs(scaled_wc('eW_13')) * lambda_smeft_value**2,'.6e'), '# ceWAbs1x3'], - [2, 1, format(abs(scaled_wc('eW_21')) * lambda_smeft_value**2,'.6e'), '# ceWAbs2x1'], - [2, 2, format(abs(scaled_wc('eW_22')) * lambda_smeft_value**2,'.6e'), '# ceWAbs2x2'], - [2, 3, format(abs(scaled_wc('eW_23')) * lambda_smeft_value**2,'.6e'), '# ceWAbs2x3'], - [3, 1, format(abs(scaled_wc('eW_31')) * lambda_smeft_value**2,'.6e'), '# ceWAbs3x1'], - [3, 2, format(abs(scaled_wc('eW_32')) * lambda_smeft_value**2,'.6e'), '# ceWAbs3x2'], - [3, 3, format(abs(scaled_wc('eW_33')) * lambda_smeft_value**2,'.6e'), '# ceWAbs3x3'], - ]} - - card['Block']['FRBlock26'] = {'values': [ - [1, 1, format(abs(scaled_wc('eB_11')) * lambda_smeft_value**2,'.6e'), '# ceBAbs1x1'], - [1, 2, format(abs(scaled_wc('eB_12')) * lambda_smeft_value**2,'.6e'), '# ceBAbs1x2'], - [1, 3, format(abs(scaled_wc('eB_13')) * lambda_smeft_value**2,'.6e'), '# ceBAbs1x3'], - [2, 1, format(abs(scaled_wc('eB_21')) * lambda_smeft_value**2,'.6e'), '# ceBAbs2x1'], - [2, 2, format(abs(scaled_wc('eB_22')) * lambda_smeft_value**2,'.6e'), '# ceBAbs2x2'], - [2, 3, format(abs(scaled_wc('eB_23')) * lambda_smeft_value**2,'.6e'), '# ceBAbs2x3'], - [3, 1, format(abs(scaled_wc('eB_31')) * lambda_smeft_value**2,'.6e'), '# ceBAbs3x1'], - [3, 2, format(abs(scaled_wc('eB_32')) * lambda_smeft_value**2,'.6e'), '# ceBAbs3x2'], - [3, 3, format(abs(scaled_wc('eB_33')) * lambda_smeft_value**2,'.6e'), '# ceBAbs3x3'], - ]} - - card['Block']['FRBlock27'] = {'values': [ - [1, 1, format(abs(scaled_wc('uG_11')) * lambda_smeft_value**2,'.6e'), '# cuGAbs1x1'], - [1, 2, format(abs(scaled_wc('uG_12')) * lambda_smeft_value**2,'.6e'), '# cuGAbs1x2'], - [1, 3, format(abs(scaled_wc('uG_13')) * lambda_smeft_value**2,'.6e'), '# cuGAbs1x3'], - [2, 1, format(abs(scaled_wc('uG_21')) * lambda_smeft_value**2,'.6e'), '# cuGAbs2x1'], - [2, 2, format(abs(scaled_wc('uG_22')) * lambda_smeft_value**2,'.6e'), '# cuGAbs2x2'], - [2, 3, format(abs(scaled_wc('uG_23')) * lambda_smeft_value**2,'.6e'), '# cuGAbs2x3'], - [3, 1, format(abs(scaled_wc('uG_31')) * lambda_smeft_value**2,'.6e'), '# cuGAbs3x1'], - [3, 2, format(abs(scaled_wc('uG_32')) * lambda_smeft_value**2,'.6e'), '# cuGAbs3x2'], - [3, 3, format(abs(scaled_wc('uG_33')) * lambda_smeft_value**2,'.6e'), '# cuGAbs3x3'], - ]} - - card['Block']['FRBlock28'] = {'values': [ - [1, 1, format(abs(scaled_wc('uW_11')) * lambda_smeft_value**2,'.6e'), '# cuWAbs1x1'], - [1, 2, format(abs(scaled_wc('uW_12')) * lambda_smeft_value**2,'.6e'), '# cuWAbs1x2'], - [1, 3, format(abs(scaled_wc('uW_13')) * lambda_smeft_value**2,'.6e'), '# cuWAbs1x3'], - [2, 1, format(abs(scaled_wc('uW_21')) * lambda_smeft_value**2,'.6e'), '# cuWAbs2x1'], - [2, 2, format(abs(scaled_wc('uW_22')) * lambda_smeft_value**2,'.6e'), '# cuWAbs2x2'], - [2, 3, format(abs(scaled_wc('uW_23')) * lambda_smeft_value**2,'.6e'), '# cuWAbs2x3'], - [3, 1, format(abs(scaled_wc('uW_31')) * lambda_smeft_value**2,'.6e'), '# cuWAbs3x1'], - [3, 2, format(abs(scaled_wc('uW_32')) * lambda_smeft_value**2,'.6e'), '# cuWAbs3x2'], - [3, 3, format(abs(scaled_wc('uW_33')) * lambda_smeft_value**2,'.6e'), '# cuWAbs3x3'], - ]} - - card['Block']['FRBlock29'] = {'values': [ - [1, 1, format(abs(scaled_wc('uB_11')) * lambda_smeft_value**2,'.6e'), '# cuBAbs1x1'], - [1, 2, format(abs(scaled_wc('uB_12')) * lambda_smeft_value**2,'.6e'), '# cuBAbs1x2'], - [1, 3, format(abs(scaled_wc('uB_13')) * lambda_smeft_value**2,'.6e'), '# cuBAbs1x3'], - [2, 1, format(abs(scaled_wc('uB_21')) * lambda_smeft_value**2,'.6e'), '# cuBAbs2x1'], - [2, 2, format(abs(scaled_wc('uB_22')) * lambda_smeft_value**2,'.6e'), '# cuBAbs2x2'], - [2, 3, format(abs(scaled_wc('uB_23')) * lambda_smeft_value**2,'.6e'), '# cuBAbs2x3'], - [3, 1, format(abs(scaled_wc('uB_31')) * lambda_smeft_value**2,'.6e'), '# cuBAbs3x1'], - [3, 2, format(abs(scaled_wc('uB_32')) * lambda_smeft_value**2,'.6e'), '# cuBAbs3x2'], - [3, 3, format(abs(scaled_wc('uB_33')) * lambda_smeft_value**2,'.6e'), '# cuBAbs3x3'], - ]} - - card['Block']['FRBlock3'] = {'values': [ - [1, 1, format(angle(scaled_wc('eB_11')),'.6e'), '# ceBPh1x1'], - [1, 2, format(angle(scaled_wc('eB_12')),'.6e'), '# ceBPh1x2'], - [1, 3, format(angle(scaled_wc('eB_13')),'.6e'), '# ceBPh1x3'], - [2, 1, format(angle(scaled_wc('eB_21')),'.6e'), '# ceBPh2x1'], - [2, 2, format(angle(scaled_wc('eB_22')),'.6e'), '# ceBPh2x2'], - [2, 3, format(angle(scaled_wc('eB_23')),'.6e'), '# ceBPh2x3'], - [3, 1, format(angle(scaled_wc('eB_31')),'.6e'), '# ceBPh3x1'], - [3, 2, format(angle(scaled_wc('eB_32')),'.6e'), '# ceBPh3x2'], - [3, 3, format(angle(scaled_wc('eB_33')),'.6e'), '# ceBPh3x3'], - ]} - - card['Block']['FRBlock30'] = {'values': [ - [1, 1, format(abs(scaled_wc('dG_11')) * lambda_smeft_value**2,'.6e'), '# cdGAbs1x1'], - [1, 2, format(abs(scaled_wc('dG_12')) * lambda_smeft_value**2,'.6e'), '# cdGAbs1x2'], - [1, 3, format(abs(scaled_wc('dG_13')) * lambda_smeft_value**2,'.6e'), '# cdGAbs1x3'], - [2, 1, format(abs(scaled_wc('dG_21')) * lambda_smeft_value**2,'.6e'), '# cdGAbs2x1'], - [2, 2, format(abs(scaled_wc('dG_22')) * lambda_smeft_value**2,'.6e'), '# cdGAbs2x2'], - [2, 3, format(abs(scaled_wc('dG_23')) * lambda_smeft_value**2,'.6e'), '# cdGAbs2x3'], - [3, 1, format(abs(scaled_wc('dG_31')) * lambda_smeft_value**2,'.6e'), '# cdGAbs3x1'], - [3, 2, format(abs(scaled_wc('dG_32')) * lambda_smeft_value**2,'.6e'), '# cdGAbs3x2'], - [3, 3, format(abs(scaled_wc('dG_33')) * lambda_smeft_value**2,'.6e'), '# cdGAbs3x3'], - ]} - - card['Block']['FRBlock31'] = {'values': [ - [1, 1, format(abs(scaled_wc('dW_11')) * lambda_smeft_value**2,'.6e'), '# cdWAbs1x1'], - [1, 2, format(abs(scaled_wc('dW_12')) * lambda_smeft_value**2,'.6e'), '# cdWAbs1x2'], - [1, 3, format(abs(scaled_wc('dW_13')) * lambda_smeft_value**2,'.6e'), '# cdWAbs1x3'], - [2, 1, format(abs(scaled_wc('dW_21')) * lambda_smeft_value**2,'.6e'), '# cdWAbs2x1'], - [2, 2, format(abs(scaled_wc('dW_22')) * lambda_smeft_value**2,'.6e'), '# cdWAbs2x2'], - [2, 3, format(abs(scaled_wc('dW_23')) * lambda_smeft_value**2,'.6e'), '# cdWAbs2x3'], - [3, 1, format(abs(scaled_wc('dW_31')) * lambda_smeft_value**2,'.6e'), '# cdWAbs3x1'], - [3, 2, format(abs(scaled_wc('dW_32')) * lambda_smeft_value**2,'.6e'), '# cdWAbs3x2'], - [3, 3, format(abs(scaled_wc('dW_33')) * lambda_smeft_value**2,'.6e'), '# cdWAbs3x3'], - ]} - - card['Block']['FRBlock32'] = {'values': [ - [1, 1, format(abs(scaled_wc('dB_11')) * lambda_smeft_value**2,'.6e'), '# cdBAbs1x1'], - [1, 2, format(abs(scaled_wc('dB_12')) * lambda_smeft_value**2,'.6e'), '# cdBAbs1x2'], - [1, 3, format(abs(scaled_wc('dB_13')) * lambda_smeft_value**2,'.6e'), '# cdBAbs1x3'], - [2, 1, format(abs(scaled_wc('dB_21')) * lambda_smeft_value**2,'.6e'), '# cdBAbs2x1'], - [2, 2, format(abs(scaled_wc('dB_22')) * lambda_smeft_value**2,'.6e'), '# cdBAbs2x2'], - [2, 3, format(abs(scaled_wc('dB_23')) * lambda_smeft_value**2,'.6e'), '# cdBAbs2x3'], - [3, 1, format(abs(scaled_wc('dB_31')) * lambda_smeft_value**2,'.6e'), '# cdBAbs3x1'], - [3, 2, format(abs(scaled_wc('dB_32')) * lambda_smeft_value**2,'.6e'), '# cdBAbs3x2'], - [3, 3, format(abs(scaled_wc('dB_33')) * lambda_smeft_value**2,'.6e'), '# cdBAbs3x3'], - ]} - - card['Block']['FRBlock4'] = {'values': [ - [1, 1, format(angle(scaled_wc('uG_11')),'.6e'), '# cuGPh1x1'], - [1, 2, format(angle(scaled_wc('uG_12')),'.6e'), '# cuGPh1x2'], - [1, 3, format(angle(scaled_wc('uG_13')),'.6e'), '# cuGPh1x3'], - [2, 1, format(angle(scaled_wc('uG_21')),'.6e'), '# cuGPh2x1'], - [2, 2, format(angle(scaled_wc('uG_22')),'.6e'), '# cuGPh2x2'], - [2, 3, format(angle(scaled_wc('uG_23')),'.6e'), '# cuGPh2x3'], - [3, 1, format(angle(scaled_wc('uG_31')),'.6e'), '# cuGPh3x1'], - [3, 2, format(angle(scaled_wc('uG_32')),'.6e'), '# cuGPh3x2'], - [3, 3, format(angle(scaled_wc('uG_33')),'.6e'), '# cuGPh3x3'], - ]} - - card['Block']['FRBlock48'] = {'values': [ - [1, 1, format(abs(scaled_wc('phiud_11')) * lambda_smeft_value**2,'.6e'), '# cHudAbs1x1'], - [1, 2, format(abs(scaled_wc('phiud_12')) * lambda_smeft_value**2,'.6e'), '# cHudAbs1x2'], - [1, 3, format(abs(scaled_wc('phiud_13')) * lambda_smeft_value**2,'.6e'), '# cHudAbs1x3'], - [2, 1, format(abs(scaled_wc('phiud_21')) * lambda_smeft_value**2,'.6e'), '# cHudAbs2x1'], - [2, 2, format(abs(scaled_wc('phiud_22')) * lambda_smeft_value**2,'.6e'), '# cHudAbs2x2'], - [2, 3, format(abs(scaled_wc('phiud_23')) * lambda_smeft_value**2,'.6e'), '# cHudAbs2x3'], - [3, 1, format(abs(scaled_wc('phiud_31')) * lambda_smeft_value**2,'.6e'), '# cHudAbs3x1'], - [3, 2, format(abs(scaled_wc('phiud_32')) * lambda_smeft_value**2,'.6e'), '# cHudAbs3x2'], - [3, 3, format(abs(scaled_wc('phiud_33')) * lambda_smeft_value**2,'.6e'), '# cHudAbs3x3'], - ]} - - card['Block']['FRBlock5'] = {'values': [ - [1, 1, format(angle(scaled_wc('uW_11')),'.6e'), '# cuWPh1x1'], - [1, 2, format(angle(scaled_wc('uW_12')),'.6e'), '# cuWPh1x2'], - [1, 3, format(angle(scaled_wc('uW_13')),'.6e'), '# cuWPh1x3'], - [2, 1, format(angle(scaled_wc('uW_21')),'.6e'), '# cuWPh2x1'], - [2, 2, format(angle(scaled_wc('uW_22')),'.6e'), '# cuWPh2x2'], - [2, 3, format(angle(scaled_wc('uW_23')),'.6e'), '# cuWPh2x3'], - [3, 1, format(angle(scaled_wc('uW_31')),'.6e'), '# cuWPh3x1'], - [3, 2, format(angle(scaled_wc('uW_32')),'.6e'), '# cuWPh3x2'], - [3, 3, format(angle(scaled_wc('uW_33')),'.6e'), '# cuWPh3x3'], - ]} - - card['Block']['FRBlock6'] = {'values': [ - [1, 1, format(angle(scaled_wc('uB_11')),'.6e'), '# cuBPh1x1'], - [1, 2, format(angle(scaled_wc('uB_12')),'.6e'), '# cuBPh1x2'], - [1, 3, format(angle(scaled_wc('uB_13')),'.6e'), '# cuBPh1x3'], - [2, 1, format(angle(scaled_wc('uB_21')),'.6e'), '# cuBPh2x1'], - [2, 2, format(angle(scaled_wc('uB_22')),'.6e'), '# cuBPh2x2'], - [2, 3, format(angle(scaled_wc('uB_23')),'.6e'), '# cuBPh2x3'], - [3, 1, format(angle(scaled_wc('uB_31')),'.6e'), '# cuBPh3x1'], - [3, 2, format(angle(scaled_wc('uB_32')),'.6e'), '# cuBPh3x2'], - [3, 3, format(angle(scaled_wc('uB_33')),'.6e'), '# cuBPh3x3'], - ]} - - card['Block']['FRBlock7'] = {'values': [ - [1, 1, format(angle(scaled_wc('dG_11')),'.6e'), '# cdGPh1x1'], - [1, 2, format(angle(scaled_wc('dG_12')),'.6e'), '# cdGPh1x2'], - [1, 3, format(angle(scaled_wc('dG_13')),'.6e'), '# cdGPh1x3'], - [2, 1, format(angle(scaled_wc('dG_21')),'.6e'), '# cdGPh2x1'], - [2, 2, format(angle(scaled_wc('dG_22')),'.6e'), '# cdGPh2x2'], - [2, 3, format(angle(scaled_wc('dG_23')),'.6e'), '# cdGPh2x3'], - [3, 1, format(angle(scaled_wc('dG_31')),'.6e'), '# cdGPh3x1'], - [3, 2, format(angle(scaled_wc('dG_32')),'.6e'), '# cdGPh3x2'], - [3, 3, format(angle(scaled_wc('dG_33')),'.6e'), '# cdGPh3x3'], - ]} - - card['Block']['FRBlock70'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('ledq_1111')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('ledq_1112')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('ledq_1113')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('ledq_1121')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('ledq_1122')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('ledq_1123')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('ledq_1131')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('ledq_1132')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('ledq_1133')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('ledq_1211')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('ledq_1212')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('ledq_1213')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('ledq_1221')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('ledq_1222')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('ledq_1223')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('ledq_1231')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('ledq_1232')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('ledq_1233')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('ledq_1311')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('ledq_1312')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('ledq_1313')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('ledq_1321')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('ledq_1322')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('ledq_1323')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('ledq_1331')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('ledq_1332')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('ledq_1333')) * lambda_smeft_value**2,'.6e'), '# cledqAbs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('ledq_2111')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('ledq_2112')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('ledq_2113')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('ledq_2121')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('ledq_2122')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('ledq_2123')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('ledq_2131')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('ledq_2132')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('ledq_2133')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('ledq_2211')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('ledq_2212')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('ledq_2213')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('ledq_2221')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('ledq_2222')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('ledq_2223')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('ledq_2231')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('ledq_2232')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('ledq_2233')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('ledq_2311')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('ledq_2312')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('ledq_2313')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('ledq_2321')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('ledq_2322')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('ledq_2323')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('ledq_2331')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('ledq_2332')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('ledq_2333')) * lambda_smeft_value**2,'.6e'), '# cledqAbs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('ledq_3111')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('ledq_3112')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('ledq_3113')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('ledq_3121')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('ledq_3122')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('ledq_3123')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('ledq_3131')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('ledq_3132')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('ledq_3133')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('ledq_3211')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('ledq_3212')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('ledq_3213')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('ledq_3221')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('ledq_3222')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('ledq_3223')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('ledq_3231')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('ledq_3232')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('ledq_3233')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('ledq_3311')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('ledq_3312')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('ledq_3313')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('ledq_3321')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('ledq_3322')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('ledq_3323')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('ledq_3331')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('ledq_3332')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('ledq_3333')) * lambda_smeft_value**2,'.6e'), '# cledqAbs3x3x3x3'], - ]} - - card['Block']['FRBlock71'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('quqd1_1111')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('quqd1_1112')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('quqd1_1113')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('quqd1_1121')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('quqd1_1122')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('quqd1_1123')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('quqd1_1131')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('quqd1_1132')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('quqd1_1133')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('quqd1_1211')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('quqd1_1212')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('quqd1_1213')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('quqd1_1221')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('quqd1_1222')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('quqd1_1223')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('quqd1_1231')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('quqd1_1232')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('quqd1_1233')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('quqd1_1311')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('quqd1_1312')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('quqd1_1313')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('quqd1_1321')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('quqd1_1322')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('quqd1_1323')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('quqd1_1331')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('quqd1_1332')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('quqd1_1333')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('quqd1_2111')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('quqd1_2112')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('quqd1_2113')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('quqd1_2121')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('quqd1_2122')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('quqd1_2123')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('quqd1_2131')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('quqd1_2132')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('quqd1_2133')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('quqd1_2211')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('quqd1_2212')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('quqd1_2213')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('quqd1_2221')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('quqd1_2222')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('quqd1_2223')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('quqd1_2231')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('quqd1_2232')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('quqd1_2233')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('quqd1_2311')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('quqd1_2312')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('quqd1_2313')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('quqd1_2321')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('quqd1_2322')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('quqd1_2323')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('quqd1_2331')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('quqd1_2332')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('quqd1_2333')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('quqd1_3111')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('quqd1_3112')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('quqd1_3113')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('quqd1_3121')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('quqd1_3122')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('quqd1_3123')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('quqd1_3131')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('quqd1_3132')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('quqd1_3133')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('quqd1_3211')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('quqd1_3212')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('quqd1_3213')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('quqd1_3221')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('quqd1_3222')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('quqd1_3223')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('quqd1_3231')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('quqd1_3232')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('quqd1_3233')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('quqd1_3311')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('quqd1_3312')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('quqd1_3313')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('quqd1_3321')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('quqd1_3322')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('quqd1_3323')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('quqd1_3331')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('quqd1_3332')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('quqd1_3333')) * lambda_smeft_value**2,'.6e'), '# cquqd1Abs3x3x3x3'], - ]} - - card['Block']['FRBlock72'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('quqd8_1111')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('quqd8_1112')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('quqd8_1113')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('quqd8_1121')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('quqd8_1122')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('quqd8_1123')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('quqd8_1131')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('quqd8_1132')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('quqd8_1133')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('quqd8_1211')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('quqd8_1212')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('quqd8_1213')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('quqd8_1221')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('quqd8_1222')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('quqd8_1223')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('quqd8_1231')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('quqd8_1232')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('quqd8_1233')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('quqd8_1311')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('quqd8_1312')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('quqd8_1313')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('quqd8_1321')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('quqd8_1322')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('quqd8_1323')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('quqd8_1331')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('quqd8_1332')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('quqd8_1333')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('quqd8_2111')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('quqd8_2112')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('quqd8_2113')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('quqd8_2121')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('quqd8_2122')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('quqd8_2123')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('quqd8_2131')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('quqd8_2132')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('quqd8_2133')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('quqd8_2211')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('quqd8_2212')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('quqd8_2213')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('quqd8_2221')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('quqd8_2222')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('quqd8_2223')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('quqd8_2231')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('quqd8_2232')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('quqd8_2233')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('quqd8_2311')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('quqd8_2312')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('quqd8_2313')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('quqd8_2321')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('quqd8_2322')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('quqd8_2323')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('quqd8_2331')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('quqd8_2332')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('quqd8_2333')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('quqd8_3111')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('quqd8_3112')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('quqd8_3113')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('quqd8_3121')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('quqd8_3122')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('quqd8_3123')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('quqd8_3131')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('quqd8_3132')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('quqd8_3133')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('quqd8_3211')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('quqd8_3212')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('quqd8_3213')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('quqd8_3221')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('quqd8_3222')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('quqd8_3223')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('quqd8_3231')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('quqd8_3232')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('quqd8_3233')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('quqd8_3311')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('quqd8_3312')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('quqd8_3313')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('quqd8_3321')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('quqd8_3322')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('quqd8_3323')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('quqd8_3331')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('quqd8_3332')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('quqd8_3333')) * lambda_smeft_value**2,'.6e'), '# cquqd8Abs3x3x3x3'], - ]} - - card['Block']['FRBlock73'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('lequ1_1111')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('lequ1_1112')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('lequ1_1113')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('lequ1_1121')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('lequ1_1122')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('lequ1_1123')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('lequ1_1131')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('lequ1_1132')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('lequ1_1133')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('lequ1_1211')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('lequ1_1212')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('lequ1_1213')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('lequ1_1221')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('lequ1_1222')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('lequ1_1223')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('lequ1_1231')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('lequ1_1232')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('lequ1_1233')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('lequ1_1311')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('lequ1_1312')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('lequ1_1313')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('lequ1_1321')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('lequ1_1322')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('lequ1_1323')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('lequ1_1331')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('lequ1_1332')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('lequ1_1333')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('lequ1_2111')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('lequ1_2112')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('lequ1_2113')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('lequ1_2121')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('lequ1_2122')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('lequ1_2123')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('lequ1_2131')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('lequ1_2132')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('lequ1_2133')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('lequ1_2211')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('lequ1_2212')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('lequ1_2213')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('lequ1_2221')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('lequ1_2222')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('lequ1_2223')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('lequ1_2231')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('lequ1_2232')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('lequ1_2233')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('lequ1_2311')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('lequ1_2312')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('lequ1_2313')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('lequ1_2321')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('lequ1_2322')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('lequ1_2323')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('lequ1_2331')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('lequ1_2332')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('lequ1_2333')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('lequ1_3111')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('lequ1_3112')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('lequ1_3113')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('lequ1_3121')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('lequ1_3122')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('lequ1_3123')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('lequ1_3131')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('lequ1_3132')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('lequ1_3133')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('lequ1_3211')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('lequ1_3212')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('lequ1_3213')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('lequ1_3221')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('lequ1_3222')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('lequ1_3223')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('lequ1_3231')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('lequ1_3232')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('lequ1_3233')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('lequ1_3311')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('lequ1_3312')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('lequ1_3313')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('lequ1_3321')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('lequ1_3322')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('lequ1_3323')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('lequ1_3331')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('lequ1_3332')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('lequ1_3333')) * lambda_smeft_value**2,'.6e'), '# clequ1Abs3x3x3x3'], - ]} - - card['Block']['FRBlock74'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('lequ3_1111')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('lequ3_1112')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('lequ3_1113')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('lequ3_1121')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('lequ3_1122')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('lequ3_1123')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('lequ3_1131')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('lequ3_1132')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('lequ3_1133')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('lequ3_1211')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('lequ3_1212')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('lequ3_1213')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('lequ3_1221')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('lequ3_1222')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('lequ3_1223')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('lequ3_1231')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('lequ3_1232')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('lequ3_1233')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('lequ3_1311')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('lequ3_1312')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('lequ3_1313')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('lequ3_1321')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('lequ3_1322')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('lequ3_1323')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('lequ3_1331')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('lequ3_1332')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('lequ3_1333')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('lequ3_2111')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('lequ3_2112')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('lequ3_2113')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('lequ3_2121')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('lequ3_2122')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('lequ3_2123')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('lequ3_2131')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('lequ3_2132')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('lequ3_2133')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('lequ3_2211')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('lequ3_2212')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('lequ3_2213')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('lequ3_2221')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('lequ3_2222')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('lequ3_2223')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('lequ3_2231')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('lequ3_2232')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('lequ3_2233')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('lequ3_2311')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('lequ3_2312')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('lequ3_2313')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('lequ3_2321')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('lequ3_2322')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('lequ3_2323')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('lequ3_2331')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('lequ3_2332')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('lequ3_2333')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('lequ3_3111')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('lequ3_3112')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('lequ3_3113')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('lequ3_3121')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('lequ3_3122')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('lequ3_3123')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('lequ3_3131')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('lequ3_3132')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('lequ3_3133')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('lequ3_3211')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('lequ3_3212')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('lequ3_3213')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('lequ3_3221')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('lequ3_3222')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('lequ3_3223')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('lequ3_3231')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('lequ3_3232')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('lequ3_3233')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('lequ3_3311')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('lequ3_3312')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('lequ3_3313')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('lequ3_3321')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('lequ3_3322')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('lequ3_3323')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('lequ3_3331')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('lequ3_3332')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('lequ3_3333')) * lambda_smeft_value**2,'.6e'), '# clequ3Abs3x3x3x3'], - ]} - - card['Block']['FRBlock8'] = {'values': [ - [1, 1, format(angle(scaled_wc('dW_11')),'.6e'), '# cdWPh1x1'], - [1, 2, format(angle(scaled_wc('dW_12')),'.6e'), '# cdWPh1x2'], - [1, 3, format(angle(scaled_wc('dW_13')),'.6e'), '# cdWPh1x3'], - [2, 1, format(angle(scaled_wc('dW_21')),'.6e'), '# cdWPh2x1'], - [2, 2, format(angle(scaled_wc('dW_22')),'.6e'), '# cdWPh2x2'], - [2, 3, format(angle(scaled_wc('dW_23')),'.6e'), '# cdWPh2x3'], - [3, 1, format(angle(scaled_wc('dW_31')),'.6e'), '# cdWPh3x1'], - [3, 2, format(angle(scaled_wc('dW_32')),'.6e'), '# cdWPh3x2'], - [3, 3, format(angle(scaled_wc('dW_33')),'.6e'), '# cdWPh3x3'], - ]} - - card['Block']['FRBlock9'] = {'values': [ - [1, 1, format(angle(scaled_wc('dB_11')),'.6e'), '# cdBPh1x1'], - [1, 2, format(angle(scaled_wc('dB_12')),'.6e'), '# cdBPh1x2'], - [1, 3, format(angle(scaled_wc('dB_13')),'.6e'), '# cdBPh1x3'], - [2, 1, format(angle(scaled_wc('dB_21')),'.6e'), '# cdBPh2x1'], - [2, 2, format(angle(scaled_wc('dB_22')),'.6e'), '# cdBPh2x2'], - [2, 3, format(angle(scaled_wc('dB_23')),'.6e'), '# cdBPh2x3'], - [3, 1, format(angle(scaled_wc('dB_31')),'.6e'), '# cdBPh3x1'], - [3, 2, format(angle(scaled_wc('dB_32')),'.6e'), '# cdBPh3x2'], - [3, 3, format(angle(scaled_wc('dB_33')),'.6e'), '# cdBPh3x3'], - ]} - - if input_scheme_value == 'mw': - card['Block']['FRBlock']['values'].insert(1474,[1475, format(80.387, '.6e'), '# MW0']) - - elif model_set == 'B': - - card['Block']['FRBlock'] = {'values': [ - [1, format(abs(scaled_wc('phil1_11')* lambda_smeft_value**2), '.6e') , '# cHl1Abs11'], - [2, format(abs(scaled_wc('phil1_12')* lambda_smeft_value**2), '.6e') , '# cHl1Abs12'], - [3, format(abs(scaled_wc('phil1_13')* lambda_smeft_value**2), '.6e') , '# cHl1Abs13'], - [4, format(abs(scaled_wc('phil1_22')* lambda_smeft_value**2), '.6e') , '# cHl1Abs22'], - [5, format(abs(scaled_wc('phil1_23')* lambda_smeft_value**2), '.6e') , '# cHl1Abs23'], - [6, format(abs(scaled_wc('phil1_33')* lambda_smeft_value**2), '.6e') , '# cHl1Abs33'], - [7, format(angle(scaled_wc('phil1_12')), '.6e') , '# cHl1Ph12'], - [8, format(angle(scaled_wc('phil1_13')), '.6e') , '# cHl1Ph13'], - [9, format(angle(scaled_wc('phil1_23')), '.6e') , '# cHl1Ph23'], - [10, format(abs(scaled_wc('phil3_11')* lambda_smeft_value**2), '.6e') ,'# cHL3Abs11'], - [11, format(abs(scaled_wc('phil3_12')* lambda_smeft_value**2), '.6e') ,'# cHL3Abs12'], - [12, format(abs(scaled_wc('phil3_13')* lambda_smeft_value**2), '.6e') ,'# cHL3Abs13'], - [13, format(abs(scaled_wc('phil3_22')* lambda_smeft_value**2), '.6e') ,'# cHL3Abs22'], - [14, format(abs(scaled_wc('phil3_23')* lambda_smeft_value**2), '.6e') ,'# cHL3Abs23'], - [15, format(abs(scaled_wc('phil3_33')* lambda_smeft_value**2), '.6e') ,'# cHL3Abs33'], - [16, format(angle(scaled_wc('phil3_12')), '.6e') ,'# cHL3Ph12'], - [17, format(angle(scaled_wc('phil3_13')), '.6e') ,'# cHL3Ph13'], - [18, format(angle(scaled_wc('phil3_23')), '.6e') ,'# cHL3Ph23'], - [19, format(abs(scaled_wc('phiq1_11')* lambda_smeft_value**2), '.6e') ,'# cHq1Abs11'], - [20, format(abs(scaled_wc('phiq1_12')* lambda_smeft_value**2), '.6e') ,'# cHq1Abs12'], - [21, format(abs(scaled_wc('phiq1_13')* lambda_smeft_value**2), '.6e') ,'# cHq1Abs13'], - [22, format(abs(scaled_wc('phiq1_22')* lambda_smeft_value**2), '.6e') ,'# cHq1Abs22'], - [23, format(abs(scaled_wc('phiq1_23')* lambda_smeft_value**2), '.6e') ,'# cHq1Abs23'], - [24, format(abs(scaled_wc('phiq1_33')* lambda_smeft_value**2), '.6e') ,'# cHq1Abs33'], - [25, format(angle(scaled_wc('phiq1_12')), '.6e') ,'# cHq1Ph12'], - [26, format(angle(scaled_wc('phiq1_13')), '.6e') ,'# cHq1Ph13'], - [27, format(angle(scaled_wc('phiq1_23')), '.6e') ,'# cHq1Ph23'], - [28, format(abs(scaled_wc('phiq3_11')* lambda_smeft_value**2), '.6e') ,'# cHQ3Abs11'], - [29, format(abs(scaled_wc('phiq3_12')* lambda_smeft_value**2), '.6e') ,'# cHQ3Abs12'], - [30, format(abs(scaled_wc('phiq3_13')* lambda_smeft_value**2), '.6e') ,'# cHQ3Abs13'], - [31, format(abs(scaled_wc('phiq3_22')* lambda_smeft_value**2), '.6e') ,'# cHQ3Abs22'], - [32, format(abs(scaled_wc('phiq3_23')* lambda_smeft_value**2), '.6e') ,'# cHQ3Abs23'], - [33, format(abs(scaled_wc('phiq3_33')* lambda_smeft_value**2), '.6e') ,'# cHQ3Abs33'], - [34, format(angle(scaled_wc('phiq3_12')), '.6e') ,'# cHQ3Ph12'], - [35, format(angle(scaled_wc('phiq3_13')), '.6e') ,'# cHQ3Ph13'], - [36, format(angle(scaled_wc('phiq3_23')), '.6e') ,'# cHQ3Ph23'], - [37, format(abs(scaled_wc('phiu_11')* lambda_smeft_value**2), '.6e') ,'# cHuAbs11'], - [38, format(abs(scaled_wc('phiu_12')* lambda_smeft_value**2), '.6e') ,'# cHuAbs12'], - [39, format(abs(scaled_wc('phiu_13')* lambda_smeft_value**2), '.6e') ,'# cHuAbs13'], - [40, format(abs(scaled_wc('phiu_22')* lambda_smeft_value**2), '.6e') ,'# cHuAbs22'], - [41, format(abs(scaled_wc('phiu_23')* lambda_smeft_value**2), '.6e') ,'# cHuAbs23'], - [42, format(abs(scaled_wc('phiu_33')* lambda_smeft_value**2), '.6e') ,'# cHuAbs33'], - [43, format(angle(scaled_wc('phiu_12')), '.6e') ,'# cHuPh12'], - [44, format(angle(scaled_wc('phiu_13')), '.6e') ,'# cHuPh13'], - [45, format(angle(scaled_wc('phiu_23')), '.6e') ,'# cHuPh23'], - [46, format(abs(scaled_wc('phid_11')* lambda_smeft_value**2), '.6e') ,'# cHdAbs11'], - [47, format(abs(scaled_wc('phid_12')* lambda_smeft_value**2), '.6e') ,'# cHdAbs12'], - [48, format(abs(scaled_wc('phid_13')* lambda_smeft_value**2), '.6e') ,'# cHdAbs13'], - [49, format(abs(scaled_wc('phid_22')* lambda_smeft_value**2), '.6e') ,'# cHdAbs22'], - [50, format(abs(scaled_wc('phid_23')* lambda_smeft_value**2), '.6e') ,'# cHdAbs23'], - [51, format(abs(scaled_wc('phid_33')* lambda_smeft_value**2), '.6e') ,'# cHdAbs33'], - [52, format(angle(scaled_wc('phid_12')), '.6e') ,'# cHdPh12'], - [53, format(angle(scaled_wc('phid_13')), '.6e') ,'# cHdPh13'], - [54, format(angle(scaled_wc('phid_23')), '.6e') ,'# cHdPh23'], - [55, format(abs(scaled_wc('phie_11')* lambda_smeft_value**2), '.6e') ,'# cHeAbs11'], - [56, format(abs(scaled_wc('phie_12')* lambda_smeft_value**2), '.6e') ,'# cHeAbs12'], - [57, format(abs(scaled_wc('phie_13')* lambda_smeft_value**2), '.6e') ,'# cHeAbs13'], - [58, format(abs(scaled_wc('phie_22')* lambda_smeft_value**2), '.6e') ,'# cHeAbs22'], - [59, format(abs(scaled_wc('phie_23')* lambda_smeft_value**2), '.6e') ,'# cHeAbs23'], - [60, format(abs(scaled_wc('phie_33')* lambda_smeft_value**2), '.6e') ,'# cHeAbs33'], - [61, format(angle(scaled_wc('phie_12')), '.6e') ,'# cHePh12'], - [62, format(angle(scaled_wc('phie_13')), '.6e') ,'# cHePh13'], - [63, format(angle(scaled_wc('phie_23')), '.6e') ,'# cHePh23'], - [64, format(scaled_wc('ll_1111')* lambda_smeft_value**2, '.6e') ,'# cllAbs1111'], - [65, format(scaled_wc('ll_1122')* lambda_smeft_value**2, '.6e') ,'# cllAbs1122'], - [66, format(scaled_wc('ll_1221')* lambda_smeft_value**2, '.6e') ,'# cllAbs1221'], - [67, format(scaled_wc('ll_1133')* lambda_smeft_value**2, '.6e') ,'# cllAbs1133'], - [68, format(scaled_wc('ll_1331')* lambda_smeft_value**2, '.6e') ,'# cllAbs1331'], - [69, format(scaled_wc('ll_2222')* lambda_smeft_value**2, '.6e') ,'# cllAbs2222'], - [70, format(scaled_wc('ll_2233')* lambda_smeft_value**2, '.6e') ,'# cllAbs2233'], - [71, format(scaled_wc('ll_2332')* lambda_smeft_value**2, '.6e') ,'# cllAbs2332'], - [72, format(scaled_wc('ll_3333')* lambda_smeft_value**2, '.6e') ,'# cllAbs3333'], - [73, format(abs(scaled_wc('ll_1112'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1112'], - [74, format(abs(scaled_wc('ll_1113'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1113'], - [75, format(abs(scaled_wc('ll_1123'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1123'], - [76, format(abs(scaled_wc('ll_1212'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1212'], - [77, format(abs(scaled_wc('ll_1213'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1213'], - [78, format(abs(scaled_wc('ll_1231'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1231'], - [79, format(abs(scaled_wc('ll_1222'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1222'], - [80, format(abs(scaled_wc('ll_1223'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1223'], - [81, format(abs(scaled_wc('ll_1232'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1232'], - [82, format(abs(scaled_wc('ll_1233'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1233'], - [83, format(abs(scaled_wc('ll_1313'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1313'], - [84, format(abs(scaled_wc('ll_1322'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1322'], - [85, format(abs(scaled_wc('ll_1332'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1332'], - [86, format(abs(scaled_wc('ll_1323'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1323'], - [87, format(abs(scaled_wc('ll_1333'))* lambda_smeft_value**2, '.6e') ,'# cllAbs1333'], - [88, format(abs(scaled_wc('ll_2223'))* lambda_smeft_value**2, '.6e') ,'# cllAbs2223'], - [89, format(abs(scaled_wc('ll_2323'))* lambda_smeft_value**2, '.6e') ,'# cllAbs2323'], - [90, format(abs(scaled_wc('ll_2333'))* lambda_smeft_value**2, '.6e') ,'# cllAbs3323'], - [91, format(angle(scaled_wc('ll_1112')), '.6e') ,'# cllPh1112'], - [92, format(angle(scaled_wc('ll_1113')), '.6e') ,'# cllPh1113'], - [93, format(angle(scaled_wc('ll_1123')), '.6e') ,'# cllPh1123'], - [94, format(angle(scaled_wc('ll_1212')), '.6e') ,'# cllPh1212'], - [95, format(angle(scaled_wc('ll_1213')), '.6e') ,'# cllPh1213'], - [96, format(angle(scaled_wc('ll_1231')), '.6e') ,'# cllPh1231'], - [97, format(angle(scaled_wc('ll_1222')), '.6e') ,'# cllPh1222'], - [98, format(angle(scaled_wc('ll_1223')), '.6e') ,'# cllPh1223'], - [99, format(angle(scaled_wc('ll_1232')), '.6e') ,'# cllPh1232'], - [100, format(angle(scaled_wc('ll_1233')), '.6e') ,'# cllPh1233'], - [101, format(angle(scaled_wc('ll_1313')), '.6e') ,'# cllPh1313'], - [102, format(angle(scaled_wc('ll_1322')), '.6e') ,'# cllPh1322'], - [103, format(angle(scaled_wc('ll_1332')), '.6e') ,'# cllPh1332'], - [104, format(angle(scaled_wc('ll_1323')), '.6e') ,'# cllPh1323'], - [105, format(angle(scaled_wc('ll_1333')), '.6e') ,'# cllPh1333'], - [106, format(angle(scaled_wc('ll_2223')), '.6e') ,'# cllPh2223'], - [107, format(angle(scaled_wc('ll_2323')), '.6e') ,'# cllPh2323'], - [108, format(angle(scaled_wc('ll_2333')), '.6e') ,'# cllPh3323'], - [109, format(scaled_wc('qq1_1111')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1111'], - [110, format(scaled_wc('qq1_1122')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1122'], - [111, format(scaled_wc('qq1_1221')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1221'], - [112, format(scaled_wc('qq1_1133')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1133'], - [113, format(scaled_wc('qq1_1331')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1331'], - [114, format(scaled_wc('qq1_2222')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs2222'], - [115, format(scaled_wc('qq1_2233')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs2233'], - [116, format(scaled_wc('qq1_2332')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs2332'], - [117, format(scaled_wc('qq1_3333')* lambda_smeft_value**2, '.6e') ,'# cqq1Abs3333'], - [118, format(abs(scaled_wc('qq1_1112'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1112'], - [119, format(abs(scaled_wc('qq1_1113'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1113'], - [120, format(abs(scaled_wc('qq1_1123'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1123'], - [121, format(abs(scaled_wc('qq1_1212'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1212'], - [122, format(abs(scaled_wc('qq1_1213'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1213'], - [123, format(abs(scaled_wc('qq1_1231'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1231'], - [124, format(abs(scaled_wc('qq1_1222'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1222'], - [125, format(abs(scaled_wc('qq1_1223'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1223'], - [126, format(abs(scaled_wc('qq1_1232'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1232'], - [127, format(abs(scaled_wc('qq1_1233'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1233'], - [128, format(abs(scaled_wc('qq1_1313'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1313'], - [129, format(abs(scaled_wc('qq1_1322'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1322'], - [130, format(abs(scaled_wc('qq1_1332'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1332'], - [131, format(abs(scaled_wc('qq1_1323'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1323'], - [132, format(abs(scaled_wc('qq1_1333'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs1333'], - [133, format(abs(scaled_wc('qq1_2223'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs2223'], - [134, format(abs(scaled_wc('qq1_2323'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs2323'], - [135, format(abs(scaled_wc('qq1_2333'))* lambda_smeft_value**2, '.6e') ,'# cqq1Abs3323'], - [136, format(angle(scaled_wc('qq1_1112')), '.6e') ,'# cqq1Ph1112'], - [137, format(angle(scaled_wc('qq1_1113')), '.6e') ,'# cqq1Ph1113'], - [138, format(angle(scaled_wc('qq1_1123')), '.6e') ,'# cqq1Ph1123'], - [139, format(angle(scaled_wc('qq1_1212')), '.6e') ,'# cqq1Ph1212'], - [140, format(angle(scaled_wc('qq1_1213')), '.6e') ,'# cqq1Ph1213'], - [141, format(angle(scaled_wc('qq1_1231')), '.6e') ,'# cqq1Ph1231'], - [142, format(angle(scaled_wc('qq1_1222')), '.6e') ,'# cqq1Ph1222'], - [143, format(angle(scaled_wc('qq1_1223')), '.6e') ,'# cqq1Ph1223'], - [144, format(angle(scaled_wc('qq1_1232')), '.6e') ,'# cqq1Ph1232'], - [145, format(angle(scaled_wc('qq1_1233')), '.6e') ,'# cqq1Ph1233'], - [146, format(angle(scaled_wc('qq1_1313')), '.6e') ,'# cqq1Ph1313'], - [147, format(angle(scaled_wc('qq1_1322')), '.6e') ,'# cqq1Ph1322'], - [148, format(angle(scaled_wc('qq1_1332')), '.6e') ,'# cqq1Ph1332'], - [149, format(angle(scaled_wc('qq1_1323')), '.6e') ,'# cqq1Ph1323'], - [150, format(angle(scaled_wc('qq1_1333')), '.6e') ,'# cqq1Ph1333'], - [151, format(angle(scaled_wc('qq1_2223')), '.6e') ,'# cqq1Ph2223'], - [152, format(angle(scaled_wc('qq1_2323')), '.6e') ,'# cqq1Ph2323'], - [153, format(angle(scaled_wc('qq1_2333')), '.6e') ,'# cqq1Ph3323'], - [154, format(scaled_wc('qq3_1111')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1111'], - [155, format(scaled_wc('qq3_1122')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1122'], - [156, format(scaled_wc('qq3_1221')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1221'], - [157, format(scaled_wc('qq3_1133')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1133'], - [158, format(scaled_wc('qq3_1331')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1331'], - [159, format(scaled_wc('qq3_2222')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs2222'], - [160, format(scaled_wc('qq3_2233')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs2233'], - [161, format(scaled_wc('qq3_2332')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs2332'], - [162, format(scaled_wc('qq3_3333')* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs3333'], - [163, format(abs(scaled_wc('qq3_1112'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1112'], - [164, format(abs(scaled_wc('qq3_1113'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1113'], - [165, format(abs(scaled_wc('qq3_1123'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1123'], - [166, format(abs(scaled_wc('qq3_1212'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1212'], - [167, format(abs(scaled_wc('qq3_1213'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1213'], - [168, format(abs(scaled_wc('qq3_1231'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1231'], - [169, format(abs(scaled_wc('qq3_1222'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1222'], - [170, format(abs(scaled_wc('qq3_1223'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1223'], - [171, format(abs(scaled_wc('qq3_1232'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1232'], - [172, format(abs(scaled_wc('qq3_1233'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1233'], - [173, format(abs(scaled_wc('qq3_1313'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1313'], - [174, format(abs(scaled_wc('qq3_1322'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1322'], - [175, format(abs(scaled_wc('qq3_1332'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1332'], - [176, format(abs(scaled_wc('qq3_1323'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1323'], - [177, format(abs(scaled_wc('qq3_1333'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs1333'], - [178, format(abs(scaled_wc('qq3_2223'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs2223'], - [179, format(abs(scaled_wc('qq3_2323'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs2323'], - [180, format(abs(scaled_wc('qq3_2333'))* lambda_smeft_value**2, '.6e') ,'# cQQ3Abs3323'], - [181, format(angle(scaled_wc('qq3_1112')), '.6e') ,'# cQQ3Ph1112'], - [182, format(angle(scaled_wc('qq3_1113')), '.6e') ,'# cQQ3Ph1113'], - [183, format(angle(scaled_wc('qq3_1123')), '.6e') ,'# cQQ3Ph1123'], - [184, format(angle(scaled_wc('qq3_1212')), '.6e') ,'# cQQ3Ph1212'], - [185, format(angle(scaled_wc('qq3_1213')), '.6e') ,'# cQQ3Ph1213'], - [186, format(angle(scaled_wc('qq3_1231')), '.6e') ,'# cQQ3Ph1231'], - [187, format(angle(scaled_wc('qq3_1222')), '.6e') ,'# cQQ3Ph1222'], - [188, format(angle(scaled_wc('qq3_1223')), '.6e') ,'# cQQ3Ph1223'], - [189, format(angle(scaled_wc('qq3_1232')), '.6e') ,'# cQQ3Ph1232'], - [190, format(angle(scaled_wc('qq3_1233')), '.6e') ,'# cQQ3Ph1233'], - [191, format(angle(scaled_wc('qq3_1313')), '.6e') ,'# cQQ3Ph1313'], - [192, format(angle(scaled_wc('qq3_1322')), '.6e') ,'# cQQ3Ph1322'], - [193, format(angle(scaled_wc('qq3_1332')), '.6e') ,'# cQQ3Ph1332'], - [194, format(angle(scaled_wc('qq3_1323')), '.6e') ,'# cQQ3Ph1323'], - [195, format(angle(scaled_wc('qq3_1333')), '.6e') ,'# cQQ3Ph1333'], - [196, format(angle(scaled_wc('qq3_2223')), '.6e') ,'# cQQ3Ph2223'], - [197, format(angle(scaled_wc('qq3_2323')), '.6e') ,'# cQQ3Ph2323'], - [198, format(angle(scaled_wc('qq3_2333')), '.6e') ,'# cQQ3Ph3323'], - [199, format(scaled_wc('lq1_1111')* lambda_smeft_value**2, '.6e') ,'# clq1Abs1111'], - [200, format(abs(scaled_wc('lq1_1112'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1112'], - [201, format(abs(scaled_wc('lq1_1113'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1113'], - [202, format(abs(scaled_wc('lq1_1123'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1123'], - [203, format(scaled_wc('lq1_1122')* lambda_smeft_value**2, '.6e') ,'# clq1Abs1122'], - [204, format(scaled_wc('lq1_1133')* lambda_smeft_value**2, '.6e') ,'# clq1Abs1133'], - [205, format(abs(scaled_wc('lq1_1211'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1211'], - [206, format(abs(scaled_wc('lq1_1212'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1212'], - [207, format(abs(scaled_wc('lq1_1221'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1221'], - [208, format(abs(scaled_wc('lq1_1213'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1213'], - [209, format(abs(scaled_wc('lq1_1231'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1231'], - [210, format(abs(scaled_wc('lq1_1222'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1222'], - [211, format(abs(scaled_wc('lq1_1223'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1223'], - [212, format(abs(scaled_wc('lq1_1232'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1232'], - [213, format(abs(scaled_wc('lq1_1233'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1233'], - [214, format(abs(scaled_wc('lq1_1311'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1311'], - [215, format(abs(scaled_wc('lq1_1312'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1312'], - [216, format(abs(scaled_wc('lq1_1313'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1313'], - [217, format(abs(scaled_wc('lq1_1331'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1331'], - [218, format(abs(scaled_wc('lq1_1321'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1321'], - [219, format(abs(scaled_wc('lq1_1322'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1322'], - [220, format(abs(scaled_wc('lq1_1332'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1332'], - [221, format(abs(scaled_wc('lq1_1323'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1323'], - [222, format(abs(scaled_wc('lq1_1333'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs1333'], - [223, format(scaled_wc('lq1_2211')* lambda_smeft_value**2, '.6e') ,'# clq1Abs2211'], - [224, format(abs(scaled_wc('lq1_2212'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2212'], - [225, format(abs(scaled_wc('lq1_2213'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2213'], - [226, format(scaled_wc('lq1_2222')* lambda_smeft_value**2, '.6e') ,'# clq1Abs2222'], - [227, format(abs(scaled_wc('lq1_2223'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2223'], - [228, format(scaled_wc('lq1_2233')* lambda_smeft_value**2, '.6e') ,'# clq1Abs2233'], - [229, format(abs(scaled_wc('lq1_2311'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2311'], - [230, format(abs(scaled_wc('lq1_2312'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2312'], - [231, format(abs(scaled_wc('lq1_2313'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2313'], - [232, format(abs(scaled_wc('lq1_2321'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2321'], - [233, format(abs(scaled_wc('lq1_2322'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2322'], - [234, format(abs(scaled_wc('lq1_2323'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2323'], - [235, format(abs(scaled_wc('lq1_2331'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2331'], - [236, format(abs(scaled_wc('lq1_2332'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2332'], - [237, format(abs(scaled_wc('lq1_2333'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs2333'], - [238, format(scaled_wc('lq1_3311')* lambda_smeft_value**2, '.6e') ,'# clq1Abs3311'], - [239, format(abs(scaled_wc('lq1_3312'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs3312'], - [240, format(abs(scaled_wc('lq1_3313'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs3313'], - [241, format(scaled_wc('lq1_3322')* lambda_smeft_value**2, '.6e') ,'# clq1Abs3322'], - [242, format(scaled_wc('lq1_3333')* lambda_smeft_value**2, '.6e') ,'# clq1Abs3333'], - [243, format(abs(scaled_wc('lq1_3323'))* lambda_smeft_value**2, '.6e') ,'# clq1Abs3323'], - [244, format(angle(scaled_wc('lq1_1112')), '.6e') ,'# clq1Ph1112'], - [245, format(angle(scaled_wc('lq1_2212')), '.6e') ,'# clq1Ph2212'], - [246, format(angle(scaled_wc('lq1_1113')), '.6e') ,'# clq1Ph1113'], - [247, format(angle(scaled_wc('lq1_1123')), '.6e') ,'# clq1Ph1123'], - [248, format(angle(scaled_wc('lq1_1211')), '.6e') ,'# clq1Ph1211'], - [249, format(angle(scaled_wc('lq1_1212')), '.6e') ,'# clq1Ph1212'], - [250, format(angle(scaled_wc('lq1_1221')), '.6e') ,'# clq1Ph1221'], - [251, format(angle(scaled_wc('lq1_1213')), '.6e') ,'# clq1Ph1213'], - [252, format(angle(scaled_wc('lq1_1231')), '.6e') ,'# clq1Ph1231'], - [253, format(angle(scaled_wc('lq1_1222')), '.6e') ,'# clq1Ph1222'], - [254, format(angle(scaled_wc('lq1_1223')), '.6e') ,'# clq1Ph1223'], - [255, format(angle(scaled_wc('lq1_1232')), '.6e') ,'# clq1Ph1232'], - [256, format(angle(scaled_wc('lq1_1233')), '.6e') ,'# clq1Ph1233'], - [257, format(angle(scaled_wc('lq1_1311')), '.6e') ,'# clq1Ph1311'], - [258, format(angle(scaled_wc('lq1_1312')), '.6e') ,'# clq1Ph1312'], - [259, format(angle(scaled_wc('lq1_1313')), '.6e') ,'# clq1Ph1313'], - [260, format(angle(scaled_wc('lq1_1331')), '.6e') ,'# clq1Ph1331'], - [261, format(angle(scaled_wc('lq1_1321')), '.6e') ,'# clq1Ph1321'], - [262, format(angle(scaled_wc('lq1_1322')), '.6e') ,'# clq1Ph1322'], - [263, format(angle(scaled_wc('lq1_1332')), '.6e') ,'# clq1Ph1332'], - [264, format(angle(scaled_wc('lq1_1323')), '.6e') ,'# clq1Ph1323'], - [265, format(angle(scaled_wc('lq1_1333')), '.6e') ,'# clq1Ph1333'], - [266, format(angle(scaled_wc('lq1_2213')), '.6e') ,'# clq1Ph2213'], - [267, format(angle(scaled_wc('lq1_2223')), '.6e') ,'# clq1Ph2223'], - [268, format(angle(scaled_wc('lq1_2311')), '.6e') ,'# clq1Ph2311'], - [269, format(angle(scaled_wc('lq1_2312')), '.6e') ,'# clq1Ph2312'], - [270, format(angle(scaled_wc('lq1_2313')), '.6e') ,'# clq1Ph2313'], - [271, format(angle(scaled_wc('lq1_2321')), '.6e') ,'# clq1Ph2321'], - [272, format(angle(scaled_wc('lq1_2322')), '.6e') ,'# clq1Ph2322'], - [273, format(angle(scaled_wc('lq1_2323')), '.6e') ,'# clq1Ph2323'], - [274, format(angle(scaled_wc('lq1_2331')), '.6e') ,'# clq1Ph2331'], - [275, format(angle(scaled_wc('lq1_2332')), '.6e') ,'# clq1Ph2332'], - [276, format(angle(scaled_wc('lq1_2333')), '.6e') ,'# clq1Ph2333'], - [277, format(angle(scaled_wc('lq1_3323')), '.6e') ,'# clq1Ph3323'], - [278, format(angle(scaled_wc('lq1_3312')), '.6e') ,'# clq1Ph3312'], - [279, format(angle(scaled_wc('lq1_3313')), '.6e') ,'# clq1Ph3313'], - [280, format(scaled_wc('lq3_1111')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1111'], - [281, format(abs(scaled_wc('lq3_1112'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1112'], - [282, format(abs(scaled_wc('lq3_1113'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1113'], - [283, format(abs(scaled_wc('lq3_1123'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1123'], - [284, format(scaled_wc('lq3_1122')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1122'], - [285, format(scaled_wc('lq3_1133')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1133'], - [286, format(abs(scaled_wc('lq3_1211'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1211'], - [287, format(abs(scaled_wc('lq3_1212'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1212'], - [288, format(abs(scaled_wc('lq3_1221'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1221'], - [289, format(abs(scaled_wc('lq3_1213'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1213'], - [290, format(abs(scaled_wc('lq3_1231'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1231'], - [291, format(abs(scaled_wc('lq3_1222'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1222'], - [292, format(abs(scaled_wc('lq3_1223'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1223'], - [293, format(abs(scaled_wc('lq3_1232'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1232'], - [294, format(abs(scaled_wc('lq3_1233'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1233'], - [295, format(abs(scaled_wc('lq3_1311'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1311'], - [296, format(abs(scaled_wc('lq3_1312'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1312'], - [297, format(abs(scaled_wc('lq3_1313'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1313'], - [298, format(abs(scaled_wc('lq3_1331'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1331'], - [299, format(abs(scaled_wc('lq3_1321'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1321'], - [300, format(abs(scaled_wc('lq3_1322'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1322'], - [301, format(abs(scaled_wc('lq3_1332'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1332'], - [302, format(abs(scaled_wc('lq3_1323'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1323'], - [303, format(abs(scaled_wc('lq3_1333'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs1333'], - [304, format(scaled_wc('lq3_2211')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2211'], - [305, format(abs(scaled_wc('lq3_2212'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2212'], - [306, format(abs(scaled_wc('lq3_2213'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2213'], - [307, format(scaled_wc('lq3_2222')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2222'], - [308, format(abs(scaled_wc('lq3_2223'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2223'], - [309, format(scaled_wc('lq3_2233')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2233'], - [310, format(abs(scaled_wc('lq3_2311'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2311'], - [311, format(abs(scaled_wc('lq3_2312'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2312'], - [312, format(abs(scaled_wc('lq3_2313'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2313'], - [313, format(abs(scaled_wc('lq3_2321'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2321'], - [314, format(abs(scaled_wc('lq3_2322'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2322'], - [315, format(abs(scaled_wc('lq3_2323'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2323'], - [316, format(abs(scaled_wc('lq3_2331'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2331'], - [317, format(abs(scaled_wc('lq3_2332'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2332'], - [318, format(abs(scaled_wc('lq3_2333'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs2333'], - [319, format(scaled_wc('lq3_3311')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs3311'], - [320, format(abs(scaled_wc('lq3_3312'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs3312'], - [321, format(abs(scaled_wc('lq3_3313'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs3313'], - [322, format(scaled_wc('lq3_3322')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs3322'], - [323, format(scaled_wc('lq3_3333')* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs3333'], - [324, format(abs(scaled_wc('lq3_3323'))* lambda_smeft_value**2, '.6e') ,'# cLQ3Abs3323'], - [325, format(angle(scaled_wc('lq3_1112')), '.6e') ,'# cLQ3Ph1112'], - [326, format(angle(scaled_wc('lq3_2212')), '.6e') ,'# cLQ3Ph2212'], - [327, format(angle(scaled_wc('lq3_1113')), '.6e') ,'# cLQ3Ph1113'], - [328, format(angle(scaled_wc('lq3_1123')), '.6e') ,'# cLQ3Ph1123'], - [329, format(angle(scaled_wc('lq3_1211')), '.6e') ,'# cLQ3Ph1211'], - [330, format(angle(scaled_wc('lq3_1212')), '.6e') ,'# cLQ3Ph1212'], - [331, format(angle(scaled_wc('lq3_1221')), '.6e') ,'# cLQ3Ph1221'], - [332, format(angle(scaled_wc('lq3_1213')), '.6e') ,'# cLQ3Ph1213'], - [333, format(angle(scaled_wc('lq3_1231')), '.6e') ,'# cLQ3Ph1231'], - [334, format(angle(scaled_wc('lq3_1222')), '.6e') ,'# cLQ3Ph1222'], - [335, format(angle(scaled_wc('lq3_1223')), '.6e') ,'# cLQ3Ph1223'], - [336, format(angle(scaled_wc('lq3_1232')), '.6e') ,'# cLQ3Ph1232'], - [337, format(angle(scaled_wc('lq3_1233')), '.6e') ,'# cLQ3Ph1233'], - [338, format(angle(scaled_wc('lq3_1311')), '.6e') ,'# cLQ3Ph1311'], - [339, format(angle(scaled_wc('lq3_1312')), '.6e') ,'# cLQ3Ph1312'], - [340, format(angle(scaled_wc('lq3_1313')), '.6e') ,'# cLQ3Ph1313'], - [341, format(angle(scaled_wc('lq3_1331')), '.6e') ,'# cLQ3Ph1331'], - [342, format(angle(scaled_wc('lq3_1321')), '.6e') ,'# cLQ3Ph1321'], - [343, format(angle(scaled_wc('lq3_1322')), '.6e') ,'# cLQ3Ph1322'], - [344, format(angle(scaled_wc('lq3_1332')), '.6e') ,'# cLQ3Ph1332'], - [345, format(angle(scaled_wc('lq3_1323')), '.6e') ,'# cLQ3Ph1323'], - [346, format(angle(scaled_wc('lq3_1333')), '.6e') ,'# cLQ3Ph1333'], - [347, format(angle(scaled_wc('lq3_2213')), '.6e') ,'# cLQ3Ph2213'], - [348, format(angle(scaled_wc('lq3_2223')), '.6e') ,'# cLQ3Ph2223'], - [349, format(angle(scaled_wc('lq3_2311')), '.6e') ,'# cLQ3Ph2311'], - [350, format(angle(scaled_wc('lq3_2312')), '.6e') ,'# cLQ3Ph2312'], - [351, format(angle(scaled_wc('lq3_2313')), '.6e') ,'# cLQ3Ph2313'], - [352, format(angle(scaled_wc('lq3_2321')), '.6e') ,'# cLQ3Ph2321'], - [353, format(angle(scaled_wc('lq3_2322')), '.6e') ,'# cLQ3Ph2322'], - [354, format(angle(scaled_wc('lq3_2323')), '.6e') ,'# cLQ3Ph2323'], - [355, format(angle(scaled_wc('lq3_2331')), '.6e') ,'# cLQ3Ph2331'], - [356, format(angle(scaled_wc('lq3_2332')), '.6e') ,'# cLQ3Ph2332'], - [357, format(angle(scaled_wc('lq3_2333')), '.6e') ,'# cLQ3Ph2333'], - [358, format(angle(scaled_wc('lq3_3323')), '.6e') ,'# cLQ3Ph3323'], - [359, format(angle(scaled_wc('lq3_3312')), '.6e') ,'# cLQ3Ph3312'], - [360, format(angle(scaled_wc('lq3_3313')), '.6e') ,'# cLQ3Ph3313'], - [361, format(scaled_wc('uu_1111')* lambda_smeft_value**2, '.6e') ,'# cuuAbs1111'], - [362, format(scaled_wc('uu_1122')* lambda_smeft_value**2, '.6e') ,'# cuuAbs1122'], - [363, format(scaled_wc('uu_1221')* lambda_smeft_value**2, '.6e') ,'# cuuAbs1221'], - [364, format(scaled_wc('uu_1133')* lambda_smeft_value**2, '.6e') ,'# cuuAbs1133'], - [365, format(scaled_wc('uu_1331')* lambda_smeft_value**2, '.6e') ,'# cuuAbs1331'], - [366, format(scaled_wc('uu_2222')* lambda_smeft_value**2, '.6e') ,'# cuuAbs2222'], - [367, format(scaled_wc('uu_2233')* lambda_smeft_value**2, '.6e') ,'# cuuAbs2233'], - [368, format(scaled_wc('uu_2332')* lambda_smeft_value**2, '.6e') ,'# cuuAbs2332'], - [369, format(scaled_wc('uu_3333')* lambda_smeft_value**2, '.6e') ,'# cuuAbs3333'], - [370, format(abs(scaled_wc('uu_1112'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1112'], - [371, format(abs(scaled_wc('uu_1113'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1113'], - [372, format(abs(scaled_wc('uu_1123'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1123'], - [373, format(abs(scaled_wc('uu_1212'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1212'], - [374, format(abs(scaled_wc('uu_1213'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1213'], - [375, format(abs(scaled_wc('uu_1231'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1231'], - [376, format(abs(scaled_wc('uu_1222'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1222'], - [377, format(abs(scaled_wc('uu_1223'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1223'], - [378, format(abs(scaled_wc('uu_1232'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1232'], - [379, format(abs(scaled_wc('uu_1233'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1233'], - [380, format(abs(scaled_wc('uu_1313'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1313'], - [381, format(abs(scaled_wc('uu_1322'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1322'], - [382, format(abs(scaled_wc('uu_1332'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1332'], - [383, format(abs(scaled_wc('uu_1323'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1323'], - [384, format(abs(scaled_wc('uu_1333'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs1333'], - [385, format(abs(scaled_wc('uu_2223'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs2223'], - [386, format(abs(scaled_wc('uu_2323'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs2323'], - [387, format(abs(scaled_wc('uu_2333'))* lambda_smeft_value**2, '.6e') ,'# cuuAbs3323'], - [388, format(angle(scaled_wc('uu_1112')), '.6e') ,'# cuuPh1112'], - [389, format(angle(scaled_wc('uu_1113')), '.6e') ,'# cuuPh1113'], - [390, format(angle(scaled_wc('uu_1123')), '.6e') ,'# cuuPh1123'], - [391, format(angle(scaled_wc('uu_1212')), '.6e') ,'# cuuPh1212'], - [392, format(angle(scaled_wc('uu_1213')), '.6e') ,'# cuuPh1213'], - [393, format(angle(scaled_wc('uu_1231')), '.6e') ,'# cuuPh1231'], - [394, format(angle(scaled_wc('uu_1222')), '.6e') ,'# cuuPh1222'], - [395, format(angle(scaled_wc('uu_1223')), '.6e') ,'# cuuPh1223'], - [396, format(angle(scaled_wc('uu_1232')), '.6e') ,'# cuuPh1232'], - [397, format(angle(scaled_wc('uu_1233')), '.6e') ,'# cuuPh1233'], - [398, format(angle(scaled_wc('uu_1313')), '.6e') ,'# cuuPh1313'], - [399, format(angle(scaled_wc('uu_1322')), '.6e') ,'# cuuPh1322'], - [400, format(angle(scaled_wc('uu_1332')), '.6e') ,'# cuuPh1332'], - [401, format(angle(scaled_wc('uu_1323')), '.6e') ,'# cuuPh1323'], - [402, format(angle(scaled_wc('uu_1333')), '.6e') ,'# cuuPh1333'], - [403, format(angle(scaled_wc('uu_2223')), '.6e') ,'# cuuPh2223'], - [404, format(angle(scaled_wc('uu_2323')), '.6e') ,'# cuuPh2323'], - [405, format(angle(scaled_wc('uu_2333')), '.6e') ,'# cuuPh3323'], - [406, format(scaled_wc('dd_1111')* lambda_smeft_value**2, '.6e') ,'# cddAbs1111'], - [407, format(scaled_wc('dd_1122')* lambda_smeft_value**2, '.6e') ,'# cddAbs1122'], - [408, format(scaled_wc('dd_1221')* lambda_smeft_value**2, '.6e') ,'# cddAbs1221'], - [409, format(scaled_wc('dd_1133')* lambda_smeft_value**2, '.6e') ,'# cddAbs1133'], - [410, format(scaled_wc('dd_1331')* lambda_smeft_value**2, '.6e') ,'# cddAbs1331'], - [411, format(scaled_wc('dd_2222')* lambda_smeft_value**2, '.6e') ,'# cddAbs2222'], - [412, format(scaled_wc('dd_2233')* lambda_smeft_value**2, '.6e') ,'# cddAbs2233'], - [413, format(scaled_wc('dd_2332')* lambda_smeft_value**2, '.6e') ,'# cddAbs2332'], - [414, format(scaled_wc('dd_3333')* lambda_smeft_value**2, '.6e') ,'# cddAbs3333'], - [415, format(abs(scaled_wc('dd_1112'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1112'], - [416, format(abs(scaled_wc('dd_1113'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1113'], - [417, format(abs(scaled_wc('dd_1123'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1123'], - [418, format(abs(scaled_wc('dd_1212'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1212'], - [419, format(abs(scaled_wc('dd_1213'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1213'], - [420, format(abs(scaled_wc('dd_1231'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1231'], - [421, format(abs(scaled_wc('dd_1222'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1222'], - [422, format(abs(scaled_wc('dd_1223'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1223'], - [423, format(abs(scaled_wc('dd_1232'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1232'], - [424, format(abs(scaled_wc('dd_1233'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1233'], - [425, format(abs(scaled_wc('dd_1313'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1313'], - [426, format(abs(scaled_wc('dd_1322'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1322'], - [427, format(abs(scaled_wc('dd_1332'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1332'], - [428, format(abs(scaled_wc('dd_1323'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1323'], - [429, format(abs(scaled_wc('dd_1333'))* lambda_smeft_value**2, '.6e') ,'# cddAbs1333'], - [430, format(abs(scaled_wc('dd_2223'))* lambda_smeft_value**2, '.6e') ,'# cddAbs2223'], - [431, format(abs(scaled_wc('dd_2323'))* lambda_smeft_value**2, '.6e') ,'# cddAbs2323'], - [432, format(abs(scaled_wc('dd_2333'))* lambda_smeft_value**2, '.6e') ,'# cddAbs3323'], - [433, format(angle(scaled_wc('dd_1112')), '.6e') ,'# cddPh1112'], - [434, format(angle(scaled_wc('dd_1113')), '.6e') ,'# cddPh1113'], - [435, format(angle(scaled_wc('dd_1123')), '.6e') ,'# cddPh1123'], - [436, format(angle(scaled_wc('dd_1212')), '.6e') ,'# cddPh1212'], - [437, format(angle(scaled_wc('dd_1213')), '.6e') ,'# cddPh1213'], - [438, format(angle(scaled_wc('dd_1231')), '.6e') ,'# cddPh1231'], - [439, format(angle(scaled_wc('dd_1222')), '.6e') ,'# cddPh1222'], - [440, format(angle(scaled_wc('dd_1223')), '.6e') ,'# cddPh1223'], - [441, format(angle(scaled_wc('dd_1232')), '.6e') ,'# cddPh1232'], - [442, format(angle(scaled_wc('dd_1233')), '.6e') ,'# cddPh1233'], - [443, format(angle(scaled_wc('dd_1313')), '.6e') ,'# cddPh1313'], - [444, format(angle(scaled_wc('dd_1322')), '.6e') ,'# cddPh1322'], - [445, format(angle(scaled_wc('dd_1332')), '.6e') ,'# cddPh1332'], - [446, format(angle(scaled_wc('dd_1323')), '.6e') ,'# cddPh1323'], - [447, format(angle(scaled_wc('dd_1333')), '.6e') ,'# cddPh1333'], - [448, format(angle(scaled_wc('dd_2223')), '.6e') ,'# cddPh2223'], - [449, format(angle(scaled_wc('dd_2323')), '.6e') ,'# cddPh2323'], - [450, format(angle(scaled_wc('dd_2333')), '.6e') ,'# cddPh3323'], - [451, format(scaled_wc('ee_1111')* lambda_smeft_value**2, '.6e') ,'# ceeAbs1111'], - [452, format(scaled_wc('ee_2222')* lambda_smeft_value**2, '.6e') ,'# ceeAbs2222'], - [453, format(scaled_wc('ee_3333')* lambda_smeft_value**2, '.6e') ,'# ceeAbs3333'], - [454, format(scaled_wc('ee_1122')* lambda_smeft_value**2, '.6e') ,'# ceeAbs1122'], - [455, format(scaled_wc('ee_1133')* lambda_smeft_value**2, '.6e') ,'# ceeAbs1133'], - [456, format(scaled_wc('ee_2233')* lambda_smeft_value**2, '.6e') ,'# ceeAbs2233'], - [457, format(abs(scaled_wc('ee_1212'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1212'], - [458, format(abs(scaled_wc('ee_1213'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1213'], - [459, format(abs(scaled_wc('ee_1232'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1232'], - [460, format(abs(scaled_wc('ee_1313'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1313'], - [461, format(abs(scaled_wc('ee_1323'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1323'], - [462, format(abs(scaled_wc('ee_2323'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs2323'], - [463, format(abs(scaled_wc('ee_1112'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1112'], - [464, format(abs(scaled_wc('ee_1222'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1222'], - [465, format(abs(scaled_wc('ee_1233'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1233'], - [466, format(abs(scaled_wc('ee_1113'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1113'], - [467, format(abs(scaled_wc('ee_1223'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1322'], # element 1322 replaced with 1223 in wcxf - [468, format(abs(scaled_wc('ee_1333'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1333'], - [469, format(abs(scaled_wc('ee_1123'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs1123'], - [470, format(abs(scaled_wc('ee_2223'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs2223'], - [471, format(abs(scaled_wc('ee_2333'))* lambda_smeft_value**2, '.6e') ,'# ceeAbs3323'], - [472, format(angle(scaled_wc('ee_1112')), '.6e') ,'# ceePh1112'], - [473, format(angle(scaled_wc('ee_1113')), '.6e') ,'# ceePh1113'], - [474, format(angle(scaled_wc('ee_1123')), '.6e') ,'# ceePh1123'], - [475, format(angle(scaled_wc('ee_1212')), '.6e') ,'# ceePh1212'], - [476, format(angle(scaled_wc('ee_1213')), '.6e') ,'# ceePh1213'], - [477, format(angle(scaled_wc('ee_1323')), '.6e') ,'# ceePh1323'], - [478, format(angle(scaled_wc('ee_1222')), '.6e') ,'# ceePh1222'], - [479, format(angle(scaled_wc('ee_2333')), '.6e') ,'# ceePh3323'], - [480, format(angle(scaled_wc('ee_1232')), '.6e') ,'# ceePh1232'], - [481, format(angle(scaled_wc('ee_1233')), '.6e') ,'# ceePh1233'], - [482, format(angle(scaled_wc('ee_1313')), '.6e') ,'# ceePh1313'], - [483, format(angle(scaled_wc('ee_1223')), '.6e') ,'# ceePh1322'], # element 1322 replaced with 1223 in wcxf - [484, format(angle(scaled_wc('ee_1333')), '.6e') ,'# ceePh1333'], - [485, format(angle(scaled_wc('ee_2223')), '.6e') ,'# ceePh2223'], - [486, format(angle(scaled_wc('ee_2323')), '.6e') ,'# ceePh2323'], - [487, format(scaled_wc('ud1_1111')* lambda_smeft_value**2, '.6e') ,'# cud1Abs1111'], - [488, format(abs(scaled_wc('ud1_1112'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1112'], - [489, format(abs(scaled_wc('ud1_1113'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1113'], - [490, format(abs(scaled_wc('ud1_1123'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1123'], - [491, format(scaled_wc('ud1_1122')* lambda_smeft_value**2, '.6e') ,'# cud1Abs1122'], - [492, format(scaled_wc('ud1_1133')* lambda_smeft_value**2, '.6e') ,'# cud1Abs1133'], - [493, format(abs(scaled_wc('ud1_1211'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1211'], - [494, format(abs(scaled_wc('ud1_1212'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1212'], - [495, format(abs(scaled_wc('ud1_1221'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1221'], - [496, format(abs(scaled_wc('ud1_1213'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1213'], - [497, format(abs(scaled_wc('ud1_1231'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1231'], - [498, format(abs(scaled_wc('ud1_1222'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1222'], - [499, format(abs(scaled_wc('ud1_1223'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1223'], - [500, format(abs(scaled_wc('ud1_1232'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1232'], - [501, format(abs(scaled_wc('ud1_1233'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1233'], - [502, format(abs(scaled_wc('ud1_1311'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1311'], - [503, format(abs(scaled_wc('ud1_1312'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1312'], - [504, format(abs(scaled_wc('ud1_1313'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1313'], - [505, format(abs(scaled_wc('ud1_1331'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1331'], - [506, format(abs(scaled_wc('ud1_1321'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1321'], - [507, format(abs(scaled_wc('ud1_1322'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1322'], - [508, format(abs(scaled_wc('ud1_1332'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1332'], - [509, format(abs(scaled_wc('ud1_1323'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1323'], - [510, format(abs(scaled_wc('ud1_1333'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs1333'], - [511, format(scaled_wc('ud1_2211')* lambda_smeft_value**2, '.6e') ,'# cud1Abs2211'], - [512, format(abs(scaled_wc('ud1_2212'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2212'], - [513, format(abs(scaled_wc('ud1_2213'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2213'], - [514, format(scaled_wc('ud1_2222')* lambda_smeft_value**2, '.6e') ,'# cud1Abs2222'], - [515, format(abs(scaled_wc('ud1_2223'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2223'], - [516, format(scaled_wc('ud1_2233')* lambda_smeft_value**2, '.6e') ,'# cud1Abs2233'], - [517, format(abs(scaled_wc('ud1_2311'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2311'], - [518, format(abs(scaled_wc('ud1_2312'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2312'], - [519, format(abs(scaled_wc('ud1_2313'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2313'], - [520, format(abs(scaled_wc('ud1_2321'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2321'], - [521, format(abs(scaled_wc('ud1_2322'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2322'], - [522, format(abs(scaled_wc('ud1_2323'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2323'], - [523, format(abs(scaled_wc('ud1_2331'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2331'], - [524, format(abs(scaled_wc('ud1_2332'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2332'], - [525, format(abs(scaled_wc('ud1_2333'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs2333'], - [526, format(scaled_wc('ud1_3311')* lambda_smeft_value**2, '.6e') ,'# cud1Abs3311'], - [527, format(abs(scaled_wc('ud1_3312'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs3312'], - [528, format(abs(scaled_wc('ud1_3313'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs3313'], - [529, format(scaled_wc('ud1_3322')* lambda_smeft_value**2, '.6e') ,'# cud1Abs3322'], - [530, format(scaled_wc('ud1_3333')* lambda_smeft_value**2, '.6e') ,'# cud1Abs3333'], - [531, format(abs(scaled_wc('ud1_3323'))* lambda_smeft_value**2, '.6e') ,'# cud1Abs3323'], - [532, format(angle(scaled_wc('ud1_1112')), '.6e') ,'# cud1Ph1112'], - [533, format(angle(scaled_wc('ud1_2212')), '.6e') ,'# cud1Ph2212'], - [534, format(angle(scaled_wc('ud1_1113')), '.6e') ,'# cud1Ph1113'], - [535, format(angle(scaled_wc('ud1_1123')), '.6e') ,'# cud1Ph1123'], - [536, format(angle(scaled_wc('ud1_1211')), '.6e') ,'# cud1Ph1211'], - [537, format(angle(scaled_wc('ud1_1212')), '.6e') ,'# cud1Ph1212'], - [538, format(angle(scaled_wc('ud1_1221')), '.6e') ,'# cud1Ph1221'], - [539, format(angle(scaled_wc('ud1_1213')), '.6e') ,'# cud1Ph1213'], - [540, format(angle(scaled_wc('ud1_1231')), '.6e') ,'# cud1Ph1231'], - [541, format(angle(scaled_wc('ud1_1222')), '.6e') ,'# cud1Ph1222'], - [542, format(angle(scaled_wc('ud1_1223')), '.6e') ,'# cud1Ph1223'], - [543, format(angle(scaled_wc('ud1_1232')), '.6e') ,'# cud1Ph1232'], - [544, format(angle(scaled_wc('ud1_1233')), '.6e') ,'# cud1Ph1233'], - [545, format(angle(scaled_wc('ud1_1311')), '.6e') ,'# cud1Ph1311'], - [546, format(angle(scaled_wc('ud1_1312')), '.6e') ,'# cud1Ph1312'], - [547, format(angle(scaled_wc('ud1_1313')), '.6e') ,'# cud1Ph1313'], - [548, format(angle(scaled_wc('ud1_1331')), '.6e') ,'# cud1Ph1331'], - [549, format(angle(scaled_wc('ud1_1321')), '.6e') ,'# cud1Ph1321'], - [550, format(angle(scaled_wc('ud1_1322')), '.6e') ,'# cud1Ph1322'], - [551, format(angle(scaled_wc('ud1_1332')), '.6e') ,'# cud1Ph1332'], - [552, format(angle(scaled_wc('ud1_1323')), '.6e') ,'# cud1Ph1323'], - [553, format(angle(scaled_wc('ud1_1333')), '.6e') ,'# cud1Ph1333'], - [554, format(angle(scaled_wc('ud1_2213')), '.6e') ,'# cud1Ph2213'], - [555, format(angle(scaled_wc('ud1_2223')), '.6e') ,'# cud1Ph2223'], - [556, format(angle(scaled_wc('ud1_2311')), '.6e') ,'# cud1Ph2311'], - [557, format(angle(scaled_wc('ud1_2312')), '.6e') ,'# cud1Ph2312'], - [558, format(angle(scaled_wc('ud1_2313')), '.6e') ,'# cud1Ph2313'], - [559, format(angle(scaled_wc('ud1_2321')), '.6e') ,'# cud1Ph2321'], - [560, format(angle(scaled_wc('ud1_2322')), '.6e') ,'# cud1Ph2322'], - [561, format(angle(scaled_wc('ud1_2323')), '.6e') ,'# cud1Ph2323'], - [562, format(angle(scaled_wc('ud1_2331')), '.6e') ,'# cud1Ph2331'], - [563, format(angle(scaled_wc('ud1_2332')), '.6e') ,'# cud1Ph2332'], - [564, format(angle(scaled_wc('ud1_2333')), '.6e') ,'# cud1Ph2333'], - [565, format(angle(scaled_wc('ud1_3323')), '.6e') ,'# cud1Ph3323'], - [566, format(angle(scaled_wc('ud1_3312')), '.6e') ,'# cud1Ph3312'], - [567, format(angle(scaled_wc('ud1_3313')), '.6e') ,'# cud1Ph3313'], - [568, format(scaled_wc('ud8_1111')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1111'], - [569, format(abs(scaled_wc('ud8_1112'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1112'], - [570, format(abs(scaled_wc('ud8_1113'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1113'], - [571, format(abs(scaled_wc('ud8_1123'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1123'], - [572, format(scaled_wc('ud8_1122')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1122'], - [573, format(scaled_wc('ud8_1133')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1133'], - [574, format(abs(scaled_wc('ud8_1211'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1211'], - [575, format(abs(scaled_wc('ud8_1212'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1212'], - [576, format(abs(scaled_wc('ud8_1221'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1221'], - [577, format(abs(scaled_wc('ud8_1213'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1213'], - [578, format(abs(scaled_wc('ud8_1231'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1231'], - [579, format(abs(scaled_wc('ud8_1222'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1222'], - [580, format(abs(scaled_wc('ud8_1223'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1223'], - [581, format(abs(scaled_wc('ud8_1232'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1232'], - [582, format(abs(scaled_wc('ud8_1233'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1233'], - [583, format(abs(scaled_wc('ud8_1311'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1311'], - [584, format(abs(scaled_wc('ud8_1312'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1312'], - [585, format(abs(scaled_wc('ud8_1313'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1313'], - [586, format(abs(scaled_wc('ud8_1331'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1331'], - [587, format(abs(scaled_wc('ud8_1321'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1321'], - [588, format(abs(scaled_wc('ud8_1322'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1322'], - [589, format(abs(scaled_wc('ud8_1332'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1332'], - [590, format(abs(scaled_wc('ud8_1323'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1323'], - [591, format(abs(scaled_wc('ud8_1333'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs1333'], - [592, format(scaled_wc('ud8_2211')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2211'], - [593, format(abs(scaled_wc('ud8_2212'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2212'], - [594, format(abs(scaled_wc('ud8_2213'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2213'], - [595, format(scaled_wc('ud8_2222')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2222'], - [596, format(abs(scaled_wc('ud8_2223'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2223'], - [597, format(scaled_wc('ud8_2233')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2233'], - [598, format(abs(scaled_wc('ud8_2311'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2311'], - [599, format(abs(scaled_wc('ud8_2312'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2312'], - [600, format(abs(scaled_wc('ud8_2313'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2313'], - [601, format(abs(scaled_wc('ud8_2321'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2321'], - [602, format(abs(scaled_wc('ud8_2322'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2322'], - [603, format(abs(scaled_wc('ud8_2323'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2323'], - [604, format(abs(scaled_wc('ud8_2331'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2331'], - [605, format(abs(scaled_wc('ud8_2332'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2332'], - [606, format(abs(scaled_wc('ud8_2333'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs2333'], - [607, format(scaled_wc('ud8_3311')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs3311'], - [608, format(abs(scaled_wc('ud8_3312'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs3312'], - [609, format(abs(scaled_wc('ud8_3313'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs3313'], - [610, format(scaled_wc('ud8_3322')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs3322'], - [611, format(scaled_wc('ud8_3333')* lambda_smeft_value**2, '.6e') ,'# cUD8Abs3333'], - [612, format(abs(scaled_wc('ud8_3323'))* lambda_smeft_value**2, '.6e') ,'# cUD8Abs3323'], - [613, format(angle(scaled_wc('ud8_1112')), '.6e') ,'# cUD8Ph1112'], - [614, format(angle(scaled_wc('ud8_2212')), '.6e') ,'# cUD8Ph2212'], - [615, format(angle(scaled_wc('ud8_1113')), '.6e') ,'# cUD8Ph1113'], - [616, format(angle(scaled_wc('ud8_1123')), '.6e') ,'# cUD8Ph1123'], - [617, format(angle(scaled_wc('ud8_1211')), '.6e') ,'# cUD8Ph1211'], - [618, format(angle(scaled_wc('ud8_1212')), '.6e') ,'# cUD8Ph1212'], - [619, format(angle(scaled_wc('ud8_1221')), '.6e') ,'# cUD8Ph1221'], - [620, format(angle(scaled_wc('ud8_1213')), '.6e') ,'# cUD8Ph1213'], - [621, format(angle(scaled_wc('ud8_1231')), '.6e') ,'# cUD8Ph1231'], - [622, format(angle(scaled_wc('ud8_1222')), '.6e') ,'# cUD8Ph1222'], - [623, format(angle(scaled_wc('ud8_1223')), '.6e') ,'# cUD8Ph1223'], - [624, format(angle(scaled_wc('ud8_1232')), '.6e') ,'# cUD8Ph1232'], - [625, format(angle(scaled_wc('ud8_1233')), '.6e') ,'# cUD8Ph1233'], - [626, format(angle(scaled_wc('ud8_1311')), '.6e') ,'# cUD8Ph1311'], - [627, format(angle(scaled_wc('ud8_1312')), '.6e') ,'# cUD8Ph1312'], - [628, format(angle(scaled_wc('ud8_1313')), '.6e') ,'# cUD8Ph1313'], - [629, format(angle(scaled_wc('ud8_1331')), '.6e') ,'# cUD8Ph1331'], - [630, format(angle(scaled_wc('ud8_1321')), '.6e') ,'# cUD8Ph1321'], - [631, format(angle(scaled_wc('ud8_1322')), '.6e') ,'# cUD8Ph1322'], - [632, format(angle(scaled_wc('ud8_1332')), '.6e') ,'# cUD8Ph1332'], - [633, format(angle(scaled_wc('ud8_1323')), '.6e') ,'# cUD8Ph1323'], - [634, format(angle(scaled_wc('ud8_1333')), '.6e') ,'# cUD8Ph1333'], - [635, format(angle(scaled_wc('ud8_2213')), '.6e') ,'# cUD8Ph2213'], - [636, format(angle(scaled_wc('ud8_2223')), '.6e') ,'# cUD8Ph2223'], - [637, format(angle(scaled_wc('ud8_2311')), '.6e') ,'# cUD8Ph2311'], - [638, format(angle(scaled_wc('ud8_2312')), '.6e') ,'# cUD8Ph2312'], - [639, format(angle(scaled_wc('ud8_2313')), '.6e') ,'# cUD8Ph2313'], - [640, format(angle(scaled_wc('ud8_2321')), '.6e') ,'# cUD8Ph2321'], - [641, format(angle(scaled_wc('ud8_2322')), '.6e') ,'# cUD8Ph2322'], - [642, format(angle(scaled_wc('ud8_2323')), '.6e') ,'# cUD8Ph2323'], - [643, format(angle(scaled_wc('ud8_2331')), '.6e') ,'# cUD8Ph2331'], - [644, format(angle(scaled_wc('ud8_2332')), '.6e') ,'# cUD8Ph2332'], - [645, format(angle(scaled_wc('ud8_2333')), '.6e') ,'# cUD8Ph2333'], - [646, format(angle(scaled_wc('ud8_3323')), '.6e') ,'# cUD8Ph3323'], - [647, format(angle(scaled_wc('ud8_3312')), '.6e') ,'# cUD8Ph3312'], - [648, format(angle(scaled_wc('ud8_3313')), '.6e') ,'# cUD8Ph3313'], - [649, format(scaled_wc('eu_1111')* lambda_smeft_value**2, '.6e') ,'# ceuAbs1111'], - [650, format(abs(scaled_wc('eu_1112'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1112'], - [651, format(abs(scaled_wc('eu_1113'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1113'], - [652, format(abs(scaled_wc('eu_1123'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1123'], - [653, format(scaled_wc('eu_1122')* lambda_smeft_value**2, '.6e') ,'# ceuAbs1122'], - [654, format(scaled_wc('eu_1133')* lambda_smeft_value**2, '.6e') ,'# ceuAbs1133'], - [655, format(abs(scaled_wc('eu_1211'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1211'], - [656, format(abs(scaled_wc('eu_1212'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1212'], - [657, format(abs(scaled_wc('eu_1221'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1221'], - [658, format(abs(scaled_wc('eu_1213'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1213'], - [659, format(abs(scaled_wc('eu_1231'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1231'], - [660, format(abs(scaled_wc('eu_1222'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1222'], - [661, format(abs(scaled_wc('eu_1223'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1223'], - [662, format(abs(scaled_wc('eu_1232'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1232'], - [663, format(abs(scaled_wc('eu_1233'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1233'], - [664, format(abs(scaled_wc('eu_1311'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1311'], - [665, format(abs(scaled_wc('eu_1312'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1312'], - [666, format(abs(scaled_wc('eu_1313'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1313'], - [667, format(abs(scaled_wc('eu_1331'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1331'], - [668, format(abs(scaled_wc('eu_1321'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1321'], - [669, format(abs(scaled_wc('eu_1322'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1322'], - [670, format(abs(scaled_wc('eu_1332'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1332'], - [671, format(abs(scaled_wc('eu_1323'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1323'], - [672, format(abs(scaled_wc('eu_1333'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs1333'], - [673, format(scaled_wc('eu_2211')* lambda_smeft_value**2, '.6e') ,'# ceuAbs2211'], - [674, format(abs(scaled_wc('eu_2212'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2212'], - [675, format(abs(scaled_wc('eu_2213'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2213'], - [676, format(scaled_wc('eu_2222')* lambda_smeft_value**2, '.6e') ,'# ceuAbs2222'], - [677, format(abs(scaled_wc('eu_2223'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2223'], - [678, format(scaled_wc('eu_2233')* lambda_smeft_value**2, '.6e') ,'# ceuAbs2233'], - [679, format(abs(scaled_wc('eu_2311'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2311'], - [680, format(abs(scaled_wc('eu_2312'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2312'], - [681, format(abs(scaled_wc('eu_2313'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2313'], - [682, format(abs(scaled_wc('eu_2321'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2321'], - [683, format(abs(scaled_wc('eu_2322'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2322'], - [684, format(abs(scaled_wc('eu_2323'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2323'], - [685, format(abs(scaled_wc('eu_2331'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2331'], - [686, format(abs(scaled_wc('eu_2332'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2332'], - [687, format(abs(scaled_wc('eu_2333'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs2333'], - [688, format(scaled_wc('eu_3311')* lambda_smeft_value**2, '.6e') ,'# ceuAbs3311'], - [689, format(abs(scaled_wc('eu_3312'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs3312'], - [690, format(abs(scaled_wc('eu_3313'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs3313'], - [691, format(scaled_wc('eu_3322')* lambda_smeft_value**2, '.6e') ,'# ceuAbs3322'], - [692, format(scaled_wc('eu_3333')* lambda_smeft_value**2, '.6e') ,'# ceuAbs3333'], - [693, format(abs(scaled_wc('eu_3323'))* lambda_smeft_value**2, '.6e') ,'# ceuAbs3323'], - [694, format(angle(scaled_wc('eu_1112')), '.6e') ,'# ceuPh1112'], - [695, format(angle(scaled_wc('eu_2212')), '.6e') ,'# ceuPh2212'], - [696, format(angle(scaled_wc('eu_1113')), '.6e') ,'# ceuPh1113'], - [697, format(angle(scaled_wc('eu_1123')), '.6e') ,'# ceuPh1123'], - [698, format(angle(scaled_wc('eu_1211')), '.6e') ,'# ceuPh1211'], - [699, format(angle(scaled_wc('eu_1212')), '.6e') ,'# ceuPh1212'], - [700, format(angle(scaled_wc('eu_1221')), '.6e') ,'# ceuPh1221'], - [701, format(angle(scaled_wc('eu_1213')), '.6e') ,'# ceuPh1213'], - [702, format(angle(scaled_wc('eu_1231')), '.6e') ,'# ceuPh1231'], - [703, format(angle(scaled_wc('eu_1222')), '.6e') ,'# ceuPh1222'], - [704, format(angle(scaled_wc('eu_1223')), '.6e') ,'# ceuPh1223'], - [705, format(angle(scaled_wc('eu_1232')), '.6e') ,'# ceuPh1232'], - [706, format(angle(scaled_wc('eu_1233')), '.6e') ,'# ceuPh1233'], - [707, format(angle(scaled_wc('eu_1311')), '.6e') ,'# ceuPh1311'], - [708, format(angle(scaled_wc('eu_1312')), '.6e') ,'# ceuPh1312'], - [709, format(angle(scaled_wc('eu_1313')), '.6e') ,'# ceuPh1313'], - [710, format(angle(scaled_wc('eu_1331')), '.6e') ,'# ceuPh1331'], - [711, format(angle(scaled_wc('eu_1321')), '.6e') ,'# ceuPh1321'], - [712, format(angle(scaled_wc('eu_1322')), '.6e') ,'# ceuPh1322'], - [713, format(angle(scaled_wc('eu_1332')), '.6e') ,'# ceuPh1332'], - [714, format(angle(scaled_wc('eu_1323')), '.6e') ,'# ceuPh1323'], - [715, format(angle(scaled_wc('eu_1333')), '.6e') ,'# ceuPh1333'], - [716, format(angle(scaled_wc('eu_2213')), '.6e') ,'# ceuPh2213'], - [717, format(angle(scaled_wc('eu_2223')), '.6e') ,'# ceuPh2223'], - [718, format(angle(scaled_wc('eu_2311')), '.6e') ,'# ceuPh2311'], - [719, format(angle(scaled_wc('eu_2312')), '.6e') ,'# ceuPh2312'], - [720, format(angle(scaled_wc('eu_2313')), '.6e') ,'# ceuPh2313'], - [721, format(angle(scaled_wc('eu_2321')), '.6e') ,'# ceuPh2321'], - [722, format(angle(scaled_wc('eu_2322')), '.6e') ,'# ceuPh2322'], - [723, format(angle(scaled_wc('eu_2323')), '.6e') ,'# ceuPh2323'], - [724, format(angle(scaled_wc('eu_2331')), '.6e') ,'# ceuPh2331'], - [725, format(angle(scaled_wc('eu_2332')), '.6e') ,'# ceuPh2332'], - [726, format(angle(scaled_wc('eu_2333')), '.6e') ,'# ceuPh2333'], - [727, format(angle(scaled_wc('eu_3323')), '.6e') ,'# ceuPh3323'], - [728, format(angle(scaled_wc('eu_3312')), '.6e') ,'# ceuPh3312'], - [729, format(angle(scaled_wc('eu_3313')), '.6e') ,'# ceuPh3313'], - [730, format(scaled_wc('ed_1111')* lambda_smeft_value**2, '.6e') ,'# cedAbs1111'], - [731, format(abs(scaled_wc('ed_1112'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1112'], - [732, format(abs(scaled_wc('ed_1113'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1113'], - [733, format(abs(scaled_wc('ed_1123'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1123'], - [734, format(scaled_wc('ed_1122')* lambda_smeft_value**2, '.6e') ,'# cedAbs1122'], - [735, format(scaled_wc('ed_1133')* lambda_smeft_value**2, '.6e') ,'# cedAbs1133'], - [736, format(abs(scaled_wc('ed_1211'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1211'], - [737, format(abs(scaled_wc('ed_1212'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1212'], - [738, format(abs(scaled_wc('ed_1221'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1221'], - [739, format(abs(scaled_wc('ed_1213'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1213'], - [740, format(abs(scaled_wc('ed_1231'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1231'], - [741, format(abs(scaled_wc('ed_1222'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1222'], - [742, format(abs(scaled_wc('ed_1223'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1223'], - [743, format(abs(scaled_wc('ed_1232'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1232'], - [744, format(abs(scaled_wc('ed_1233'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1233'], - [745, format(abs(scaled_wc('ed_1311'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1311'], - [746, format(abs(scaled_wc('ed_1312'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1312'], - [747, format(abs(scaled_wc('ed_1313'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1313'], - [748, format(abs(scaled_wc('ed_1331'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1331'], - [749, format(abs(scaled_wc('ed_1321'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1321'], - [750, format(abs(scaled_wc('ed_1322'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1322'], - [751, format(abs(scaled_wc('ed_1332'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1332'], - [752, format(abs(scaled_wc('ed_1323'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1323'], - [753, format(abs(scaled_wc('ed_1333'))* lambda_smeft_value**2, '.6e') ,'# cedAbs1333'], - [754, format(scaled_wc('ed_2211')* lambda_smeft_value**2, '.6e') ,'# cedAbs2211'], - [755, format(abs(scaled_wc('ed_2212'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2212'], - [756, format(abs(scaled_wc('ed_2213'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2213'], - [757, format(scaled_wc('ed_2222')* lambda_smeft_value**2, '.6e') ,'# cedAbs2222'], - [758, format(abs(scaled_wc('ed_2223'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2223'], - [759, format(scaled_wc('ed_2233')* lambda_smeft_value**2, '.6e') ,'# cedAbs2233'], - [760, format(abs(scaled_wc('ed_2311'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2311'], - [761, format(abs(scaled_wc('ed_2312'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2312'], - [762, format(abs(scaled_wc('ed_2313'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2313'], - [763, format(abs(scaled_wc('ed_2321'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2321'], - [764, format(abs(scaled_wc('ed_2322'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2322'], - [765, format(abs(scaled_wc('ed_2323'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2323'], - [766, format(abs(scaled_wc('ed_2331'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2331'], - [767, format(abs(scaled_wc('ed_2332'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2332'], - [768, format(abs(scaled_wc('ed_2333'))* lambda_smeft_value**2, '.6e') ,'# cedAbs2333'], - [769, format(scaled_wc('ed_3311')* lambda_smeft_value**2, '.6e') ,'# cedAbs3311'], - [770, format(abs(scaled_wc('ed_3312'))* lambda_smeft_value**2, '.6e') ,'# cedAbs3312'], - [771, format(abs(scaled_wc('ed_3313'))* lambda_smeft_value**2, '.6e') ,'# cedAbs3313'], - [772, format(scaled_wc('ed_3322')* lambda_smeft_value**2, '.6e') ,'# cedAbs3322'], - [773, format(scaled_wc('ed_3333')* lambda_smeft_value**2, '.6e') ,'# cedAbs3333'], - [774, format(abs(scaled_wc('ed_3323'))* lambda_smeft_value**2, '.6e') ,'# cedAbs3323'], - [775, format(angle(scaled_wc('ed_1112')), '.6e') ,'# cedPh1112'], - [776, format(angle(scaled_wc('ed_2212')), '.6e') ,'# cedPh2212'], - [777, format(angle(scaled_wc('ed_1113')), '.6e') ,'# cedPh1113'], - [778, format(angle(scaled_wc('ed_1123')), '.6e') ,'# cedPh1123'], - [779, format(angle(scaled_wc('ed_1211')), '.6e') ,'# cedPh1211'], - [780, format(angle(scaled_wc('ed_1212')), '.6e') ,'# cedPh1212'], - [781, format(angle(scaled_wc('ed_1221')), '.6e') ,'# cedPh1221'], - [782, format(angle(scaled_wc('ed_1213')), '.6e') ,'# cedPh1213'], - [783, format(angle(scaled_wc('ed_1231')), '.6e') ,'# cedPh1231'], - [784, format(angle(scaled_wc('ed_1222')), '.6e') ,'# cedPh1222'], - [785, format(angle(scaled_wc('ed_1223')), '.6e') ,'# cedPh1223'], - [786, format(angle(scaled_wc('ed_1232')), '.6e') ,'# cedPh1232'], - [787, format(angle(scaled_wc('ed_1233')), '.6e') ,'# cedPh1233'], - [788, format(angle(scaled_wc('ed_1311')), '.6e') ,'# cedPh1311'], - [789, format(angle(scaled_wc('ed_1312')), '.6e') ,'# cedPh1312'], - [790, format(angle(scaled_wc('ed_1313')), '.6e') ,'# cedPh1313'], - [791, format(angle(scaled_wc('ed_1331')), '.6e') ,'# cedPh1331'], - [792, format(angle(scaled_wc('ed_1321')), '.6e') ,'# cedPh1321'], - [793, format(angle(scaled_wc('ed_1322')), '.6e') ,'# cedPh1322'], - [794, format(angle(scaled_wc('ed_1332')), '.6e') ,'# cedPh1332'], - [795, format(angle(scaled_wc('ed_1323')), '.6e') ,'# cedPh1323'], - [796, format(angle(scaled_wc('ed_1333')), '.6e') ,'# cedPh1333'], - [797, format(angle(scaled_wc('ed_2213')), '.6e') ,'# cedPh2213'], - [798, format(angle(scaled_wc('ed_2223')), '.6e') ,'# cedPh2223'], - [799, format(angle(scaled_wc('ed_2311')), '.6e') ,'# cedPh2311'], - [800, format(angle(scaled_wc('ed_2312')), '.6e') ,'# cedPh2312'], - [801, format(angle(scaled_wc('ed_2313')), '.6e') ,'# cedPh2313'], - [802, format(angle(scaled_wc('ed_2321')), '.6e') ,'# cedPh2321'], - [803, format(angle(scaled_wc('ed_2322')), '.6e') ,'# cedPh2322'], - [804, format(angle(scaled_wc('ed_2323')), '.6e') ,'# cedPh2323'], - [805, format(angle(scaled_wc('ed_2331')), '.6e') ,'# cedPh2331'], - [806, format(angle(scaled_wc('ed_2332')), '.6e') ,'# cedPh2332'], - [807, format(angle(scaled_wc('ed_2333')), '.6e') ,'# cedPh2333'], - [808, format(angle(scaled_wc('ed_3323')), '.6e') ,'# cedPh3323'], - [809, format(angle(scaled_wc('ed_3312')), '.6e') ,'# cedPh3312'], - [810, format(angle(scaled_wc('ed_3313')), '.6e') ,'# cedPh3313'], - [811, format(scaled_wc('qu1_1111')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1111'], - [812, format(abs(scaled_wc('qu1_1112'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1112'], - [813, format(abs(scaled_wc('qu1_1113'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1113'], - [814, format(abs(scaled_wc('qu1_1123'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1123'], - [815, format(scaled_wc('qu1_1122')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1122'], - [816, format(scaled_wc('qu1_1133')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1133'], - [817, format(abs(scaled_wc('qu1_1211'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1211'], - [818, format(abs(scaled_wc('qu1_1212'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1212'], - [819, format(abs(scaled_wc('qu1_1221'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1221'], - [820, format(abs(scaled_wc('qu1_1213'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1213'], - [821, format(abs(scaled_wc('qu1_1231'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1231'], - [822, format(abs(scaled_wc('qu1_1222'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1222'], - [823, format(abs(scaled_wc('qu1_1223'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1223'], - [824, format(abs(scaled_wc('qu1_1232'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1232'], - [825, format(abs(scaled_wc('qu1_1233'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1233'], - [826, format(abs(scaled_wc('qu1_1311'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1311'], - [827, format(abs(scaled_wc('qu1_1312'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1312'], - [828, format(abs(scaled_wc('qu1_1313'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1313'], - [829, format(abs(scaled_wc('qu1_1331'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1331'], - [830, format(abs(scaled_wc('qu1_1321'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1321'], - [831, format(abs(scaled_wc('qu1_1322'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1322'], - [832, format(abs(scaled_wc('qu1_1332'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1332'], - [833, format(abs(scaled_wc('qu1_1323'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1323'], - [834, format(abs(scaled_wc('qu1_1333'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs1333'], - [835, format(scaled_wc('qu1_2211')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2211'], - [836, format(abs(scaled_wc('qu1_2212'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2212'], - [837, format(abs(scaled_wc('qu1_2213'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2213'], - [838, format(scaled_wc('qu1_2222')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2222'], - [839, format(abs(scaled_wc('qu1_2223'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2223'], - [840, format(scaled_wc('qu1_2233')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2233'], - [841, format(abs(scaled_wc('qu1_2311'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2311'], - [842, format(abs(scaled_wc('qu1_2312'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2312'], - [843, format(abs(scaled_wc('qu1_2313'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2313'], - [844, format(abs(scaled_wc('qu1_2321'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2321'], - [845, format(abs(scaled_wc('qu1_2322'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2322'], - [846, format(abs(scaled_wc('qu1_2323'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2323'], - [847, format(abs(scaled_wc('qu1_2331'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2331'], - [848, format(abs(scaled_wc('qu1_2332'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2332'], - [849, format(abs(scaled_wc('qu1_2333'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs2333'], - [850, format(scaled_wc('qu1_3311')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs3311'], - [851, format(abs(scaled_wc('qu1_3312'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs3312'], - [852, format(abs(scaled_wc('qu1_3313'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs3313'], - [853, format(scaled_wc('qu1_3322')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs3322'], - [854, format(scaled_wc('qu1_3333')* lambda_smeft_value**2, '.6e') ,'# cqu1Abs3333'], - [855, format(abs(scaled_wc('qu1_3323'))* lambda_smeft_value**2, '.6e') ,'# cqu1Abs3323'], - [856, format(angle(scaled_wc('qu1_1112')), '.6e') ,'# cqu1Ph1112'], - [857, format(angle(scaled_wc('qu1_2212')), '.6e') ,'# cqu1Ph2212'], - [858, format(angle(scaled_wc('qu1_1113')), '.6e') ,'# cqu1Ph1113'], - [859, format(angle(scaled_wc('qu1_1123')), '.6e') ,'# cqu1Ph1123'], - [860, format(angle(scaled_wc('qu1_1211')), '.6e') ,'# cqu1Ph1211'], - [861, format(angle(scaled_wc('qu1_1212')), '.6e') ,'# cqu1Ph1212'], - [862, format(angle(scaled_wc('qu1_1221')), '.6e') ,'# cqu1Ph1221'], - [863, format(angle(scaled_wc('qu1_1213')), '.6e') ,'# cqu1Ph1213'], - [864, format(angle(scaled_wc('qu1_1231')), '.6e') ,'# cqu1Ph1231'], - [865, format(angle(scaled_wc('qu1_1222')), '.6e') ,'# cqu1Ph1222'], - [866, format(angle(scaled_wc('qu1_1223')), '.6e') ,'# cqu1Ph1223'], - [867, format(angle(scaled_wc('qu1_1232')), '.6e') ,'# cqu1Ph1232'], - [868, format(angle(scaled_wc('qu1_1233')), '.6e') ,'# cqu1Ph1233'], - [869, format(angle(scaled_wc('qu1_1311')), '.6e') ,'# cqu1Ph1311'], - [870, format(angle(scaled_wc('qu1_1312')), '.6e') ,'# cqu1Ph1312'], - [871, format(angle(scaled_wc('qu1_1313')), '.6e') ,'# cqu1Ph1313'], - [872, format(angle(scaled_wc('qu1_1331')), '.6e') ,'# cqu1Ph1331'], - [873, format(angle(scaled_wc('qu1_1321')), '.6e') ,'# cqu1Ph1321'], - [874, format(angle(scaled_wc('qu1_1322')), '.6e') ,'# cqu1Ph1322'], - [875, format(angle(scaled_wc('qu1_1332')), '.6e') ,'# cqu1Ph1332'], - [876, format(angle(scaled_wc('qu1_1323')), '.6e') ,'# cqu1Ph1323'], - [877, format(angle(scaled_wc('qu1_1333')), '.6e') ,'# cqu1Ph1333'], - [878, format(angle(scaled_wc('qu1_2213')), '.6e') ,'# cqu1Ph2213'], - [879, format(angle(scaled_wc('qu1_2223')), '.6e') ,'# cqu1Ph2223'], - [880, format(angle(scaled_wc('qu1_2311')), '.6e') ,'# cqu1Ph2311'], - [881, format(angle(scaled_wc('qu1_2312')), '.6e') ,'# cqu1Ph2312'], - [882, format(angle(scaled_wc('qu1_2313')), '.6e') ,'# cqu1Ph2313'], - [883, format(angle(scaled_wc('qu1_2321')), '.6e') ,'# cqu1Ph2321'], - [884, format(angle(scaled_wc('qu1_2322')), '.6e') ,'# cqu1Ph2322'], - [885, format(angle(scaled_wc('qu1_2323')), '.6e') ,'# cqu1Ph2323'], - [886, format(angle(scaled_wc('qu1_2331')), '.6e') ,'# cqu1Ph2331'], - [887, format(angle(scaled_wc('qu1_2332')), '.6e') ,'# cqu1Ph2332'], - [888, format(angle(scaled_wc('qu1_2333')), '.6e') ,'# cqu1Ph2333'], - [889, format(angle(scaled_wc('qu1_3323')), '.6e') ,'# cqu1Ph3323'], - [890, format(angle(scaled_wc('qu1_3312')), '.6e') ,'# cqu1Ph3312'], - [891, format(angle(scaled_wc('qu1_3313')), '.6e') ,'# cqu1Ph3313'], - [892, format(scaled_wc('qu8_1111')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1111'], - [893, format(abs(scaled_wc('qu8_1112'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1112'], - [894, format(abs(scaled_wc('qu8_1113'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1113'], - [895, format(abs(scaled_wc('qu8_1123'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1123'], - [896, format(scaled_wc('qu8_1122')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1122'], - [897, format(scaled_wc('qu8_1133')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1133'], - [898, format(abs(scaled_wc('qu8_1211'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1211'], - [899, format(abs(scaled_wc('qu8_1212'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1212'], - [900, format(abs(scaled_wc('qu8_1221'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1221'], - [901, format(abs(scaled_wc('qu8_1213'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1213'], - [902, format(abs(scaled_wc('qu8_1231'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1231'], - [903, format(abs(scaled_wc('qu8_1222'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1222'], - [904, format(abs(scaled_wc('qu8_1223'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1223'], - [905, format(abs(scaled_wc('qu8_1232'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1232'], - [906, format(abs(scaled_wc('qu8_1233'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1233'], - [907, format(abs(scaled_wc('qu8_1311'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1311'], - [908, format(abs(scaled_wc('qu8_1312'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1312'], - [909, format(abs(scaled_wc('qu8_1313'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1313'], - [910, format(abs(scaled_wc('qu8_1331'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1331'], - [911, format(abs(scaled_wc('qu8_1321'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1321'], - [912, format(abs(scaled_wc('qu8_1322'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1322'], - [913, format(abs(scaled_wc('qu8_1332'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1332'], - [914, format(abs(scaled_wc('qu8_1323'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1323'], - [915, format(abs(scaled_wc('qu8_1333'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs1333'], - [916, format(scaled_wc('qu8_2211')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2211'], - [917, format(abs(scaled_wc('qu8_2212'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2212'], - [918, format(abs(scaled_wc('qu8_2213'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2213'], - [919, format(scaled_wc('qu8_2222')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2222'], - [920, format(abs(scaled_wc('qu8_2223'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2223'], - [921, format(scaled_wc('qu8_2233')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2233'], - [922, format(abs(scaled_wc('qu8_2311'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2311'], - [923, format(abs(scaled_wc('qu8_2312'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2312'], - [924, format(abs(scaled_wc('qu8_2313'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2313'], - [925, format(abs(scaled_wc('qu8_2321'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2321'], - [926, format(abs(scaled_wc('qu8_2322'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2322'], - [927, format(abs(scaled_wc('qu8_2323'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2323'], - [928, format(abs(scaled_wc('qu8_2331'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2331'], - [929, format(abs(scaled_wc('qu8_2332'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2332'], - [930, format(abs(scaled_wc('qu8_2333'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs2333'], - [931, format(scaled_wc('qu8_3311')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs3311'], - [932, format(abs(scaled_wc('qu8_3312'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs3312'], - [933, format(abs(scaled_wc('qu8_3313'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs3313'], - [934, format(scaled_wc('qu8_3322')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs3322'], - [935, format(scaled_wc('qu8_3333')* lambda_smeft_value**2, '.6e') ,'# cQU8Abs3333'], - [936, format(abs(scaled_wc('qu8_3323'))* lambda_smeft_value**2, '.6e') ,'# cQU8Abs3323'], - [937, format(angle(scaled_wc('qu8_1112')), '.6e') ,'# cQU8Ph1112'], - [938, format(angle(scaled_wc('qu8_2212')), '.6e') ,'# cQU8Ph2212'], - [939, format(angle(scaled_wc('qu8_1113')), '.6e') ,'# cQU8Ph1113'], - [940, format(angle(scaled_wc('qu8_1123')), '.6e') ,'# cQU8Ph1123'], - [941, format(angle(scaled_wc('qu8_1211')), '.6e') ,'# cQU8Ph1211'], - [942, format(angle(scaled_wc('qu8_1212')), '.6e') ,'# cQU8Ph1212'], - [943, format(angle(scaled_wc('qu8_1221')), '.6e') ,'# cQU8Ph1221'], - [944, format(angle(scaled_wc('qu8_1213')), '.6e') ,'# cQU8Ph1213'], - [945, format(angle(scaled_wc('qu8_1231')), '.6e') ,'# cQU8Ph1231'], - [946, format(angle(scaled_wc('qu8_1222')), '.6e') ,'# cQU8Ph1222'], - [947, format(angle(scaled_wc('qu8_1223')), '.6e') ,'# cQU8Ph1223'], - [948, format(angle(scaled_wc('qu8_1232')), '.6e') ,'# cQU8Ph1232'], - [949, format(angle(scaled_wc('qu8_1233')), '.6e') ,'# cQU8Ph1233'], - [950, format(angle(scaled_wc('qu8_1311')), '.6e') ,'# cQU8Ph1311'], - [951, format(angle(scaled_wc('qu8_1312')), '.6e') ,'# cQU8Ph1312'], - [952, format(angle(scaled_wc('qu8_1313')), '.6e') ,'# cQU8Ph1313'], - [953, format(angle(scaled_wc('qu8_1331')), '.6e') ,'# cQU8Ph1331'], - [954, format(angle(scaled_wc('qu8_1321')), '.6e') ,'# cQU8Ph1321'], - [955, format(angle(scaled_wc('qu8_1322')), '.6e') ,'# cQU8Ph1322'], - [956, format(angle(scaled_wc('qu8_1332')), '.6e') ,'# cQU8Ph1332'], - [957, format(angle(scaled_wc('qu8_1323')), '.6e') ,'# cQU8Ph1323'], - [958, format(angle(scaled_wc('qu8_1333')), '.6e') ,'# cQU8Ph1333'], - [959, format(angle(scaled_wc('qu8_2213')), '.6e') ,'# cQU8Ph2213'], - [960, format(angle(scaled_wc('qu8_2223')), '.6e') ,'# cQU8Ph2223'], - [961, format(angle(scaled_wc('qu8_2311')), '.6e') ,'# cQU8Ph2311'], - [962, format(angle(scaled_wc('qu8_2312')), '.6e') ,'# cQU8Ph2312'], - [963, format(angle(scaled_wc('qu8_2313')), '.6e') ,'# cQU8Ph2313'], - [964, format(angle(scaled_wc('qu8_2321')), '.6e') ,'# cQU8Ph2321'], - [965, format(angle(scaled_wc('qu8_2322')), '.6e') ,'# cQU8Ph2322'], - [966, format(angle(scaled_wc('qu8_2323')), '.6e') ,'# cQU8Ph2323'], - [967, format(angle(scaled_wc('qu8_2331')), '.6e') ,'# cQU8Ph2331'], - [968, format(angle(scaled_wc('qu8_2332')), '.6e') ,'# cQU8Ph2332'], - [969, format(angle(scaled_wc('qu8_2333')), '.6e') ,'# cQU8Ph2333'], - [970, format(angle(scaled_wc('qu8_3323')), '.6e') ,'# cQU8Ph3323'], - [971, format(angle(scaled_wc('qu8_3312')), '.6e') ,'# cQU8Ph3312'], - [972, format(angle(scaled_wc('qu8_3313')), '.6e') ,'# cQU8Ph3313'], - [973, format(scaled_wc('qd1_1111')* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1111'], - [974, format(abs(scaled_wc('qd1_1112'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1112'], - [975, format(abs(scaled_wc('qd1_1113'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1113'], - [976, format(abs(scaled_wc('qd1_1123'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1123'], - [977, format(scaled_wc('qd1_1122')* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1122'], - [978, format(scaled_wc('qd1_1133')* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1133'], - [979, format(abs(scaled_wc('qd1_1211'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1211'], - [980, format(abs(scaled_wc('qd1_1212'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1212'], - [981, format(abs(scaled_wc('qd1_1221'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1221'], - [982, format(abs(scaled_wc('qd1_1213'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1213'], - [983, format(abs(scaled_wc('qd1_1231'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1231'], - [984, format(abs(scaled_wc('qd1_1222'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1222'], - [985, format(abs(scaled_wc('qd1_1223'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1223'], - [986, format(abs(scaled_wc('qd1_1232'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1232'], - [987, format(abs(scaled_wc('qd1_1233'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1233'], - [988, format(abs(scaled_wc('qd1_1311'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1311'], - [989, format(abs(scaled_wc('qd1_1312'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1312'], - [990, format(abs(scaled_wc('qd1_1313'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1313'], - [991, format(abs(scaled_wc('qd1_1331'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1331'], - [992, format(abs(scaled_wc('qd1_1321'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1321'], - [993, format(abs(scaled_wc('qd1_1322'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1322'], - [994, format(abs(scaled_wc('qd1_1332'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1332'], - [995, format(abs(scaled_wc('qd1_1323'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1323'], - [996, format(abs(scaled_wc('qd1_1333'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs1333'], - [997, format(scaled_wc('qd1_2211')* lambda_smeft_value**2, '.6e') ,'# cqd1Abs2211'], - [998, format(abs(scaled_wc('qd1_2212'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs2212'], - [999, format(abs(scaled_wc('qd1_2213'))* lambda_smeft_value**2, '.6e') ,'# cqd1Abs2213'], - [1000, format(scaled_wc('qd1_2222')* lambda_smeft_value**2, '.6e'), '# cqd1Abs2222'], - [1001, format(abs(scaled_wc('qd1_2223'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2223'], - [1002, format(scaled_wc('qd1_2233')* lambda_smeft_value**2, '.6e'), '# cqd1Abs2233'], - [1003, format(abs(scaled_wc('qd1_2311'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2311'], - [1004, format(abs(scaled_wc('qd1_2312'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2312'], - [1005, format(abs(scaled_wc('qd1_2313'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2313'], - [1006, format(abs(scaled_wc('qd1_2321'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2321'], - [1007, format(abs(scaled_wc('qd1_2322'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2322'], - [1008, format(abs(scaled_wc('qd1_2323'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2323'], - [1009, format(abs(scaled_wc('qd1_2331'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2331'], - [1010, format(abs(scaled_wc('qd1_2332'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2332'], - [1011, format(abs(scaled_wc('qd1_2333'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs2333'], - [1012, format(scaled_wc('qd1_3311')* lambda_smeft_value**2, '.6e'), '# cqd1Abs3311'], - [1013, format(abs(scaled_wc('qd1_3312'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs3312'], - [1014, format(abs(scaled_wc('qd1_3313'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs3313'], - [1015, format(scaled_wc('qd1_3322')* lambda_smeft_value**2, '.6e'), '# cqd1Abs3322'], - [1016, format(scaled_wc('qd1_3333')* lambda_smeft_value**2, '.6e'), '# cqd1Abs3333'], - [1017, format(abs(scaled_wc('qd1_3323'))* lambda_smeft_value**2, '.6e'), '# cqd1Abs3323'], - [1018, format(angle(scaled_wc('qd1_1112')), '.6e'), '# cqd1Ph1112'], - [1019, format(angle(scaled_wc('qd1_2212')), '.6e'), '# cqd1Ph2212'], - [1020, format(angle(scaled_wc('qd1_1113')), '.6e'), '# cqd1Ph1113'], - [1021, format(angle(scaled_wc('qd1_1123')), '.6e'), '# cqd1Ph1123'], - [1022, format(angle(scaled_wc('qd1_1211')), '.6e'), '# cqd1Ph1211'], - [1023, format(angle(scaled_wc('qd1_1212')), '.6e'), '# cqd1Ph1212'], - [1024, format(angle(scaled_wc('qd1_1221')), '.6e'), '# cqd1Ph1221'], - [1025, format(angle(scaled_wc('qd1_1213')), '.6e'), '# cqd1Ph1213'], - [1026, format(angle(scaled_wc('qd1_1231')), '.6e'), '# cqd1Ph1231'], - [1027, format(angle(scaled_wc('qd1_1222')), '.6e'), '# cqd1Ph1222'], - [1028, format(angle(scaled_wc('qd1_1223')), '.6e'), '# cqd1Ph1223'], - [1029, format(angle(scaled_wc('qd1_1232')), '.6e'), '# cqd1Ph1232'], - [1030, format(angle(scaled_wc('qd1_1233')), '.6e'), '# cqd1Ph1233'], - [1031, format(angle(scaled_wc('qd1_1311')), '.6e'), '# cqd1Ph1311'], - [1032, format(angle(scaled_wc('qd1_1312')), '.6e'), '# cqd1Ph1312'], - [1033, format(angle(scaled_wc('qd1_1313')), '.6e'), '# cqd1Ph1313'], - [1034, format(angle(scaled_wc('qd1_1331')), '.6e'), '# cqd1Ph1331'], - [1035, format(angle(scaled_wc('qd1_1321')), '.6e'), '# cqd1Ph1321'], - [1036, format(angle(scaled_wc('qd1_1322')), '.6e'), '# cqd1Ph1322'], - [1037, format(angle(scaled_wc('qd1_1332')), '.6e'), '# cqd1Ph1332'], - [1038, format(angle(scaled_wc('qd1_1323')), '.6e'), '# cqd1Ph1323'], - [1039, format(angle(scaled_wc('qd1_1333')), '.6e'), '# cqd1Ph1333'], - [1040, format(angle(scaled_wc('qd1_2213')), '.6e'), '# cqd1Ph2213'], - [1041, format(angle(scaled_wc('qd1_2223')), '.6e'), '# cqd1Ph2223'], - [1042, format(angle(scaled_wc('qd1_2311')), '.6e'), '# cqd1Ph2311'], - [1043, format(angle(scaled_wc('qd1_2312')), '.6e'), '# cqd1Ph2312'], - [1044, format(angle(scaled_wc('qd1_2313')), '.6e'), '# cqd1Ph2313'], - [1045, format(angle(scaled_wc('qd1_2321')), '.6e'), '# cqd1Ph2321'], - [1046, format(angle(scaled_wc('qd1_2322')), '.6e'), '# cqd1Ph2322'], - [1047, format(angle(scaled_wc('qd1_2323')), '.6e'), '# cqd1Ph2323'], - [1048, format(angle(scaled_wc('qd1_2331')), '.6e'), '# cqd1Ph2331'], - [1049, format(angle(scaled_wc('qd1_2332')), '.6e'), '# cqd1Ph2332'], - [1050, format(angle(scaled_wc('qd1_2333')), '.6e'), '# cqd1Ph2333'], - [1051, format(angle(scaled_wc('qd1_3323')), '.6e'), '# cqd1Ph3323'], - [1052, format(angle(scaled_wc('qd1_3312')), '.6e'), '# cqd1Ph3312'], - [1053, format(angle(scaled_wc('qd1_3313')), '.6e'), '# cqd1Ph3313'], - [1054, format(scaled_wc('qd8_1111')* lambda_smeft_value**2, '.6e'), '# cQD8Abs1111'], - [1055, format(abs(scaled_wc('qd8_1112'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1112'], - [1056, format(abs(scaled_wc('qd8_1113'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1113'], - [1057, format(abs(scaled_wc('qd8_1123'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1123'], - [1058, format(scaled_wc('qd8_1122')* lambda_smeft_value**2, '.6e'), '# cQD8Abs1122'], - [1059, format(scaled_wc('qd8_1133')* lambda_smeft_value**2, '.6e'), '# cQD8Abs1133'], - [1060, format(abs(scaled_wc('qd8_1211'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1211'], - [1061, format(abs(scaled_wc('qd8_1212'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1212'], - [1062, format(abs(scaled_wc('qd8_1221'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1221'], - [1063, format(abs(scaled_wc('qd8_1213'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1213'], - [1064, format(abs(scaled_wc('qd8_1231'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1231'], - [1065, format(abs(scaled_wc('qd8_1222'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1222'], - [1066, format(abs(scaled_wc('qd8_1223'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1223'], - [1067, format(abs(scaled_wc('qd8_1232'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1232'], - [1068, format(abs(scaled_wc('qd8_1233'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1233'], - [1069, format(abs(scaled_wc('qd8_1311'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1311'], - [1070, format(abs(scaled_wc('qd8_1312'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1312'], - [1071, format(abs(scaled_wc('qd8_1313'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1313'], - [1072, format(abs(scaled_wc('qd8_1331'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1331'], - [1073, format(abs(scaled_wc('qd8_1321'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1321'], - [1074, format(abs(scaled_wc('qd8_1322'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1322'], - [1075, format(abs(scaled_wc('qd8_1332'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1332'], - [1076, format(abs(scaled_wc('qd8_1323'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1323'], - [1077, format(abs(scaled_wc('qd8_1333'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs1333'], - [1078, format(scaled_wc('qd8_2211')* lambda_smeft_value**2, '.6e'), '# cQD8Abs2211'], - [1079, format(abs(scaled_wc('qd8_2212'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2212'], - [1080, format(abs(scaled_wc('qd8_2213'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2213'], - [1081, format(scaled_wc('qd8_2222')* lambda_smeft_value**2, '.6e'), '# cQD8Abs2222'], - [1082, format(abs(scaled_wc('qd8_2223'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2223'], - [1083, format(scaled_wc('qd8_2233')* lambda_smeft_value**2, '.6e'), '# cQD8Abs2233'], - [1084, format(abs(scaled_wc('qd8_2311'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2311'], - [1085, format(abs(scaled_wc('qd8_2312'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2312'], - [1086, format(abs(scaled_wc('qd8_2313'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2313'], - [1087, format(abs(scaled_wc('qd8_2321'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2321'], - [1088, format(abs(scaled_wc('qd8_2322'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2322'], - [1089, format(abs(scaled_wc('qd8_2323'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2323'], - [1090, format(abs(scaled_wc('qd8_2331'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2331'], - [1091, format(abs(scaled_wc('qd8_2332'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2332'], - [1092, format(abs(scaled_wc('qd8_2333'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs2333'], - [1093, format(scaled_wc('qd8_3311')* lambda_smeft_value**2, '.6e'), '# cQD8Abs3311'], - [1094, format(abs(scaled_wc('qd8_3312'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs3312'], - [1095, format(abs(scaled_wc('qd8_3313'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs3313'], - [1096, format(scaled_wc('qd8_3322')* lambda_smeft_value**2, '.6e'), '# cQD8Abs3322'], - [1097, format(scaled_wc('qd8_3333')* lambda_smeft_value**2, '.6e'), '# cQD8Abs3333'], - [1098, format(abs(scaled_wc('qd8_3323'))* lambda_smeft_value**2, '.6e'), '# cQD8Abs3323'], - [1099, format(angle(scaled_wc('qd8_1112')), '.6e'), '# cQD8Ph1112'], - [1100, format(angle(scaled_wc('qd8_2212')), '.6e'), '# cQD8Ph2212'], - [1101, format(angle(scaled_wc('qd8_1113')), '.6e'), '# cQD8Ph1113'], - [1102, format(angle(scaled_wc('qd8_1123')), '.6e'), '# cQD8Ph1123'], - [1103, format(angle(scaled_wc('qd8_1211')), '.6e'), '# cQD8Ph1211'], - [1104, format(angle(scaled_wc('qd8_1212')), '.6e'), '# cQD8Ph1212'], - [1105, format(angle(scaled_wc('qd8_1221')), '.6e'), '# cQD8Ph1221'], - [1106, format(angle(scaled_wc('qd8_1213')), '.6e'), '# cQD8Ph1213'], - [1107, format(angle(scaled_wc('qd8_1231')), '.6e'), '# cQD8Ph1231'], - [1108, format(angle(scaled_wc('qd8_1222')), '.6e'), '# cQD8Ph1222'], - [1109, format(angle(scaled_wc('qd8_1223')), '.6e'), '# cQD8Ph1223'], - [1110, format(angle(scaled_wc('qd8_1232')), '.6e'), '# cQD8Ph1232'], - [1111, format(angle(scaled_wc('qd8_1233')), '.6e'), '# cQD8Ph1233'], - [1112, format(angle(scaled_wc('qd8_1311')), '.6e'), '# cQD8Ph1311'], - [1113, format(angle(scaled_wc('qd8_1312')), '.6e'), '# cQD8Ph1312'], - [1114, format(angle(scaled_wc('qd8_1313')), '.6e'), '# cQD8Ph1313'], - [1115, format(angle(scaled_wc('qd8_1331')), '.6e'), '# cQD8Ph1331'], - [1116, format(angle(scaled_wc('qd8_1321')), '.6e'), '# cQD8Ph1321'], - [1117, format(angle(scaled_wc('qd8_1322')), '.6e'), '# cQD8Ph1322'], - [1118, format(angle(scaled_wc('qd8_1332')), '.6e'), '# cQD8Ph1332'], - [1119, format(angle(scaled_wc('qd8_1323')), '.6e'), '# cQD8Ph1323'], - [1120, format(angle(scaled_wc('qd8_1333')), '.6e'), '# cQD8Ph1333'], - [1121, format(angle(scaled_wc('qd8_2213')), '.6e'), '# cQD8Ph2213'], - [1122, format(angle(scaled_wc('qd8_2223')), '.6e'), '# cQD8Ph2223'], - [1123, format(angle(scaled_wc('qd8_2311')), '.6e'), '# cQD8Ph2311'], - [1124, format(angle(scaled_wc('qd8_2312')), '.6e'), '# cQD8Ph2312'], - [1125, format(angle(scaled_wc('qd8_2313')), '.6e'), '# cQD8Ph2313'], - [1126, format(angle(scaled_wc('qd8_2321')), '.6e'), '# cQD8Ph2321'], - [1127, format(angle(scaled_wc('qd8_2322')), '.6e'), '# cQD8Ph2322'], - [1128, format(angle(scaled_wc('qd8_2323')), '.6e'), '# cQD8Ph2323'], - [1129, format(angle(scaled_wc('qd8_2331')), '.6e'), '# cQD8Ph2331'], - [1130, format(angle(scaled_wc('qd8_2332')), '.6e'), '# cQD8Ph2332'], - [1131, format(angle(scaled_wc('qd8_2333')), '.6e'), '# cQD8Ph2333'], - [1132, format(angle(scaled_wc('qd8_3323')), '.6e'), '# cQD8Ph3323'], - [1133, format(angle(scaled_wc('qd8_3312')), '.6e'), '# cQD8Ph3312'], - [1134, format(angle(scaled_wc('qd8_3313')), '.6e'), '# cQD8Ph3313'], - [1135, format(scaled_wc('le_1111')* lambda_smeft_value**2, '.6e'), '# cleAbs1111'], - [1136, format(abs(scaled_wc('le_1112'))* lambda_smeft_value**2, '.6e'), '# cleAbs1112'], - [1137, format(abs(scaled_wc('le_1113'))* lambda_smeft_value**2, '.6e'), '# cleAbs1113'], - [1138, format(abs(scaled_wc('le_1123'))* lambda_smeft_value**2, '.6e'), '# cleAbs1123'], - [1139, format(scaled_wc('le_1122')* lambda_smeft_value**2, '.6e'), '# cleAbs1122'], - [1140, format(scaled_wc('le_1133')* lambda_smeft_value**2, '.6e'), '# cleAbs1133'], - [1141, format(abs(scaled_wc('le_1211'))* lambda_smeft_value**2, '.6e'), '# cleAbs1211'], - [1142, format(abs(scaled_wc('le_1212'))* lambda_smeft_value**2, '.6e'), '# cleAbs1212'], - [1143, format(abs(scaled_wc('le_1221'))* lambda_smeft_value**2, '.6e'), '# cleAbs1221'], - [1144, format(abs(scaled_wc('le_1213'))* lambda_smeft_value**2, '.6e'), '# cleAbs1213'], - [1145, format(abs(scaled_wc('le_1231'))* lambda_smeft_value**2, '.6e'), '# cleAbs1231'], - [1146, format(abs(scaled_wc('le_1222'))* lambda_smeft_value**2, '.6e'), '# cleAbs1222'], - [1147, format(abs(scaled_wc('le_1223'))* lambda_smeft_value**2, '.6e'), '# cleAbs1223'], - [1148, format(abs(scaled_wc('le_1232'))* lambda_smeft_value**2, '.6e'), '# cleAbs1232'], - [1149, format(abs(scaled_wc('le_1233'))* lambda_smeft_value**2, '.6e'), '# cleAbs1233'], - [1150, format(abs(scaled_wc('le_1311'))* lambda_smeft_value**2, '.6e'), '# cleAbs1311'], - [1151, format(abs(scaled_wc('le_1312'))* lambda_smeft_value**2, '.6e'), '# cleAbs1312'], - [1152, format(abs(scaled_wc('le_1313'))* lambda_smeft_value**2, '.6e'), '# cleAbs1313'], - [1153, format(abs(scaled_wc('le_1331'))* lambda_smeft_value**2, '.6e'), '# cleAbs1331'], - [1154, format(abs(scaled_wc('le_1321'))* lambda_smeft_value**2, '.6e'), '# cleAbs1321'], - [1155, format(abs(scaled_wc('le_1322'))* lambda_smeft_value**2, '.6e'), '# cleAbs1322'], - [1156, format(abs(scaled_wc('le_1332'))* lambda_smeft_value**2, '.6e'), '# cleAbs1332'], - [1157, format(abs(scaled_wc('le_1323'))* lambda_smeft_value**2, '.6e'), '# cleAbs1323'], - [1158, format(abs(scaled_wc('le_1333'))* lambda_smeft_value**2, '.6e'), '# cleAbs1333'], - [1159, format(scaled_wc('le_2211')* lambda_smeft_value**2, '.6e'), '# cleAbs2211'], - [1160, format(abs(scaled_wc('le_2212'))* lambda_smeft_value**2, '.6e'), '# cleAbs2212'], - [1161, format(abs(scaled_wc('le_2213'))* lambda_smeft_value**2, '.6e'), '# cleAbs2213'], - [1162, format(scaled_wc('le_2222')* lambda_smeft_value**2, '.6e'), '# cleAbs2222'], - [1163, format(abs(scaled_wc('le_2223'))* lambda_smeft_value**2, '.6e'), '# cleAbs2223'], - [1164, format(scaled_wc('le_2233')* lambda_smeft_value**2, '.6e'), '# cleAbs2233'], - [1165, format(abs(scaled_wc('le_2311'))* lambda_smeft_value**2, '.6e'), '# cleAbs2311'], - [1166, format(abs(scaled_wc('le_2312'))* lambda_smeft_value**2, '.6e'), '# cleAbs2312'], - [1167, format(abs(scaled_wc('le_2313'))* lambda_smeft_value**2, '.6e'), '# cleAbs2313'], - [1168, format(abs(scaled_wc('le_2321'))* lambda_smeft_value**2, '.6e'), '# cleAbs2321'], - [1169, format(abs(scaled_wc('le_2322'))* lambda_smeft_value**2, '.6e'), '# cleAbs2322'], - [1170, format(abs(scaled_wc('le_2323'))* lambda_smeft_value**2, '.6e'), '# cleAbs2323'], - [1171, format(abs(scaled_wc('le_2331'))* lambda_smeft_value**2, '.6e'), '# cleAbs2331'], - [1172, format(abs(scaled_wc('le_2332'))* lambda_smeft_value**2, '.6e'), '# cleAbs2332'], - [1173, format(abs(scaled_wc('le_2333'))* lambda_smeft_value**2, '.6e'), '# cleAbs2333'], - [1174, format(scaled_wc('le_3311')* lambda_smeft_value**2, '.6e'), '# cleAbs3311'], - [1175, format(abs(scaled_wc('le_3312'))* lambda_smeft_value**2, '.6e'), '# cleAbs3312'], - [1176, format(abs(scaled_wc('le_3313'))* lambda_smeft_value**2, '.6e'), '# cleAbs3313'], - [1177, format(scaled_wc('le_3322')* lambda_smeft_value**2, '.6e'), '# cleAbs3322'], - [1178, format(scaled_wc('le_3333')* lambda_smeft_value**2, '.6e'), '# cleAbs3333'], - [1179, format(abs(scaled_wc('le_3323'))* lambda_smeft_value**2, '.6e'), '# cleAbs3323'], - [1180, format(angle(scaled_wc('le_1112')), '.6e'), '# clePh1112'], - [1181, format(angle(scaled_wc('le_2212')), '.6e'), '# clePh2212'], - [1182, format(angle(scaled_wc('le_1113')), '.6e'), '# clePh1113'], - [1183, format(angle(scaled_wc('le_1123')), '.6e'), '# clePh1123'], - [1184, format(angle(scaled_wc('le_1211')), '.6e'), '# clePh1211'], - [1185, format(angle(scaled_wc('le_1212')), '.6e'), '# clePh1212'], - [1186, format(angle(scaled_wc('le_1221')), '.6e'), '# clePh1221'], - [1187, format(angle(scaled_wc('le_1213')), '.6e'), '# clePh1213'], - [1188, format(angle(scaled_wc('le_1231')), '.6e'), '# clePh1231'], - [1189, format(angle(scaled_wc('le_1222')), '.6e'), '# clePh1222'], - [1190, format(angle(scaled_wc('le_1223')), '.6e'), '# clePh1223'], - [1191, format(angle(scaled_wc('le_1232')), '.6e'), '# clePh1232'], - [1192, format(angle(scaled_wc('le_1233')), '.6e'), '# clePh1233'], - [1193, format(angle(scaled_wc('le_1311')), '.6e'), '# clePh1311'], - [1194, format(angle(scaled_wc('le_1312')), '.6e'), '# clePh1312'], - [1195, format(angle(scaled_wc('le_1313')), '.6e'), '# clePh1313'], - [1196, format(angle(scaled_wc('le_1331')), '.6e'), '# clePh1331'], - [1197, format(angle(scaled_wc('le_1321')), '.6e'), '# clePh1321'], - [1198, format(angle(scaled_wc('le_1322')), '.6e'), '# clePh1322'], - [1199, format(angle(scaled_wc('le_1332')), '.6e'), '# clePh1332'], - [1200, format(angle(scaled_wc('le_1323')), '.6e'), '# clePh1323'], - [1201, format(angle(scaled_wc('le_1333')), '.6e'), '# clePh1333'], - [1202, format(angle(scaled_wc('le_2213')), '.6e'), '# clePh2213'], - [1203, format(angle(scaled_wc('le_2223')), '.6e'), '# clePh2223'], - [1204, format(angle(scaled_wc('le_2311')), '.6e'), '# clePh2311'], - [1205, format(angle(scaled_wc('le_2312')), '.6e'), '# clePh2312'], - [1206, format(angle(scaled_wc('le_2313')), '.6e'), '# clePh2313'], - [1207, format(angle(scaled_wc('le_2321')), '.6e'), '# clePh2321'], - [1208, format(angle(scaled_wc('le_2322')), '.6e'), '# clePh2322'], - [1209, format(angle(scaled_wc('le_2323')), '.6e'), '# clePh2323'], - [1210, format(angle(scaled_wc('le_2331')), '.6e'), '# clePh2331'], - [1211, format(angle(scaled_wc('le_2332')), '.6e'), '# clePh2332'], - [1212, format(angle(scaled_wc('le_2333')), '.6e'), '# clePh2333'], - [1213, format(angle(scaled_wc('le_3323')), '.6e'), '# clePh3323'], - [1214, format(angle(scaled_wc('le_3312')), '.6e'), '# clePh3312'], - [1215, format(angle(scaled_wc('le_3313')), '.6e'), '# clePh3313'], - [1216, format(scaled_wc('lu_1111')* lambda_smeft_value**2, '.6e'), '# cluAbs1111'], - [1217, format(abs(scaled_wc('lu_1112'))* lambda_smeft_value**2, '.6e'), '# cluAbs1112'], - [1218, format(abs(scaled_wc('lu_1113'))* lambda_smeft_value**2, '.6e'), '# cluAbs1113'], - [1219, format(abs(scaled_wc('lu_1123'))* lambda_smeft_value**2, '.6e'), '# cluAbs1123'], - [1220, format(scaled_wc('lu_1122')* lambda_smeft_value**2, '.6e'), '# cluAbs1122'], - [1221, format(scaled_wc('lu_1133')* lambda_smeft_value**2, '.6e'), '# cluAbs1133'], - [1222, format(abs(scaled_wc('lu_1211'))* lambda_smeft_value**2, '.6e'), '# cluAbs1211'], - [1223, format(abs(scaled_wc('lu_1212'))* lambda_smeft_value**2, '.6e'), '# cluAbs1212'], - [1224, format(abs(scaled_wc('lu_1221'))* lambda_smeft_value**2, '.6e'), '# cluAbs1221'], - [1225, format(abs(scaled_wc('lu_1213'))* lambda_smeft_value**2, '.6e'), '# cluAbs1213'], - [1226, format(abs(scaled_wc('lu_1231'))* lambda_smeft_value**2, '.6e'), '# cluAbs1231'], - [1227, format(abs(scaled_wc('lu_1222'))* lambda_smeft_value**2, '.6e'), '# cluAbs1222'], - [1228, format(abs(scaled_wc('lu_1223'))* lambda_smeft_value**2, '.6e'), '# cluAbs1223'], - [1229, format(abs(scaled_wc('lu_1232'))* lambda_smeft_value**2, '.6e'), '# cluAbs1232'], - [1230, format(abs(scaled_wc('lu_1233'))* lambda_smeft_value**2, '.6e'), '# cluAbs1233'], - [1231, format(abs(scaled_wc('lu_1311'))* lambda_smeft_value**2, '.6e'), '# cluAbs1311'], - [1232, format(abs(scaled_wc('lu_1312'))* lambda_smeft_value**2, '.6e'), '# cluAbs1312'], - [1233, format(abs(scaled_wc('lu_1313'))* lambda_smeft_value**2, '.6e'), '# cluAbs1313'], - [1234, format(abs(scaled_wc('lu_1331'))* lambda_smeft_value**2, '.6e'), '# cluAbs1331'], - [1235, format(abs(scaled_wc('lu_1321'))* lambda_smeft_value**2, '.6e'), '# cluAbs1321'], - [1236, format(abs(scaled_wc('lu_1322'))* lambda_smeft_value**2, '.6e'), '# cluAbs1322'], - [1237, format(abs(scaled_wc('lu_1332'))* lambda_smeft_value**2, '.6e'), '# cluAbs1332'], - [1238, format(abs(scaled_wc('lu_1323'))* lambda_smeft_value**2, '.6e'), '# cluAbs1323'], - [1239, format(abs(scaled_wc('lu_1333'))* lambda_smeft_value**2, '.6e'), '# cluAbs1333'], - [1240, format(scaled_wc('lu_2211')* lambda_smeft_value**2, '.6e'), '# cluAbs2211'], - [1241, format(abs(scaled_wc('lu_2212'))* lambda_smeft_value**2, '.6e'), '# cluAbs2212'], - [1242, format(abs(scaled_wc('lu_2213'))* lambda_smeft_value**2, '.6e'), '# cluAbs2213'], - [1243, format(scaled_wc('lu_2222')* lambda_smeft_value**2, '.6e'), '# cluAbs2222'], - [1244, format(abs(scaled_wc('lu_2223'))* lambda_smeft_value**2, '.6e'), '# cluAbs2223'], - [1245, format(scaled_wc('lu_2233')* lambda_smeft_value**2, '.6e'), '# cluAbs2233'], - [1246, format(abs(scaled_wc('lu_2311'))* lambda_smeft_value**2, '.6e'), '# cluAbs2311'], - [1247, format(abs(scaled_wc('lu_2312'))* lambda_smeft_value**2, '.6e'), '# cluAbs2312'], - [1248, format(abs(scaled_wc('lu_2313'))* lambda_smeft_value**2, '.6e'), '# cluAbs2313'], - [1249, format(abs(scaled_wc('lu_2321'))* lambda_smeft_value**2, '.6e'), '# cluAbs2321'], - [1250, format(abs(scaled_wc('lu_2322'))* lambda_smeft_value**2, '.6e'), '# cluAbs2322'], - [1251, format(abs(scaled_wc('lu_2323'))* lambda_smeft_value**2, '.6e'), '# cluAbs2323'], - [1252, format(abs(scaled_wc('lu_2331'))* lambda_smeft_value**2, '.6e'), '# cluAbs2331'], - [1253, format(abs(scaled_wc('lu_2332'))* lambda_smeft_value**2, '.6e'), '# cluAbs2332'], - [1254, format(abs(scaled_wc('lu_2333'))* lambda_smeft_value**2, '.6e'), '# cluAbs2333'], - [1255, format(scaled_wc('lu_3311')* lambda_smeft_value**2, '.6e'), '# cluAbs3311'], - [1256, format(abs(scaled_wc('lu_3312'))* lambda_smeft_value**2, '.6e'), '# cluAbs3312'], - [1257, format(abs(scaled_wc('lu_3313'))* lambda_smeft_value**2, '.6e'), '# cluAbs3313'], - [1258, format(scaled_wc('lu_3322')* lambda_smeft_value**2, '.6e'), '# cluAbs3322'], - [1259, format(scaled_wc('lu_3333')* lambda_smeft_value**2, '.6e'), '# cluAbs3333'], - [1260, format(abs(scaled_wc('lu_3323'))* lambda_smeft_value**2, '.6e'), '# cluAbs3323'], - [1261, format(angle(scaled_wc('lu_1112')), '.6e'), '# cluPh1112'], - [1262, format(angle(scaled_wc('lu_2212')), '.6e'), '# cluPh2212'], - [1263, format(angle(scaled_wc('lu_1113')), '.6e'), '# cluPh1113'], - [1264, format(angle(scaled_wc('lu_1123')), '.6e'), '# cluPh1123'], - [1265, format(angle(scaled_wc('lu_1211')), '.6e'), '# cluPh1211'], - [1266, format(angle(scaled_wc('lu_1212')), '.6e'), '# cluPh1212'], - [1267, format(angle(scaled_wc('lu_1221')), '.6e'), '# cluPh1221'], - [1268, format(angle(scaled_wc('lu_1213')), '.6e'), '# cluPh1213'], - [1269, format(angle(scaled_wc('lu_1231')), '.6e'), '# cluPh1231'], - [1270, format(angle(scaled_wc('lu_1222')), '.6e'), '# cluPh1222'], - [1271, format(angle(scaled_wc('lu_1223')), '.6e'), '# cluPh1223'], - [1272, format(angle(scaled_wc('lu_1232')), '.6e'), '# cluPh1232'], - [1273, format(angle(scaled_wc('lu_1233')), '.6e'), '# cluPh1233'], - [1274, format(angle(scaled_wc('lu_1311')), '.6e'), '# cluPh1311'], - [1275, format(angle(scaled_wc('lu_1312')), '.6e'), '# cluPh1312'], - [1276, format(angle(scaled_wc('lu_1313')), '.6e'), '# cluPh1313'], - [1277, format(angle(scaled_wc('lu_1331')), '.6e'), '# cluPh1331'], - [1278, format(angle(scaled_wc('lu_1321')), '.6e'), '# cluPh1321'], - [1279, format(angle(scaled_wc('lu_1322')), '.6e'), '# cluPh1322'], - [1280, format(angle(scaled_wc('lu_1332')), '.6e'), '# cluPh1332'], - [1281, format(angle(scaled_wc('lu_1323')), '.6e'), '# cluPh1323'], - [1282, format(angle(scaled_wc('lu_1333')), '.6e'), '# cluPh1333'], - [1283, format(angle(scaled_wc('lu_2213')), '.6e'), '# cluPh2213'], - [1284, format(angle(scaled_wc('lu_2223')), '.6e'), '# cluPh2223'], - [1285, format(angle(scaled_wc('lu_2311')), '.6e'), '# cluPh2311'], - [1286, format(angle(scaled_wc('lu_2312')), '.6e'), '# cluPh2312'], - [1287, format(angle(scaled_wc('lu_2313')), '.6e'), '# cluPh2313'], - [1288, format(angle(scaled_wc('lu_2321')), '.6e'), '# cluPh2321'], - [1289, format(angle(scaled_wc('lu_2322')), '.6e'), '# cluPh2322'], - [1290, format(angle(scaled_wc('lu_2323')), '.6e'), '# cluPh2323'], - [1291, format(angle(scaled_wc('lu_2331')), '.6e'), '# cluPh2331'], - [1292, format(angle(scaled_wc('lu_2332')), '.6e'), '# cluPh2332'], - [1293, format(angle(scaled_wc('lu_2333')), '.6e'), '# cluPh2333'], - [1294, format(angle(scaled_wc('lu_3323')), '.6e'), '# cluPh3323'], - [1295, format(angle(scaled_wc('lu_3312')), '.6e'), '# cluPh3312'], - [1296, format(angle(scaled_wc('lu_3313')), '.6e'), '# cluPh3313'], - [1297, format(scaled_wc('ld_1111')* lambda_smeft_value**2, '.6e'), '# cldAbs1111'], - [1298, format(abs(scaled_wc('ld_1112'))* lambda_smeft_value**2, '.6e'), '# cldAbs1112'], - [1299, format(abs(scaled_wc('ld_1113'))* lambda_smeft_value**2, '.6e'), '# cldAbs1113'], - [1300, format(abs(scaled_wc('ld_1123'))* lambda_smeft_value**2, '.6e'), '# cldAbs1123'], - [1301, format(scaled_wc('ld_1122')* lambda_smeft_value**2, '.6e'), '# cldAbs1122'], - [1302, format(scaled_wc('ld_1133')* lambda_smeft_value**2, '.6e'), '# cldAbs1133'], - [1303, format(abs(scaled_wc('ld_1211'))* lambda_smeft_value**2, '.6e'), '# cldAbs1211'], - [1304, format(abs(scaled_wc('ld_1212'))* lambda_smeft_value**2, '.6e'), '# cldAbs1212'], - [1305, format(abs(scaled_wc('ld_1221'))* lambda_smeft_value**2, '.6e'), '# cldAbs1221'], - [1306, format(abs(scaled_wc('ld_1213'))* lambda_smeft_value**2, '.6e'), '# cldAbs1213'], - [1307, format(abs(scaled_wc('ld_1231'))* lambda_smeft_value**2, '.6e'), '# cldAbs1231'], - [1308, format(abs(scaled_wc('ld_1222'))* lambda_smeft_value**2, '.6e'), '# cldAbs1222'], - [1309, format(abs(scaled_wc('ld_1223'))* lambda_smeft_value**2, '.6e'), '# cldAbs1223'], - [1310, format(abs(scaled_wc('ld_1232'))* lambda_smeft_value**2, '.6e'), '# cldAbs1232'], - [1311, format(abs(scaled_wc('ld_1233'))* lambda_smeft_value**2, '.6e'), '# cldAbs1233'], - [1312, format(abs(scaled_wc('ld_1311'))* lambda_smeft_value**2, '.6e'), '# cldAbs1311'], - [1313, format(abs(scaled_wc('ld_1312'))* lambda_smeft_value**2, '.6e'), '# cldAbs1312'], - [1314, format(abs(scaled_wc('ld_1313'))* lambda_smeft_value**2, '.6e'), '# cldAbs1313'], - [1315, format(abs(scaled_wc('ld_1331'))* lambda_smeft_value**2, '.6e'), '# cldAbs1331'], - [1316, format(abs(scaled_wc('ld_1321'))* lambda_smeft_value**2, '.6e'), '# cldAbs1321'], - [1317, format(abs(scaled_wc('ld_1322'))* lambda_smeft_value**2, '.6e'), '# cldAbs1322'], - [1318, format(abs(scaled_wc('ld_1332'))* lambda_smeft_value**2, '.6e'), '# cldAbs1332'], - [1319, format(abs(scaled_wc('ld_1323'))* lambda_smeft_value**2, '.6e'), '# cldAbs1323'], - [1320, format(abs(scaled_wc('ld_1333'))* lambda_smeft_value**2, '.6e'), '# cldAbs1333'], - [1321, format(scaled_wc('ld_2211')* lambda_smeft_value**2, '.6e'), '# cldAbs2211'], - [1322, format(abs(scaled_wc('ld_2212'))* lambda_smeft_value**2, '.6e'), '# cldAbs2212'], - [1323, format(abs(scaled_wc('ld_2213'))* lambda_smeft_value**2, '.6e'), '# cldAbs2213'], - [1324, format(scaled_wc('ld_2222')* lambda_smeft_value**2, '.6e'), '# cldAbs2222'], - [1325, format(abs(scaled_wc('ld_2223'))* lambda_smeft_value**2, '.6e'), '# cldAbs2223'], - [1326, format(scaled_wc('ld_2233')* lambda_smeft_value**2, '.6e'), '# cldAbs2233'], - [1327, format(abs(scaled_wc('ld_2311'))* lambda_smeft_value**2, '.6e'), '# cldAbs2311'], - [1328, format(abs(scaled_wc('ld_2312'))* lambda_smeft_value**2, '.6e'), '# cldAbs2312'], - [1329, format(abs(scaled_wc('ld_2313'))* lambda_smeft_value**2, '.6e'), '# cldAbs2313'], - [1330, format(abs(scaled_wc('ld_2321'))* lambda_smeft_value**2, '.6e'), '# cldAbs2321'], - [1331, format(abs(scaled_wc('ld_2322'))* lambda_smeft_value**2, '.6e'), '# cldAbs2322'], - [1332, format(abs(scaled_wc('ld_2323'))* lambda_smeft_value**2, '.6e'), '# cldAbs2323'], - [1333, format(abs(scaled_wc('ld_2331'))* lambda_smeft_value**2, '.6e'), '# cldAbs2331'], - [1334, format(abs(scaled_wc('ld_2332'))* lambda_smeft_value**2, '.6e'), '# cldAbs2332'], - [1335, format(abs(scaled_wc('ld_2333'))* lambda_smeft_value**2, '.6e'), '# cldAbs2333'], - [1336, format(scaled_wc('ld_3311')* lambda_smeft_value**2, '.6e'), '# cldAbs3311'], - [1337, format(abs(scaled_wc('ld_3312'))* lambda_smeft_value**2, '.6e'), '# cldAbs3312'], - [1338, format(abs(scaled_wc('ld_3313'))* lambda_smeft_value**2, '.6e'), '# cldAbs3313'], - [1339, format(scaled_wc('ld_3322')* lambda_smeft_value**2, '.6e'), '# cldAbs3322'], - [1340, format(scaled_wc('ld_3333')* lambda_smeft_value**2, '.6e'), '# cldAbs3333'], - [1341, format(abs(scaled_wc('ld_3323'))* lambda_smeft_value**2, '.6e'), '# cldAbs3323'], - [1342, format(angle(scaled_wc('ld_1112')), '.6e'), '# cldPh1112'], - [1343, format(angle(scaled_wc('ld_2212')), '.6e'), '# cldPh2212'], - [1344, format(angle(scaled_wc('ld_1113')), '.6e'), '# cldPh1113'], - [1345, format(angle(scaled_wc('ld_1123')), '.6e'), '# cldPh1123'], - [1346, format(angle(scaled_wc('ld_1211')), '.6e'), '# cldPh1211'], - [1347, format(angle(scaled_wc('ld_1212')), '.6e'), '# cldPh1212'], - [1348, format(angle(scaled_wc('ld_1221')), '.6e'), '# cldPh1221'], - [1349, format(angle(scaled_wc('ld_1213')), '.6e'), '# cldPh1213'], - [1350, format(angle(scaled_wc('ld_1231')), '.6e'), '# cldPh1231'], - [1351, format(angle(scaled_wc('ld_1222')), '.6e'), '# cldPh1222'], - [1352, format(angle(scaled_wc('ld_1223')), '.6e'), '# cldPh1223'], - [1353, format(angle(scaled_wc('ld_1232')), '.6e'), '# cldPh1232'], - [1354, format(angle(scaled_wc('ld_1233')), '.6e'), '# cldPh1233'], - [1355, format(angle(scaled_wc('ld_1311')), '.6e'), '# cldPh1311'], - [1356, format(angle(scaled_wc('ld_1312')), '.6e'), '# cldPh1312'], - [1357, format(angle(scaled_wc('ld_1313')), '.6e'), '# cldPh1313'], - [1358, format(angle(scaled_wc('ld_1331')), '.6e'), '# cldPh1331'], - [1359, format(angle(scaled_wc('ld_1321')), '.6e'), '# cldPh1321'], - [1360, format(angle(scaled_wc('ld_1322')), '.6e'), '# cldPh1322'], - [1361, format(angle(scaled_wc('ld_1332')), '.6e'), '# cldPh1332'], - [1362, format(angle(scaled_wc('ld_1323')), '.6e'), '# cldPh1323'], - [1363, format(angle(scaled_wc('ld_1333')), '.6e'), '# cldPh1333'], - [1364, format(angle(scaled_wc('ld_2213')), '.6e'), '# cldPh2213'], - [1365, format(angle(scaled_wc('ld_2223')), '.6e'), '# cldPh2223'], - [1366, format(angle(scaled_wc('ld_2311')), '.6e'), '# cldPh2311'], - [1367, format(angle(scaled_wc('ld_2312')), '.6e'), '# cldPh2312'], - [1368, format(angle(scaled_wc('ld_2313')), '.6e'), '# cldPh2313'], - [1369, format(angle(scaled_wc('ld_2321')), '.6e'), '# cldPh2321'], - [1370, format(angle(scaled_wc('ld_2322')), '.6e'), '# cldPh2322'], - [1371, format(angle(scaled_wc('ld_2323')), '.6e'), '# cldPh2323'], - [1372, format(angle(scaled_wc('ld_2331')), '.6e'), '# cldPh2331'], - [1373, format(angle(scaled_wc('ld_2332')), '.6e'), '# cldPh2332'], - [1374, format(angle(scaled_wc('ld_2333')), '.6e'), '# cldPh2333'], - [1375, format(angle(scaled_wc('ld_3323')), '.6e'), '# cldPh3323'], - [1376, format(angle(scaled_wc('ld_3312')), '.6e'), '# cldPh3312'], - [1377, format(angle(scaled_wc('ld_3313')), '.6e'), '# cldPh3313'], - [1378, format(scaled_wc('qe_1111')* lambda_smeft_value**2, '.6e'), '# cqeAbs1111'], - [1379, format(abs(scaled_wc('qe_1112'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1112'], - [1380, format(abs(scaled_wc('qe_1113'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1113'], - [1381, format(abs(scaled_wc('qe_1123'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1123'], - [1382, format(scaled_wc('qe_1122')* lambda_smeft_value**2, '.6e'), '# cqeAbs1122'], - [1383, format(scaled_wc('qe_1133')* lambda_smeft_value**2, '.6e'), '# cqeAbs1133'], - [1384, format(abs(scaled_wc('qe_1211'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1211'], - [1385, format(abs(scaled_wc('qe_1212'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1212'], - [1386, format(abs(scaled_wc('qe_1221'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1221'], - [1387, format(abs(scaled_wc('qe_1213'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1213'], - [1388, format(abs(scaled_wc('qe_1231'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1231'], - [1389, format(abs(scaled_wc('qe_1222'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1222'], - [1390, format(abs(scaled_wc('qe_1223'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1223'], - [1391, format(abs(scaled_wc('qe_1232'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1232'], - [1392, format(abs(scaled_wc('qe_1233'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1233'], - [1393, format(abs(scaled_wc('qe_1311'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1311'], - [1394, format(abs(scaled_wc('qe_1312'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1312'], - [1395, format(abs(scaled_wc('qe_1313'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1313'], - [1396, format(abs(scaled_wc('qe_1331'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1331'], - [1397, format(abs(scaled_wc('qe_1321'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1321'], - [1398, format(abs(scaled_wc('qe_1322'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1322'], - [1399, format(abs(scaled_wc('qe_1332'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1332'], - [1400, format(abs(scaled_wc('qe_1323'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1323'], - [1401, format(abs(scaled_wc('qe_1333'))* lambda_smeft_value**2, '.6e'), '# cqeAbs1333'], - [1402, format(scaled_wc('qe_2211')* lambda_smeft_value**2, '.6e'), '# cqeAbs2211'], - [1403, format(abs(scaled_wc('qe_2212'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2212'], - [1404, format(abs(scaled_wc('qe_2213'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2213'], - [1405, format(scaled_wc('qe_2222')* lambda_smeft_value**2, '.6e'), '# cqeAbs2222'], - [1406, format(abs(scaled_wc('qe_2223'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2223'], - [1407, format(scaled_wc('qe_2233')* lambda_smeft_value**2, '.6e'), '# cqeAbs2233'], - [1408, format(abs(scaled_wc('qe_2311'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2311'], - [1409, format(abs(scaled_wc('qe_2312'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2312'], - [1410, format(abs(scaled_wc('qe_2313'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2313'], - [1411, format(abs(scaled_wc('qe_2321'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2321'], - [1412, format(abs(scaled_wc('qe_2322'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2322'], - [1413, format(abs(scaled_wc('qe_2323'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2323'], - [1414, format(abs(scaled_wc('qe_2331'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2331'], - [1415, format(abs(scaled_wc('qe_2332'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2332'], - [1416, format(abs(scaled_wc('qe_2333'))* lambda_smeft_value**2, '.6e'), '# cqeAbs2333'], - [1417, format(scaled_wc('qe_3311')* lambda_smeft_value**2, '.6e'), '# cqeAbs3311'], - [1418, format(abs(scaled_wc('qe_3312'))* lambda_smeft_value**2, '.6e'), '# cqeAbs3312'], - [1419, format(abs(scaled_wc('qe_3313'))* lambda_smeft_value**2, '.6e'), '# cqeAbs3313'], - [1420, format(scaled_wc('qe_3322')* lambda_smeft_value**2, '.6e'), '# cqeAbs3322'], - [1421, format(scaled_wc('qe_3333')* lambda_smeft_value**2, '.6e'), '# cqeAbs3333'], - [1422, format(abs(scaled_wc('qe_3323'))* lambda_smeft_value**2, '.6e'), '# cqeAbs3323'], - [1423, format(angle(scaled_wc('qe_1112')), '.6e'), '# cqePh1112'], - [1424, format(angle(scaled_wc('qe_2212')), '.6e'), '# cqePh2212'], - [1425, format(angle(scaled_wc('qe_1113')), '.6e'), '# cqePh1113'], - [1426, format(angle(scaled_wc('qe_1123')), '.6e'), '# cqePh1123'], - [1427, format(angle(scaled_wc('qe_1211')), '.6e'), '# cqePh1211'], - [1428, format(angle(scaled_wc('qe_1212')), '.6e'), '# cqePh1212'], - [1429, format(angle(scaled_wc('qe_1221')), '.6e'), '# cqePh1221'], - [1430, format(angle(scaled_wc('qe_1213')), '.6e'), '# cqePh1213'], - [1431, format(angle(scaled_wc('qe_1231')), '.6e'), '# cqePh1231'], - [1432, format(angle(scaled_wc('qe_1222')), '.6e'), '# cqePh1222'], - [1433, format(angle(scaled_wc('qe_1223')), '.6e'), '# cqePh1223'], - [1434, format(angle(scaled_wc('qe_1232')), '.6e'), '# cqePh1232'], - [1435, format(angle(scaled_wc('qe_1233')), '.6e'), '# cqePh1233'], - [1436, format(angle(scaled_wc('qe_1311')), '.6e'), '# cqePh1311'], - [1437, format(angle(scaled_wc('qe_1312')), '.6e'), '# cqePh1312'], - [1438, format(angle(scaled_wc('qe_1313')), '.6e'), '# cqePh1313'], - [1439, format(angle(scaled_wc('qe_1331')), '.6e'), '# cqePh1331'], - [1440, format(angle(scaled_wc('qe_1321')), '.6e'), '# cqePh1321'], - [1441, format(angle(scaled_wc('qe_1322')), '.6e'), '# cqePh1322'], - [1442, format(angle(scaled_wc('qe_1332')), '.6e'), '# cqePh1332'], - [1443, format(angle(scaled_wc('qe_1323')), '.6e'), '# cqePh1323'], - [1444, format(angle(scaled_wc('qe_1333')), '.6e'), '# cqePh1333'], - [1445, format(angle(scaled_wc('qe_2213')), '.6e'), '# cqePh2213'], - [1446, format(angle(scaled_wc('qe_2223')), '.6e'), '# cqePh2223'], - [1447, format(angle(scaled_wc('qe_2311')), '.6e'), '# cqePh2311'], - [1448, format(angle(scaled_wc('qe_2312')), '.6e'), '# cqePh2312'], - [1449, format(angle(scaled_wc('qe_2313')), '.6e'), '# cqePh2313'], - [1450, format(angle(scaled_wc('qe_2321')), '.6e'), '# cqePh2321'], - [1451, format(angle(scaled_wc('qe_2322')), '.6e'), '# cqePh2322'], - [1452, format(angle(scaled_wc('qe_2323')), '.6e'), '# cqePh2323'], - [1453, format(angle(scaled_wc('qe_2331')), '.6e'), '# cqePh2331'], - [1454, format(angle(scaled_wc('qe_2332')), '.6e'), '# cqePh2332'], - [1455, format(angle(scaled_wc('qe_2333')), '.6e'), '# cqePh2333'], - [1456, format(angle(scaled_wc('qe_3323')), '.6e'), '# cqePh3323'], - [1457, format(angle(scaled_wc('qe_3312')), '.6e'), '# cqePh3312'], - [1458, format(angle(scaled_wc('qe_3313')), '.6e'), '# cqePh3313'], - ]} - - card['Block']['FRBlock10'] = {'values': [ - [1, 1, format(angle(scaled_wc('uphi_11')), '.6e'), '# cuHPh1x1'], - [1, 2, format(angle(scaled_wc('uphi_12')), '.6e'), '# cuHPh1x2'], - [1, 3, format(angle(scaled_wc('uphi_13')), '.6e'), '# cuHPh1x3'], - [2, 1, format(angle(scaled_wc('uphi_21')), '.6e'), '# cuHPh2x1'], - [2, 2, format(angle(scaled_wc('uphi_22')), '.6e'), '# cuHPh2x2'], - [2, 3, format(angle(scaled_wc('uphi_23')), '.6e'), '# cuHPh2x3'], - [3, 1, format(angle(scaled_wc('uphi_31')), '.6e'), '# cuHPh3x1'], - [3, 2, format(angle(scaled_wc('uphi_32')), '.6e'), '# cuHPh3x2'], - [3, 3, format(angle(scaled_wc('uphi_33')), '.6e'), '# cuHPh3x3'], - ]} - - card['Block']['FRBlock11'] = {'values': [ - [1, 1, format(angle(scaled_wc('dphi_11')), '.6e'), '# cdHPh1x1'], - [1, 2, format(angle(scaled_wc('dphi_12')), '.6e'), '# cdHPh1x2'], - [1, 3, format(angle(scaled_wc('dphi_13')), '.6e'), '# cdHPh1x3'], - [2, 1, format(angle(scaled_wc('dphi_21')), '.6e'), '# cdHPh2x1'], - [2, 2, format(angle(scaled_wc('dphi_22')), '.6e'), '# cdHPh2x2'], - [2, 3, format(angle(scaled_wc('dphi_23')), '.6e'), '# cdHPh2x3'], - [3, 1, format(angle(scaled_wc('dphi_31')), '.6e'), '# cdHPh3x1'], - [3, 2, format(angle(scaled_wc('dphi_32')), '.6e'), '# cdHPh3x2'], - [3, 3, format(angle(scaled_wc('dphi_33')), '.6e'), '# cdHPh3x3'], - ]} - - card['Block']['FRBlock15'] = {'values': [ - [1, 1, format(abs(scaled_wc('eW_11'))* lambda_smeft_value**2, '.6e'), '# ceWAbs1x1'], - [1, 2, format(abs(scaled_wc('eW_12'))* lambda_smeft_value**2, '.6e'), '# ceWAbs1x2'], - [1, 3, format(abs(scaled_wc('eW_13'))* lambda_smeft_value**2, '.6e'), '# ceWAbs1x3'], - [2, 1, format(abs(scaled_wc('eW_21'))* lambda_smeft_value**2, '.6e'), '# ceWAbs2x1'], - [2, 2, format(abs(scaled_wc('eW_22'))* lambda_smeft_value**2, '.6e'), '# ceWAbs2x2'], - [2, 3, format(abs(scaled_wc('eW_23'))* lambda_smeft_value**2, '.6e'), '# ceWAbs2x3'], - [3, 1, format(abs(scaled_wc('eW_31'))* lambda_smeft_value**2, '.6e'), '# ceWAbs3x1'], - [3, 2, format(abs(scaled_wc('eW_32'))* lambda_smeft_value**2, '.6e'), '# ceWAbs3x2'], - [3, 3, format(abs(scaled_wc('eW_33'))* lambda_smeft_value**2, '.6e'), '# ceWAbs3x3'], - ]} - - card['Block']['FRBlock16'] = {'values': [ - [1, 1, format(angle(scaled_wc('eW_11')), '.6e'), '# ceWPh1x1'], - [1, 2, format(angle(scaled_wc('eW_12')), '.6e'), '# ceWPh1x2'], - [1, 3, format(angle(scaled_wc('eW_13')), '.6e'), '# ceWPh1x3'], - [2, 1, format(angle(scaled_wc('eW_21')), '.6e'), '# ceWPh2x1'], - [2, 2, format(angle(scaled_wc('eW_22')), '.6e'), '# ceWPh2x2'], - [2, 3, format(angle(scaled_wc('eW_23')), '.6e'), '# ceWPh2x3'], - [3, 1, format(angle(scaled_wc('eW_31')), '.6e'), '# ceWPh3x1'], - [3, 2, format(angle(scaled_wc('eW_32')), '.6e'), '# ceWPh3x2'], - [3, 3, format(angle(scaled_wc('eW_33')), '.6e'), '# ceWPh3x3'], - ]} - - card['Block']['FRBlock18'] = {'values': [ - [1, 1, format(abs(scaled_wc('eB_11'))* lambda_smeft_value**2, '.6e'), '# ceBAbs1x1'], - [1, 2, format(abs(scaled_wc('eB_12'))* lambda_smeft_value**2, '.6e'), '# ceBAbs1x2'], - [1, 3, format(abs(scaled_wc('eB_13'))* lambda_smeft_value**2, '.6e'), '# ceBAbs1x3'], - [2, 1, format(abs(scaled_wc('eB_21'))* lambda_smeft_value**2, '.6e'), '# ceBAbs2x1'], - [2, 2, format(abs(scaled_wc('eB_22'))* lambda_smeft_value**2, '.6e'), '# ceBAbs2x2'], - [2, 3, format(abs(scaled_wc('eB_23'))* lambda_smeft_value**2, '.6e'), '# ceBAbs2x3'], - [3, 1, format(abs(scaled_wc('eB_31'))* lambda_smeft_value**2, '.6e'), '# ceBAbs3x1'], - [3, 2, format(abs(scaled_wc('eB_32'))* lambda_smeft_value**2, '.6e'), '# ceBAbs3x2'], - [3, 3, format(abs(scaled_wc('eB_33'))* lambda_smeft_value**2, '.6e'), '# ceBAbs3x3'], - ]} - - card['Block']['FRBlock19'] = {'values': [ - [1, 1, format(angle(scaled_wc('eB_11')), '.6e'), '# ceBPh1x1'], - [1, 2, format(angle(scaled_wc('eB_12')), '.6e'), '# ceBPh1x2'], - [1, 3, format(angle(scaled_wc('eB_13')), '.6e'), '# ceBPh1x3'], - [2, 1, format(angle(scaled_wc('eB_21')), '.6e'), '# ceBPh2x1'], - [2, 2, format(angle(scaled_wc('eB_22')), '.6e'), '# ceBPh2x2'], - [2, 3, format(angle(scaled_wc('eB_23')), '.6e'), '# ceBPh2x3'], - [3, 1, format(angle(scaled_wc('eB_31')), '.6e'), '# ceBPh3x1'], - [3, 2, format(angle(scaled_wc('eB_32')), '.6e'), '# ceBPh3x2'], - [3, 3, format(angle(scaled_wc('eB_33')), '.6e'), '# ceBPh3x3'], - ]} - - card['Block']['FRBlock21'] = {'values': [ - [1, 1, format(abs(scaled_wc('uG_11'))* lambda_smeft_value**2, '.6e'), '# cuGAbs1x1'], - [1, 2, format(abs(scaled_wc('uG_12'))* lambda_smeft_value**2, '.6e'), '# cuGAbs1x2'], - [1, 3, format(abs(scaled_wc('uG_13'))* lambda_smeft_value**2, '.6e'), '# cuGAbs1x3'], - [2, 1, format(abs(scaled_wc('uG_21'))* lambda_smeft_value**2, '.6e'), '# cuGAbs2x1'], - [2, 2, format(abs(scaled_wc('uG_22'))* lambda_smeft_value**2, '.6e'), '# cuGAbs2x2'], - [2, 3, format(abs(scaled_wc('uG_23'))* lambda_smeft_value**2, '.6e'), '# cuGAbs2x3'], - [3, 1, format(abs(scaled_wc('uG_31'))* lambda_smeft_value**2, '.6e'), '# cuGAbs3x1'], - [3, 2, format(abs(scaled_wc('uG_32'))* lambda_smeft_value**2, '.6e'), '# cuGAbs3x2'], - [3, 3, format(abs(scaled_wc('uG_33'))* lambda_smeft_value**2, '.6e'), '# cuGAbs3x3'], - ]} - - card['Block']['FRBlock22'] = {'values': [ - [1, 1, format(angle(scaled_wc('uG_11')), '.6e'), '# cuGPh1x1'], - [1, 2, format(angle(scaled_wc('uG_12')), '.6e'), '# cuGPh1x2'], - [1, 3, format(angle(scaled_wc('uG_13')), '.6e'), '# cuGPh1x3'], - [2, 1, format(angle(scaled_wc('uG_21')), '.6e'), '# cuGPh2x1'], - [2, 2, format(angle(scaled_wc('uG_22')), '.6e'), '# cuGPh2x2'], - [2, 3, format(angle(scaled_wc('uG_23')), '.6e'), '# cuGPh2x3'], - [3, 1, format(angle(scaled_wc('uG_31')), '.6e'), '# cuGPh3x1'], - [3, 2, format(angle(scaled_wc('uG_32')), '.6e'), '# cuGPh3x2'], - [3, 3, format(angle(scaled_wc('uG_33')), '.6e'), '# cuGPh3x3'], - ]} - - card['Block']['FRBlock24'] = {'values': [ - [1, 1, format(abs(scaled_wc('uW_11'))* lambda_smeft_value**2, '.6e'), '# cuWAbs1x1'], - [1, 2, format(abs(scaled_wc('uW_12'))* lambda_smeft_value**2, '.6e'), '# cuWAbs1x2'], - [1, 3, format(abs(scaled_wc('uW_13'))* lambda_smeft_value**2, '.6e'), '# cuWAbs1x3'], - [2, 1, format(abs(scaled_wc('uW_21'))* lambda_smeft_value**2, '.6e'), '# cuWAbs2x1'], - [2, 2, format(abs(scaled_wc('uW_22'))* lambda_smeft_value**2, '.6e'), '# cuWAbs2x2'], - [2, 3, format(abs(scaled_wc('uW_23'))* lambda_smeft_value**2, '.6e'), '# cuWAbs2x3'], - [3, 1, format(abs(scaled_wc('uW_31'))* lambda_smeft_value**2, '.6e'), '# cuWAbs3x1'], - [3, 2, format(abs(scaled_wc('uW_32'))* lambda_smeft_value**2, '.6e'), '# cuWAbs3x2'], - [3, 3, format(abs(scaled_wc('uW_33'))* lambda_smeft_value**2, '.6e'), '# cuWAbs3x3'], - ]} - - card['Block']['FRBlock25'] = {'values': [ - [1, 1, format(angle(scaled_wc('uW_11')), '.6e'), '# cuWPh1x1'], - [1, 2, format(angle(scaled_wc('uW_12')), '.6e'), '# cuWPh1x2'], - [1, 3, format(angle(scaled_wc('uW_13')), '.6e'), '# cuWPh1x3'], - [2, 1, format(angle(scaled_wc('uW_21')), '.6e'), '# cuWPh2x1'], - [2, 2, format(angle(scaled_wc('uW_22')), '.6e'), '# cuWPh2x2'], - [2, 3, format(angle(scaled_wc('uW_23')), '.6e'), '# cuWPh2x3'], - [3, 1, format(angle(scaled_wc('uW_31')), '.6e'), '# cuWPh3x1'], - [3, 2, format(angle(scaled_wc('uW_32')), '.6e'), '# cuWPh3x2'], - [3, 3, format(angle(scaled_wc('uW_33')), '.6e'), '# cuWPh3x3'], - ]} - - card['Block']['FRBlock27'] = {'values': [ - [1, 1, format(abs(scaled_wc('uB_11'))* lambda_smeft_value**2, '.6e'), '# cuBAbs1x1'], - [1, 2, format(abs(scaled_wc('uB_12'))* lambda_smeft_value**2, '.6e'), '# cuBAbs1x2'], - [1, 3, format(abs(scaled_wc('uB_13'))* lambda_smeft_value**2, '.6e'), '# cuBAbs1x3'], - [2, 1, format(abs(scaled_wc('uB_21'))* lambda_smeft_value**2, '.6e'), '# cuBAbs2x1'], - [2, 2, format(abs(scaled_wc('uB_22'))* lambda_smeft_value**2, '.6e'), '# cuBAbs2x2'], - [2, 3, format(abs(scaled_wc('uB_23'))* lambda_smeft_value**2, '.6e'), '# cuBAbs2x3'], - [3, 1, format(abs(scaled_wc('uB_31'))* lambda_smeft_value**2, '.6e'), '# cuBAbs3x1'], - [3, 2, format(abs(scaled_wc('uB_32'))* lambda_smeft_value**2, '.6e'), '# cuBAbs3x2'], - [3, 3, format(abs(scaled_wc('uB_33'))* lambda_smeft_value**2, '.6e'), '# cuBAbs3x3'], - ]} - - card['Block']['FRBlock28'] = {'values': [ - [1, 1, format(angle(scaled_wc('uB_11')), '.6e'), '# cuBPh1x1'], - [1, 2, format(angle(scaled_wc('uB_12')), '.6e'), '# cuBPh1x2'], - [1, 3, format(angle(scaled_wc('uB_13')), '.6e'), '# cuBPh1x3'], - [2, 1, format(angle(scaled_wc('uB_21')), '.6e'), '# cuBPh2x1'], - [2, 2, format(angle(scaled_wc('uB_22')), '.6e'), '# cuBPh2x2'], - [2, 3, format(angle(scaled_wc('uB_23')), '.6e'), '# cuBPh2x3'], - [3, 1, format(angle(scaled_wc('uB_31')), '.6e'), '# cuBPh3x1'], - [3, 2, format(angle(scaled_wc('uB_32')), '.6e'), '# cuBPh3x2'], - [3, 3, format(angle(scaled_wc('uB_33')), '.6e'), '# cuBPh3x3'], - ]} - - card['Block']['FRBlock30'] = {'values': [ - [1, 1, format(abs(scaled_wc('dG_11'))* lambda_smeft_value**2, '.6e'), '# cdGAbs1x1'], - [1, 2, format(abs(scaled_wc('dG_12'))* lambda_smeft_value**2, '.6e'), '# cdGAbs1x2'], - [1, 3, format(abs(scaled_wc('dG_13'))* lambda_smeft_value**2, '.6e'), '# cdGAbs1x3'], - [2, 1, format(abs(scaled_wc('dG_21'))* lambda_smeft_value**2, '.6e'), '# cdGAbs2x1'], - [2, 2, format(abs(scaled_wc('dG_22'))* lambda_smeft_value**2, '.6e'), '# cdGAbs2x2'], - [2, 3, format(abs(scaled_wc('dG_23'))* lambda_smeft_value**2, '.6e'), '# cdGAbs2x3'], - [3, 1, format(abs(scaled_wc('dG_31'))* lambda_smeft_value**2, '.6e'), '# cdGAbs3x1'], - [3, 2, format(abs(scaled_wc('dG_32'))* lambda_smeft_value**2, '.6e'), '# cdGAbs3x2'], - [3, 3, format(abs(scaled_wc('dG_33'))* lambda_smeft_value**2, '.6e'), '# cdGAbs3x3'], - ]} - - card['Block']['FRBlock31'] = {'values': [ - [1, 1, format(angle(scaled_wc('dG_11')), '.6e'), '# cdGPh1x1'], - [1, 2, format(angle(scaled_wc('dG_12')), '.6e'), '# cdGPh1x2'], - [1, 3, format(angle(scaled_wc('dG_13')), '.6e'), '# cdGPh1x3'], - [2, 1, format(angle(scaled_wc('dG_21')), '.6e'), '# cdGPh2x1'], - [2, 2, format(angle(scaled_wc('dG_22')), '.6e'), '# cdGPh2x2'], - [2, 3, format(angle(scaled_wc('dG_23')), '.6e'), '# cdGPh2x3'], - [3, 1, format(angle(scaled_wc('dG_31')), '.6e'), '# cdGPh3x1'], - [3, 2, format(angle(scaled_wc('dG_32')), '.6e'), '# cdGPh3x2'], - [3, 3, format(angle(scaled_wc('dG_33')), '.6e'), '# cdGPh3x3'], - ]} - - card['Block']['FRBlock33'] = {'values': [ - [1, 1, format(abs(scaled_wc('dW_11'))* lambda_smeft_value**2, '.6e'), '# cdWAbs1x1'], - [1, 2, format(abs(scaled_wc('dW_12'))* lambda_smeft_value**2, '.6e'), '# cdWAbs1x2'], - [1, 3, format(abs(scaled_wc('dW_13'))* lambda_smeft_value**2, '.6e'), '# cdWAbs1x3'], - [2, 1, format(abs(scaled_wc('dW_21'))* lambda_smeft_value**2, '.6e'), '# cdWAbs2x1'], - [2, 2, format(abs(scaled_wc('dW_22'))* lambda_smeft_value**2, '.6e'), '# cdWAbs2x2'], - [2, 3, format(abs(scaled_wc('dW_23'))* lambda_smeft_value**2, '.6e'), '# cdWAbs2x3'], - [3, 1, format(abs(scaled_wc('dW_31'))* lambda_smeft_value**2, '.6e'), '# cdWAbs3x1'], - [3, 2, format(abs(scaled_wc('dW_32'))* lambda_smeft_value**2, '.6e'), '# cdWAbs3x2'], - [3, 3, format(abs(scaled_wc('dW_33'))* lambda_smeft_value**2, '.6e'), '# cdWAbs3x3'], - ]} - - card['Block']['FRBlock34'] = {'values': [ - [1, 1, format(angle(scaled_wc('dW_11')), '.6e'), '# cdWPh1x1'], - [1, 2, format(angle(scaled_wc('dW_12')), '.6e'), '# cdWPh1x2'], - [1, 3, format(angle(scaled_wc('dW_13')), '.6e'), '# cdWPh1x3'], - [2, 1, format(angle(scaled_wc('dW_21')), '.6e'), '# cdWPh2x1'], - [2, 2, format(angle(scaled_wc('dW_22')), '.6e'), '# cdWPh2x2'], - [2, 3, format(angle(scaled_wc('dW_23')), '.6e'), '# cdWPh2x3'], - [3, 1, format(angle(scaled_wc('dW_31')), '.6e'), '# cdWPh3x1'], - [3, 2, format(angle(scaled_wc('dW_32')), '.6e'), '# cdWPh3x2'], - [3, 3, format(angle(scaled_wc('dW_33')), '.6e'), '# cdWPh3x3'], - ]} - - card['Block']['FRBlock36'] = {'values': [ - [1, 1, format(abs(scaled_wc('dB_11'))* lambda_smeft_value**2, '.6e'), '# cdBAbs1x1'], - [1, 2, format(abs(scaled_wc('dB_12'))* lambda_smeft_value**2, '.6e'), '# cdBAbs1x2'], - [1, 3, format(abs(scaled_wc('dB_13'))* lambda_smeft_value**2, '.6e'), '# cdBAbs1x3'], - [2, 1, format(abs(scaled_wc('dB_21'))* lambda_smeft_value**2, '.6e'), '# cdBAbs2x1'], - [2, 2, format(abs(scaled_wc('dB_22'))* lambda_smeft_value**2, '.6e'), '# cdBAbs2x2'], - [2, 3, format(abs(scaled_wc('dB_23'))* lambda_smeft_value**2, '.6e'), '# cdBAbs2x3'], - [3, 1, format(abs(scaled_wc('dB_31'))* lambda_smeft_value**2, '.6e'), '# cdBAbs3x1'], - [3, 2, format(abs(scaled_wc('dB_32'))* lambda_smeft_value**2, '.6e'), '# cdBAbs3x2'], - [3, 3, format(abs(scaled_wc('dB_33'))* lambda_smeft_value**2, '.6e'), '# cdBAbs3x3'], - ]} - - card['Block']['FRBlock37'] = {'values': [ - [1, 1, format(angle(scaled_wc('dB_11')), '.6e'), '# cdBPh1x1'], - [1, 2, format(angle(scaled_wc('dB_12')), '.6e'), '# cdBPh1x2'], - [1, 3, format(angle(scaled_wc('dB_13')), '.6e'), '# cdBPh1x3'], - [2, 1, format(angle(scaled_wc('dB_21')), '.6e'), '# cdBPh2x1'], - [2, 2, format(angle(scaled_wc('dB_22')), '.6e'), '# cdBPh2x2'], - [2, 3, format(angle(scaled_wc('dB_23')), '.6e'), '# cdBPh2x3'], - [3, 1, format(angle(scaled_wc('dB_31')), '.6e'), '# cdBPh3x1'], - [3, 2, format(angle(scaled_wc('dB_32')), '.6e'), '# cdBPh3x2'], - [3, 3, format(angle(scaled_wc('dB_33')), '.6e'), '# cdBPh3x3'], - ]} - - card['Block']['FRBlock45'] = {'values': [ - [1, 1, format(abs(scaled_wc('phiud_11'))* lambda_smeft_value**2, '.6e'), '# cHudAbs1x1'], - [1, 2, format(abs(scaled_wc('phiud_12'))* lambda_smeft_value**2, '.6e'), '# cHudAbs1x2'], - [1, 3, format(abs(scaled_wc('phiud_13'))* lambda_smeft_value**2, '.6e'), '# cHudAbs1x3'], - [2, 1, format(abs(scaled_wc('phiud_21'))* lambda_smeft_value**2, '.6e'), '# cHudAbs2x1'], - [2, 2, format(abs(scaled_wc('phiud_22'))* lambda_smeft_value**2, '.6e'), '# cHudAbs2x2'], - [2, 3, format(abs(scaled_wc('phiud_23'))* lambda_smeft_value**2, '.6e'), '# cHudAbs2x3'], - [3, 1, format(abs(scaled_wc('phiud_31'))* lambda_smeft_value**2, '.6e'), '# cHudAbs3x1'], - [3, 2, format(abs(scaled_wc('phiud_32'))* lambda_smeft_value**2, '.6e'), '# cHudAbs3x2'], - [3, 3, format(abs(scaled_wc('phiud_33'))* lambda_smeft_value**2, '.6e'), '# cHudAbs3x3'], - ]} - - card['Block']['FRBlock46'] = {'values': [ - [1, 1, format(angle(scaled_wc('phiud_11')), '.6e'), '# cHudPh1x1'], - [1, 2, format(angle(scaled_wc('phiud_12')), '.6e'), '# cHudPh1x2'], - [1, 3, format(angle(scaled_wc('phiud_13')), '.6e'), '# cHudPh1x3'], - [2, 1, format(angle(scaled_wc('phiud_21')), '.6e'), '# cHudPh2x1'], - [2, 2, format(angle(scaled_wc('phiud_22')), '.6e'), '# cHudPh2x2'], - [2, 3, format(angle(scaled_wc('phiud_23')), '.6e'), '# cHudPh2x3'], - [3, 1, format(angle(scaled_wc('phiud_31')), '.6e'), '# cHudPh3x1'], - [3, 2, format(angle(scaled_wc('phiud_32')), '.6e'), '# cHudPh3x2'], - [3, 3, format(angle(scaled_wc('phiud_33')), '.6e'), '# cHudPh3x3'], - ]} - - card['Block']['FRBlock6'] = {'values': [ - [1, 1, format(abs(scaled_wc('ephi_11'))* lambda_smeft_value**2, '.6e'), '# ceHAbs1x1'], - [1, 2, format(abs(scaled_wc('ephi_12'))* lambda_smeft_value**2, '.6e'), '# ceHAbs1x2'], - [1, 3, format(abs(scaled_wc('ephi_13'))* lambda_smeft_value**2, '.6e'), '# ceHAbs1x3'], - [2, 1, format(abs(scaled_wc('ephi_21'))* lambda_smeft_value**2, '.6e'), '# ceHAbs2x1'], - [2, 2, format(abs(scaled_wc('ephi_22'))* lambda_smeft_value**2, '.6e'), '# ceHAbs2x2'], - [2, 3, format(abs(scaled_wc('ephi_23'))* lambda_smeft_value**2, '.6e'), '# ceHAbs2x3'], - [3, 1, format(abs(scaled_wc('ephi_31'))* lambda_smeft_value**2, '.6e'), '# ceHAbs3x1'], - [3, 2, format(abs(scaled_wc('ephi_32'))* lambda_smeft_value**2, '.6e'), '# ceHAbs3x2'], - [3, 3, format(abs(scaled_wc('ephi_33'))* lambda_smeft_value**2, '.6e'), '# ceHAbs3x3'], - ]} - - card['Block']['FRBlock69'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('ledq_1111'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('ledq_1112'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('ledq_1113'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('ledq_1121'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('ledq_1122'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('ledq_1123'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('ledq_1131'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('ledq_1132'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('ledq_1133'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('ledq_1211'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('ledq_1212'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('ledq_1213'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('ledq_1221'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('ledq_1222'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('ledq_1223'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('ledq_1231'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('ledq_1232'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('ledq_1233'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('ledq_1311'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('ledq_1312'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('ledq_1313'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('ledq_1321'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('ledq_1322'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('ledq_1323'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('ledq_1331'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('ledq_1332'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('ledq_1333'))* lambda_smeft_value**2, '.6e'), '# cledqAbs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('ledq_2111'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('ledq_2112'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('ledq_2113'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('ledq_2121'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('ledq_2122'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('ledq_2123'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('ledq_2131'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('ledq_2132'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('ledq_2133'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('ledq_2211'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('ledq_2212'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('ledq_2213'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('ledq_2221'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('ledq_2222'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('ledq_2223'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('ledq_2231'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('ledq_2232'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('ledq_2233'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('ledq_2311'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('ledq_2312'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('ledq_2313'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('ledq_2321'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('ledq_2322'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('ledq_2323'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('ledq_2331'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('ledq_2332'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('ledq_2333'))* lambda_smeft_value**2, '.6e'), '# cledqAbs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('ledq_3111'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('ledq_3112'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('ledq_3113'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('ledq_3121'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('ledq_3122'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('ledq_3123'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('ledq_3131'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('ledq_3132'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('ledq_3133'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('ledq_3211'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('ledq_3212'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('ledq_3213'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('ledq_3221'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('ledq_3222'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('ledq_3223'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('ledq_3231'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('ledq_3232'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('ledq_3233'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('ledq_3311'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('ledq_3312'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('ledq_3313'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('ledq_3321'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('ledq_3322'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('ledq_3323'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('ledq_3331'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('ledq_3332'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('ledq_3333'))* lambda_smeft_value**2, '.6e'), '# cledqAbs3x3x3x3'], - ]} - - card['Block']['FRBlock7'] = {'values': [ - [1, 1, format(abs(scaled_wc('uphi_11'))* lambda_smeft_value**2, '.6e'), '# cuHAbs1x1'], - [1, 2, format(abs(scaled_wc('uphi_12'))* lambda_smeft_value**2, '.6e'), '# cuHAbs1x2'], - [1, 3, format(abs(scaled_wc('uphi_13'))* lambda_smeft_value**2, '.6e'), '# cuHAbs1x3'], - [2, 1, format(abs(scaled_wc('uphi_21'))* lambda_smeft_value**2, '.6e'), '# cuHAbs2x1'], - [2, 2, format(abs(scaled_wc('uphi_22'))* lambda_smeft_value**2, '.6e'), '# cuHAbs2x2'], - [2, 3, format(abs(scaled_wc('uphi_23'))* lambda_smeft_value**2, '.6e'), '# cuHAbs2x3'], - [3, 1, format(abs(scaled_wc('uphi_31'))* lambda_smeft_value**2, '.6e'), '# cuHAbs3x1'], - [3, 2, format(abs(scaled_wc('uphi_32'))* lambda_smeft_value**2, '.6e'), '# cuHAbs3x2'], - [3, 3, format(abs(scaled_wc('uphi_33'))* lambda_smeft_value**2, '.6e'), '# cuHAbs3x3'], - ]} - - card['Block']['FRBlock70'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('ledq_1111')), '.6e'), '# cledqPh1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('ledq_1112')), '.6e'), '# cledqPh1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('ledq_1113')), '.6e'), '# cledqPh1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('ledq_1121')), '.6e'), '# cledqPh1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('ledq_1122')), '.6e'), '# cledqPh1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('ledq_1123')), '.6e'), '# cledqPh1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('ledq_1131')), '.6e'), '# cledqPh1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('ledq_1132')), '.6e'), '# cledqPh1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('ledq_1133')), '.6e'), '# cledqPh1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('ledq_1211')), '.6e'), '# cledqPh1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('ledq_1212')), '.6e'), '# cledqPh1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('ledq_1213')), '.6e'), '# cledqPh1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('ledq_1221')), '.6e'), '# cledqPh1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('ledq_1222')), '.6e'), '# cledqPh1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('ledq_1223')), '.6e'), '# cledqPh1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('ledq_1231')), '.6e'), '# cledqPh1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('ledq_1232')), '.6e'), '# cledqPh1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('ledq_1233')), '.6e'), '# cledqPh1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('ledq_1311')), '.6e'), '# cledqPh1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('ledq_1312')), '.6e'), '# cledqPh1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('ledq_1313')), '.6e'), '# cledqPh1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('ledq_1321')), '.6e'), '# cledqPh1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('ledq_1322')), '.6e'), '# cledqPh1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('ledq_1323')), '.6e'), '# cledqPh1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('ledq_1331')), '.6e'), '# cledqPh1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('ledq_1332')), '.6e'), '# cledqPh1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('ledq_1333')), '.6e'), '# cledqPh1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('ledq_2111')), '.6e'), '# cledqPh2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('ledq_2112')), '.6e'), '# cledqPh2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('ledq_2113')), '.6e'), '# cledqPh2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('ledq_2121')), '.6e'), '# cledqPh2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('ledq_2122')), '.6e'), '# cledqPh2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('ledq_2123')), '.6e'), '# cledqPh2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('ledq_2131')), '.6e'), '# cledqPh2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('ledq_2132')), '.6e'), '# cledqPh2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('ledq_2133')), '.6e'), '# cledqPh2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('ledq_2211')), '.6e'), '# cledqPh2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('ledq_2212')), '.6e'), '# cledqPh2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('ledq_2213')), '.6e'), '# cledqPh2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('ledq_2221')), '.6e'), '# cledqPh2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('ledq_2222')), '.6e'), '# cledqPh2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('ledq_2223')), '.6e'), '# cledqPh2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('ledq_2231')), '.6e'), '# cledqPh2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('ledq_2232')), '.6e'), '# cledqPh2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('ledq_2233')), '.6e'), '# cledqPh2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('ledq_2311')), '.6e'), '# cledqPh2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('ledq_2312')), '.6e'), '# cledqPh2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('ledq_2313')), '.6e'), '# cledqPh2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('ledq_2321')), '.6e'), '# cledqPh2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('ledq_2322')), '.6e'), '# cledqPh2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('ledq_2323')), '.6e'), '# cledqPh2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('ledq_2331')), '.6e'), '# cledqPh2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('ledq_2332')), '.6e'), '# cledqPh2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('ledq_2333')), '.6e'), '# cledqPh2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('ledq_3111')), '.6e'), '# cledqPh3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('ledq_3112')), '.6e'), '# cledqPh3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('ledq_3113')), '.6e'), '# cledqPh3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('ledq_3121')), '.6e'), '# cledqPh3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('ledq_3122')), '.6e'), '# cledqPh3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('ledq_3123')), '.6e'), '# cledqPh3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('ledq_3131')), '.6e'), '# cledqPh3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('ledq_3132')), '.6e'), '# cledqPh3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('ledq_3133')), '.6e'), '# cledqPh3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('ledq_3211')), '.6e'), '# cledqPh3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('ledq_3212')), '.6e'), '# cledqPh3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('ledq_3213')), '.6e'), '# cledqPh3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('ledq_3221')), '.6e'), '# cledqPh3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('ledq_3222')), '.6e'), '# cledqPh3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('ledq_3223')), '.6e'), '# cledqPh3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('ledq_3231')), '.6e'), '# cledqPh3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('ledq_3232')), '.6e'), '# cledqPh3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('ledq_3233')), '.6e'), '# cledqPh3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('ledq_3311')), '.6e'), '# cledqPh3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('ledq_3312')), '.6e'), '# cledqPh3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('ledq_3313')), '.6e'), '# cledqPh3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('ledq_3321')), '.6e'), '# cledqPh3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('ledq_3322')), '.6e'), '# cledqPh3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('ledq_3323')), '.6e'), '# cledqPh3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('ledq_3331')), '.6e'), '# cledqPh3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('ledq_3332')), '.6e'), '# cledqPh3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('ledq_3333')), '.6e'), '# cledqPh3x3x3x3'], - ]} - - card['Block']['FRBlock72'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('quqd1_1111'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('quqd1_1112'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('quqd1_1113'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('quqd1_1121'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('quqd1_1122'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('quqd1_1123'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('quqd1_1131'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('quqd1_1132'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('quqd1_1133'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('quqd1_1211'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('quqd1_1212'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('quqd1_1213'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('quqd1_1221'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('quqd1_1222'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('quqd1_1223'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('quqd1_1231'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('quqd1_1232'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('quqd1_1233'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('quqd1_1311'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('quqd1_1312'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('quqd1_1313'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('quqd1_1321'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('quqd1_1322'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('quqd1_1323'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('quqd1_1331'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('quqd1_1332'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('quqd1_1333'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('quqd1_2111'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('quqd1_2112'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('quqd1_2113'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('quqd1_2121'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('quqd1_2122'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('quqd1_2123'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('quqd1_2131'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('quqd1_2132'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('quqd1_2133'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('quqd1_2211'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('quqd1_2212'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('quqd1_2213'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('quqd1_2221'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('quqd1_2222'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('quqd1_2223'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('quqd1_2231'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('quqd1_2232'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('quqd1_2233'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('quqd1_2311'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('quqd1_2312'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('quqd1_2313'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('quqd1_2321'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('quqd1_2322'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('quqd1_2323'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('quqd1_2331'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('quqd1_2332'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('quqd1_2333'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('quqd1_3111'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('quqd1_3112'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('quqd1_3113'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('quqd1_3121'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('quqd1_3122'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('quqd1_3123'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('quqd1_3131'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('quqd1_3132'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('quqd1_3133'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('quqd1_3211'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('quqd1_3212'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('quqd1_3213'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('quqd1_3221'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('quqd1_3222'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('quqd1_3223'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('quqd1_3231'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('quqd1_3232'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('quqd1_3233'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('quqd1_3311'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('quqd1_3312'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('quqd1_3313'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('quqd1_3321'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('quqd1_3322'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('quqd1_3323'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('quqd1_3331'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('quqd1_3332'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('quqd1_3333'))* lambda_smeft_value**2, '.6e'), '# cquqd1Abs3x3x3x3'], - ]} - - card['Block']['FRBlock73'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('quqd1_1111')), '.6e'), '# cquqd1Ph1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('quqd1_1112')), '.6e'), '# cquqd1Ph1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('quqd1_1113')), '.6e'), '# cquqd1Ph1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('quqd1_1121')), '.6e'), '# cquqd1Ph1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('quqd1_1122')), '.6e'), '# cquqd1Ph1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('quqd1_1123')), '.6e'), '# cquqd1Ph1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('quqd1_1131')), '.6e'), '# cquqd1Ph1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('quqd1_1132')), '.6e'), '# cquqd1Ph1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('quqd1_1133')), '.6e'), '# cquqd1Ph1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('quqd1_1211')), '.6e'), '# cquqd1Ph1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('quqd1_1212')), '.6e'), '# cquqd1Ph1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('quqd1_1213')), '.6e'), '# cquqd1Ph1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('quqd1_1221')), '.6e'), '# cquqd1Ph1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('quqd1_1222')), '.6e'), '# cquqd1Ph1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('quqd1_1223')), '.6e'), '# cquqd1Ph1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('quqd1_1231')), '.6e'), '# cquqd1Ph1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('quqd1_1232')), '.6e'), '# cquqd1Ph1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('quqd1_1233')), '.6e'), '# cquqd1Ph1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('quqd1_1311')), '.6e'), '# cquqd1Ph1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('quqd1_1312')), '.6e'), '# cquqd1Ph1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('quqd1_1313')), '.6e'), '# cquqd1Ph1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('quqd1_1321')), '.6e'), '# cquqd1Ph1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('quqd1_1322')), '.6e'), '# cquqd1Ph1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('quqd1_1323')), '.6e'), '# cquqd1Ph1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('quqd1_1331')), '.6e'), '# cquqd1Ph1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('quqd1_1332')), '.6e'), '# cquqd1Ph1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('quqd1_1333')), '.6e'), '# cquqd1Ph1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('quqd1_2111')), '.6e'), '# cquqd1Ph2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('quqd1_2112')), '.6e'), '# cquqd1Ph2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('quqd1_2113')), '.6e'), '# cquqd1Ph2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('quqd1_2121')), '.6e'), '# cquqd1Ph2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('quqd1_2122')), '.6e'), '# cquqd1Ph2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('quqd1_2123')), '.6e'), '# cquqd1Ph2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('quqd1_2131')), '.6e'), '# cquqd1Ph2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('quqd1_2132')), '.6e'), '# cquqd1Ph2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('quqd1_2133')), '.6e'), '# cquqd1Ph2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('quqd1_2211')), '.6e'), '# cquqd1Ph2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('quqd1_2212')), '.6e'), '# cquqd1Ph2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('quqd1_2213')), '.6e'), '# cquqd1Ph2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('quqd1_2221')), '.6e'), '# cquqd1Ph2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('quqd1_2222')), '.6e'), '# cquqd1Ph2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('quqd1_2223')), '.6e'), '# cquqd1Ph2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('quqd1_2231')), '.6e'), '# cquqd1Ph2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('quqd1_2232')), '.6e'), '# cquqd1Ph2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('quqd1_2233')), '.6e'), '# cquqd1Ph2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('quqd1_2311')), '.6e'), '# cquqd1Ph2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('quqd1_2312')), '.6e'), '# cquqd1Ph2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('quqd1_2313')), '.6e'), '# cquqd1Ph2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('quqd1_2321')), '.6e'), '# cquqd1Ph2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('quqd1_2322')), '.6e'), '# cquqd1Ph2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('quqd1_2323')), '.6e'), '# cquqd1Ph2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('quqd1_2331')), '.6e'), '# cquqd1Ph2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('quqd1_2332')), '.6e'), '# cquqd1Ph2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('quqd1_2333')), '.6e'), '# cquqd1Ph2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('quqd1_3111')), '.6e'), '# cquqd1Ph3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('quqd1_3112')), '.6e'), '# cquqd1Ph3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('quqd1_3113')), '.6e'), '# cquqd1Ph3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('quqd1_3121')), '.6e'), '# cquqd1Ph3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('quqd1_3122')), '.6e'), '# cquqd1Ph3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('quqd1_3123')), '.6e'), '# cquqd1Ph3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('quqd1_3131')), '.6e'), '# cquqd1Ph3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('quqd1_3132')), '.6e'), '# cquqd1Ph3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('quqd1_3133')), '.6e'), '# cquqd1Ph3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('quqd1_3211')), '.6e'), '# cquqd1Ph3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('quqd1_3212')), '.6e'), '# cquqd1Ph3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('quqd1_3213')), '.6e'), '# cquqd1Ph3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('quqd1_3221')), '.6e'), '# cquqd1Ph3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('quqd1_3222')), '.6e'), '# cquqd1Ph3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('quqd1_3223')), '.6e'), '# cquqd1Ph3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('quqd1_3231')), '.6e'), '# cquqd1Ph3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('quqd1_3232')), '.6e'), '# cquqd1Ph3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('quqd1_3233')), '.6e'), '# cquqd1Ph3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('quqd1_3311')), '.6e'), '# cquqd1Ph3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('quqd1_3312')), '.6e'), '# cquqd1Ph3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('quqd1_3313')), '.6e'), '# cquqd1Ph3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('quqd1_3321')), '.6e'), '# cquqd1Ph3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('quqd1_3322')), '.6e'), '# cquqd1Ph3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('quqd1_3323')), '.6e'), '# cquqd1Ph3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('quqd1_3331')), '.6e'), '# cquqd1Ph3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('quqd1_3332')), '.6e'), '# cquqd1Ph3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('quqd1_3333')), '.6e'), '# cquqd1Ph3x3x3x3'], - ]} - - card['Block']['FRBlock75'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('quqd8_1111'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('quqd8_1112'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('quqd8_1113'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('quqd8_1121'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('quqd8_1122'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('quqd8_1123'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('quqd8_1131'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('quqd8_1132'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('quqd8_1133'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('quqd8_1211'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('quqd8_1212'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('quqd8_1213'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('quqd8_1221'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('quqd8_1222'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('quqd8_1223'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('quqd8_1231'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('quqd8_1232'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('quqd8_1233'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('quqd8_1311'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('quqd8_1312'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('quqd8_1313'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('quqd8_1321'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('quqd8_1322'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('quqd8_1323'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('quqd8_1331'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('quqd8_1332'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('quqd8_1333'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('quqd8_2111'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('quqd8_2112'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('quqd8_2113'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('quqd8_2121'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('quqd8_2122'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('quqd8_2123'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('quqd8_2131'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('quqd8_2132'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('quqd8_2133'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('quqd8_2211'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('quqd8_2212'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('quqd8_2213'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('quqd8_2221'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('quqd8_2222'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('quqd8_2223'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('quqd8_2231'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('quqd8_2232'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('quqd8_2233'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('quqd8_2311'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('quqd8_2312'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('quqd8_2313'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('quqd8_2321'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('quqd8_2322'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('quqd8_2323'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('quqd8_2331'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('quqd8_2332'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('quqd8_2333'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('quqd8_3111'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('quqd8_3112'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('quqd8_3113'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('quqd8_3121'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('quqd8_3122'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('quqd8_3123'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('quqd8_3131'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('quqd8_3132'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('quqd8_3133'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('quqd8_3211'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('quqd8_3212'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('quqd8_3213'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('quqd8_3221'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('quqd8_3222'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('quqd8_3223'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('quqd8_3231'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('quqd8_3232'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('quqd8_3233'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('quqd8_3311'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('quqd8_3312'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('quqd8_3313'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('quqd8_3321'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('quqd8_3322'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('quqd8_3323'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('quqd8_3331'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('quqd8_3332'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('quqd8_3333'))* lambda_smeft_value**2, '.6e'), '# cQUQD8Abs3x3x3x3'], - ]} - - card['Block']['FRBlock76'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('quqd8_1111')), '.6e'), '# cQUQD8Ph1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('quqd8_1112')), '.6e'), '# cQUQD8Ph1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('quqd8_1113')), '.6e'), '# cQUQD8Ph1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('quqd8_1121')), '.6e'), '# cQUQD8Ph1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('quqd8_1122')), '.6e'), '# cQUQD8Ph1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('quqd8_1123')), '.6e'), '# cQUQD8Ph1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('quqd8_1131')), '.6e'), '# cQUQD8Ph1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('quqd8_1132')), '.6e'), '# cQUQD8Ph1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('quqd8_1133')), '.6e'), '# cQUQD8Ph1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('quqd8_1211')), '.6e'), '# cQUQD8Ph1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('quqd8_1212')), '.6e'), '# cQUQD8Ph1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('quqd8_1213')), '.6e'), '# cQUQD8Ph1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('quqd8_1221')), '.6e'), '# cQUQD8Ph1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('quqd8_1222')), '.6e'), '# cQUQD8Ph1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('quqd8_1223')), '.6e'), '# cQUQD8Ph1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('quqd8_1231')), '.6e'), '# cQUQD8Ph1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('quqd8_1232')), '.6e'), '# cQUQD8Ph1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('quqd8_1233')), '.6e'), '# cQUQD8Ph1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('quqd8_1311')), '.6e'), '# cQUQD8Ph1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('quqd8_1312')), '.6e'), '# cQUQD8Ph1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('quqd8_1313')), '.6e'), '# cQUQD8Ph1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('quqd8_1321')), '.6e'), '# cQUQD8Ph1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('quqd8_1322')), '.6e'), '# cQUQD8Ph1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('quqd8_1323')), '.6e'), '# cQUQD8Ph1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('quqd8_1331')), '.6e'), '# cQUQD8Ph1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('quqd8_1332')), '.6e'), '# cQUQD8Ph1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('quqd8_1333')), '.6e'), '# cQUQD8Ph1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('quqd8_2111')), '.6e'), '# cQUQD8Ph2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('quqd8_2112')), '.6e'), '# cQUQD8Ph2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('quqd8_2113')), '.6e'), '# cQUQD8Ph2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('quqd8_2121')), '.6e'), '# cQUQD8Ph2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('quqd8_2122')), '.6e'), '# cQUQD8Ph2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('quqd8_2123')), '.6e'), '# cQUQD8Ph2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('quqd8_2131')), '.6e'), '# cQUQD8Ph2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('quqd8_2132')), '.6e'), '# cQUQD8Ph2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('quqd8_2133')), '.6e'), '# cQUQD8Ph2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('quqd8_2211')), '.6e'), '# cQUQD8Ph2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('quqd8_2212')), '.6e'), '# cQUQD8Ph2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('quqd8_2213')), '.6e'), '# cQUQD8Ph2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('quqd8_2221')), '.6e'), '# cQUQD8Ph2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('quqd8_2222')), '.6e'), '# cQUQD8Ph2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('quqd8_2223')), '.6e'), '# cQUQD8Ph2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('quqd8_2231')), '.6e'), '# cQUQD8Ph2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('quqd8_2232')), '.6e'), '# cQUQD8Ph2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('quqd8_2233')), '.6e'), '# cQUQD8Ph2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('quqd8_2311')), '.6e'), '# cQUQD8Ph2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('quqd8_2312')), '.6e'), '# cQUQD8Ph2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('quqd8_2313')), '.6e'), '# cQUQD8Ph2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('quqd8_2321')), '.6e'), '# cQUQD8Ph2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('quqd8_2322')), '.6e'), '# cQUQD8Ph2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('quqd8_2323')), '.6e'), '# cQUQD8Ph2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('quqd8_2331')), '.6e'), '# cQUQD8Ph2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('quqd8_2332')), '.6e'), '# cQUQD8Ph2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('quqd8_2333')), '.6e'), '# cQUQD8Ph2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('quqd8_3111')), '.6e'), '# cQUQD8Ph3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('quqd8_3112')), '.6e'), '# cQUQD8Ph3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('quqd8_3113')), '.6e'), '# cQUQD8Ph3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('quqd8_3121')), '.6e'), '# cQUQD8Ph3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('quqd8_3122')), '.6e'), '# cQUQD8Ph3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('quqd8_3123')), '.6e'), '# cQUQD8Ph3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('quqd8_3131')), '.6e'), '# cQUQD8Ph3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('quqd8_3132')), '.6e'), '# cQUQD8Ph3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('quqd8_3133')), '.6e'), '# cQUQD8Ph3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('quqd8_3211')), '.6e'), '# cQUQD8Ph3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('quqd8_3212')), '.6e'), '# cQUQD8Ph3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('quqd8_3213')), '.6e'), '# cQUQD8Ph3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('quqd8_3221')), '.6e'), '# cQUQD8Ph3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('quqd8_3222')), '.6e'), '# cQUQD8Ph3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('quqd8_3223')), '.6e'), '# cQUQD8Ph3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('quqd8_3231')), '.6e'), '# cQUQD8Ph3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('quqd8_3232')), '.6e'), '# cQUQD8Ph3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('quqd8_3233')), '.6e'), '# cQUQD8Ph3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('quqd8_3311')), '.6e'), '# cQUQD8Ph3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('quqd8_3312')), '.6e'), '# cQUQD8Ph3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('quqd8_3313')), '.6e'), '# cQUQD8Ph3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('quqd8_3321')), '.6e'), '# cQUQD8Ph3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('quqd8_3322')), '.6e'), '# cQUQD8Ph3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('quqd8_3323')), '.6e'), '# cQUQD8Ph3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('quqd8_3331')), '.6e'), '# cQUQD8Ph3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('quqd8_3332')), '.6e'), '# cQUQD8Ph3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('quqd8_3333')), '.6e'), '# cQUQD8Ph3x3x3x3'], - ]} - - card['Block']['FRBlock78'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('lequ1_1111'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('lequ1_1112'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('lequ1_1113'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('lequ1_1121'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('lequ1_1122'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('lequ1_1123'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('lequ1_1131'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('lequ1_1132'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('lequ1_1133'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('lequ1_1211'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('lequ1_1212'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('lequ1_1213'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('lequ1_1221'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('lequ1_1222'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('lequ1_1223'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('lequ1_1231'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('lequ1_1232'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('lequ1_1233'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('lequ1_1311'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('lequ1_1312'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('lequ1_1313'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('lequ1_1321'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('lequ1_1322'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('lequ1_1323'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('lequ1_1331'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('lequ1_1332'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('lequ1_1333'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('lequ1_2111'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('lequ1_2112'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('lequ1_2113'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('lequ1_2121'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('lequ1_2122'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('lequ1_2123'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('lequ1_2131'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('lequ1_2132'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('lequ1_2133'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('lequ1_2211'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('lequ1_2212'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('lequ1_2213'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('lequ1_2221'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('lequ1_2222'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('lequ1_2223'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('lequ1_2231'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('lequ1_2232'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('lequ1_2233'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('lequ1_2311'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('lequ1_2312'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('lequ1_2313'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('lequ1_2321'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('lequ1_2322'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('lequ1_2323'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('lequ1_2331'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('lequ1_2332'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('lequ1_2333'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('lequ1_3111'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('lequ1_3112'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('lequ1_3113'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('lequ1_3121'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('lequ1_3122'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('lequ1_3123'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('lequ1_3131'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('lequ1_3132'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('lequ1_3133'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('lequ1_3211'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('lequ1_3212'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('lequ1_3213'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('lequ1_3221'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('lequ1_3222'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('lequ1_3223'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('lequ1_3231'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('lequ1_3232'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('lequ1_3233'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('lequ1_3311'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('lequ1_3312'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('lequ1_3313'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('lequ1_3321'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('lequ1_3322'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('lequ1_3323'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('lequ1_3331'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('lequ1_3332'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('lequ1_3333'))* lambda_smeft_value**2, '.6e'), '# clequ1Abs3x3x3x3'], - ]} - - card['Block']['FRBlock79'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('lequ1_1111')), '.6e'), '# clequ1Ph1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('lequ1_1112')), '.6e'), '# clequ1Ph1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('lequ1_1113')), '.6e'), '# clequ1Ph1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('lequ1_1121')), '.6e'), '# clequ1Ph1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('lequ1_1122')), '.6e'), '# clequ1Ph1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('lequ1_1123')), '.6e'), '# clequ1Ph1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('lequ1_1131')), '.6e'), '# clequ1Ph1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('lequ1_1132')), '.6e'), '# clequ1Ph1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('lequ1_1133')), '.6e'), '# clequ1Ph1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('lequ1_1211')), '.6e'), '# clequ1Ph1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('lequ1_1212')), '.6e'), '# clequ1Ph1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('lequ1_1213')), '.6e'), '# clequ1Ph1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('lequ1_1221')), '.6e'), '# clequ1Ph1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('lequ1_1222')), '.6e'), '# clequ1Ph1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('lequ1_1223')), '.6e'), '# clequ1Ph1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('lequ1_1231')), '.6e'), '# clequ1Ph1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('lequ1_1232')), '.6e'), '# clequ1Ph1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('lequ1_1233')), '.6e'), '# clequ1Ph1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('lequ1_1311')), '.6e'), '# clequ1Ph1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('lequ1_1312')), '.6e'), '# clequ1Ph1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('lequ1_1313')), '.6e'), '# clequ1Ph1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('lequ1_1321')), '.6e'), '# clequ1Ph1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('lequ1_1322')), '.6e'), '# clequ1Ph1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('lequ1_1323')), '.6e'), '# clequ1Ph1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('lequ1_1331')), '.6e'), '# clequ1Ph1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('lequ1_1332')), '.6e'), '# clequ1Ph1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('lequ1_1333')), '.6e'), '# clequ1Ph1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('lequ1_2111')), '.6e'), '# clequ1Ph2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('lequ1_2112')), '.6e'), '# clequ1Ph2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('lequ1_2113')), '.6e'), '# clequ1Ph2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('lequ1_2121')), '.6e'), '# clequ1Ph2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('lequ1_2122')), '.6e'), '# clequ1Ph2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('lequ1_2123')), '.6e'), '# clequ1Ph2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('lequ1_2131')), '.6e'), '# clequ1Ph2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('lequ1_2132')), '.6e'), '# clequ1Ph2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('lequ1_2133')), '.6e'), '# clequ1Ph2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('lequ1_2211')), '.6e'), '# clequ1Ph2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('lequ1_2212')), '.6e'), '# clequ1Ph2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('lequ1_2213')), '.6e'), '# clequ1Ph2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('lequ1_2221')), '.6e'), '# clequ1Ph2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('lequ1_2222')), '.6e'), '# clequ1Ph2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('lequ1_2223')), '.6e'), '# clequ1Ph2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('lequ1_2231')), '.6e'), '# clequ1Ph2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('lequ1_2232')), '.6e'), '# clequ1Ph2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('lequ1_2233')), '.6e'), '# clequ1Ph2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('lequ1_2311')), '.6e'), '# clequ1Ph2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('lequ1_2312')), '.6e'), '# clequ1Ph2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('lequ1_2313')), '.6e'), '# clequ1Ph2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('lequ1_2321')), '.6e'), '# clequ1Ph2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('lequ1_2322')), '.6e'), '# clequ1Ph2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('lequ1_2323')), '.6e'), '# clequ1Ph2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('lequ1_2331')), '.6e'), '# clequ1Ph2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('lequ1_2332')), '.6e'), '# clequ1Ph2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('lequ1_2333')), '.6e'), '# clequ1Ph2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('lequ1_3111')), '.6e'), '# clequ1Ph3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('lequ1_3112')), '.6e'), '# clequ1Ph3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('lequ1_3113')), '.6e'), '# clequ1Ph3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('lequ1_3121')), '.6e'), '# clequ1Ph3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('lequ1_3122')), '.6e'), '# clequ1Ph3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('lequ1_3123')), '.6e'), '# clequ1Ph3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('lequ1_3131')), '.6e'), '# clequ1Ph3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('lequ1_3132')), '.6e'), '# clequ1Ph3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('lequ1_3133')), '.6e'), '# clequ1Ph3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('lequ1_3211')), '.6e'), '# clequ1Ph3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('lequ1_3212')), '.6e'), '# clequ1Ph3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('lequ1_3213')), '.6e'), '# clequ1Ph3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('lequ1_3221')), '.6e'), '# clequ1Ph3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('lequ1_3222')), '.6e'), '# clequ1Ph3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('lequ1_3223')), '.6e'), '# clequ1Ph3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('lequ1_3231')), '.6e'), '# clequ1Ph3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('lequ1_3232')), '.6e'), '# clequ1Ph3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('lequ1_3233')), '.6e'), '# clequ1Ph3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('lequ1_3311')), '.6e'), '# clequ1Ph3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('lequ1_3312')), '.6e'), '# clequ1Ph3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('lequ1_3313')), '.6e'), '# clequ1Ph3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('lequ1_3321')), '.6e'), '# clequ1Ph3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('lequ1_3322')), '.6e'), '# clequ1Ph3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('lequ1_3323')), '.6e'), '# clequ1Ph3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('lequ1_3331')), '.6e'), '# clequ1Ph3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('lequ1_3332')), '.6e'), '# clequ1Ph3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('lequ1_3333')), '.6e'), '# clequ1Ph3x3x3x3'], - ]} - - card['Block']['FRBlock8'] = {'values': [ - [1, 1, format(abs(scaled_wc('dphi_11'))* lambda_smeft_value**2, '.6e'), '# cdHAbs1x1'], - [1, 2, format(abs(scaled_wc('dphi_12'))* lambda_smeft_value**2, '.6e'), '# cdHAbs1x2'], - [1, 3, format(abs(scaled_wc('dphi_13'))* lambda_smeft_value**2, '.6e'), '# cdHAbs1x3'], - [2, 1, format(abs(scaled_wc('dphi_21'))* lambda_smeft_value**2, '.6e'), '# cdHAbs2x1'], - [2, 2, format(abs(scaled_wc('dphi_22'))* lambda_smeft_value**2, '.6e'), '# cdHAbs2x2'], - [2, 3, format(abs(scaled_wc('dphi_23'))* lambda_smeft_value**2, '.6e'), '# cdHAbs2x3'], - [3, 1, format(abs(scaled_wc('dphi_31'))* lambda_smeft_value**2, '.6e'), '# cdHAbs3x1'], - [3, 2, format(abs(scaled_wc('dphi_32'))* lambda_smeft_value**2, '.6e'), '# cdHAbs3x2'], - [3, 3, format(abs(scaled_wc('dphi_33'))* lambda_smeft_value**2, '.6e'), '# cdHAbs3x3'], - ]} - - card['Block']['FRBlock81'] = {'values': [ - [1, 1, 1, 1, format(abs(scaled_wc('lequ3_1111'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x1x1'], - [1, 1, 1, 2, format(abs(scaled_wc('lequ3_1112'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x1x2'], - [1, 1, 1, 3, format(abs(scaled_wc('lequ3_1113'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x1x3'], - [1, 1, 2, 1, format(abs(scaled_wc('lequ3_1121'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x2x1'], - [1, 1, 2, 2, format(abs(scaled_wc('lequ3_1122'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x2x2'], - [1, 1, 2, 3, format(abs(scaled_wc('lequ3_1123'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x2x3'], - [1, 1, 3, 1, format(abs(scaled_wc('lequ3_1131'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x3x1'], - [1, 1, 3, 2, format(abs(scaled_wc('lequ3_1132'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x3x2'], - [1, 1, 3, 3, format(abs(scaled_wc('lequ3_1133'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x1x3x3'], - [1, 2, 1, 1, format(abs(scaled_wc('lequ3_1211'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x1x1'], - [1, 2, 1, 2, format(abs(scaled_wc('lequ3_1212'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x1x2'], - [1, 2, 1, 3, format(abs(scaled_wc('lequ3_1213'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x1x3'], - [1, 2, 2, 1, format(abs(scaled_wc('lequ3_1221'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x2x1'], - [1, 2, 2, 2, format(abs(scaled_wc('lequ3_1222'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x2x2'], - [1, 2, 2, 3, format(abs(scaled_wc('lequ3_1223'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x2x3'], - [1, 2, 3, 1, format(abs(scaled_wc('lequ3_1231'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x3x1'], - [1, 2, 3, 2, format(abs(scaled_wc('lequ3_1232'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x3x2'], - [1, 2, 3, 3, format(abs(scaled_wc('lequ3_1233'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x2x3x3'], - [1, 3, 1, 1, format(abs(scaled_wc('lequ3_1311'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x1x1'], - [1, 3, 1, 2, format(abs(scaled_wc('lequ3_1312'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x1x2'], - [1, 3, 1, 3, format(abs(scaled_wc('lequ3_1313'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x1x3'], - [1, 3, 2, 1, format(abs(scaled_wc('lequ3_1321'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x2x1'], - [1, 3, 2, 2, format(abs(scaled_wc('lequ3_1322'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x2x2'], - [1, 3, 2, 3, format(abs(scaled_wc('lequ3_1323'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x2x3'], - [1, 3, 3, 1, format(abs(scaled_wc('lequ3_1331'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x3x1'], - [1, 3, 3, 2, format(abs(scaled_wc('lequ3_1332'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x3x2'], - [1, 3, 3, 3, format(abs(scaled_wc('lequ3_1333'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs1x3x3x3'], - [2, 1, 1, 1, format(abs(scaled_wc('lequ3_2111'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x1x1'], - [2, 1, 1, 2, format(abs(scaled_wc('lequ3_2112'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x1x2'], - [2, 1, 1, 3, format(abs(scaled_wc('lequ3_2113'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x1x3'], - [2, 1, 2, 1, format(abs(scaled_wc('lequ3_2121'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x2x1'], - [2, 1, 2, 2, format(abs(scaled_wc('lequ3_2122'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x2x2'], - [2, 1, 2, 3, format(abs(scaled_wc('lequ3_2123'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x2x3'], - [2, 1, 3, 1, format(abs(scaled_wc('lequ3_2131'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x3x1'], - [2, 1, 3, 2, format(abs(scaled_wc('lequ3_2132'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x3x2'], - [2, 1, 3, 3, format(abs(scaled_wc('lequ3_2133'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x1x3x3'], - [2, 2, 1, 1, format(abs(scaled_wc('lequ3_2211'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x1x1'], - [2, 2, 1, 2, format(abs(scaled_wc('lequ3_2212'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x1x2'], - [2, 2, 1, 3, format(abs(scaled_wc('lequ3_2213'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x1x3'], - [2, 2, 2, 1, format(abs(scaled_wc('lequ3_2221'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x2x1'], - [2, 2, 2, 2, format(abs(scaled_wc('lequ3_2222'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x2x2'], - [2, 2, 2, 3, format(abs(scaled_wc('lequ3_2223'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x2x3'], - [2, 2, 3, 1, format(abs(scaled_wc('lequ3_2231'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x3x1'], - [2, 2, 3, 2, format(abs(scaled_wc('lequ3_2232'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x3x2'], - [2, 2, 3, 3, format(abs(scaled_wc('lequ3_2233'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x2x3x3'], - [2, 3, 1, 1, format(abs(scaled_wc('lequ3_2311'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x1x1'], - [2, 3, 1, 2, format(abs(scaled_wc('lequ3_2312'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x1x2'], - [2, 3, 1, 3, format(abs(scaled_wc('lequ3_2313'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x1x3'], - [2, 3, 2, 1, format(abs(scaled_wc('lequ3_2321'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x2x1'], - [2, 3, 2, 2, format(abs(scaled_wc('lequ3_2322'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x2x2'], - [2, 3, 2, 3, format(abs(scaled_wc('lequ3_2323'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x2x3'], - [2, 3, 3, 1, format(abs(scaled_wc('lequ3_2331'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x3x1'], - [2, 3, 3, 2, format(abs(scaled_wc('lequ3_2332'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x3x2'], - [2, 3, 3, 3, format(abs(scaled_wc('lequ3_2333'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs2x3x3x3'], - [3, 1, 1, 1, format(abs(scaled_wc('lequ3_3111'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x1x1'], - [3, 1, 1, 2, format(abs(scaled_wc('lequ3_3112'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x1x2'], - [3, 1, 1, 3, format(abs(scaled_wc('lequ3_3113'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x1x3'], - [3, 1, 2, 1, format(abs(scaled_wc('lequ3_3121'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x2x1'], - [3, 1, 2, 2, format(abs(scaled_wc('lequ3_3122'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x2x2'], - [3, 1, 2, 3, format(abs(scaled_wc('lequ3_3123'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x2x3'], - [3, 1, 3, 1, format(abs(scaled_wc('lequ3_3131'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x3x1'], - [3, 1, 3, 2, format(abs(scaled_wc('lequ3_3132'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x3x2'], - [3, 1, 3, 3, format(abs(scaled_wc('lequ3_3133'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x1x3x3'], - [3, 2, 1, 1, format(abs(scaled_wc('lequ3_3211'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x1x1'], - [3, 2, 1, 2, format(abs(scaled_wc('lequ3_3212'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x1x2'], - [3, 2, 1, 3, format(abs(scaled_wc('lequ3_3213'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x1x3'], - [3, 2, 2, 1, format(abs(scaled_wc('lequ3_3221'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x2x1'], - [3, 2, 2, 2, format(abs(scaled_wc('lequ3_3222'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x2x2'], - [3, 2, 2, 3, format(abs(scaled_wc('lequ3_3223'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x2x3'], - [3, 2, 3, 1, format(abs(scaled_wc('lequ3_3231'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x3x1'], - [3, 2, 3, 2, format(abs(scaled_wc('lequ3_3232'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x3x2'], - [3, 2, 3, 3, format(abs(scaled_wc('lequ3_3233'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x2x3x3'], - [3, 3, 1, 1, format(abs(scaled_wc('lequ3_3311'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x1x1'], - [3, 3, 1, 2, format(abs(scaled_wc('lequ3_3312'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x1x2'], - [3, 3, 1, 3, format(abs(scaled_wc('lequ3_3313'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x1x3'], - [3, 3, 2, 1, format(abs(scaled_wc('lequ3_3321'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x2x1'], - [3, 3, 2, 2, format(abs(scaled_wc('lequ3_3322'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x2x2'], - [3, 3, 2, 3, format(abs(scaled_wc('lequ3_3323'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x2x3'], - [3, 3, 3, 1, format(abs(scaled_wc('lequ3_3331'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x3x1'], - [3, 3, 3, 2, format(abs(scaled_wc('lequ3_3332'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x3x2'], - [3, 3, 3, 3, format(abs(scaled_wc('lequ3_3333'))* lambda_smeft_value**2, '.6e'), '# cLeQu3Abs3x3x3x3'], - ]} - - card['Block']['FRBlock82'] = {'values': [ - [1, 1, 1, 1, format(angle(scaled_wc('lequ3_1111')), '.6e'), '# cLeQu3Ph1x1x1x1'], - [1, 1, 1, 2, format(angle(scaled_wc('lequ3_1112')), '.6e'), '# cLeQu3Ph1x1x1x2'], - [1, 1, 1, 3, format(angle(scaled_wc('lequ3_1113')), '.6e'), '# cLeQu3Ph1x1x1x3'], - [1, 1, 2, 1, format(angle(scaled_wc('lequ3_1121')), '.6e'), '# cLeQu3Ph1x1x2x1'], - [1, 1, 2, 2, format(angle(scaled_wc('lequ3_1122')), '.6e'), '# cLeQu3Ph1x1x2x2'], - [1, 1, 2, 3, format(angle(scaled_wc('lequ3_1123')), '.6e'), '# cLeQu3Ph1x1x2x3'], - [1, 1, 3, 1, format(angle(scaled_wc('lequ3_1131')), '.6e'), '# cLeQu3Ph1x1x3x1'], - [1, 1, 3, 2, format(angle(scaled_wc('lequ3_1132')), '.6e'), '# cLeQu3Ph1x1x3x2'], - [1, 1, 3, 3, format(angle(scaled_wc('lequ3_1133')), '.6e'), '# cLeQu3Ph1x1x3x3'], - [1, 2, 1, 1, format(angle(scaled_wc('lequ3_1211')), '.6e'), '# cLeQu3Ph1x2x1x1'], - [1, 2, 1, 2, format(angle(scaled_wc('lequ3_1212')), '.6e'), '# cLeQu3Ph1x2x1x2'], - [1, 2, 1, 3, format(angle(scaled_wc('lequ3_1213')), '.6e'), '# cLeQu3Ph1x2x1x3'], - [1, 2, 2, 1, format(angle(scaled_wc('lequ3_1221')), '.6e'), '# cLeQu3Ph1x2x2x1'], - [1, 2, 2, 2, format(angle(scaled_wc('lequ3_1222')), '.6e'), '# cLeQu3Ph1x2x2x2'], - [1, 2, 2, 3, format(angle(scaled_wc('lequ3_1223')), '.6e'), '# cLeQu3Ph1x2x2x3'], - [1, 2, 3, 1, format(angle(scaled_wc('lequ3_1231')), '.6e'), '# cLeQu3Ph1x2x3x1'], - [1, 2, 3, 2, format(angle(scaled_wc('lequ3_1232')), '.6e'), '# cLeQu3Ph1x2x3x2'], - [1, 2, 3, 3, format(angle(scaled_wc('lequ3_1233')), '.6e'), '# cLeQu3Ph1x2x3x3'], - [1, 3, 1, 1, format(angle(scaled_wc('lequ3_1311')), '.6e'), '# cLeQu3Ph1x3x1x1'], - [1, 3, 1, 2, format(angle(scaled_wc('lequ3_1312')), '.6e'), '# cLeQu3Ph1x3x1x2'], - [1, 3, 1, 3, format(angle(scaled_wc('lequ3_1313')), '.6e'), '# cLeQu3Ph1x3x1x3'], - [1, 3, 2, 1, format(angle(scaled_wc('lequ3_1321')), '.6e'), '# cLeQu3Ph1x3x2x1'], - [1, 3, 2, 2, format(angle(scaled_wc('lequ3_1322')), '.6e'), '# cLeQu3Ph1x3x2x2'], - [1, 3, 2, 3, format(angle(scaled_wc('lequ3_1323')), '.6e'), '# cLeQu3Ph1x3x2x3'], - [1, 3, 3, 1, format(angle(scaled_wc('lequ3_1331')), '.6e'), '# cLeQu3Ph1x3x3x1'], - [1, 3, 3, 2, format(angle(scaled_wc('lequ3_1332')), '.6e'), '# cLeQu3Ph1x3x3x2'], - [1, 3, 3, 3, format(angle(scaled_wc('lequ3_1333')), '.6e'), '# cLeQu3Ph1x3x3x3'], - [2, 1, 1, 1, format(angle(scaled_wc('lequ3_2111')), '.6e'), '# cLeQu3Ph2x1x1x1'], - [2, 1, 1, 2, format(angle(scaled_wc('lequ3_2112')), '.6e'), '# cLeQu3Ph2x1x1x2'], - [2, 1, 1, 3, format(angle(scaled_wc('lequ3_2113')), '.6e'), '# cLeQu3Ph2x1x1x3'], - [2, 1, 2, 1, format(angle(scaled_wc('lequ3_2121')), '.6e'), '# cLeQu3Ph2x1x2x1'], - [2, 1, 2, 2, format(angle(scaled_wc('lequ3_2122')), '.6e'), '# cLeQu3Ph2x1x2x2'], - [2, 1, 2, 3, format(angle(scaled_wc('lequ3_2123')), '.6e'), '# cLeQu3Ph2x1x2x3'], - [2, 1, 3, 1, format(angle(scaled_wc('lequ3_2131')), '.6e'), '# cLeQu3Ph2x1x3x1'], - [2, 1, 3, 2, format(angle(scaled_wc('lequ3_2132')), '.6e'), '# cLeQu3Ph2x1x3x2'], - [2, 1, 3, 3, format(angle(scaled_wc('lequ3_2133')), '.6e'), '# cLeQu3Ph2x1x3x3'], - [2, 2, 1, 1, format(angle(scaled_wc('lequ3_2211')), '.6e'), '# cLeQu3Ph2x2x1x1'], - [2, 2, 1, 2, format(angle(scaled_wc('lequ3_2212')), '.6e'), '# cLeQu3Ph2x2x1x2'], - [2, 2, 1, 3, format(angle(scaled_wc('lequ3_2213')), '.6e'), '# cLeQu3Ph2x2x1x3'], - [2, 2, 2, 1, format(angle(scaled_wc('lequ3_2221')), '.6e'), '# cLeQu3Ph2x2x2x1'], - [2, 2, 2, 2, format(angle(scaled_wc('lequ3_2222')), '.6e'), '# cLeQu3Ph2x2x2x2'], - [2, 2, 2, 3, format(angle(scaled_wc('lequ3_2223')), '.6e'), '# cLeQu3Ph2x2x2x3'], - [2, 2, 3, 1, format(angle(scaled_wc('lequ3_2231')), '.6e'), '# cLeQu3Ph2x2x3x1'], - [2, 2, 3, 2, format(angle(scaled_wc('lequ3_2232')), '.6e'), '# cLeQu3Ph2x2x3x2'], - [2, 2, 3, 3, format(angle(scaled_wc('lequ3_2233')), '.6e'), '# cLeQu3Ph2x2x3x3'], - [2, 3, 1, 1, format(angle(scaled_wc('lequ3_2311')), '.6e'), '# cLeQu3Ph2x3x1x1'], - [2, 3, 1, 2, format(angle(scaled_wc('lequ3_2312')), '.6e'), '# cLeQu3Ph2x3x1x2'], - [2, 3, 1, 3, format(angle(scaled_wc('lequ3_2313')), '.6e'), '# cLeQu3Ph2x3x1x3'], - [2, 3, 2, 1, format(angle(scaled_wc('lequ3_2321')), '.6e'), '# cLeQu3Ph2x3x2x1'], - [2, 3, 2, 2, format(angle(scaled_wc('lequ3_2322')), '.6e'), '# cLeQu3Ph2x3x2x2'], - [2, 3, 2, 3, format(angle(scaled_wc('lequ3_2323')), '.6e'), '# cLeQu3Ph2x3x2x3'], - [2, 3, 3, 1, format(angle(scaled_wc('lequ3_2331')), '.6e'), '# cLeQu3Ph2x3x3x1'], - [2, 3, 3, 2, format(angle(scaled_wc('lequ3_2332')), '.6e'), '# cLeQu3Ph2x3x3x2'], - [2, 3, 3, 3, format(angle(scaled_wc('lequ3_2333')), '.6e'), '# cLeQu3Ph2x3x3x3'], - [3, 1, 1, 1, format(angle(scaled_wc('lequ3_3111')), '.6e'), '# cLeQu3Ph3x1x1x1'], - [3, 1, 1, 2, format(angle(scaled_wc('lequ3_3112')), '.6e'), '# cLeQu3Ph3x1x1x2'], - [3, 1, 1, 3, format(angle(scaled_wc('lequ3_3113')), '.6e'), '# cLeQu3Ph3x1x1x3'], - [3, 1, 2, 1, format(angle(scaled_wc('lequ3_3121')), '.6e'), '# cLeQu3Ph3x1x2x1'], - [3, 1, 2, 2, format(angle(scaled_wc('lequ3_3122')), '.6e'), '# cLeQu3Ph3x1x2x2'], - [3, 1, 2, 3, format(angle(scaled_wc('lequ3_3123')), '.6e'), '# cLeQu3Ph3x1x2x3'], - [3, 1, 3, 1, format(angle(scaled_wc('lequ3_3131')), '.6e'), '# cLeQu3Ph3x1x3x1'], - [3, 1, 3, 2, format(angle(scaled_wc('lequ3_3132')), '.6e'), '# cLeQu3Ph3x1x3x2'], - [3, 1, 3, 3, format(angle(scaled_wc('lequ3_3133')), '.6e'), '# cLeQu3Ph3x1x3x3'], - [3, 2, 1, 1, format(angle(scaled_wc('lequ3_3211')), '.6e'), '# cLeQu3Ph3x2x1x1'], - [3, 2, 1, 2, format(angle(scaled_wc('lequ3_3212')), '.6e'), '# cLeQu3Ph3x2x1x2'], - [3, 2, 1, 3, format(angle(scaled_wc('lequ3_3213')), '.6e'), '# cLeQu3Ph3x2x1x3'], - [3, 2, 2, 1, format(angle(scaled_wc('lequ3_3221')), '.6e'), '# cLeQu3Ph3x2x2x1'], - [3, 2, 2, 2, format(angle(scaled_wc('lequ3_3222')), '.6e'), '# cLeQu3Ph3x2x2x2'], - [3, 2, 2, 3, format(angle(scaled_wc('lequ3_3223')), '.6e'), '# cLeQu3Ph3x2x2x3'], - [3, 2, 3, 1, format(angle(scaled_wc('lequ3_3231')), '.6e'), '# cLeQu3Ph3x2x3x1'], - [3, 2, 3, 2, format(angle(scaled_wc('lequ3_3232')), '.6e'), '# cLeQu3Ph3x2x3x2'], - [3, 2, 3, 3, format(angle(scaled_wc('lequ3_3233')), '.6e'), '# cLeQu3Ph3x2x3x3'], - [3, 3, 1, 1, format(angle(scaled_wc('lequ3_3311')), '.6e'), '# cLeQu3Ph3x3x1x1'], - [3, 3, 1, 2, format(angle(scaled_wc('lequ3_3312')), '.6e'), '# cLeQu3Ph3x3x1x2'], - [3, 3, 1, 3, format(angle(scaled_wc('lequ3_3313')), '.6e'), '# cLeQu3Ph3x3x1x3'], - [3, 3, 2, 1, format(angle(scaled_wc('lequ3_3321')), '.6e'), '# cLeQu3Ph3x3x2x1'], - [3, 3, 2, 2, format(angle(scaled_wc('lequ3_3322')), '.6e'), '# cLeQu3Ph3x3x2x2'], - [3, 3, 2, 3, format(angle(scaled_wc('lequ3_3323')), '.6e'), '# cLeQu3Ph3x3x2x3'], - [3, 3, 3, 1, format(angle(scaled_wc('lequ3_3331')), '.6e'), '# cLeQu3Ph3x3x3x1'], - [3, 3, 3, 2, format(angle(scaled_wc('lequ3_3332')), '.6e'), '# cLeQu3Ph3x3x3x2'], - [3, 3, 3, 3, format(angle(scaled_wc('lequ3_3333')), '.6e'), '# cLeQu3Ph3x3x3x3'], - ]} - - card['Block']['FRBlock9'] = {'values': [ - [1, 1, format(angle(scaled_wc('ephi_11')), '.6e'), '# ceHPh1x1'], - [1, 2, format(angle(scaled_wc('ephi_12')), '.6e'), '# ceHPh1x2'], - [1, 3, format(angle(scaled_wc('ephi_13')), '.6e'), '# ceHPh1x3'], - [2, 1, format(angle(scaled_wc('ephi_21')), '.6e'), '# ceHPh2x1'], - [2, 2, format(angle(scaled_wc('ephi_22')), '.6e'), '# ceHPh2x2'], - [2, 3, format(angle(scaled_wc('ephi_23')), '.6e'), '# ceHPh2x3'], - [3, 1, format(angle(scaled_wc('ephi_31')), '.6e'), '# ceHPh3x1'], - [3, 2, format(angle(scaled_wc('ephi_32')), '.6e'), '# ceHPh3x2'], - [3, 3, format(angle(scaled_wc('ephi_33')), '.6e'), '# ceHPh3x3'], - ]} - - card['Block']['NEWCOUP'] = {'values': [ - [0, format(lambda_smeft_value, '.6e'),'# Lambda'], - [1, format(scaled_wc('phiBox')* lambda_smeft_value**2, '.6e'), '# cHBox'], - [2, format(scaled_wc('phiD')* lambda_smeft_value**2, '.6e'), '# cHDD'], - [3, format(scaled_wc('phi')* lambda_smeft_value**2, '.6e'), '# cH'], - [4, format(scaled_wc('phiB')* lambda_smeft_value**2, '.6e'), '# cHB'], - [5, format(scaled_wc('phiW')* lambda_smeft_value**2, '.6e'), '# cHW'], - [6, format(scaled_wc('phiWB')* lambda_smeft_value**2, '.6e'), '# cHWB'], - [7, format(scaled_wc('phiG')* lambda_smeft_value**2, '.6e'), '# cHG'], - [8, format(scaled_wc('W')* lambda_smeft_value**2, '.6e'), '# cW'], - [9, format(scaled_wc('G')* lambda_smeft_value**2, '.6e'), '# cG'], - [10, format(scaled_wc('Wtilde')* lambda_smeft_value**2, '.6e'), '# cWtil'], - [11, format(scaled_wc('Gtilde')* lambda_smeft_value**2, '.6e'), '# cGtil'], - [12, format(scaled_wc('phiBtilde')* lambda_smeft_value**2, '.6e'), '# cHBtil'], - [13, format(scaled_wc('phiWtilde')* lambda_smeft_value**2, '.6e'), '# cHWtil'], - [14, format(scaled_wc('phiWtildeB')* lambda_smeft_value**2, '.6e'), '# cHWBtil'], - [15, format(scaled_wc('phiGtilde')* lambda_smeft_value**2, '.6e'), '# cHGtil'], - ]} - - return card - - - - -def smeftsim_card_text(model_set, input_scheme_value): - #corrections for mw input scheme - if input_scheme_value == 'mw': - if model_set == 'A': - p_list = preamble_A.split('\n') - del p_list[9] - p_list[2]="## PARAM_CARD FOR SMEFTSIM SET A v2.0 - FLAVOR_GENERAL MW_INPUTS ########" - p_list[32]="24 80.387000 # W+ : MW0" - p_list[35]="9000003 80.387000 # ghWp : MW0" - p_list[36]="9000004 80.387000 # ghWm : MW0" - p_list[41]="251 80.387000 # G+ : MW0" - preamble = '\n'.join(p_list) - postamble = postamble_A - - elif model_set == 'B': - p_list = preamble_B.split('\n') - del p_list[9], p_list[32], p_list[34], p_list[34], p_list[38] - p_list[2]="## PARAM_CARD FOR SMEFTSIM SET B - FLAVOR_GENERAL MW_INPUTS ########" - p_list[10]=" 3 1.185000e-01 # aS" - p_list.insert(26, " 24 8.038700e+01 # MW") - p_list.insert(40, " 9000003 80.387000 # ghWp : MW" ) - p_list.insert(41, " 9000004 80.387000 # ghWm : MW" ) - p_list.insert(43, " 251 80.387000 # G+ : MW") - preamble = '\n'.join(p_list) - postamble = postamble_B - - elif input_scheme_value == 'alpha': - if model_set == 'A': - preamble = preamble_A - postamble = postamble_A - elif model_set == 'B': - preamble = preamble_B - postamble = postamble_B - - - return preamble, postamble diff --git a/wcxf/converters/test_dsixtools.py b/wcxf/converters/test_dsixtools.py deleted file mode 100644 index 93e33fb..0000000 --- a/wcxf/converters/test_dsixtools.py +++ /dev/null @@ -1,73 +0,0 @@ -import unittest -import wcxf -from wcxf.converters import dsixtools -import os -import subprocess - - -my_path = os.path.dirname(os.path.realpath(__file__)) -data_path = os.path.join(my_path, '..', 'data') - - -with open(os.path.join(data_path, 'WCsInput-CPV-SMEFT.dat'), 'r') as f: - wcin_lha = f.read() -with open(os.path.join(data_path, 'Options.dat'), 'r') as f: - options = f.read() -with open(os.path.join(data_path, 'SMInput-CPV.dat'), 'r') as f: - smin = f.read() -with open(os.path.join(data_path, 'WCsInput-CPV-SMEFT.json'), 'r') as f: - wcin_json = f.read() -with open(os.path.join(data_path, 'WCsInput-CPV-SMEFT.yaml'), 'r') as f: - wcin_yaml = f.read() - - -class TestDsixTools(unittest.TestCase): - def test_smeftio(self): - smeftio = dsixtools.SMEFTio() - smeftio.load_wcxf(wcin_json) - smeftio.load_wcxf(wcin_yaml) - smeftio.load_initial((wcin_lha, options, smin)) - - def test_wcxf2dsixtools(self): - wc = wcxf.WC.load(wcin_json) - d1 = dsixtools.load(dsixtools.wcxf2dsixtools(wc)) - smeftio = dsixtools.SMEFTio() - smeftio.load_initial((wcin_lha, options, smin)) - d2 = dsixtools.load(smeftio.dump(smeftio.C_in)) - for key in ['SCALES', 'OPTIONS']: - d1['BLOCK'].pop(key, None) - d2['BLOCK'].pop(key, None) - self.assertDictEqual(d1, d2) - - def test_dsixtools2wcxf(self): - smeftio = dsixtools.SMEFTio() - smeftio.load_initial((wcin_lha, options, smin)) - d1 = wcxf.WC.load(dsixtools.dsixtools2wcxf((wcin_lha, options, smin))).dict - d2 = wcxf.WC.load(wcin_yaml).dict - self.assertTrue(d1) - self.assertTrue(d2) - self.assertEqual(set(d1.keys()), set(d2.keys())) - for k in d1: - self.assertEqual(d1[k], d2[k], msg="Failed for {}".format(k)) - - def test_cli_wcxf2dsixtools(self): - smeftio = dsixtools.SMEFTio() - smeftio.load_initial((wcin_lha, options, smin)) - d1 = dsixtools.load(smeftio.dump(smeftio.C_in)) - res = subprocess.run(['wcxf2dsixtools', '-'], - input=wcin_json.encode(), - stdout=subprocess.PIPE) - s = res.stdout.decode('utf-8') - d2 = dsixtools.load(s) - self.assertDictEqual(d1, d2) - - def test_cli_dsixtools2wcxf(self): - d1 = wcxf.WC.load(wcin_yaml).dict - res = subprocess.run(['dsixtools2wcxf', - os.path.join(data_path, 'SMInput-CPV.dat'), - os.path.join(data_path, 'WCsInput-CPV-SMEFT.dat'), - os.path.join(data_path, 'Options.dat')], - stdout=subprocess.PIPE) - s = res.stdout.decode('utf-8') - d2 = wcxf.WC.load(s).dict - self.assertDictEqual(d1, d2) diff --git a/wcxf/converters/test_eos.py b/wcxf/converters/test_eos.py deleted file mode 100644 index d3867f2..0000000 --- a/wcxf/converters/test_eos.py +++ /dev/null @@ -1,36 +0,0 @@ -import unittest -import numpy as np -import numpy.testing as npt -import wcxf -from wcxf.converters import eos -import os - -my_path = os.path.dirname(os.path.realpath(__file__)) -data_path = os.path.join(my_path, '..', 'data') - -class TestEOS(unittest.TestCase): - def test_get_sm_wcs(self): - eos_sm_dict = eos.get_sm_wcs(data_path) - self.assertEqual(eos_sm_dict['b->s::Re{c7}']['central'], -0.33726473) - self.assertEqual(eos_sm_dict['b->s::c5']['central'], 0.00042854) - self.assertEqual(eos_sm_dict['b->ulnu::Im{cVL}']['min'], 0.0) - - def test_wcxf2eos(self): - sm_wc_dict = eos.get_sm_wcs(data_path) - wc_dict = { 'b->s::c7': 0.1, - 'b->uenue::cSL': 0.2j, 'b->umunumu::cSL': 0.2j, - 'b->uenue::cVL': 0.2, 'b->umunumu::cVL': 0.2, - 'b->s::c5': -0.03 } - wc = wcxf.WC('WET', 'EOS', 4.2, wcxf.WC.dict2values(wc_dict)) - eos_dict = eos.wcxf2eos(wc, sm_wc_dict) - self.assertEqual(eos_dict['b->s::Re{c7}']['central'], -0.33726473 + 0.1) - self.assertEqual(eos_dict['b->s::c5']['central'], 0.00042854 - 0.03) - self.assertEqual(eos_dict['b->ulnu::Im{cSL}']['min'], 0.0 + 0.2) - self.assertEqual(eos_dict['b->ulnu::Re{cVL}']['max'], 1.0 + 0.2) - - def test_lfu(self): - sm_wc_dict = eos.get_sm_wcs(data_path) - wc_dict = { 'b->uenue::cSL': 0.2j, 'b->umunumu::cSL': 0.1j, } - wc = wcxf.WC('WET', 'EOS', 4.2, wcxf.WC.dict2values(wc_dict)) - with self.assertRaises(ValueError): - eos.wcxf2eos(wc, sm_wc_dict) \ No newline at end of file diff --git a/wcxf/converters/test_smeftsim.py b/wcxf/converters/test_smeftsim.py deleted file mode 100644 index 4f3284a..0000000 --- a/wcxf/converters/test_smeftsim.py +++ /dev/null @@ -1,55 +0,0 @@ -import unittest -import os -from tempfile import mkdtemp -import subprocess -import pylha -from shutil import rmtree -import wcxf - - -my_path = os.path.dirname(os.path.realpath(__file__)) -data_path = os.path.join(my_path, '..', 'data') - - -class TestSMEFTsim(unittest.TestCase): - def test_wcxf2smeftsim(self): - for testfile in ['test.Warsaw_mass.yml', 'test.Warsaw_mass_incomplete.yml']: - tmpdir = mkdtemp() - # use default settings - res = subprocess.run(['wcxf2smeftsim', - os.path.join(data_path, testfile)], - cwd=tmpdir) - # check return code - self.assertEqual(res.returncode, 0, msg="Command failed") - # check if file is present - outf = os.path.join(tmpdir, 'wcxf2smeftsim_param_card.dat') - self.assertTrue(os.path.isfile, outf) - # check if can be imported as LHA - with open(outf, 'r') as f: - card = pylha.load(f) - # check dict is not empty - self.assertTrue(card) - # remove tmpdir - rmtree(tmpdir) - - def test_symm_fac(self): - wc = wcxf.WC('SMEFT', 'Warsaw mass', 120, - {'ll_1111': 1e-6, 'll_1221': 4e-6}) - tmpdir = mkdtemp() - with open(os.path.join(tmpdir, 'my_wcxf.yaml'), 'w') as f: - wc.dump(f, fmt='yaml') - res = subprocess.run(['wcxf2smeftsim', 'my_wcxf.yaml'], - cwd=tmpdir) - # check if file is present - outf = os.path.join(tmpdir, 'wcxf2smeftsim_param_card.dat') - self.assertTrue(os.path.isfile, outf) - with open(outf, 'r') as f: - card = pylha.load(f) - self.assertEqual(dict(card['BLOCK']['FRBlock']['values'])[691], - 1e6 * 4e-6 / 2, # symmetry factor of 1 / 2! - msg="Wrong value for ll_1221") - self.assertEqual(dict(card['BLOCK']['FRBlock']['values'])[689], - 1e6 * 1e-6, # no symmetry factor! - msg="Wrong value for ll_1111") - # remove tmpdir - # rmtree(tmpdir) diff --git a/wcxf/converters/yamljson.py b/wcxf/converters/yamljson.py deleted file mode 100644 index a4af9f3..0000000 --- a/wcxf/converters/yamljson.py +++ /dev/null @@ -1,21 +0,0 @@ -import wcxf -import yaml -import json -import logging - - -def convert_json(stream_in, stream_out): - try: - return wcxf.classes._yaml_to_json(stream_in, stream_out, indent=2) - except yaml.YAMLError: - logging.error("Input file cannot be parsed as YAML.") - return 1 - - -def convert_yaml(stream_in, stream_out): - try: - return wcxf.classes._json_to_yaml(stream_in, stream_out, - default_flow_style=False) - except json.decoder.JSONDecodeError: - logging.error("Input file cannot be parsed as JSON.") - return 1 diff --git a/wcxf/data/Options.dat b/wcxf/data/Options.dat deleted file mode 100644 index 3276ca9..0000000 --- a/wcxf/data/Options.dat +++ /dev/null @@ -1,13 +0,0 @@ -Block SCALES -1 10000 # UV scale [GeV] -2 80.385 # EW scale [GeV] -Block OPTIONS -1 1 # CPV=0: all parameters and WCs are assumed to be real -2 1 # ReadRGEs: 0 (RGEs reconstructed) or 1 (RGEs read from a file) -3 2 # Method to solve RGEs : 1 (NDSolve) or 2 (leading log) -4 0 # Export RGEs -5 1 # Use SM RGEs to compute SM parameters at the high-energy scale -6 1 # Export SMEFTrunner results -7 1 # Export EWmatcher results -8 1 # Export WETrunner results -9 1 # Type of input WCs: 1 (SMEFT) or 2 (WET) diff --git a/wcxf/data/SMInput-CPV.dat b/wcxf/data/SMInput-CPV.dat deleted file mode 100644 index 2d5e8ca..0000000 --- a/wcxf/data/SMInput-CPV.dat +++ /dev/null @@ -1,51 +0,0 @@ -Block GAUGE -1 0.629787 # g -2 0.345367 # gp -3 1.218232 # gs -Block SCALAR -1 0.257736 # lambda -2 7812.500000 # m2 [GeV^2] -Block GU -1 1 1.23231E-5 # Gamma_u(1,1) -1 2 -1.64149E-3 # Gamma_u(1,2) -1 3 8.01698E-3 # Gamma_u(1,3) -2 1 2.84527E-6 # Gamma_u(2,1) -2 2 7.10740E-3 # Gamma_u(2,2) -2 3 -4.13674E-2 # Gamma_u(2,3) -3 1 1.90048E-8 # Gamma_u(3,1) -3 2 3.08758E-4 # Gamma_u(3,2) -3 3 0.994858 # Gamma_u(3,3) -Block IMGU -1 1 0 # Gamma_u(1,1) -1 2 1.01061E-6 # Gamma_u(1,2) -1 3 3.25631E-3 # Gamma_u(1,3) -2 1 0 # Gamma_u(2,1) -2 2 2.33338E-7 # Gamma_u(2,2) -2 3 7.51845E-4 # Gamma_u(2,3) -3 1 4.24857E-8 # Gamma_u(3,1) -3 2 0 # Gamma_u(3,2) -3 3 0 # Gamma_u(3,3) -Block GD -1 1 2.70195E-5 # Gamma_d(1,1) -1 2 0 # Gamma_d(1,2) -1 3 0 # Gamma_d(1,3) -2 1 0 # Gamma_d(2,1) -2 2 5.51888E-4 # Gamma_d(2,2) -2 3 0 # Gamma_d(2,3) -3 1 0 # Gamma_d(3,1) -3 2 0 # Gamma_d(3,2) -3 3 2.403012E-2 # Gamma_d(3,3) -Block GE -1 1 2.93766E-6 # Gamma_e(1,1) -1 2 0 # Gamma_e(1,2) -1 3 0 # Gamma_e(1,3) -2 1 0 # Gamma_e(2,1) -2 2 6.07422E-4 # Gamma_e(2,2) -2 3 0 # Gamma_e(2,3) -3 1 0 # Gamma_e(3,1) -3 2 0 # Gamma_e(3,2) -3 3 1.02157E-2 # Gamma_e(3,3) -Block THETA -1 0 # theta -2 0 # thetap -3 0 # thetas diff --git a/wcxf/data/WCsInput-CPV-SMEFT.dat b/wcxf/data/WCsInput-CPV-SMEFT.dat deleted file mode 100644 index 7417eb1..0000000 --- a/wcxf/data/WCsInput-CPV-SMEFT.dat +++ /dev/null @@ -1,20 +0,0 @@ -Block WC4 -6 1.0 # phiBtilde -Block IMWCDPHI -1 1 0.1 # dphi(1,1) -1 2 0.2 # dphi(1,2) -1 3 0.3 # dphi(1,3) -2 1 0.1 # dphi(2,1) -2 2 0.2 # dphi(2,2) -2 3 0.3 # dphi(2,3) -3 1 0.4 # dphi(3,1) -3 2 0.5 # dphi(3,2) -3 3 0.6 # dphi(3,3) -Block WCDD -2 3 2 3 1.0 # dd(2,3,2,3) -Block WCPHIQ3 -1 3 1.0 # phiq3(1,3) -Block WCLLPHIPHI -1 1 0.2 # llphiphi(1,1) -1 2 -0.4 # llphiphi(1,2) -3 3 1.0 # llphiphi(3,3) \ No newline at end of file diff --git a/wcxf/data/WCsInput-CPV-SMEFT.json b/wcxf/data/WCsInput-CPV-SMEFT.json deleted file mode 100644 index 4787029..0000000 --- a/wcxf/data/WCsInput-CPV-SMEFT.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "eft": "SMEFT", - "basis": "Warsaw", - "scale": 10000.0, - "values": { - "phiBtilde": 1.0E-8, - "dphi_11": { - "Re": 0.0, - "Im": 1.0E-9 - }, - "dphi_12": { - "Re": 0.0, - "Im": 2.0E-9 - }, - "dphi_13": { - "Re": 0.0, - "Im": 3.0E-9 - }, - "dphi_21": { - "Re": 0.0, - "Im": 1.0E-9 - }, - "dphi_22": { - "Re": 0.0, - "Im": 2.0E-9 - }, - "dphi_23": { - "Re": 0.0, - "Im": 3.0E-9 - }, - "dphi_31": { - "Re": 0.0, - "Im": 4.0E-9 - }, - "dphi_32": { - "Re": 0.0, - "Im": 5.0E-9 - }, - "dphi_33": { - "Re": 0.0, - "Im": 6.0E-9 - }, - "dd_2323": { - "Re": 1.0E-8, - "Im": 0.0 - }, - "phiq3_13": { - "Re": 1.0E-8, - "Im": 0.0 - }, - "llphiphi_11": { - "Re": 2.0E-5, - "Im": 0.0 - }, - "llphiphi_12": { - "Re": -4.0E-5, - "Im": 0.0 - }, - "llphiphi_33": { - "Re": 1.0E-4, - "Im": 0.0 - } - } -} diff --git a/wcxf/data/WCsInput-CPV-SMEFT.yaml b/wcxf/data/WCsInput-CPV-SMEFT.yaml deleted file mode 100644 index c8cbf81..0000000 --- a/wcxf/data/WCsInput-CPV-SMEFT.yaml +++ /dev/null @@ -1,47 +0,0 @@ -eft: SMEFT -basis: Warsaw -scale: 10000.0 -values: - phiBtilde: 1.0E-8 - dphi_11: - Re: 0.0 - Im: 1.0E-9 - dphi_12: - Re: 0.0 - Im: 2.0E-9 - dphi_13: - Re: 0.0 - Im: 3.0E-9 - dphi_21: - Re: 0.0 - Im: 1.0E-9 - dphi_22: - Re: 0.0 - Im: 2.0E-9 - dphi_23: - Re: 0.0 - Im: 3.0E-9 - dphi_31: - Re: 0.0 - Im: 4.0E-9 - dphi_32: - Re: 0.0 - Im: 5.0E-9 - dphi_33: - Re: 0.0 - Im: 6.0E-9 - dd_2323: - Re: 1.0E-8 - Im: 0.0 - phiq3_13: - Re: 1.0E-8 - Im: 0.0 - llphiphi_11: - Re: 2.0E-5 - Im: 0.0 - llphiphi_12: - Re: -4.0E-5 - Im: 0.0 - llphiphi_33: - Re: 1.0E-4 - Im: 0.0 diff --git a/wcxf/data/eos_btos.yaml b/wcxf/data/eos_btos.yaml deleted file mode 100644 index 590c3b4..0000000 --- a/wcxf/data/eos_btos.yaml +++ /dev/null @@ -1,216 +0,0 @@ -# Wilson coefficients C1 - C6 at mu = 4.2 GeV to NNLL accuary as calculated in the SM by EOS's StandardModel class. -# For the calculations, cf. [BMU1999]. -"@metadata@": - wcxf-relevant: true -"b->s::c1" : - central: -0.29063621 - min: -0.29063621 - max: -0.29063621 -"b->s::c2" : - central: +1.01029623 - min: +1.01029623 - max: +1.01029623 -"b->s::c3" : - central: -0.00616220 - min: -0.00616220 - max: -0.00616220 -"b->s::c4" : - central: -0.08730376 - min: -0.08730376 - max: -0.08730376 -"b->s::c5" : - central: +0.00042854 - min: +0.00042854 - max: +0.00042854 -"b->s::c6" : - central: +0.00115807 - min: +0.00115807 - max: +0.00115807 -"b->s::Re{c7}" : - central: -0.33726473 - min: -1.0 - max: +1.0 -"b->s::Im{c7}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->s::c8" : - central: -0.18288898 - min: -0.18288898 - max: -0.18288898 -"b->see::Re{c9}" : - central: +4.27342842 - min: -15.0 - max: +15.0 -"b->see::Im{c9}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->see::Re{c10}" : - central: -4.16611761 - min: -15.0 - max: +15.0 -"b->see::Im{c10}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->smumu::Re{c9}" : - central: +4.27342842 - min: -15.0 - max: +15.0 -"b->smumu::Im{c9}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->smumu::Re{c10}" : - central: -4.16611761 - min: -15.0 - max: +15.0 -"b->smumu::Im{c10}" : - central: +0.0 - min: -15.0 - max: +15.0 - -# Primed Wilson coefficients are negligible in the SM -"b->s::Re{c7'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->s::Im{c7'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->s::c8'" : - central: +0.0 - min: +0.0 - max: +0.0 -"b->see::Re{c9'}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->see::Im{c9'}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->see::Re{c10'}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->see::Im{c10'}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->smumu::Re{c9'}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->smumu::Im{c9'}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->smumu::Re{c10'}" : - central: +0.0 - min: -15.0 - max: +15.0 -"b->smumu::Im{c10'}" : - central: +0.0 - min: -15.0 - max: +15.0 - -# scalar, pseudoscalar, and tensor b -> s ll coefficients -"b->see::Re{cS}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Im{cS}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Re{cS'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Im{cS'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Re{cP}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Im{cP}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Re{cP'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Im{cP'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Re{cT}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Im{cT}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Re{cT5}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->see::Im{cT5}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Re{cS}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Im{cS}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Re{cS'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Im{cS'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Re{cP}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Im{cP}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Re{cP'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Im{cP'}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Re{cT}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Im{cT}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Re{cT5}" : - central: +0.0 - min: -1.0 - max: +1.0 -"b->smumu::Im{cT5}" : - central: +0.0 - min: -1.0 - max: +1.0 diff --git a/wcxf/data/eos_btou.yaml b/wcxf/data/eos_btou.yaml deleted file mode 100644 index 0c94d20..0000000 --- a/wcxf/data/eos_btou.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# b->u Wilson coefficients -"@metadata@": - wcxf-relevant: true -"b->ulnu::Re{cVL}" : - central: 1.0 - min: 1.0 - max: 1.0 -"b->ulnu::Im{cVL}" : - central: 0.0 - min: 0.0 - max: 0.0 -"b->ulnu::Re{cVR}" : - central: 0.0 - min: 0.0 - max: 0.0 -"b->ulnu::Im{cVR}" : - central: 0.0 - min: 0.0 - max: 0.0 -"b->ulnu::Re{cSL}" : - central: 0.0 - min: 0.0 - max: 0.0 -"b->ulnu::Im{cSL}" : - central: 0.0 - min: 0.0 - max: 0.0 -"b->ulnu::Re{cSR}" : - central: 0.0 - min: 0.0 - max: 0.0 -"b->ulnu::Im{cSR}" : - central: 0.0 - min: 0.0 - max: 0.0 -"b->ulnu::Re{cT}" : - central: 0.0 - min: 0.0 - max: 0.0 -"b->ulnu::Im{cT}" : - central: 0.0 - min: 0.0 - max: 0.0 diff --git a/wcxf/data/flavorkit_jms.json b/wcxf/data/flavorkit_jms.json deleted file mode 100644 index 6ad7d92..0000000 --- a/wcxf/data/flavorkit_jms.json +++ /dev/null @@ -1,421 +0,0 @@ -{ - "DSRR_2323": "S1ddRR_3232", - "DSRR_3232": "S1ddRR_2323", - "DSRR_1313": "S1ddRR_3131", - "DSRR_3131": "S1ddRR_1313", - "DSRR_1212": "S1ddRR_2121", - "DSRR_2121": "S1ddRR_1212", - "DSRR_1323": "S1ddRR_3132", - "DSRR_3132": "S1ddRR_1323", - "DSRR_1232": "S1ddRR_2123", - "DSRR_2123": "S1ddRR_1232", - "DSRR_1213": "S1ddRR_2131", - "DSRR_2131": "S1ddRR_1213", - "FVLL_2111": "VnudLL_1112", - "FVLL_2122": "VnudLL_2212", - "FVLL_2133": "VnudLL_3312", - "FVRL_2111": "VnudLR_1112", - "FVRL_2122": "VnudLR_2212", - "FVRL_2133": "VnudLR_3312", - "DSRR_2311": "S1ddRR_1132", - "DSRR_2322": "S1ddRR_2232", - "DSRR_2333": "S1ddRR_3233", - "DSRR_3211": "S1ddRR_1123", - "DSRR_3222": "S1ddRR_2223", - "DSRR_3233": "S1ddRR_2333", - "DSRR_1231": "S1ddRR_1321", - "DSRR_1321": "S1ddRR_1231", - "ESRR_2311": "SedRR_1132", - "ESRR_2322": "SedRR_2232", - "ESRR_2333": "SedRR_3332", - "ESRR_3211": "SedRR_1123", - "ESRR_3222": "SedRR_2223", - "ESRR_3233": "SedRR_3323", - "ESLR_2311": "SedRL_1132", - "ESLR_2322": "SedRL_2232", - "ESLR_2333": "SedRL_3332", - "ESLR_3211": "SedRL_1123", - "ESLR_3222": "SedRL_2223", - "ESLR_3233": "SedRL_3323", - "ETRR_2311": "TedRR_1132", - "ETRR_2322": "TedRR_2232", - "ETRR_2333": "TedRR_3332", - "ETRR_3211": "TedRR_1123", - "ETRR_3222": "TedRR_2223", - "ETRR_3233": "TedRR_3323", - "DVLL_2132": "VddLL_1223", - "DVRR_2132": "VddRR_1223", - "DVLR_2132": "V1ddLR_1223", - "DSRR_1311": "S1ddRR_1131", - "DSRR_1322": "S1ddRR_2231", - "DSRR_1333": "S1ddRR_3133", - "DSRR_3111": "S1ddRR_1113", - "DSRR_3122": "S1ddRR_1322", - "DSRR_3133": "S1ddRR_1333", - "DSRR_2132": "S1ddRR_1223", - "DSRR_2312": "S1ddRR_2132", - "ESRR_1311": "SedRR_1131", - "ESRR_1322": "SedRR_2231", - "ESRR_1333": "SedRR_3331", - "ESRR_3111": "SedRR_1113", - "ESRR_3122": "SedRR_2213", - "ESRR_3133": "SedRR_3313", - "ESLR_1311": "SedRL_1131", - "ESLR_1322": "SedRL_2231", - "ESLR_1333": "SedRL_3331", - "ESLR_3111": "SedRL_1113", - "ESLR_3122": "SedRL_2213", - "ESLR_3133": "SedRL_3313", - "ETRR_1311": "TedRR_1131", - "ETRR_1322": "TedRR_2231", - "ETRR_1333": "TedRR_3331", - "ETRR_3111": "TedRR_1113", - "ETRR_3122": "TedRR_2213", - "ETRR_3133": "TedRR_3313", - "DVLL_3123": "VddLL_1332", - "DVRR_3123": "VddRR_1332", - "DVLR_3123": "V1ddLR_1332", - "DVLR_3213": "V1ddLR_2331", - "DSRR_1211": "S1ddRR_1121", - "DSRR_1222": "S1ddRR_2122", - "DSRR_1233": "S1ddRR_2133", - "DSRR_2111": "S1ddRR_1112", - "DSRR_2122": "S1ddRR_1222", - "DSRR_2133": "S1ddRR_1233", - "DSRR_3123": "S1ddRR_1332", - "DSRR_3213": "S1ddRR_2331", - "ESRR_1211": "SedRR_1121", - "ESRR_1222": "SedRR_2221", - "ESRR_1233": "SedRR_3321", - "ESRR_2111": "SedRR_1112", - "ESRR_2122": "SedRR_2212", - "ESRR_2133": "SedRR_3312", - "ESLR_1211": "SedRL_1121", - "ESLR_1222": "SedRL_2221", - "ESLR_1233": "SedRL_3321", - "ESLR_2111": "SedRL_1112", - "ESLR_2122": "SedRL_2212", - "ESLR_2133": "SedRL_3312", - "ETRR_1211": "TedRR_1121", - "ETRR_1222": "TedRR_2221", - "ETRR_1233": "TedRR_3321", - "ETRR_2111": "TedRR_1112", - "ETRR_2122": "TedRR_2212", - "ETRR_2133": "TedRR_3312", - "ESRR_2312": "SedRR_2132", - "ESRR_3221": "SedRR_1223", - "ESLR_2312": "SedRL_2132", - "ESLR_3221": "SedRL_1223", - "ETRR_2312": "TedRR_2132", - "ETRR_3221": "TedRR_1223", - "EVLR_3212": "VdeLR_2321", - "ESRR_3212": "SedRR_2123", - "ESRR_2321": "SedRR_1232", - "ESLR_3212": "SedRL_2123", - "ESLR_2321": "SedRL_1232", - "ETRR_3212": "TedRR_2123", - "ETRR_2321": "TedRR_1232", - "ESRR_2313": "SedRR_3132", - "ESRR_3231": "SedRR_1323", - "ESLR_2313": "SedRL_3132", - "ESLR_3231": "SedRL_1323", - "ETRR_2313": "TedRR_3132", - "ETRR_3231": "TedRR_1323", - "EVLR_3213": "VdeLR_2331", - "ESRR_3213": "SedRR_3123", - "ESRR_2331": "SedRR_1332", - "ESLR_3213": "SedRL_3123", - "ESLR_2331": "SedRL_1332", - "ETRR_3213": "TedRR_3123", - "ETRR_2331": "TedRR_1332", - "ESRR_2323": "SedRR_3232", - "ESRR_3232": "SedRR_2323", - "ESLR_2323": "SedRL_3232", - "ESLR_3232": "SedRL_2323", - "ETRR_2323": "TedRR_3232", - "ETRR_3232": "TedRR_2323", - "EVLR_3223": "VdeLR_2332", - "ESRR_3223": "SedRR_3223", - "ESRR_2332": "SedRR_2332", - "ESLR_3223": "SedRL_3223", - "ESLR_2332": "SedRL_2332", - "ETRR_3223": "TedRR_3223", - "ETRR_2332": "TedRR_2332", - "ESRR_1312": "SedRR_2131", - "ESRR_3121": "SedRR_1213", - "ESLR_1312": "SedRL_2131", - "ESLR_3121": "SedRL_1213", - "ETRR_1312": "TedRR_2131", - "ETRR_3121": "TedRR_1213", - "EVLR_3112": "VdeLR_1321", - "ESRR_3112": "SedRR_2113", - "ESRR_1321": "SedRR_1231", - "ESLR_3112": "SedRL_2113", - "ESLR_1321": "SedRL_1231", - "ETRR_3112": "TedRR_2113", - "ETRR_1321": "TedRR_1231", - "ESRR_1313": "SedRR_3131", - "ESRR_3131": "SedRR_1313", - "ESLR_1313": "SedRL_3131", - "ESLR_3131": "SedRL_1313", - "ETRR_1313": "TedRR_3131", - "ETRR_3131": "TedRR_1313", - "EVLR_3113": "VdeLR_1331", - "ESRR_3113": "SedRR_3113", - "ESRR_1331": "SedRR_1331", - "ESLR_3113": "SedRL_3113", - "ESLR_1331": "SedRL_1331", - "ETRR_3113": "TedRR_3113", - "ETRR_1331": "TedRR_1331", - "ESRR_1323": "SedRR_3231", - "ESRR_3132": "SedRR_2313", - "ESLR_1323": "SedRL_3231", - "ESLR_3132": "SedRL_2313", - "ETRR_1323": "TedRR_3231", - "ETRR_3132": "TedRR_2313", - "EVLR_3123": "VdeLR_1332", - "ESRR_3123": "SedRR_3213", - "ESRR_1332": "SedRR_2331", - "ESLR_3123": "SedRL_3213", - "ESLR_1332": "SedRL_2331", - "ETRR_3123": "TedRR_3213", - "ETRR_1332": "TedRR_2331", - "EVLR_2112": "VdeLR_1221", - "ESRR_2112": "SedRR_2112", - "ESRR_1221": "SedRR_1221", - "ESLR_2112": "SedRL_2112", - "ESLR_1221": "SedRL_1221", - "ETRR_2112": "TedRR_2112", - "ETRR_1221": "TedRR_1221", - "ESRR_1212": "SedRR_2121", - "ESRR_2121": "SedRR_1212", - "ESLR_1212": "SedRL_2121", - "ESLR_2121": "SedRL_1212", - "ETRR_1212": "TedRR_2121", - "ETRR_2121": "TedRR_1212", - "EVLR_2113": "VdeLR_1231", - "ESRR_2113": "SedRR_3112", - "ESRR_1231": "SedRR_1321", - "ESLR_2113": "SedRL_3112", - "ESLR_1231": "SedRL_1321", - "ETRR_2113": "TedRR_3112", - "ETRR_1231": "TedRR_1321", - "ESRR_1213": "SedRR_3121", - "ESRR_2131": "SedRR_1312", - "ESLR_1213": "SedRL_3121", - "ESLR_2131": "SedRL_1312", - "ETRR_1213": "TedRR_3121", - "ETRR_2131": "TedRR_1312", - "EVLR_2123": "VdeLR_1232", - "ESRR_2123": "SedRR_3212", - "ESRR_1232": "SedRR_2321", - "ESLR_2123": "SedRL_3212", - "ESLR_1232": "SedRL_2321", - "ETRR_2123": "TedRR_3212", - "ETRR_1232": "TedRR_2321", - "ESRR_1223": "SedRR_3221", - "ESRR_2132": "SedRR_2312", - "ESLR_1223": "SedRL_3221", - "ESLR_2132": "SedRL_2312", - "ETRR_1223": "TedRR_3221", - "ETRR_2132": "TedRR_2312", - "AVLL_1121": "VeeLL_1112", - "AVLL_2221": "VeeLL_1222", - "AVLL_3321": "VeeLL_1233", - "AVRR_1121": "VeeRR_1112", - "AVRR_2221": "VeeRR_1222", - "AVRR_3321": "VeeRR_1233", - "AVLR_1121": "VeeLR_1112", - "AVLR_2221": "VeeLR_2212", - "AVLR_3321": "VeeLR_3312", - "AVLR_2111": "VeeLR_1211", - "AVLR_2122": "VeeLR_1222", - "AVLR_2133": "VeeLR_1233", - "AVLR_3213": "VeeLR_2331", - "AVLR_3123": "VeeLR_1332", - "ASRR_1121": "SeeRR_1112", - "ASRR_2221": "SeeRR_1222", - "ASRR_3321": "SeeRR_1233", - "ASRR_1112": "SeeRR_1121", - "ASRR_2212": "SeeRR_2122", - "ASRR_3312": "SeeRR_2133", - "ASRR_3213": "SeeRR_2331", - "ASRR_3123": "SeeRR_1332", - "BVLL_2111": "VedLL_1211", - "BVLL_2122": "VedLL_1222", - "BVLL_2133": "VedLL_1233", - "BVRR_2111": "VedRR_1211", - "BVRR_2122": "VedRR_1222", - "BVRR_2133": "VedRR_1233", - "BVLR_2111": "VedLR_1211", - "BVLR_2122": "VedLR_1222", - "BVLR_2133": "VedLR_1233", - "BSRL_2111": "SedRL_1211", - "BSRL_2122": "SedRL_1222", - "BSRL_2133": "SedRL_1233", - "BSRL_1211": "SedRL_2111", - "BSRL_1222": "SedRL_2122", - "BSRL_1233": "SedRL_2133", - "BSRR_2111": "SedRR_1211", - "BSRR_2122": "SedRR_1222", - "BSRR_2133": "SedRR_1233", - "BSRR_1211": "SedRR_2111", - "BSRR_1222": "SedRR_2122", - "BSRR_1233": "SedRR_2133", - "BTRR_2111": "TedRR_1211", - "BTRR_2122": "TedRR_1222", - "BTRR_2133": "TedRR_1233", - "BTRR_1211": "TedRR_2111", - "BTRR_1222": "TedRR_2122", - "BTRR_1233": "TedRR_2133", - "EVLR_1121": "VdeLR_1112", - "EVLR_2221": "VdeLR_2212", - "EVLR_3321": "VdeLR_3312", - "CVLL_2111": "VeuLL_1211", - "CVLL_2122": "VeuLL_1222", - "CVRR_2111": "VeuRR_1211", - "CVRR_2122": "VeuRR_1222", - "CVLR_2111": "VeuLR_1211", - "CVLR_2122": "VeuLR_1222", - "CSRL_2111": "SeuRL_1211", - "CSRL_2122": "SeuRL_1222", - "CSRL_1211": "SeuRL_2111", - "CSRL_1222": "SeuRL_2122", - "CSRR_2111": "SeuRR_1211", - "CSRR_2122": "SeuRR_1222", - "CSRR_1211": "SeuRR_2111", - "CSRR_1222": "SeuRR_2122", - "CTRR_2111": "TeuRR_1211", - "CTRR_2122": "TeuRR_1222", - "CTRR_1211": "TeuRR_2111", - "CTRR_1222": "TeuRR_2122", - "AVLL_1131": "VeeLL_1113", - "AVLL_3331": "VeeLL_1333", - "AVRR_1131": "VeeRR_1113", - "AVRR_3331": "VeeRR_1333", - "AVLR_1131": "VeeLR_1113", - "AVLR_2231": "VeeLR_2213", - "AVLR_3331": "VeeLR_3313", - "AVLR_3111": "VeeLR_1311", - "AVLR_3122": "VeeLR_1322", - "AVLR_3133": "VeeLR_1333", - "AVLR_2132": "VeeLR_1223", - "ASRR_1131": "SeeRR_1113", - "ASRR_2231": "SeeRR_1322", - "ASRR_3331": "SeeRR_1333", - "ASRR_1113": "SeeRR_1131", - "ASRR_2213": "SeeRR_2231", - "ASRR_3313": "SeeRR_3133", - "ASRR_2312": "SeeRR_2132", - "ASRR_2132": "SeeRR_1223", - "BVLL_3111": "VedLL_1311", - "BVLL_3122": "VedLL_1322", - "BVLL_3133": "VedLL_1333", - "BVRR_3111": "VedRR_1311", - "BVRR_3122": "VedRR_1322", - "BVRR_3133": "VedRR_1333", - "BVLR_3111": "VedLR_1311", - "BVLR_3122": "VedLR_1322", - "BVLR_3133": "VedLR_1333", - "BSRL_3111": "SedRL_1311", - "BSRL_3122": "SedRL_1322", - "BSRL_3133": "SedRL_1333", - "BSRL_1311": "SedRL_3111", - "BSRL_1322": "SedRL_3122", - "BSRL_1333": "SedRL_3133", - "BSRR_3111": "SedRR_1311", - "BSRR_3122": "SedRR_1322", - "BSRR_3133": "SedRR_1333", - "BSRR_1311": "SedRR_3111", - "BSRR_1322": "SedRR_3122", - "BSRR_1333": "SedRR_3133", - "BTRR_3111": "TedRR_1311", - "BTRR_3122": "TedRR_1322", - "BTRR_3133": "TedRR_1333", - "BTRR_1311": "TedRR_3111", - "BTRR_1322": "TedRR_3122", - "BTRR_1333": "TedRR_3133", - "EVLR_1131": "VdeLR_1113", - "EVLR_2231": "VdeLR_2213", - "EVLR_3331": "VdeLR_3313", - "CVLL_3111": "VeuLL_1311", - "CVLL_3122": "VeuLL_1322", - "CVRR_3111": "VeuRR_1311", - "CVRR_3122": "VeuRR_1322", - "CVLR_3111": "VeuLR_1311", - "CVLR_3122": "VeuLR_1322", - "CSRL_3111": "SeuRL_1311", - "CSRL_3122": "SeuRL_1322", - "CSRL_1311": "SeuRL_3111", - "CSRL_1322": "SeuRL_3122", - "CSRR_3111": "SeuRR_1311", - "CSRR_3122": "SeuRR_1322", - "CSRR_1311": "SeuRR_3111", - "CSRR_1322": "SeuRR_3122", - "CTRR_3111": "TeuRR_1311", - "CTRR_3122": "TeuRR_1322", - "CTRR_1311": "TeuRR_3111", - "CTRR_1322": "TeuRR_3122", - "ASRR_1123": "SeeRR_1132", - "ASRR_2223": "SeeRR_2232", - "ASRR_3323": "SeeRR_3233", - "ASRR_1132": "SeeRR_1123", - "ASRR_2232": "SeeRR_2223", - "ASRR_3332": "SeeRR_2333", - "ASRR_1231": "SeeRR_1321", - "ASRR_1321": "SeeRR_1231", - "BSRL_2311": "SedRL_3211", - "BSRL_2322": "SedRL_3222", - "BSRL_2333": "SedRL_3233", - "BSRL_3211": "SedRL_2311", - "BSRL_3222": "SedRL_2322", - "BSRL_3233": "SedRL_2333", - "BSRR_2311": "SedRR_3211", - "BSRR_2322": "SedRR_3222", - "BSRR_2333": "SedRR_3233", - "BSRR_3211": "SedRR_2311", - "BSRR_3222": "SedRR_2322", - "BSRR_3233": "SedRR_2333", - "BTRR_2311": "TedRR_3211", - "BTRR_2322": "TedRR_3222", - "BTRR_2333": "TedRR_3233", - "BTRR_3211": "TedRR_2311", - "BTRR_3222": "TedRR_2322", - "BTRR_3233": "TedRR_2333", - "CSRL_2311": "SeuRL_3211", - "CSRL_2322": "SeuRL_3222", - "CSRL_3211": "SeuRL_2311", - "CSRL_3222": "SeuRL_2322", - "CSRR_2311": "SeuRR_3211", - "CSRR_2322": "SeuRR_3222", - "CSRR_3211": "SeuRR_2311", - "CSRR_3222": "SeuRR_2322", - "CTRR_2311": "TeuRR_3211", - "CTRR_2322": "TeuRR_3222", - "CTRR_3211": "TeuRR_2311", - "CTRR_3222": "TeuRR_2322", - "ASRR_1313": "SeeRR_3131", - "ASRR_3131": "SeeRR_1313", - "ASRR_2323": "SeeRR_3232", - "ASRR_3232": "SeeRR_2323", - "ASRR_1212": "SeeRR_2121", - "ASRR_2121": "SeeRR_1212", - "ASRR_1232": "SeeRR_2123", - "ASRR_2123": "SeeRR_1232", - "ASRR_1213": "SeeRR_2131", - "ASRR_2131": "SeeRR_1213", - "ASRR_1323": "SeeRR_3132", - "ASRR_3132": "SeeRR_1323", - "Q1R_23": "dgamma_32", - "Q1R_32": "dgamma_23", - "Q1R_13": "dgamma_31", - "Q1R_31": "dgamma_13", - "Q1R_12": "dgamma_21", - "Q1R_21": "dgamma_12", - "Q2R_23": "dG_32", - "Q2R_32": "dG_23", - "Q2R_13": "dG_31", - "Q2R_31": "dG_13", - "Q2R_12": "dG_21", - "Q2R_21": "dG_12" -} diff --git a/wcxf/data/flavorkit_jms_conj.json b/wcxf/data/flavorkit_jms_conj.json deleted file mode 100644 index 2275138..0000000 --- a/wcxf/data/flavorkit_jms_conj.json +++ /dev/null @@ -1,481 +0,0 @@ -{ - "DVLL_2323": "VddLL_2323", - "DVRR_2323": "VddRR_2323", - "DVLR_2323": "V1ddLR_2323", - "DVLL_1313": "VddLL_1313", - "DVRR_1313": "VddRR_1313", - "DVLR_1313": "V1ddLR_1313", - "DVLL_1212": "VddLL_1212", - "DVRR_1212": "VddRR_1212", - "DVLR_1212": "V1ddLR_1212", - "DVLL_1323": "VddLL_1323", - "DVRR_1323": "VddRR_1323", - "DVLR_1323": "V1ddLR_1323", - "DVLR_2313": "V1ddLR_2313", - "DVLL_1232": "VddLL_1232", - "DVRR_1232": "VddRR_1232", - "DVLR_1232": "V1ddLR_1232", - "DVLR_2321": "V1ddLR_2321", - "DVLL_1213": "VddLL_1213", - "DVRR_1213": "VddRR_1213", - "DVLR_1213": "V1ddLR_1213", - "DVLR_1312": "V1ddLR_1312", - "GVLL_3111": "VnueduLL_1131", - "GVLL_3121": "VnueduLL_2131", - "GVLL_3131": "VnueduLL_3131", - "GVRL_3111": "VnueduLR_1131", - "GVRL_3121": "VnueduLR_2131", - "GVRL_3131": "VnueduLR_3131", - "GSLL_3111": "SnueduRR_1131", - "GSLL_3121": "SnueduRR_2131", - "GSLL_3131": "SnueduRR_3131", - "GSRL_3111": "SnueduRL_1131", - "GSRL_3121": "SnueduRL_2131", - "GSRL_3131": "SnueduRL_3131", - "GVLL_3211": "VnueduLL_1132", - "GVLL_3221": "VnueduLL_2132", - "GVLL_3231": "VnueduLL_3132", - "GVRL_3211": "VnueduLR_1132", - "GVRL_3221": "VnueduLR_2132", - "GVRL_3231": "VnueduLR_3132", - "GSLL_3211": "SnueduRR_1132", - "GSLL_3221": "SnueduRR_2132", - "GSLL_3231": "SnueduRR_3132", - "GSRL_3211": "SnueduRL_1132", - "GSRL_3221": "SnueduRL_2132", - "GSRL_3231": "SnueduRL_3132", - "GVLL_2111": "VnueduLL_1121", - "GVLL_2121": "VnueduLL_2121", - "GVLL_2131": "VnueduLL_3121", - "GVRL_2111": "VnueduLR_1121", - "GVRL_2121": "VnueduLR_2121", - "GVRL_2131": "VnueduLR_3121", - "GSLL_2111": "SnueduRR_1121", - "GSLL_2121": "SnueduRR_2121", - "GSLL_2131": "SnueduRR_3121", - "GSRL_2111": "SnueduRL_1121", - "GSRL_2121": "SnueduRL_2121", - "GSRL_2131": "SnueduRL_3121", - "GVLL_2211": "VnueduLL_1122", - "GVLL_2221": "VnueduLL_2122", - "GVLL_2231": "VnueduLL_3122", - "GVRL_2211": "VnueduLR_1122", - "GVRL_2221": "VnueduLR_2122", - "GVRL_2231": "VnueduLR_3122", - "GSLL_2211": "SnueduRR_1122", - "GSLL_2221": "SnueduRR_2122", - "GSLL_2231": "SnueduRR_3122", - "GSRL_2211": "SnueduRL_1122", - "GSRL_2221": "SnueduRL_2122", - "GSRL_2231": "SnueduRL_3122", - "GVLL_1111": "VnueduLL_1111", - "GVLL_1121": "VnueduLL_2111", - "GVLL_1131": "VnueduLL_3111", - "GVRL_1111": "VnueduLR_1111", - "GVRL_1121": "VnueduLR_2111", - "GVRL_1131": "VnueduLR_3111", - "GSLL_1111": "SnueduRR_1111", - "GSLL_1121": "SnueduRR_2111", - "GSLL_1131": "SnueduRR_3111", - "GSRL_1111": "SnueduRL_1111", - "GSRL_1121": "SnueduRL_2111", - "GSRL_1131": "SnueduRL_3111", - "GVLL_1211": "VnueduLL_1112", - "GVLL_1221": "VnueduLL_2112", - "GVLL_1231": "VnueduLL_3112", - "GVRL_1211": "VnueduLR_1112", - "GVRL_1221": "VnueduLR_2112", - "GVRL_1231": "VnueduLR_3112", - "GSLL_1211": "SnueduRR_1112", - "GSLL_1221": "SnueduRR_2112", - "GSLL_1231": "SnueduRR_3112", - "GSRL_1211": "SnueduRL_1112", - "GSRL_1221": "SnueduRL_2112", - "GSRL_1231": "SnueduRL_3112", - "GVLL_3112": "VnueduLL_1231", - "GVLL_3122": "VnueduLL_2231", - "GVLL_3132": "VnueduLL_3231", - "GVRL_3112": "VnueduLR_1231", - "GVRL_3122": "VnueduLR_2231", - "GVRL_3132": "VnueduLR_3231", - "GSLL_3112": "SnueduRR_1231", - "GSLL_3122": "SnueduRR_2231", - "GSLL_3132": "SnueduRR_3231", - "GSRL_3112": "SnueduRL_1231", - "GSRL_3122": "SnueduRL_2231", - "GSRL_3132": "SnueduRL_3231", - "GVLL_3212": "VnueduLL_1232", - "GVLL_3222": "VnueduLL_2232", - "GVLL_3232": "VnueduLL_3232", - "GVRL_3212": "VnueduLR_1232", - "GVRL_3222": "VnueduLR_2232", - "GVRL_3232": "VnueduLR_3232", - "GSLL_3212": "SnueduRR_1232", - "GSLL_3222": "SnueduRR_2232", - "GSLL_3232": "SnueduRR_3232", - "GSRL_3212": "SnueduRL_1232", - "GSRL_3222": "SnueduRL_2232", - "GSRL_3232": "SnueduRL_3232", - "GVLL_2112": "VnueduLL_1221", - "GVLL_2122": "VnueduLL_2221", - "GVLL_2132": "VnueduLL_3221", - "GVRL_2112": "VnueduLR_1221", - "GVRL_2122": "VnueduLR_2221", - "GVRL_2132": "VnueduLR_3221", - "GSLL_2112": "SnueduRR_1221", - "GSLL_2122": "SnueduRR_2221", - "GSLL_2132": "SnueduRR_3221", - "GSRL_2112": "SnueduRL_1221", - "GSRL_2122": "SnueduRL_2221", - "GSRL_2132": "SnueduRL_3221", - "GVLL_2212": "VnueduLL_1222", - "GVLL_2222": "VnueduLL_2222", - "GVLL_2232": "VnueduLL_3222", - "GVRL_2212": "VnueduLR_1222", - "GVRL_2222": "VnueduLR_2222", - "GVRL_2232": "VnueduLR_3222", - "GSLL_2212": "SnueduRR_1222", - "GSLL_2222": "SnueduRR_2222", - "GSLL_2232": "SnueduRR_3222", - "GSRL_2212": "SnueduRL_1222", - "GSRL_2222": "SnueduRL_2222", - "GSRL_2232": "SnueduRL_3222", - "GVLL_1112": "VnueduLL_1211", - "GVLL_1122": "VnueduLL_2211", - "GVLL_1132": "VnueduLL_3211", - "GVRL_1112": "VnueduLR_1211", - "GVRL_1122": "VnueduLR_2211", - "GVRL_1132": "VnueduLR_3211", - "GSLL_1112": "SnueduRR_1211", - "GSLL_1122": "SnueduRR_2211", - "GSLL_1132": "SnueduRR_3211", - "GSRL_1112": "SnueduRL_1211", - "GSRL_1122": "SnueduRL_2211", - "GSRL_1132": "SnueduRL_3211", - "GVLL_1212": "VnueduLL_1212", - "GVLL_1222": "VnueduLL_2212", - "GVLL_1232": "VnueduLL_3212", - "GVRL_1212": "VnueduLR_1212", - "GVRL_1222": "VnueduLR_2212", - "GVRL_1232": "VnueduLR_3212", - "GSLL_1212": "SnueduRR_1212", - "GSLL_1222": "SnueduRR_2212", - "GSLL_1232": "SnueduRR_3212", - "GSRL_1212": "SnueduRL_1212", - "GSRL_1222": "SnueduRL_2212", - "GSRL_1232": "SnueduRL_3212", - "GVLL_3113": "VnueduLL_1331", - "GVLL_3123": "VnueduLL_2331", - "GVLL_3133": "VnueduLL_3331", - "GVRL_3113": "VnueduLR_1331", - "GVRL_3123": "VnueduLR_2331", - "GVRL_3133": "VnueduLR_3331", - "GSLL_3113": "SnueduRR_1331", - "GSLL_3123": "SnueduRR_2331", - "GSLL_3133": "SnueduRR_3331", - "GSRL_3113": "SnueduRL_1331", - "GSRL_3123": "SnueduRL_2331", - "GSRL_3133": "SnueduRL_3331", - "GVLL_3213": "VnueduLL_1332", - "GVLL_3223": "VnueduLL_2332", - "GVLL_3233": "VnueduLL_3332", - "GVRL_3213": "VnueduLR_1332", - "GVRL_3223": "VnueduLR_2332", - "GVRL_3233": "VnueduLR_3332", - "GSLL_3213": "SnueduRR_1332", - "GSLL_3223": "SnueduRR_2332", - "GSLL_3233": "SnueduRR_3332", - "GSRL_3213": "SnueduRL_1332", - "GSRL_3223": "SnueduRL_2332", - "GSRL_3233": "SnueduRL_3332", - "GVLL_2113": "VnueduLL_1321", - "GVLL_2123": "VnueduLL_2321", - "GVLL_2133": "VnueduLL_3321", - "GVRL_2113": "VnueduLR_1321", - "GVRL_2123": "VnueduLR_2321", - "GVRL_2133": "VnueduLR_3321", - "GSLL_2113": "SnueduRR_1321", - "GSLL_2123": "SnueduRR_2321", - "GSLL_2133": "SnueduRR_3321", - "GSRL_2113": "SnueduRL_1321", - "GSRL_2123": "SnueduRL_2321", - "GSRL_2133": "SnueduRL_3321", - "GVLL_2213": "VnueduLL_1322", - "GVLL_2223": "VnueduLL_2322", - "GVLL_2233": "VnueduLL_3322", - "GVRL_2213": "VnueduLR_1322", - "GVRL_2223": "VnueduLR_2322", - "GVRL_2233": "VnueduLR_3322", - "GSLL_2213": "SnueduRR_1322", - "GSLL_2223": "SnueduRR_2322", - "GSLL_2233": "SnueduRR_3322", - "GSRL_2213": "SnueduRL_1322", - "GSRL_2223": "SnueduRL_2322", - "GSRL_2233": "SnueduRL_3322", - "GVLL_1113": "VnueduLL_1311", - "GVLL_1123": "VnueduLL_2311", - "GVLL_1133": "VnueduLL_3311", - "GVRL_1113": "VnueduLR_1311", - "GVRL_1123": "VnueduLR_2311", - "GVRL_1133": "VnueduLR_3311", - "GSLL_1113": "SnueduRR_1311", - "GSLL_1123": "SnueduRR_2311", - "GSLL_1133": "SnueduRR_3311", - "GSRL_1113": "SnueduRL_1311", - "GSRL_1123": "SnueduRL_2311", - "GSRL_1133": "SnueduRL_3311", - "GVLL_1213": "VnueduLL_1312", - "GVLL_1223": "VnueduLL_2312", - "GVLL_1233": "VnueduLL_3312", - "GVRL_1213": "VnueduLR_1312", - "GVRL_1223": "VnueduLR_2312", - "GVRL_1233": "VnueduLR_3312", - "GSLL_1213": "SnueduRR_1312", - "GSLL_1223": "SnueduRR_2312", - "GSLL_1233": "SnueduRR_3312", - "GSRL_1213": "SnueduRL_1312", - "GSRL_1223": "SnueduRL_2312", - "GSRL_1233": "SnueduRL_3312", - "FVLL_2311": "VnudLL_1123", - "FVLL_2322": "VnudLL_2223", - "FVLL_2333": "VnudLL_3323", - "FVLL_2312": "VnudLL_1223", - "FVLL_2313": "VnudLL_1323", - "FVLL_2323": "VnudLL_2323", - "FVLL_3212": "VnudLL_1232", - "FVLL_3213": "VnudLL_1332", - "FVLL_3223": "VnudLL_2332", - "FVRL_2311": "VnudLR_1123", - "FVRL_2322": "VnudLR_2223", - "FVRL_2333": "VnudLR_3323", - "FVRL_2312": "VnudLR_1223", - "FVRL_2313": "VnudLR_1323", - "FVRL_2323": "VnudLR_2323", - "FVRL_3212": "VnudLR_1232", - "FVRL_3213": "VnudLR_1332", - "FVRL_3223": "VnudLR_2332", - "FVLL_1311": "VnudLL_1113", - "FVLL_1322": "VnudLL_2213", - "FVLL_1333": "VnudLL_3313", - "FVLL_1312": "VnudLL_1213", - "FVLL_1313": "VnudLL_1313", - "FVLL_1323": "VnudLL_2313", - "FVLL_3112": "VnudLL_1231", - "FVLL_3113": "VnudLL_1331", - "FVLL_3123": "VnudLL_2331", - "FVRL_1311": "VnudLR_1113", - "FVRL_1322": "VnudLR_2213", - "FVRL_1333": "VnudLR_3313", - "FVRL_1312": "VnudLR_1213", - "FVRL_1313": "VnudLR_1313", - "FVRL_1323": "VnudLR_2313", - "FVRL_3112": "VnudLR_1231", - "FVRL_3113": "VnudLR_1331", - "FVRL_3123": "VnudLR_2331", - "FVLL_2112": "VnudLL_1221", - "FVLL_2113": "VnudLL_1321", - "FVLL_2123": "VnudLL_2321", - "FVLL_1212": "VnudLL_1212", - "FVLL_1213": "VnudLL_1312", - "FVLL_1223": "VnudLL_2312", - "FVRL_2112": "VnudLR_1221", - "FVRL_2113": "VnudLR_1321", - "FVRL_2123": "VnudLR_2321", - "FVRL_1212": "VnudLR_1212", - "FVRL_1213": "VnudLR_1312", - "FVRL_1223": "VnudLR_2312", - "DVLL_2311": "VddLL_1123", - "DVLL_2322": "VddLL_2223", - "DVLL_2333": "VddLL_2333", - "DVLL_1231": "VddLL_1231", - "DVRR_2311": "VddRR_1123", - "DVRR_2322": "VddRR_2223", - "DVRR_2333": "VddRR_2333", - "DVRR_1231": "VddRR_1231", - "DVLR_2311": "V1ddLR_2311", - "DVLR_2322": "V1ddLR_2322", - "DVLR_2333": "V1ddLR_2333", - "DVRL_2311": "V1ddLR_1123", - "DVRL_2322": "V1ddLR_2223", - "DVRL_2333": "V1ddLR_3323", - "DVLR_1231": "V1ddLR_1231", - "DVLR_1321": "V1ddLR_1321", - "EVLL_2311": "VedLL_1123", - "EVLL_2322": "VedLL_2223", - "EVLL_2333": "VedLL_3323", - "EVRR_2311": "VedRR_1123", - "EVRR_2322": "VedRR_2223", - "EVRR_2333": "VedRR_3323", - "EVLR_2311": "VdeLR_2311", - "EVLR_2322": "VdeLR_2322", - "EVLR_2333": "VdeLR_2333", - "EVRL_2311": "VedLR_1123", - "EVRL_2322": "VedLR_2223", - "EVRL_2333": "VedLR_3323", - "DVLL_1311": "VddLL_1113", - "DVLL_1322": "VddLL_1322", - "DVLL_1333": "VddLL_1333", - "DVRR_1311": "VddRR_1113", - "DVRR_1322": "VddRR_1322", - "DVRR_1333": "VddRR_1333", - "DVLR_1311": "V1ddLR_1311", - "DVLR_1322": "V1ddLR_1322", - "DVLR_1333": "V1ddLR_1333", - "DVRL_1311": "V1ddLR_1113", - "DVRL_1322": "V1ddLR_2213", - "DVRL_1333": "V1ddLR_3313", - "DVLR_2312": "V1ddLR_2312", - "EVLL_1311": "VedLL_1113", - "EVLL_1322": "VedLL_2213", - "EVLL_1333": "VedLL_3313", - "EVRR_1311": "VedRR_1113", - "EVRR_1322": "VedRR_2213", - "EVRR_1333": "VedRR_3313", - "EVLR_1311": "VdeLR_1311", - "EVLR_1322": "VdeLR_1322", - "EVLR_1333": "VdeLR_1333", - "EVRL_1311": "VedLR_1113", - "EVRL_1322": "VedLR_2213", - "EVRL_1333": "VedLR_3313", - "DVLL_1211": "VddLL_1112", - "DVLL_1222": "VddLL_1222", - "DVLL_1233": "VddLL_1233", - "DVRR_1211": "VddRR_1112", - "DVRR_1222": "VddRR_1222", - "DVRR_1233": "VddRR_1233", - "DVLR_1211": "V1ddLR_1211", - "DVLR_1222": "V1ddLR_1222", - "DVLR_1233": "V1ddLR_1233", - "DVRL_1211": "V1ddLR_1112", - "DVRL_1222": "V1ddLR_2212", - "DVRL_1233": "V1ddLR_3312", - "EVLL_1211": "VedLL_1112", - "EVLL_1222": "VedLL_2212", - "EVLL_1233": "VedLL_3312", - "EVRR_1211": "VedRR_1112", - "EVRR_1222": "VedRR_2212", - "EVRR_1233": "VedRR_3312", - "EVLR_1211": "VdeLR_1211", - "EVLR_1222": "VdeLR_1222", - "EVLR_1233": "VdeLR_1233", - "EVRL_1211": "VedLR_1112", - "EVRL_1222": "VedLR_2212", - "EVRL_1233": "VedLR_3312", - "EVLL_2312": "VedLL_1223", - "EVRR_2312": "VedRR_1223", - "EVLR_2312": "VdeLR_2312", - "EVRL_2312": "VedLR_1223", - "EVLL_3212": "VedLL_1232", - "EVRR_3212": "VedRR_1232", - "EVRL_3212": "VedLR_1232", - "EVLL_2313": "VedLL_1323", - "EVRR_2313": "VedRR_1323", - "EVLR_2313": "VdeLR_2313", - "EVRL_2313": "VedLR_1323", - "EVLL_3213": "VedLL_1332", - "EVRR_3213": "VedRR_1332", - "EVRL_3213": "VedLR_1332", - "EVLL_2323": "VedLL_2323", - "EVRR_2323": "VedRR_2323", - "EVLR_2323": "VdeLR_2323", - "EVRL_2323": "VedLR_2323", - "EVLL_3223": "VedLL_2332", - "EVRR_3223": "VedRR_2332", - "EVRL_3223": "VedLR_2332", - "EVLL_1312": "VedLL_1213", - "EVRR_1312": "VedRR_1213", - "EVLR_1312": "VdeLR_1312", - "EVRL_1312": "VedLR_1213", - "EVLL_3112": "VedLL_1231", - "EVRR_3112": "VedRR_1231", - "EVRL_3112": "VedLR_1231", - "EVLL_1313": "VedLL_1313", - "EVRR_1313": "VedRR_1313", - "EVLR_1313": "VdeLR_1313", - "EVRL_1313": "VedLR_1313", - "EVLL_3113": "VedLL_1331", - "EVRR_3113": "VedRR_1331", - "EVRL_3113": "VedLR_1331", - "EVLL_1323": "VedLL_2313", - "EVRR_1323": "VedRR_2313", - "EVLR_1323": "VdeLR_1323", - "EVRL_1323": "VedLR_2313", - "EVLL_3123": "VedLL_2331", - "EVRR_3123": "VedRR_2331", - "EVRL_3123": "VedLR_2331", - "EVLL_2112": "VedLL_1221", - "EVRR_2112": "VedRR_1221", - "EVRL_2112": "VedLR_1221", - "EVLL_1212": "VedLL_1212", - "EVRR_1212": "VedRR_1212", - "EVLR_1212": "VdeLR_1212", - "EVRL_1212": "VedLR_1212", - "EVLL_2113": "VedLL_1321", - "EVRR_2113": "VedRR_1321", - "EVRL_2113": "VedLR_1321", - "EVLL_1213": "VedLL_1312", - "EVRR_1213": "VedRR_1312", - "EVLR_1213": "VdeLR_1213", - "EVRL_1213": "VedLR_1312", - "EVLL_2123": "VedLL_2321", - "EVRR_2123": "VedRR_2321", - "EVRL_2123": "VedLR_2321", - "EVLL_1223": "VedLL_2312", - "EVRR_1223": "VedRR_2312", - "EVLR_1223": "VdeLR_1223", - "EVRL_1223": "VedLR_2312", - "AVLR_2312": "VeeLR_2312", - "AVLL_1123": "VeeLL_1123", - "AVLL_2223": "VeeLL_2223", - "AVLL_3323": "VeeLL_2333", - "AVRR_1123": "VeeRR_1123", - "AVRR_2223": "VeeRR_2223", - "AVRR_3323": "VeeRR_2333", - "AVLR_1123": "VeeLR_1123", - "AVLR_2223": "VeeLR_2223", - "AVLR_3323": "VeeLR_3323", - "AVLR_2311": "VeeLR_2311", - "AVLR_2322": "VeeLR_2322", - "AVLR_2333": "VeeLR_2333", - "AVLR_1231": "VeeLR_1231", - "AVLR_1321": "VeeLR_1321", - "BVLL_2311": "VedLL_2311", - "BVLL_2322": "VedLL_2322", - "BVLL_2333": "VedLL_2333", - "BVRR_2311": "VedRR_2311", - "BVRR_2322": "VedRR_2322", - "BVRR_2333": "VedRR_2333", - "BVLR_2311": "VedLR_2311", - "BVLR_2322": "VedLR_2322", - "BVLR_2333": "VedLR_2333", - "EVLR_1123": "VdeLR_1123", - "EVLR_2223": "VdeLR_2223", - "EVLR_3323": "VdeLR_3323", - "CVLL_2311": "VeuLL_2311", - "CVLL_2322": "VeuLL_2322", - "CVRR_2311": "VeuRR_2311", - "CVRR_2322": "VeuRR_2322", - "CVLR_2311": "VeuLR_2311", - "CVLR_2322": "VeuLR_2322", - "AVLL_1313": "VeeLL_1313", - "AVRR_1313": "VeeRR_1313", - "AVLR_1313": "VeeLR_1313", - "AVLL_2323": "VeeLL_2323", - "AVRR_2323": "VeeRR_2323", - "AVLR_2323": "VeeLR_2323", - "AVLL_1212": "VeeLL_1212", - "AVRR_1212": "VeeRR_1212", - "AVLR_1212": "VeeLR_1212", - "AVLL_1232": "VeeLL_1232", - "AVRR_1232": "VeeRR_1232", - "AVLR_1232": "VeeLR_1232", - "AVLR_2321": "VeeLR_2321", - "AVLL_1213": "VeeLL_1213", - "AVRR_1213": "VeeRR_1213", - "AVLR_1213": "VeeLR_1213", - "AVLR_1312": "VeeLR_1312", - "AVLL_1323": "VeeLL_1323", - "AVRR_1323": "VeeRR_1323", - "AVLR_1323": "VeeLR_1323", - "AVLR_2313": "VeeLR_2313" -} \ No newline at end of file diff --git a/wcxf/data/test.Warsaw_mass.yml b/wcxf/data/test.Warsaw_mass.yml deleted file mode 100644 index 198aed5..0000000 --- a/wcxf/data/test.Warsaw_mass.yml +++ /dev/null @@ -1,4474 +0,0 @@ -basis: Warsaw mass -eft: SMEFT -scale: 160.0 -values: - G: 9.298977469992998e-09 - Gtilde: 3.3033200969269584e-09 - W: 3.818508801650694e-09 - Wtilde: 9.005842974540492e-09 - dB_11: - Im: 7.088804605377087e-09 - Re: 4.440182014344588e-09 - dB_12: - Im: 8.12530368624381e-09 - Re: 2.7519814904006103e-09 - dB_13: - Im: 7.631669514460633e-09 - Re: 5.022409128374413e-09 - dB_21: - Im: 6.424280975943117e-09 - Re: 2.990551847211442e-09 - dB_22: - Im: 5.147136046130548e-09 - Re: 5.4846960437994195e-11 - dB_23: - Im: 9.724111332203434e-09 - Re: 1.9861934701195773e-09 - dB_31: - Im: 8.810504044236259e-09 - Re: 8.844792871637771e-09 - dB_32: - Im: 1.26752532658183e-09 - Re: 5.274330805523389e-09 - dB_33: - Im: 1.4247904080447615e-09 - Re: 2.736624004815125e-10 - dG_11: - Im: 2.950269465962141e-10 - Re: 7.91685146221111e-09 - dG_12: - Im: 6.1904800221399915e-09 - Re: 3.0884804688197277e-09 - dG_13: - Im: 3.368919902514882e-09 - Re: 1.5183001676330255e-09 - dG_21: - Im: 7.037523897416722e-09 - Re: 6.999255275023376e-09 - dG_22: - Im: 7.662286533066773e-09 - Re: 6.536994574851107e-09 - dG_23: - Im: 7.413414013296901e-09 - Re: 9.496123734078606e-09 - dG_31: - Im: 6.412093031069768e-09 - Re: 5.9658053180520475e-09 - dG_32: - Im: 8.370766396893752e-09 - Re: 7.211092926157981e-10 - dG_33: - Im: 8.989133776131937e-09 - Re: 6.197006562164257e-09 - dW_11: - Im: 6.052683467733785e-09 - Re: 8.130626565127286e-10 - dW_12: - Im: 1.9372348299676566e-09 - Re: 8.777533887696492e-09 - dW_13: - Im: 8.199097423946334e-10 - Re: 6.231854329859663e-09 - dW_21: - Im: 4.922054881313374e-09 - Re: 8.822859388619226e-09 - dW_22: - Im: 3.0751972899266068e-09 - Re: 1.6637782047631445e-09 - dW_23: - Im: 7.303058531483875e-10 - Re: 9.663302904350627e-09 - dW_31: - Im: 1.2508524340178428e-09 - Re: 3.992533707576738e-09 - dW_32: - Im: 7.496356951174423e-09 - Re: 6.328552016996686e-09 - dW_33: - Im: 5.218201343401985e-09 - Re: 5.469222997581004e-09 - dd_1111: 6.598999576288663e-09 - dd_1112: - Im: 3.091167959136838e-09 - Re: 7.0016201208357e-09 - dd_1113: - Im: 6.3395780156443324e-09 - Re: 6.875490325875433e-09 - dd_1122: 7.811515389830963e-09 - dd_1123: - Im: 1.2767306453895455e-09 - Re: 1.169393344954075e-09 - dd_1133: 4.555387739015282e-09 - dd_1212: - Im: 5.32468380072874e-09 - Re: 3.965593843521731e-10 - dd_1213: - Im: 6.1115776063916376e-09 - Re: 1.8895135468670686e-09 - dd_1221: 7.441531748600737e-09 - dd_1222: - Im: 4.721734476680547e-09 - Re: 3.072857487488884e-09 - dd_1223: - Im: 6.498995281916624e-09 - Re: 4.305627077767689e-09 - dd_1231: - Im: 8.05992995182314e-09 - Re: 6.823453004001286e-09 - dd_1232: - Im: 1.9498082629867044e-09 - Re: 6.788901928890834e-09 - dd_1233: - Im: 1.3709883729386718e-09 - Re: 2.1896418750237935e-09 - dd_1313: - Im: 8.538484752824972e-09 - Re: 1.7229412602085414e-09 - dd_1322: - Im: 9.180809404545386e-09 - Re: 9.120327648462644e-09 - dd_1323: - Im: 5.77432545933385e-09 - Re: 1.2627520498821576e-09 - dd_1331: 2.845397992101949e-09 - dd_1332: - Im: 2.0767207428408875e-09 - Re: 8.43254788516093e-09 - dd_1333: - Im: 2.013693162155482e-09 - Re: 6.935492477868322e-10 - dd_2222: 1.1935975289062195e-09 - dd_2223: - Im: 8.794808909782485e-09 - Re: 8.956388067718366e-09 - dd_2233: 4.410566569068974e-09 - dd_2323: - Im: 5.816074610032152e-09 - Re: 9.194282140402363e-09 - dd_2332: 3.494526758020644e-10 - dd_2333: - Im: 2.6085758661971402e-09 - Re: 5.609486094993831e-09 - dd_3333: 2.1595503777218806e-09 - dphi_11: - Im: 1.3618892975652054e-09 - Re: 2.2979594126326874e-09 - dphi_12: - Im: 1.581312248530261e-09 - Re: 1.633273124281114e-09 - dphi_13: - Im: 4.9799438010677e-09 - Re: 7.090811564780059e-09 - dphi_21: - Im: 4.5244080059742674e-10 - Re: 2.4316990461298836e-09 - dphi_22: - Im: 1.556297293311526e-10 - Re: 7.521111304182739e-09 - dphi_23: - Im: 8.266693417436577e-10 - Re: 7.3377754791755234e-09 - dphi_31: - Im: 7.473731995217472e-09 - Re: 3.452996823677501e-11 - dphi_32: - Im: 1.2173417970298494e-09 - Re: 3.172159908221899e-09 - dphi_33: - Im: 3.0727605709603723e-09 - Re: 5.484970479768502e-09 - duql_1111: - Im: 1.7617551357512517e-09 - Re: 2.4724399448530434e-09 - duql_1112: - Im: 2.3034620101914082e-09 - Re: 3.4719307672905066e-09 - duql_1113: - Im: 9.571737857542118e-09 - Re: 7.997667963546973e-09 - duql_1121: - Im: 5.456491095488979e-09 - Re: 3.7210715001007013e-09 - duql_1122: - Im: 4.146113245469574e-09 - Re: 3.596214170548946e-09 - duql_1123: - Im: 8.499557516326857e-09 - Re: 9.367833742123412e-09 - duql_1131: - Im: 3.6924135018307347e-09 - Re: 2.703950566569546e-09 - duql_1132: - Im: 4.420866386772132e-09 - Re: 3.585842049332224e-09 - duql_1133: - Im: 6.209805978590364e-09 - Re: 8.783586669851773e-09 - duql_1211: - Im: 6.3627684148559564e-09 - Re: 1.2818819351624167e-09 - duql_1212: - Im: 2.76370935874623e-09 - Re: 4.048424021098928e-09 - duql_1213: - Im: 3.5382669135695777e-09 - Re: 9.629080663811451e-09 - duql_1221: - Im: 1.7071712061182054e-09 - Re: 8.288856172542983e-09 - duql_1222: - Im: 6.46804785977228e-09 - Re: 2.7852599280755708e-09 - duql_1223: - Im: 5.396965980644345e-09 - Re: 2.882741456057839e-09 - duql_1231: - Im: 5.448372117333844e-09 - Re: 8.205242686450137e-09 - duql_1232: - Im: 3.6036197312351406e-09 - Re: 3.2977626810087512e-09 - duql_1233: - Im: 5.708660345951308e-09 - Re: 6.115935610414509e-09 - duql_1311: - Im: 6.197873340430174e-09 - Re: 1.89469764090464e-09 - duql_1312: - Im: 4.3261632962039665e-09 - Re: 5.46564433679598e-09 - duql_1313: - Im: 3.5955772775186037e-09 - Re: 3.886335977094224e-10 - duql_1321: - Im: 7.833156552215622e-09 - Re: 6.321661194201911e-09 - duql_1322: - Im: 3.168191727547132e-10 - Re: 8.787973560498111e-09 - duql_1323: - Im: 4.154933570715121e-09 - Re: 5.941474025792925e-09 - duql_1331: - Im: 3.203023097297086e-10 - Re: 6.674415603020568e-09 - duql_1332: - Im: 5.204537908835385e-09 - Re: 4.2258139021372764e-10 - duql_1333: - Im: 8.080057120002515e-09 - Re: 7.39635147891658e-09 - duql_2111: - Im: 8.661070610698175e-09 - Re: 4.469219705853953e-09 - duql_2112: - Im: 9.306601651188109e-09 - Re: 8.716433094859264e-09 - duql_2113: - Im: 2.2344282417967655e-09 - Re: 2.69829824798099e-09 - duql_2121: - Im: 8.393647811544276e-09 - Re: 2.8593631173808577e-09 - duql_2122: - Im: 8.111957811465033e-09 - Re: 9.724793683195687e-09 - duql_2123: - Im: 6.6975963589562065e-09 - Re: 5.8319137293125276e-09 - duql_2131: - Im: 9.40052285245523e-09 - Re: 7.314268515685683e-09 - duql_2132: - Im: 9.31971613610576e-10 - Re: 7.638019198505243e-09 - duql_2133: - Im: 1.8150827995879348e-09 - Re: 4.822714204008915e-09 - duql_2211: - Im: 3.609102360787547e-09 - Re: 8.723076509832027e-09 - duql_2212: - Im: 3.374014268336264e-09 - Re: 8.604543560272568e-09 - duql_2213: - Im: 5.348420698563532e-09 - Re: 9.904537816372086e-09 - duql_2221: - Im: 4.646511899253503e-09 - Re: 6.9252950319744645e-09 - duql_2222: - Im: 3.05013483528237e-09 - Re: 3.457820112445528e-09 - duql_2223: - Im: 8.195440013867749e-09 - Re: 3.123807472177673e-09 - duql_2231: - Im: 5.893009599141104e-09 - Re: 7.581427309891643e-09 - duql_2232: - Im: 4.2167071770268724e-09 - Re: 7.382761501713375e-10 - duql_2233: - Im: 5.172313021155641e-09 - Re: 9.449420223352912e-09 - duql_2311: - Im: 1.3710954764458606e-10 - Re: 8.402497646980394e-09 - duql_2312: - Im: 7.686659413083943e-09 - Re: 2.810852879521265e-09 - duql_2313: - Im: 8.966022652620194e-09 - Re: 1.7247477873465478e-10 - duql_2321: - Im: 3.5726750490896544e-09 - Re: 7.579431501192027e-09 - duql_2322: - Im: 1.7302558009138337e-09 - Re: 3.151116009263272e-09 - duql_2323: - Im: 5.46061809551444e-09 - Re: 8.518775477675576e-09 - duql_2331: - Im: 8.509071801519041e-09 - Re: 4.786006960669207e-09 - duql_2332: - Im: 3.4964686373046474e-09 - Re: 3.0141394242835784e-09 - duql_2333: - Im: 9.882284713766597e-09 - Re: 9.571855593331692e-09 - duql_3111: - Im: 7.709749795816389e-09 - Re: 8.040577186825607e-09 - duql_3112: - Im: 9.891557480968839e-10 - Re: 5.751396562519377e-09 - duql_3113: - Im: 2.354398825923337e-09 - Re: 4.661384976432078e-09 - duql_3121: - Im: 4.3882667671033794e-09 - Re: 9.19200324294978e-09 - duql_3122: - Im: 1.125590662688044e-09 - Re: 9.393974512445825e-10 - duql_3123: - Im: 4.199001409633133e-09 - Re: 4.4543304927638315e-09 - duql_3131: - Im: 6.6638269396211634e-09 - Re: 6.5840949567923755e-09 - duql_3132: - Im: 5.713245836927244e-09 - Re: 5.07403649119702e-10 - duql_3133: - Im: 8.488213067682937e-09 - Re: 3.439130322662446e-09 - duql_3211: - Im: 6.646219457502865e-09 - Re: 3.0159651523258648e-09 - duql_3212: - Im: 2.3931214664141988e-09 - Re: 1.343935166801199e-09 - duql_3213: - Im: 8.286464423770045e-09 - Re: 6.225350989948553e-10 - duql_3221: - Im: 5.83664140660283e-09 - Re: 4.209766010744273e-09 - duql_3222: - Im: 7.364630625108698e-09 - Re: 2.286669463499873e-09 - duql_3223: - Im: 2.8020340893173335e-09 - Re: 5.27123026860673e-09 - duql_3231: - Im: 2.177504704173654e-09 - Re: 3.113438672528224e-09 - duql_3232: - Im: 7.618298987608504e-09 - Re: 9.828376340730232e-09 - duql_3233: - Im: 2.569274024015801e-09 - Re: 1.338538061280019e-09 - duql_3311: - Im: 6.72551009673742e-09 - Re: 9.861309642222682e-09 - duql_3312: - Im: 8.139138766449639e-10 - Re: 5.922943975803681e-09 - duql_3313: - Im: 9.331181517314534e-09 - Re: 7.414848951664838e-09 - duql_3321: - Im: 6.698247028588532e-09 - Re: 3.500371149458317e-09 - duql_3322: - Im: 2.791674420103596e-10 - Re: 7.81176756972724e-09 - duql_3323: - Im: 2.6239904642361633e-09 - Re: 9.946286224604422e-09 - duql_3331: - Im: 2.621817719242019e-09 - Re: 7.162241131579266e-09 - duql_3332: - Im: 2.897273632487256e-09 - Re: 8.874704179442572e-09 - duql_3333: - Im: 8.641161979850785e-09 - Re: 4.855776455664799e-09 - duue_1111: - Im: 7.58485232190188e-10 - Re: 3.442612590683436e-09 - duue_1112: - Im: 3.7079164772050446e-09 - Re: 8.412568751195749e-09 - duue_1113: - Im: 9.607690890073672e-10 - Re: 4.632867127631735e-09 - duue_1121: - Im: 6.546280624506988e-09 - Re: 1.1560452126205722e-09 - duue_1122: - Im: 2.1636479187832958e-10 - Re: 3.6852405303336e-10 - duue_1123: - Im: 1.7703450201375104e-09 - Re: 2.9451161323500662e-09 - duue_1131: - Im: 2.9800557823249573e-09 - Re: 3.7336553215138244e-09 - duue_1132: - Im: 2.7502356962812248e-09 - Re: 2.119516208029907e-09 - duue_1133: - Im: 9.057870868062898e-09 - Re: 4.4880562975535595e-09 - duue_1211: - Im: 9.326725303086727e-09 - Re: 6.34859904851964e-09 - duue_1212: - Im: 4.656992679661758e-09 - Re: 1.0417098691974724e-09 - duue_1213: - Im: 8.421417677363725e-09 - Re: 2.543825944991719e-09 - duue_1221: - Im: 9.348065748742622e-09 - Re: 3.182262428308571e-09 - duue_1222: - Im: 4.0396514859781776e-09 - Re: 2.6642263524613186e-09 - duue_1223: - Im: 9.51441066476485e-09 - Re: 7.413991123201446e-09 - duue_1231: - Im: 9.02834822516702e-09 - Re: 5.3272909235679055e-09 - duue_1232: - Im: 7.586261815507092e-09 - Re: 8.964650641988747e-09 - duue_1233: - Im: 3.840994630655481e-09 - Re: 5.304952748592262e-10 - duue_1311: - Im: 9.484950016875127e-09 - Re: 1.4233007123738761e-09 - duue_1312: - Im: 8.857338263168999e-09 - Re: 7.443705734433649e-09 - duue_1313: - Im: 4.77642758974044e-09 - Re: 8.313951055041364e-09 - duue_1321: - Im: 1.9867228963515727e-09 - Re: 9.925614666989575e-09 - duue_1322: - Im: 6.513624831677007e-09 - Re: 9.365473705582313e-09 - duue_1323: - Im: 5.766068763472374e-09 - Re: 3.4866183914261464e-09 - duue_1331: - Im: 4.961881163184664e-09 - Re: 9.208185513775128e-09 - duue_1332: - Im: 9.035699888353755e-09 - Re: 8.757522248178215e-09 - duue_1333: - Im: 6.796700207431155e-09 - Re: 1.7147303048790242e-09 - duue_2111: - Im: 4.47279576673747e-10 - Re: 9.213039336223624e-09 - duue_2112: - Im: 9.597026802543905e-09 - Re: 4.142162685691322e-09 - duue_2113: - Im: 8.201891706544148e-09 - Re: 5.081680591887294e-10 - duue_2121: - Im: 7.259855154994933e-09 - Re: 8.088422255088867e-10 - duue_2122: - Im: 2.636666783214252e-09 - Re: 9.250960390339154e-09 - duue_2123: - Im: 1.5882259346482332e-09 - Re: 6.042519816775264e-09 - duue_2131: - Im: 1.8910729949123118e-09 - Re: 1.8334124064711976e-09 - duue_2132: - Im: 5.397624122720397e-09 - Re: 2.8568656472991984e-09 - duue_2133: - Im: 5.800945439354003e-09 - Re: 8.143031536324066e-09 - duue_2211: - Im: 7.063799158508374e-09 - Re: 8.551508248693932e-09 - duue_2212: - Im: 3.850016134230605e-10 - Re: 5.082593231622012e-09 - duue_2213: - Im: 7.006842278727462e-09 - Re: 5.760475682323892e-09 - duue_2221: - Im: 1.3170253293429812e-09 - Re: 1.1176558682311266e-10 - duue_2222: - Im: 2.8588056046585986e-10 - Re: 1.423629171619789e-10 - duue_2223: - Im: 1.9470228745547012e-09 - Re: 2.1549865604310527e-09 - duue_2231: - Im: 9.684816019350818e-09 - Re: 5.195352380732651e-09 - duue_2232: - Im: 2.094893805264385e-09 - Re: 4.370876462655369e-09 - duue_2233: - Im: 3.2913809429111686e-09 - Re: 9.630487098767986e-09 - duue_2311: - Im: 7.755459017112661e-09 - Re: 8.833762800744906e-09 - duue_2312: - Im: 2.30112192594078e-09 - Re: 4.500001756918362e-09 - duue_2313: - Im: 8.330625866519297e-09 - Re: 9.154682178864129e-09 - duue_2321: - Im: 4.675342165787295e-09 - Re: 8.441394913907253e-09 - duue_2322: - Im: 6.251109173104894e-09 - Re: 5.9027319783158e-09 - duue_2323: - Im: 2.6934643300974117e-09 - Re: 7.098151612247688e-09 - duue_2331: - Im: 3.4179017066317908e-09 - Re: 3.329122917736328e-09 - duue_2332: - Im: 7.432321295405217e-09 - Re: 1.755215903400854e-09 - duue_2333: - Im: 5.346118044181769e-10 - Re: 1.887873795090377e-09 - duue_3111: - Im: 4.2187303806867824e-09 - Re: 2.3633632466802047e-09 - duue_3112: - Im: 9.504418738386517e-09 - Re: 7.290934060363113e-09 - duue_3113: - Im: 6.4502034891156095e-09 - Re: 7.428603549313839e-10 - duue_3121: - Im: 4.2578778475746145e-09 - Re: 9.073942140249997e-09 - duue_3122: - Im: 9.169023510333461e-09 - Re: 9.005813131233804e-09 - duue_3123: - Im: 6.945034164789059e-09 - Re: 3.6618328273697554e-09 - duue_3131: - Im: 3.959731475886032e-09 - Re: 7.519445169572124e-09 - duue_3132: - Im: 6.4125478689862235e-09 - Re: 9.420958419650928e-09 - duue_3133: - Im: 8.835174756598299e-09 - Re: 5.840362082235191e-09 - duue_3211: - Im: 8.608884936998681e-09 - Re: 4.2649808317909875e-10 - duue_3212: - Im: 2.357718188103941e-09 - Re: 1.5504962988162785e-09 - duue_3213: - Im: 1.8854320488763376e-09 - Re: 8.630060723385262e-09 - duue_3221: - Im: 4.4554258898895394e-09 - Re: 4.721737516333972e-09 - duue_3222: - Im: 4.860003037427142e-09 - Re: 8.30572308098474e-09 - duue_3223: - Im: 4.621171576960386e-09 - Re: 9.985930055881556e-09 - duue_3231: - Im: 4.707767168547675e-09 - Re: 8.202851746217423e-09 - duue_3232: - Im: 6.480180025577561e-09 - Re: 4.081067962040663e-09 - duue_3233: - Im: 8.767686486227612e-09 - Re: 9.431712532156227e-09 - duue_3311: - Im: 3.084783171900157e-09 - Re: 8.285517500199343e-09 - duue_3312: - Im: 2.896042664140489e-09 - Re: 2.7588925051377844e-09 - duue_3313: - Im: 9.098802266837202e-09 - Re: 7.362937900945394e-09 - duue_3321: - Im: 9.253183078783241e-09 - Re: 7.515601873876413e-09 - duue_3322: - Im: 3.68397371864171e-09 - Re: 8.763963396155645e-09 - duue_3323: - Im: 6.3425619515834605e-09 - Re: 2.300850964633098e-09 - duue_3331: - Im: 4.432938916798157e-09 - Re: 2.1024442560999513e-09 - duue_3332: - Im: 1.0668185568228005e-09 - Re: 1.2737232004485033e-09 - duue_3333: - Im: 8.950727232789392e-09 - Re: 4.002317396529556e-09 - eB_11: - Im: 1.9445819764980234e-09 - Re: 3.87512291400014e-09 - eB_12: - Im: 4.608923483648122e-09 - Re: 1.447353688886508e-09 - eB_13: - Im: 7.716591651136338e-09 - Re: 4.310378091377465e-09 - eB_21: - Im: 4.338180471153692e-09 - Re: 2.642151994571541e-09 - eB_22: - Im: 9.131310803147403e-09 - Re: 6.8547114116434735e-09 - eB_23: - Im: 2.1793640631254243e-09 - Re: 8.561928141204804e-09 - eB_31: - Im: 8.900235230108995e-09 - Re: 5.87090580103274e-09 - eB_32: - Im: 1.252902706511615e-09 - Re: 4.266638361228835e-09 - eB_33: - Im: 6.327791523267234e-10 - Re: 7.375252603093121e-09 - eW_11: - Im: 4.0751555177446545e-09 - Re: 6.615902678599931e-09 - eW_12: - Im: 6.0144230050167835e-09 - Re: 7.995347197785966e-09 - eW_13: - Im: 5.329905232103629e-09 - Re: 3.5075229577052894e-11 - eW_21: - Im: 1.2119493082865297e-09 - Re: 8.209433865865683e-09 - eW_22: - Im: 9.742574955466744e-10 - Re: 5.399242952825353e-09 - eW_23: - Im: 5.553270846146439e-09 - Re: 8.816841282479872e-09 - eW_31: - Im: 8.457361763570263e-09 - Re: 8.05721058983164e-09 - eW_32: - Im: 1.990767167564189e-09 - Re: 9.986855997641388e-09 - eW_33: - Im: 1.0141094472618295e-09 - Re: 5.753323746961888e-09 - ed_1111: 8.53461675544623e-09 - ed_1112: - Im: 4.856646108472214e-09 - Re: 5.6703183115265635e-09 - ed_1113: - Im: 5.892858595917546e-09 - Re: 1.6481332968186392e-09 - ed_1122: 1.984461279914863e-09 - ed_1123: - Im: 1.890395580287122e-09 - Re: 9.116175405904232e-09 - ed_1133: 3.6387696812611535e-09 - ed_1211: - Im: 6.663069405671517e-09 - Re: 2.2340914887897358e-10 - ed_1212: - Im: 9.915348270214343e-09 - Re: 3.6224293750844726e-09 - ed_1213: - Im: 9.2770588788283e-09 - Re: 1.0325331517612891e-09 - ed_1221: - Im: 8.109739552187195e-09 - Re: 5.017544496528121e-09 - ed_1222: - Im: 1.1988223138155351e-09 - Re: 2.7125917883381556e-09 - ed_1223: - Im: 7.77135259631166e-09 - Re: 7.149090149578598e-09 - ed_1231: - Im: 2.269486973959184e-09 - Re: 6.711982977898793e-09 - ed_1232: - Im: 1.7781264119468166e-09 - Re: 3.2670414475091437e-09 - ed_1233: - Im: 4.4160135568704826e-09 - Re: 7.380608257527353e-09 - ed_1311: - Im: 2.501243748028681e-09 - Re: 6.1020273819832315e-09 - ed_1312: - Im: 5.115267420096978e-09 - Re: 3.372539451264659e-09 - ed_1313: - Im: 7.424023078912414e-09 - Re: 9.202213878718892e-09 - ed_1321: - Im: 5.484432982407574e-09 - Re: 5.096531912824038e-09 - ed_1322: - Im: 7.036596165043674e-09 - Re: 3.6177838484925517e-09 - ed_1323: - Im: 9.982726618087425e-09 - Re: 2.0043501026142485e-09 - ed_1331: - Im: 4.706635426038766e-09 - Re: 6.93777490253783e-09 - ed_1332: - Im: 7.261074734979443e-09 - Re: 1.6157505993301224e-09 - ed_1333: - Im: 8.440505225966287e-09 - Re: 4.30295440921257e-09 - ed_2211: 3.4631697168025335e-09 - ed_2212: - Im: 2.8269220023029087e-09 - Re: 2.3381766803257255e-09 - ed_2213: - Im: 4.6606792365259895e-09 - Re: 9.275311837318532e-09 - ed_2222: 1.9779958100931026e-09 - ed_2223: - Im: 5.1823519542926614e-09 - Re: 8.464738301584927e-09 - ed_2233: 3.507424633541787e-09 - ed_2311: - Im: 1.670329289950605e-09 - Re: 6.121454633625216e-09 - ed_2312: - Im: 7.413801624991384e-09 - Re: 3.2268056612790876e-09 - ed_2313: - Im: 9.503396868996081e-09 - Re: 5.66283272786981e-09 - ed_2321: - Im: 4.154944750484726e-09 - Re: 7.4260357138117015e-09 - ed_2322: - Im: 6.963014992766818e-09 - Re: 5.9087775661714285e-09 - ed_2323: - Im: 4.858915529907574e-09 - Re: 6.047824041418923e-09 - ed_2331: - Im: 6.8773436991785035e-09 - Re: 1.7529693176119222e-09 - ed_2332: - Im: 3.0188803869485705e-09 - Re: 5.744169273529687e-10 - ed_2333: - Im: 6.765722852168332e-10 - Re: 8.644283723531744e-09 - ed_3311: 4.00976609920706e-09 - ed_3312: - Im: 4.906542166379052e-09 - Re: 3.339571217964852e-09 - ed_3313: - Im: 5.35320930743295e-10 - Re: 7.0559285232585305e-09 - ed_3322: 1.507416608809785e-09 - ed_3323: - Im: 8.908534814121039e-10 - Re: 4.975078157495835e-09 - ed_3333: 2.401842783557017e-09 - ee_1111: 1.3154483259468709e-09 - ee_1112: - Im: 6.692525552963271e-09 - Re: 5.785512607234821e-09 - ee_1113: - Im: 8.529839800578932e-10 - Re: 9.338822073920173e-09 - ee_1122: 8.995883551518158e-10 - ee_1123: - Im: 7.262340893237575e-09 - Re: 6.164627326345998e-09 - ee_1133: 1.7170230670900677e-09 - ee_1212: - Im: 4.238384426063291e-10 - Re: 1.7388283203955334e-09 - ee_1213: - Im: 6.156896186892108e-09 - Re: 7.496121981965744e-09 - ee_1222: - Im: 7.185194485271225e-09 - Re: 3.3758749117389677e-09 - ee_1223: - Im: 5.970210108638223e-09 - Re: 5.962683098976586e-09 - ee_1232: - Im: 1.5603088176149228e-09 - Re: 5.755987741006439e-09 - ee_1233: - Im: 3.094805027325861e-09 - Re: 2.9288463562290757e-09 - ee_1313: - Im: 9.707138506361168e-09 - Re: 7.56265755846521e-09 - ee_1323: - Im: 5.722086677049687e-10 - Re: 9.826432902193267e-09 - ee_1333: - Im: 6.33308078055858e-09 - Re: 9.538498069121734e-09 - ee_2222: 6.352065505381388e-10 - ee_2223: - Im: 2.029952334023033e-10 - Re: 8.876467775931954e-09 - ee_2233: 5.394628307838809e-09 - ee_2323: - Im: 8.751415826729647e-09 - Re: 3.6897085160229827e-09 - ee_2333: - Im: 2.5777440245104678e-09 - Re: 7.074062525571922e-09 - ee_3333: 9.237100872854895e-09 - ephi_11: - Im: 9.187870358333835e-09 - Re: 1.863788987258036e-09 - ephi_12: - Im: 9.215901612834415e-09 - Re: 6.657232945717741e-09 - ephi_13: - Im: 6.5297840436506594e-09 - Re: 6.246862338938588e-09 - ephi_21: - Im: 5.9646731646931315e-09 - Re: 4.5768847985406816e-11 - ephi_22: - Im: 3.4382417912785955e-10 - Re: 9.296881852896388e-09 - ephi_23: - Im: 3.836489965824446e-09 - Re: 5.469851614425162e-09 - ephi_31: - Im: 4.410884277938891e-09 - Re: 9.746008144434496e-09 - ephi_32: - Im: 4.514829364066407e-09 - Re: 2.9473519701311293e-09 - ephi_33: - Im: 8.504468000688615e-09 - Re: 3.862302901173579e-09 - eu_1111: 1.6155968562264622e-09 - eu_1112: - Im: 6.032130234331895e-09 - Re: 2.7523256225522497e-09 - eu_1113: - Im: 5.621828223951718e-09 - Re: 7.688870902671375e-09 - eu_1122: 5.7032316724945325e-09 - eu_1123: - Im: 7.502451104849611e-09 - Re: 1.1517727506695174e-09 - eu_1133: 5.480809508913157e-09 - eu_1211: - Im: 6.213149396404557e-09 - Re: 7.45740546163957e-09 - eu_1212: - Im: 8.420568570271959e-09 - Re: 3.4088203368273207e-09 - eu_1213: - Im: 3.748948951327594e-09 - Re: 1.7307852968369565e-10 - eu_1221: - Im: 2.435290373499741e-09 - Re: 5.592139838170341e-10 - eu_1222: - Im: 8.32060351759755e-09 - Re: 4.8478230728553705e-09 - eu_1223: - Im: 3.0698210295539663e-09 - Re: 2.6943657214379026e-09 - eu_1231: - Im: 8.321080200706766e-09 - Re: 8.612130025767106e-11 - eu_1232: - Im: 4.100519220731773e-09 - Re: 5.1787537649382736e-09 - eu_1233: - Im: 6.9221407663437175e-09 - Re: 7.116211428888708e-10 - eu_1311: - Im: 5.529441626525526e-09 - Re: 3.841481679391272e-09 - eu_1312: - Im: 3.98628064426134e-09 - Re: 9.860759542243613e-10 - eu_1313: - Im: 5.479232045290883e-10 - Re: 1.8236067424070735e-09 - eu_1321: - Im: 3.787460659662583e-09 - Re: 8.61121244571785e-09 - eu_1322: - Im: 8.141426554233225e-09 - Re: 8.0386153546904e-09 - eu_1323: - Im: 8.405674596720632e-09 - Re: 3.2486490814681004e-09 - eu_1331: - Im: 5.203482541168397e-09 - Re: 8.824887223305137e-09 - eu_1332: - Im: 5.263927999560256e-09 - Re: 8.702630306866545e-09 - eu_1333: - Im: 5.425397123282875e-09 - Re: 1.68176849493602e-10 - eu_2211: 1.5853746057036766e-09 - eu_2212: - Im: 3.037877289054112e-09 - Re: 4.381136686454795e-09 - eu_2213: - Im: 9.388477441190909e-09 - Re: 8.309405060018647e-09 - eu_2222: 5.9004544837835195e-09 - eu_2223: - Im: 5.481876040686293e-09 - Re: 3.5459104123448992e-09 - eu_2233: 7.757184281385732e-09 - eu_2311: - Im: 4.540928829724468e-09 - Re: 9.504474607194546e-10 - eu_2312: - Im: 1.910589396653898e-09 - Re: 9.852166321830992e-09 - eu_2313: - Im: 1.1944472037802734e-09 - Re: 1.143942734050204e-09 - eu_2321: - Im: 7.008919916875737e-09 - Re: 5.868185040660473e-09 - eu_2322: - Im: 6.373674319510861e-09 - Re: 6.7955029999553964e-09 - eu_2323: - Im: 7.583285219391767e-10 - Re: 3.996371868769222e-09 - eu_2331: - Im: 1.7288175134980598e-10 - Re: 7.062635771369258e-09 - eu_2332: - Im: 5.122128542237931e-09 - Re: 5.054914857419303e-09 - eu_2333: - Im: 8.093884884820577e-09 - Re: 9.011495344974739e-09 - eu_3311: 5.794817852423918e-09 - eu_3312: - Im: 5.978835037963016e-10 - Re: 3.393211671640937e-09 - eu_3313: - Im: 8.110830026674777e-09 - Re: 7.721164292106968e-09 - eu_3322: 4.7108421497707255e-09 - eu_3323: - Im: 9.85292512015814e-09 - Re: 8.843018796977398e-10 - eu_3333: 2.7031947567449667e-09 - ld_1111: 8.318560506553575e-10 - ld_1112: - Im: 3.854624580944021e-09 - Re: 7.570830743386911e-09 - ld_1113: - Im: 3.99097362874834e-09 - Re: 2.3552172953980746e-09 - ld_1122: 9.174466547944928e-09 - ld_1123: - Im: 2.9197172602141166e-11 - Re: 8.830364978828545e-09 - ld_1133: 2.7277177524915187e-09 - ld_1211: - Im: 1.5905196748485185e-09 - Re: 8.907701321117514e-09 - ld_1212: - Im: 4.689974307407899e-09 - Re: 6.083953498447999e-09 - ld_1213: - Im: 7.54702884605986e-09 - Re: 3.0242556879668646e-09 - ld_1221: - Im: 1.6525970974654158e-09 - Re: 4.674875472509564e-09 - ld_1222: - Im: 4.676414792997202e-09 - Re: 3.7839674498716635e-09 - ld_1223: - Im: 4.721910194531848e-09 - Re: 2.0668981846233194e-09 - ld_1231: - Im: 3.0543068247800355e-09 - Re: 5.10848544477755e-09 - ld_1232: - Im: 7.271790015717173e-10 - Re: 8.932133715926099e-09 - ld_1233: - Im: 4.947498992251509e-10 - Re: 1.5694278968683306e-09 - ld_1311: - Im: 2.0114816475321073e-09 - Re: 9.360965455433612e-09 - ld_1312: - Im: 6.302571963520487e-10 - Re: 8.194059670469392e-09 - ld_1313: - Im: 1.8435513056905151e-09 - Re: 2.8438526648111427e-09 - ld_1321: - Im: 9.673457070566115e-09 - Re: 5.147357835955836e-09 - ld_1322: - Im: 1.6711562638716771e-09 - Re: 9.036644747681989e-09 - ld_1323: - Im: 3.882568015505916e-10 - Re: 4.886397791943349e-09 - ld_1331: - Im: 5.019234613326973e-09 - Re: 2.6466353452221324e-09 - ld_1332: - Im: 4.149398831270605e-09 - Re: 7.123185195268683e-09 - ld_1333: - Im: 4.948993485571607e-09 - Re: 6.4897630115501035e-09 - ld_2211: 5.6511319959004204e-09 - ld_2212: - Im: 5.925927181714541e-09 - Re: 1.7721802138610166e-09 - ld_2213: - Im: 4.857920119363997e-09 - Re: 2.2272475742094976e-09 - ld_2222: 6.422737605418476e-09 - ld_2223: - Im: 5.627013200990083e-09 - Re: 5.28905837875954e-09 - ld_2233: 5.522380425020448e-09 - ld_2311: - Im: 5.989467338740842e-09 - Re: 7.237293958549329e-09 - ld_2312: - Im: 3.832358517377824e-09 - Re: 5.128237905824454e-09 - ld_2313: - Im: 1.437173474615071e-09 - Re: 1.8713355063098792e-10 - ld_2321: - Im: 8.890354326819911e-09 - Re: 1.7501018864839879e-09 - ld_2322: - Im: 3.242809963127058e-10 - Re: 2.654827470679099e-09 - ld_2323: - Im: 7.862767100630627e-09 - Re: 3.769969372844197e-09 - ld_2331: - Im: 6.28228900818465e-10 - Re: 7.703690050109579e-09 - ld_2332: - Im: 5.897934310406064e-09 - Re: 6.240239408700393e-09 - ld_2333: - Im: 8.34657068330199e-09 - Re: 7.763120855065775e-10 - ld_3311: 3.576688736582876e-09 - ld_3312: - Im: 1.2977622642005104e-09 - Re: 8.010886875741503e-09 - ld_3313: - Im: 8.065138989010476e-09 - Re: 6.508782590059325e-09 - ld_3322: 1.5669668429204898e-09 - ld_3323: - Im: 4.619680124273513e-09 - Re: 9.515106072068485e-09 - ld_3333: 6.7426232968742675e-09 - le_1111: 9.686073622304283e-09 - le_1112: - Im: 9.749134827774938e-09 - Re: 5.2238654219406475e-09 - le_1113: - Im: 5.505871210364121e-09 - Re: 4.080029475182063e-09 - le_1122: 3.9874144242311504e-10 - le_1123: - Im: 3.758182560507003e-09 - Re: 1.7220902637185265e-09 - le_1133: 8.871655474130403e-10 - le_1211: - Im: 7.943110688059272e-09 - Re: 6.547162819850963e-09 - le_1212: - Im: 8.719745378389054e-09 - Re: 6.539198387123475e-09 - le_1213: - Im: 2.461695591886064e-09 - Re: 7.307445502667254e-09 - le_1221: - Im: 9.589382971605319e-09 - Re: 6.3430461584733304e-09 - le_1222: - Im: 6.158165736552889e-09 - Re: 7.127887591157433e-10 - le_1223: - Im: 7.0289199577078465e-09 - Re: 9.728050126869876e-09 - le_1231: - Im: 4.952650809771217e-09 - Re: 9.618859377862284e-09 - le_1232: - Im: 6.3937906188168984e-09 - Re: 4.2489333206069235e-09 - le_1233: - Im: 7.012243704873033e-09 - Re: 3.76348511559182e-09 - le_1311: - Im: 8.39589758116847e-09 - Re: 8.714174450545989e-09 - le_1312: - Im: 6.986856498998e-09 - Re: 1.1017190400153887e-09 - le_1313: - Im: 8.911801019703613e-10 - Re: 9.786583026173536e-09 - le_1321: - Im: 2.0520605048857967e-09 - Re: 8.853298686243812e-09 - le_1322: - Im: 8.473334081139054e-09 - Re: 6.39207233126824e-09 - le_1323: - Im: 4.841173074837879e-10 - Re: 6.294946066416991e-09 - le_1331: - Im: 8.779819512069781e-09 - Re: 5.032080322053743e-09 - le_1332: - Im: 3.9373137567188886e-09 - Re: 9.230850429203503e-09 - le_1333: - Im: 2.6030116760330102e-09 - Re: 9.947568857931223e-09 - le_2211: 1.195327573161331e-09 - le_2212: - Im: 4.440958814068593e-09 - Re: 4.94806176292194e-10 - le_2213: - Im: 3.812685466435958e-09 - Re: 9.754687968169124e-09 - le_2222: 9.83594598737383e-09 - le_2223: - Im: 7.444597952915747e-09 - Re: 4.852666910428195e-09 - le_2233: 2.2650975565518363e-09 - le_2311: - Im: 2.433024599622491e-09 - Re: 4.494959885775103e-09 - le_2312: - Im: 9.950141803205958e-10 - Re: 7.221195509674217e-09 - le_2313: - Im: 9.119431126676332e-09 - Re: 3.4391318642445523e-09 - le_2321: - Im: 6.791288902153797e-09 - Re: 8.448559754876745e-09 - le_2322: - Im: 3.285254226020933e-09 - Re: 2.6031170477165132e-09 - le_2323: - Im: 7.520975053671695e-09 - Re: 4.986159170362485e-09 - le_2331: - Im: 5.632360823907896e-09 - Re: 2.1054278071567513e-09 - le_2332: - Im: 1.7061585255339717e-09 - Re: 8.83218279088531e-09 - le_2333: - Im: 8.301135048455917e-09 - Re: 7.749699672795678e-09 - le_3311: 1.5942240634885697e-09 - le_3312: - Im: 3.379461264453514e-09 - Re: 8.977737553547153e-09 - le_3313: - Im: 5.512160049935918e-09 - Re: 2.3717780256015585e-09 - le_3322: 2.2593175411314704e-09 - le_3323: - Im: 5.064340064993823e-09 - Re: 1.4673715638312967e-09 - le_3333: 4.434533120523154e-09 - ledq_1111: - Im: 5.9030163916024e-10 - Re: 5.58569030869904e-09 - ledq_1112: - Im: 1.2162670990519486e-10 - Re: 4.723966503152861e-09 - ledq_1113: - Im: 7.243886421539754e-09 - Re: 7.819009917168619e-09 - ledq_1121: - Im: 2.2954631196258903e-09 - Re: 2.6689932137951455e-09 - ledq_1122: - Im: 1.0565693885683081e-09 - Re: 1.4634765407506644e-09 - ledq_1123: - Im: 2.362151640251744e-09 - Re: 5.8638415805983526e-09 - ledq_1131: - Im: 9.915632226148916e-09 - Re: 3.7117164300497075e-09 - ledq_1132: - Im: 7.111345696344654e-09 - Re: 7.645177878534162e-09 - ledq_1133: - Im: 1.2986427242254407e-09 - Re: 7.738703926739534e-09 - ledq_1211: - Im: 6.463142315792872e-09 - Re: 7.343415536609335e-09 - ledq_1212: - Im: 2.8596191164104567e-09 - Re: 7.291245680247664e-09 - ledq_1213: - Im: 2.194626309002772e-09 - Re: 6.82565041143709e-10 - ledq_1221: - Im: 6.542627353462848e-10 - Re: 9.425971752338535e-09 - ledq_1222: - Im: 9.31857713621176e-10 - Re: 4.965730704261448e-09 - ledq_1223: - Im: 5.465585976836152e-10 - Re: 4.600779914788403e-09 - ledq_1231: - Im: 4.4942416953867693e-10 - Re: 9.759166776296681e-09 - ledq_1232: - Im: 2.3568821170567865e-09 - Re: 3.2228053615390096e-09 - ledq_1233: - Im: 8.198060003128845e-09 - Re: 2.748335653875965e-09 - ledq_1311: - Im: 9.414289131580982e-09 - Re: 7.210425333398552e-10 - ledq_1312: - Im: 5.9189600753663046e-09 - Re: 7.01652924340489e-09 - ledq_1313: - Im: 5.871427275530235e-09 - Re: 5.159980115967941e-09 - ledq_1321: - Im: 8.552384130758998e-09 - Re: 6.381156209379556e-09 - ledq_1322: - Im: 8.158018159633856e-09 - Re: 9.061909591196232e-09 - ledq_1323: - Im: 9.843453640877554e-10 - Re: 1.8065361122076895e-09 - ledq_1331: - Im: 4.983880984297395e-09 - Re: 3.412712619550791e-09 - ledq_1332: - Im: 5.268690088003534e-09 - Re: 2.488017501477974e-09 - ledq_1333: - Im: 2.6864529989958587e-09 - Re: 3.268030543312107e-09 - ledq_2111: - Im: 4.820775188782578e-09 - Re: 8.534787546956537e-09 - ledq_2112: - Im: 6.350387615238592e-09 - Re: 2.517449112049184e-09 - ledq_2113: - Im: 5.212066765549926e-09 - Re: 8.320055392509175e-09 - ledq_2121: - Im: 2.9634761375086804e-09 - Re: 3.85922265068227e-09 - ledq_2122: - Im: 2.2897641005388083e-09 - Re: 7.4095839804940815e-09 - ledq_2123: - Im: 9.5791109725206e-09 - Re: 3.7165773474933105e-11 - ledq_2131: - Im: 1.6247814200291399e-09 - Re: 7.714000419109835e-09 - ledq_2132: - Im: 7.85843117613487e-09 - Re: 1.3847385689244096e-09 - ledq_2133: - Im: 9.471260810009325e-09 - Re: 5.6248317058879395e-09 - ledq_2211: - Im: 8.611495725584084e-09 - Re: 6.3605163378204665e-09 - ledq_2212: - Im: 5.468873929621921e-09 - Re: 2.672044130536764e-09 - ledq_2213: - Im: 1.801097701253316e-09 - Re: 9.529135387180276e-09 - ledq_2221: - Im: 1.7259484423867578e-09 - Re: 6.8216543823949625e-09 - ledq_2222: - Im: 8.653512690260525e-09 - Re: 4.95410109744255e-09 - ledq_2223: - Im: 8.774981248297476e-10 - Re: 1.1868347692923154e-09 - ledq_2231: - Im: 7.699732443600518e-09 - Re: 4.777158377474745e-09 - ledq_2232: - Im: 1.856457578543278e-09 - Re: 2.1840979250463346e-09 - ledq_2233: - Im: 9.158488688499411e-10 - Re: 8.965974335015784e-09 - ledq_2311: - Im: 6.667849829143376e-09 - Re: 6.995487740725166e-09 - ledq_2312: - Im: 7.45302567740949e-09 - Re: 8.58142968094274e-09 - ledq_2313: - Im: 5.007781506015902e-09 - Re: 2.791112894866081e-09 - ledq_2321: - Im: 4.019570051760907e-09 - Re: 6.825116944659826e-09 - ledq_2322: - Im: 5.9141753540723596e-09 - Re: 5.608617746579759e-09 - ledq_2323: - Im: 2.8952277861114707e-09 - Re: 4.313237880648764e-09 - ledq_2331: - Im: 1.8552061434211508e-10 - Re: 8.443974770732247e-09 - ledq_2332: - Im: 1.3936329760548528e-09 - Re: 1.658282691380525e-09 - ledq_2333: - Im: 4.090373994204497e-09 - Re: 5.683209255356974e-09 - ledq_3111: - Im: 6.45428456365678e-09 - Re: 2.3330211619709953e-09 - ledq_3112: - Im: 9.968805832497692e-09 - Re: 7.155770199494344e-09 - ledq_3113: - Im: 2.1767158733573046e-10 - Re: 7.99145278457216e-09 - ledq_3121: - Im: 3.8940654826687424e-09 - Re: 7.483838118914296e-09 - ledq_3122: - Im: 3.028293187944431e-09 - Re: 1.8527970383007664e-09 - ledq_3123: - Im: 4.6794662996925955e-09 - Re: 6.5785882202276315e-09 - ledq_3131: - Im: 6.736422782056229e-09 - Re: 2.7721421445949837e-09 - ledq_3132: - Im: 4.246609673342982e-09 - Re: 7.033339699861241e-09 - ledq_3133: - Im: 8.618764679298597e-10 - Re: 3.4947481953678605e-09 - ledq_3211: - Im: 7.412506923073657e-09 - Re: 8.498483091147003e-09 - ledq_3212: - Im: 9.273575681314446e-09 - Re: 2.965743703474102e-09 - ledq_3213: - Im: 1.8372164477605823e-09 - Re: 3.400824040723902e-09 - ledq_3221: - Im: 1.3983454957147179e-09 - Re: 9.363494742984166e-09 - ledq_3222: - Im: 1.4200511224598855e-09 - Re: 9.086694720787269e-10 - ledq_3223: - Im: 4.4808816377230565e-09 - Re: 3.074532766010224e-09 - ledq_3231: - Im: 4.301826272845495e-09 - Re: 9.38980847298565e-09 - ledq_3232: - Im: 6.88273518215005e-09 - Re: 9.751595466691262e-09 - ledq_3233: - Im: 9.884955513668132e-09 - Re: 2.592179966199002e-09 - ledq_3311: - Im: 9.461837545095535e-09 - Re: 9.573314456731018e-09 - ledq_3312: - Im: 3.213483968111931e-09 - Re: 2.1840447782657236e-09 - ledq_3313: - Im: 6.119134494869197e-09 - Re: 8.305008087507485e-09 - ledq_3321: - Im: 6.709428284456909e-10 - Re: 2.167010624226531e-09 - ledq_3322: - Im: 1.7719610027892475e-09 - Re: 7.958325104774404e-09 - ledq_3323: - Im: 6.092772808177208e-09 - Re: 9.704610728400925e-09 - ledq_3331: - Im: 1.5379823385685898e-09 - Re: 1.4506080985525717e-09 - ledq_3332: - Im: 2.2987493923968816e-10 - Re: 1.109475704694054e-09 - ledq_3333: - Im: 7.894663913815891e-09 - Re: 1.9217199179142442e-10 - lequ1_1111: - Im: 1.2692391981079842e-09 - Re: 9.905700408616866e-09 - lequ1_1112: - Im: 1.0278369387269838e-09 - Re: 4.110016811886431e-09 - lequ1_1113: - Im: 5.614789462373464e-09 - Re: 7.645943554906169e-09 - lequ1_1121: - Im: 7.66081942041577e-09 - Re: 6.78556846998487e-09 - lequ1_1122: - Im: 4.32584290805025e-09 - Re: 6.6378650331888035e-09 - lequ1_1123: - Im: 3.976663979152947e-09 - Re: 8.495425941654252e-09 - lequ1_1131: - Im: 3.5279717595597717e-09 - Re: 7.6751685406663e-09 - lequ1_1132: - Im: 2.243683185093749e-09 - Re: 6.586015860325352e-09 - lequ1_1133: - Im: 8.765955981919076e-09 - Re: 5.871406897397285e-09 - lequ1_1211: - Im: 2.966200959013814e-09 - Re: 5.701731898927955e-09 - lequ1_1212: - Im: 5.797621280747858e-09 - Re: 5.333116852546891e-09 - lequ1_1213: - Im: 5.265596817417417e-10 - Re: 9.605113393612677e-09 - lequ1_1221: - Im: 2.6276395005040856e-09 - Re: 2.8007823616582408e-09 - lequ1_1222: - Im: 3.5863990395132516e-09 - Re: 9.735112864233205e-09 - lequ1_1223: - Im: 3.44774762346737e-09 - Re: 5.212644840364754e-09 - lequ1_1231: - Im: 8.572578622428529e-09 - Re: 7.249633057509722e-09 - lequ1_1232: - Im: 6.072907258121865e-09 - Re: 4.6860044226895744e-09 - lequ1_1233: - Im: 7.958749691834204e-09 - Re: 3.4636066856334903e-09 - lequ1_1311: - Im: 7.237381223029217e-09 - Re: 5.635905529681382e-09 - lequ1_1312: - Im: 8.130175920281829e-09 - Re: 4.206337103354562e-09 - lequ1_1313: - Im: 6.916326073748197e-09 - Re: 7.708499186843299e-10 - lequ1_1321: - Im: 3.991124369034318e-09 - Re: 3.8741329606777576e-09 - lequ1_1322: - Im: 4.93277083681e-09 - Re: 3.789075073715447e-09 - lequ1_1323: - Im: 2.4129147095808934e-09 - Re: 4.792751770619622e-09 - lequ1_1331: - Im: 7.061859832391249e-09 - Re: 3.953429398445618e-09 - lequ1_1332: - Im: 5.444495689500766e-09 - Re: 2.518977619537168e-09 - lequ1_1333: - Im: 2.181169281969677e-09 - Re: 8.782600659663052e-09 - lequ1_2111: - Im: 7.190736499047659e-09 - Re: 6.679705990051344e-10 - lequ1_2112: - Im: 1.4639095152982995e-09 - Re: 6.809649358511978e-09 - lequ1_2113: - Im: 9.859873587418741e-09 - Re: 1.8200295925760824e-09 - lequ1_2121: - Im: 1.6570974639405156e-09 - Re: 6.2380351101125764e-09 - lequ1_2122: - Im: 7.835829036512091e-09 - Re: 7.798847438554624e-10 - lequ1_2123: - Im: 9.015661370705108e-10 - Re: 7.596815285649502e-09 - lequ1_2131: - Im: 3.1856877863319067e-09 - Re: 2.6703813798632447e-09 - lequ1_2132: - Im: 1.9630363948418485e-09 - Re: 9.4554024292813e-09 - lequ1_2133: - Im: 7.397913200400293e-09 - Re: 7.132625661033721e-09 - lequ1_2211: - Im: 4.485261046159429e-09 - Re: 6.195478737057035e-09 - lequ1_2212: - Im: 6.1037639705833205e-09 - Re: 1.6967295709278408e-09 - lequ1_2213: - Im: 2.436236031936885e-09 - Re: 5.620432664530251e-10 - lequ1_2221: - Im: 3.665547603899907e-09 - Re: 8.95836541289792e-09 - lequ1_2222: - Im: 3.3244702347536306e-09 - Re: 6.972443416080433e-09 - lequ1_2223: - Im: 6.870486061583347e-10 - Re: 4.434840242948805e-09 - lequ1_2231: - Im: 6.231571110287104e-09 - Re: 7.734139093417844e-09 - lequ1_2232: - Im: 6.376621603822386e-10 - Re: 2.3394179699297356e-09 - lequ1_2233: - Im: 7.212501790072025e-09 - Re: 5.456015420427992e-09 - lequ1_2311: - Im: 7.660833138893387e-09 - Re: 9.381229581290935e-09 - lequ1_2312: - Im: 4.12761166627993e-09 - Re: 4.524403241963053e-09 - lequ1_2313: - Im: 2.1605953595104077e-09 - Re: 4.5406534140536335e-09 - lequ1_2321: - Im: 1.467045657455095e-09 - Re: 2.9635440824379745e-10 - lequ1_2322: - Im: 5.1268235757459025e-09 - Re: 8.169211065684637e-09 - lequ1_2323: - Im: 2.5055651430224137e-09 - Re: 1.8422142964679333e-09 - lequ1_2331: - Im: 7.007227522394791e-09 - Re: 2.2355670975224595e-09 - lequ1_2332: - Im: 8.500610168958601e-09 - Re: 1.1235193227343278e-09 - lequ1_2333: - Im: 2.1674889397123808e-09 - Re: 8.453145350346425e-10 - lequ1_3111: - Im: 6.958261917001771e-09 - Re: 1.672343355454341e-09 - lequ1_3112: - Im: 8.646356713975049e-09 - Re: 7.947432511956853e-09 - lequ1_3113: - Im: 9.060955358501229e-09 - Re: 1.174035063447112e-09 - lequ1_3121: - Im: 2.573234371252987e-09 - Re: 5.308025135208368e-09 - lequ1_3122: - Im: 7.700134821815917e-09 - Re: 7.199180910164083e-09 - lequ1_3123: - Im: 1.3586272986784742e-09 - Re: 8.786935447736518e-09 - lequ1_3131: - Im: 8.690890650638885e-09 - Re: 9.00475827469121e-09 - lequ1_3132: - Im: 4.362987210436697e-09 - Re: 5.8025444865458266e-09 - lequ1_3133: - Im: 9.287188411526416e-09 - Re: 6.8296746963240204e-09 - lequ1_3211: - Im: 9.988769883755624e-09 - Re: 8.009510836599514e-09 - lequ1_3212: - Im: 2.8409401961159862e-09 - Re: 8.263941679555904e-09 - lequ1_3213: - Im: 9.846202278438847e-09 - Re: 5.2371668773918364e-09 - lequ1_3221: - Im: 7.83868437256699e-09 - Re: 9.268723458928916e-09 - lequ1_3222: - Im: 1.7318906237292941e-09 - Re: 1.734983574440796e-10 - lequ1_3223: - Im: 6.59275334795293e-09 - Re: 1.0030165950645277e-09 - lequ1_3231: - Im: 8.28581902893306e-09 - Re: 1.62253513812332e-09 - lequ1_3232: - Im: 7.740380591705012e-09 - Re: 3.480568546941053e-09 - lequ1_3233: - Im: 3.8563276045096896e-09 - Re: 9.06785714282923e-09 - lequ1_3311: - Im: 4.8448178302748554e-09 - Re: 1.2556284751814285e-09 - lequ1_3312: - Im: 1.970378710673438e-09 - Re: 5.440315265624184e-09 - lequ1_3313: - Im: 8.772050890849346e-09 - Re: 7.366700871550485e-09 - lequ1_3321: - Im: 1.3981457858528812e-09 - Re: 8.979486726344289e-10 - lequ1_3322: - Im: 4.211457139144857e-09 - Re: 4.894963042318927e-09 - lequ1_3323: - Im: 4.274662238729297e-09 - Re: 5.772402221916695e-10 - lequ1_3331: - Im: 6.1622599563648415e-09 - Re: 9.266143840414373e-09 - lequ1_3332: - Im: 2.3683550962106537e-09 - Re: 6.586114794838503e-09 - lequ1_3333: - Im: 6.7517243680969305e-09 - Re: 5.6842186849766035e-09 - lequ3_1111: - Im: 8.881803453716278e-09 - Re: 9.130142107062247e-09 - lequ3_1112: - Im: 6.307696465190677e-09 - Re: 5.0482002867023116e-09 - lequ3_1113: - Im: 3.240338488028045e-09 - Re: 4.753310997872202e-09 - lequ3_1121: - Im: 6.218918194826658e-09 - Re: 8.257406506785241e-09 - lequ3_1122: - Im: 2.1711520629949844e-09 - Re: 4.098793532332534e-10 - lequ3_1123: - Im: 5.058356403758743e-09 - Re: 5.082007463919005e-09 - lequ3_1131: - Im: 2.3469316583072988e-09 - Re: 2.8315744363458807e-09 - lequ3_1132: - Im: 6.9656166688378344e-09 - Re: 6.0001107015051756e-09 - lequ3_1133: - Im: 6.935256603898589e-09 - Re: 6.434379543966267e-09 - lequ3_1211: - Im: 4.927025790991567e-09 - Re: 1.0602488242766572e-09 - lequ3_1212: - Im: 6.239367939444347e-09 - Re: 2.645614941494032e-09 - lequ3_1213: - Im: 9.672848505013733e-09 - Re: 1.0147340679115902e-09 - lequ3_1221: - Im: 8.0075398511509e-09 - Re: 5.962218007529552e-09 - lequ3_1222: - Im: 9.70038163075961e-09 - Re: 7.391620105569412e-09 - lequ3_1223: - Im: 4.878143115779252e-09 - Re: 6.3466918773947825e-09 - lequ3_1231: - Im: 5.703975286159938e-09 - Re: 2.9581618664962663e-09 - lequ3_1232: - Im: 9.005861232124002e-10 - Re: 8.275095049288732e-09 - lequ3_1233: - Im: 7.574040112760659e-09 - Re: 8.247685129753967e-09 - lequ3_1311: - Im: 9.416414800218349e-09 - Re: 6.128160228899826e-10 - lequ3_1312: - Im: 5.9830052886637765e-09 - Re: 2.589401843417193e-09 - lequ3_1313: - Im: 7.412022948240648e-09 - Re: 5.7047894934493065e-09 - lequ3_1321: - Im: 9.8349554367e-09 - Re: 6.221656737838205e-09 - lequ3_1322: - Im: 4.974303781019029e-09 - Re: 5.801938668645971e-09 - lequ3_1323: - Im: 7.12049237351279e-09 - Re: 7.035424755999176e-09 - lequ3_1331: - Im: 7.954157523719733e-09 - Re: 8.403948735902855e-10 - lequ3_1332: - Im: 8.408830943012022e-09 - Re: 9.101643195757298e-09 - lequ3_1333: - Im: 3.1004579824424815e-09 - Re: 7.828723414736495e-09 - lequ3_2111: - Im: 5.780562296049009e-09 - Re: 5.170505246833469e-09 - lequ3_2112: - Im: 3.747133737186283e-09 - Re: 8.789825069536533e-09 - lequ3_2113: - Im: 8.986150672811995e-09 - Re: 5.454143373465409e-09 - lequ3_2121: - Im: 3.15632526130562e-09 - Re: 5.832100337991175e-09 - lequ3_2122: - Im: 1.3970033105801395e-09 - Re: 5.252627720949362e-09 - lequ3_2123: - Im: 2.4176752239648236e-09 - Re: 9.280162015746073e-09 - lequ3_2131: - Im: 8.927926465732697e-09 - Re: 4.295706248625201e-09 - lequ3_2132: - Im: 6.921517831778361e-09 - Re: 7.067943817906316e-09 - lequ3_2133: - Im: 4.09896864260226e-09 - Re: 5.491657675007394e-09 - lequ3_2211: - Im: 1.0411702512481414e-09 - Re: 5.9897340759019025e-09 - lequ3_2212: - Im: 6.986935949882172e-09 - Re: 3.044908608498631e-10 - lequ3_2213: - Im: 3.584265175807232e-09 - Re: 6.169795980091269e-09 - lequ3_2221: - Im: 3.503007289915744e-09 - Re: 6.047094657071983e-10 - lequ3_2222: - Im: 9.389660433100287e-09 - Re: 7.452223243748679e-10 - lequ3_2223: - Im: 5.762235706663315e-09 - Re: 8.238622335503087e-10 - lequ3_2231: - Im: 4.7947180462405174e-09 - Re: 7.976118979710245e-09 - lequ3_2232: - Im: 7.740090757495676e-09 - Re: 9.108161831357416e-09 - lequ3_2233: - Im: 3.0595971898680007e-09 - Re: 6.047365576251778e-09 - lequ3_2311: - Im: 3.959463242086989e-09 - Re: 6.1494253446841255e-09 - lequ3_2312: - Im: 1.191084036914748e-09 - Re: 5.174936642488953e-09 - lequ3_2313: - Im: 8.253910823885244e-09 - Re: 2.4203069238989727e-09 - lequ3_2321: - Im: 2.6274656070701307e-09 - Re: 8.683799829677921e-09 - lequ3_2322: - Im: 1.7549687773259316e-09 - Re: 4.767745619355912e-09 - lequ3_2323: - Im: 2.938453479906037e-09 - Re: 5.152465406216167e-09 - lequ3_2331: - Im: 2.822720985587408e-09 - Re: 6.328819685828251e-09 - lequ3_2332: - Im: 9.462296779840888e-09 - Re: 8.885216931512152e-10 - lequ3_2333: - Im: 5.756198770036274e-09 - Re: 6.188790841520805e-09 - lequ3_3111: - Im: 9.415998967963531e-09 - Re: 4.9621107059579286e-09 - lequ3_3112: - Im: 9.007410380590609e-11 - Re: 4.5042372732387895e-09 - lequ3_3113: - Im: 4.299569924023603e-09 - Re: 4.507967517304553e-09 - lequ3_3121: - Im: 6.658010714306521e-09 - Re: 7.443557314027381e-09 - lequ3_3122: - Im: 3.3883765405855782e-09 - Re: 1.309433447216617e-09 - lequ3_3123: - Im: 4.364355573746792e-09 - Re: 8.429852433169733e-09 - lequ3_3131: - Im: 9.27908352793173e-09 - Re: 5.194586544808454e-09 - lequ3_3132: - Im: 5.244885727507204e-09 - Re: 4.55552270471214e-09 - lequ3_3133: - Im: 9.716907951082387e-09 - Re: 8.959235998069339e-09 - lequ3_3211: - Im: 9.244973572100082e-09 - Re: 1.0515199607515791e-09 - lequ3_3212: - Im: 9.710446397765898e-09 - Re: 1.3670695402534472e-09 - lequ3_3213: - Im: 8.77021790147761e-09 - Re: 1.4582005977955949e-09 - lequ3_3221: - Im: 9.851216937553255e-09 - Re: 8.17735289870822e-09 - lequ3_3222: - Im: 5.597070366198866e-09 - Re: 3.1600202955035352e-09 - lequ3_3223: - Im: 9.392050650341589e-09 - Re: 1.7407012455925686e-10 - lequ3_3231: - Im: 6.526764708994436e-09 - Re: 5.553676636604229e-09 - lequ3_3232: - Im: 7.219958513307806e-09 - Re: 3.963370428339285e-09 - lequ3_3233: - Im: 7.110125459124472e-09 - Re: 2.520773143740893e-09 - lequ3_3311: - Im: 4.471857458919878e-09 - Re: 3.7021247424951854e-09 - lequ3_3312: - Im: 2.7755095517268036e-09 - Re: 1.5237067320927312e-09 - lequ3_3313: - Im: 3.6943867983550503e-09 - Re: 7.99523008437029e-09 - lequ3_3321: - Im: 5.270408576325181e-10 - Re: 4.2169907645453586e-10 - lequ3_3322: - Im: 6.282359480103633e-09 - Re: 8.903377116771626e-09 - lequ3_3323: - Im: 7.155142804290772e-09 - Re: 3.664984369724029e-09 - lequ3_3331: - Im: 3.10299318093736e-09 - Re: 4.485704053932836e-09 - lequ3_3332: - Im: 8.407939558720656e-09 - Re: 2.1656387815270574e-10 - lequ3_3333: - Im: 4.888322719361842e-09 - Re: 9.59623804401579e-09 - ll_1111: 7.975941889512911e-09 - ll_1112: - Im: 7.858021328148324e-09 - Re: 3.486976239683993e-09 - ll_1113: - Im: 4.721719595181073e-10 - Re: 7.188877327382939e-09 - ll_1122: 1.296417144793297e-09 - ll_1123: - Im: 5.887216393743497e-09 - Re: 3.712044617346162e-09 - ll_1133: 5.456792283091895e-09 - ll_1212: - Im: 4.0483147238730325e-09 - Re: 9.624441124371071e-09 - ll_1213: - Im: 7.603019713843784e-09 - Re: 2.4311568867720845e-09 - ll_1221: 3.967130447647323e-09 - ll_1222: - Im: 7.652813067219713e-09 - Re: 7.861467100139842e-09 - ll_1223: - Im: 1.868726843243802e-09 - Re: 3.7839135236825474e-10 - ll_1231: - Im: 5.820335084123866e-09 - Re: 4.520211623078783e-09 - ll_1232: - Im: 5.215623172584541e-09 - Re: 1.7609898861923357e-09 - ll_1233: - Im: 4.327910375844521e-09 - Re: 6.707506736065714e-09 - ll_1313: - Im: 2.0411072581482528e-09 - Re: 4.4555520060609755e-09 - ll_1322: - Im: 2.610182310170318e-09 - Re: 4.77798507119365e-09 - ll_1323: - Im: 8.610199656740527e-09 - Re: 9.247675398354965e-09 - ll_1331: 4.948667229288688e-09 - ll_1332: - Im: 8.066757234035164e-09 - Re: 8.990900762958907e-09 - ll_1333: - Im: 1.984483155388889e-09 - Re: 3.6875530181347437e-09 - ll_2222: 1.0975123176420088e-09 - ll_2223: - Im: 9.978080383318412e-09 - Re: 3.94129220353474e-09 - ll_2233: 2.230225675745153e-09 - ll_2323: - Im: 5.016361769344894e-09 - Re: 2.5232772696835236e-09 - ll_2332: 9.35378774426636e-09 - ll_2333: - Im: 2.8203234253849697e-09 - Re: 5.8974408286606226e-09 - ll_3333: 4.464805067192168e-10 - llphiphi_11: - Im: 8.730482371779904e-09 - Re: 6.197410788617797e-10 - llphiphi_22: - Im: 7.359922989990974e-09 - Re: 9.779917121376042e-09 - llphiphi_33: - Im: 6.005828251383094e-09 - Re: 9.780019193074889e-09 - lq1_1111: 8.497286152805306e-09 - lq1_1112: - Im: 3.824739332422495e-09 - Re: 8.260322605901809e-09 - lq1_1113: - Im: 5.818116972698459e-09 - Re: 2.918521399267441e-09 - lq1_1122: 8.645924775569021e-09 - lq1_1123: - Im: 7.713158868798721e-09 - Re: 5.55634196411755e-09 - lq1_1133: 9.877534732945957e-09 - lq1_1211: - Im: 9.356952901615274e-09 - Re: 8.873109736271827e-09 - lq1_1212: - Im: 2.6618072734717514e-09 - Re: 6.243032510050294e-09 - lq1_1213: - Im: 7.229614518039964e-09 - Re: 5.965326659525223e-09 - lq1_1221: - Im: 1.5216148886396696e-09 - Re: 4.628958779767332e-09 - lq1_1222: - Im: 2.032346721619426e-09 - Re: 5.420211926817672e-09 - lq1_1223: - Im: 7.43787997813522e-09 - Re: 3.870302620564973e-09 - lq1_1231: - Im: 6.39518913381083e-09 - Re: 4.014077701449945e-09 - lq1_1232: - Im: 3.086140767305007e-09 - Re: 7.797115846186596e-09 - lq1_1233: - Im: 4.803115407165447e-09 - Re: 9.594627367090425e-09 - lq1_1311: - Im: 5.62996297285929e-09 - Re: 2.2964984247546706e-09 - lq1_1312: - Im: 6.210704564824666e-09 - Re: 4.6949054777833115e-09 - lq1_1313: - Im: 1.6937615757724856e-09 - Re: 1.4170838205887037e-09 - lq1_1321: - Im: 8.739398616330386e-09 - Re: 7.151692744563198e-10 - lq1_1322: - Im: 1.7133565470326195e-09 - Re: 7.204730074766077e-09 - lq1_1323: - Im: 8.496968261555376e-09 - Re: 3.0868785467747317e-09 - lq1_1331: - Im: 5.181304632548009e-09 - Re: 8.122027772694247e-09 - lq1_1332: - Im: 1.5187251341261833e-09 - Re: 2.779994490255642e-09 - lq1_1333: - Im: 5.0533574958156684e-09 - Re: 6.001732809662952e-09 - lq1_2211: 8.871492215635424e-10 - lq1_2212: - Im: 6.54723316890474e-09 - Re: 6.583285716940176e-09 - lq1_2213: - Im: 2.492701994159776e-09 - Re: 8.606249211289359e-09 - lq1_2222: 6.69620050046676e-09 - lq1_2223: - Im: 1.7265052555923665e-09 - Re: 7.710665542361442e-09 - lq1_2233: 4.499300600348975e-09 - lq1_2311: - Im: 7.102644782414419e-09 - Re: 3.269387875875488e-09 - lq1_2312: - Im: 6.178030293944984e-09 - Re: 2.4902386603512495e-09 - lq1_2313: - Im: 9.664982059849952e-09 - Re: 3.885605152759545e-09 - lq1_2321: - Im: 1.9331139467579493e-09 - Re: 6.2992665965355646e-09 - lq1_2322: - Im: 6.554313311242353e-09 - Re: 5.802773486768063e-09 - lq1_2323: - Im: 1.6394237083810426e-09 - Re: 2.5694372936975187e-10 - lq1_2331: - Im: 4.341152488003739e-09 - Re: 4.745741065463329e-09 - lq1_2332: - Im: 4.96566161826519e-09 - Re: 5.703616387942253e-09 - lq1_2333: - Im: 7.60022694017967e-09 - Re: 9.31626293944638e-09 - lq1_3311: 8.956061356102386e-09 - lq1_3312: - Im: 1.3379355837764563e-09 - Re: 1.7808424308592453e-09 - lq1_3313: - Im: 5.543670529606805e-09 - Re: 5.942426738587814e-09 - lq1_3322: 7.122831493430328e-09 - lq1_3323: - Im: 8.041555836260198e-09 - Re: 6.253184209697593e-09 - lq1_3333: 8.272658816953162e-09 - lq3_1111: 8.950424264491575e-09 - lq3_1112: - Im: 9.1463587019747e-09 - Re: 8.628282946870248e-09 - lq3_1113: - Im: 5.061191510604439e-09 - Re: 8.338076910468857e-09 - lq3_1122: 9.791496529329675e-09 - lq3_1123: - Im: 5.763635539832209e-09 - Re: 3.700881419352914e-09 - lq3_1133: 2.213232086138961e-10 - lq3_1211: - Im: 2.2300428127374572e-09 - Re: 4.220629073766187e-09 - lq3_1212: - Im: 2.653090448104517e-09 - Re: 9.607359938189061e-09 - lq3_1213: - Im: 1.8286083365300555e-09 - Re: 6.686896667305875e-10 - lq3_1221: - Im: 4.4241111342187777e-10 - Re: 4.883868629697475e-09 - lq3_1222: - Im: 8.992533145015968e-09 - Re: 6.608193366062506e-09 - lq3_1223: - Im: 8.153994289134659e-11 - Re: 7.810399284083852e-09 - lq3_1231: - Im: 3.2525308956557008e-09 - Re: 7.28883352911619e-10 - lq3_1232: - Im: 4.911791401833011e-09 - Re: 6.307385945697207e-09 - lq3_1233: - Im: 2.9735473189909856e-09 - Re: 5.5896763190363485e-09 - lq3_1311: - Im: 1.190647371026481e-09 - Re: 2.4073134559814624e-09 - lq3_1312: - Im: 2.978688840847954e-09 - Re: 6.941241774314072e-09 - lq3_1313: - Im: 9.045327174127024e-09 - Re: 1.3361991525429384e-09 - lq3_1321: - Im: 9.516191824279267e-09 - Re: 7.814699739258079e-09 - lq3_1322: - Im: 4.434951968136931e-09 - Re: 6.392412681248478e-09 - lq3_1323: - Im: 3.779671959582075e-09 - Re: 1.8311587851645572e-09 - lq3_1331: - Im: 6.775674542694929e-09 - Re: 3.3589337377615e-09 - lq3_1332: - Im: 8.566548620534188e-09 - Re: 4.825340464538752e-11 - lq3_1333: - Im: 7.618637042382938e-09 - Re: 3.0379718473750827e-09 - lq3_2211: 2.343656314252709e-09 - lq3_2212: - Im: 3.4955397548045297e-09 - Re: 9.151523164301512e-10 - lq3_2213: - Im: 5.022039271839098e-09 - Re: 4.7844660339936685e-09 - lq3_2222: 6.045310407617024e-09 - lq3_2223: - Im: 8.301266415058265e-09 - Re: 7.1135850371732834e-09 - lq3_2233: 5.845154061941027e-09 - lq3_2311: - Im: 2.467603329081076e-09 - Re: 4.752988390828336e-09 - lq3_2312: - Im: 6.122236794419726e-09 - Re: 8.296249933850231e-09 - lq3_2313: - Im: 3.848333939067884e-09 - Re: 3.8476201373038145e-09 - lq3_2321: - Im: 1.4904990748916502e-09 - Re: 7.1321475134573746e-09 - lq3_2322: - Im: 1.0883347002423128e-09 - Re: 6.471718710775032e-10 - lq3_2323: - Im: 5.117555517216487e-09 - Re: 4.673785856738455e-09 - lq3_2331: - Im: 6.739378864166867e-10 - Re: 3.1162074687515206e-09 - lq3_2332: - Im: 8.646955109889153e-09 - Re: 3.734651688225398e-09 - lq3_2333: - Im: 1.5119941052960873e-09 - Re: 3.9554028073988434e-09 - lq3_3311: 8.476474433355653e-09 - lq3_3312: - Im: 1.1197327310832294e-09 - Re: 8.16793719841009e-09 - lq3_3313: - Im: 7.639137965289285e-09 - Re: 6.018458431667318e-10 - lq3_3322: 6.326725028091677e-09 - lq3_3323: - Im: 8.568284988228292e-10 - Re: 2.826867087825633e-09 - lq3_3333: 6.4667609846332085e-09 - lu_1111: 8.011883852270149e-09 - lu_1112: - Im: 7.594965994817237e-09 - Re: 9.007980591905805e-09 - lu_1113: - Im: 3.584570386886491e-09 - Re: 1.99092287345506e-09 - lu_1122: 5.508289360232528e-09 - lu_1123: - Im: 1.6012008766754571e-09 - Re: 1.4428138475224217e-09 - lu_1133: 4.430062368406847e-09 - lu_1211: - Im: 1.6206263187462144e-09 - Re: 1.481500690877766e-09 - lu_1212: - Im: 2.628565018743645e-10 - Re: 3.2629098805170666e-09 - lu_1213: - Im: 9.147492112240487e-09 - Re: 5.537421927452304e-09 - lu_1221: - Im: 1.1338959154689298e-09 - Re: 3.819805740418142e-09 - lu_1222: - Im: 2.652735995216428e-09 - Re: 6.4610955770776835e-09 - lu_1223: - Im: 5.891687454414354e-09 - Re: 7.274366329481288e-09 - lu_1231: - Im: 6.126684111426022e-09 - Re: 7.381460515958487e-09 - lu_1232: - Im: 5.897280960764019e-09 - Re: 9.54252100266579e-09 - lu_1233: - Im: 7.331670472984239e-09 - Re: 3.3076046973762285e-09 - lu_1311: - Im: 7.926180262728137e-09 - Re: 7.944117341752382e-09 - lu_1312: - Im: 6.895234001613433e-09 - Re: 1.3320457140434494e-09 - lu_1313: - Im: 2.6113727889235493e-10 - Re: 1.469885954655301e-09 - lu_1321: - Im: 8.691967853090318e-09 - Re: 9.005067162903714e-09 - lu_1322: - Im: 6.872867054314679e-09 - Re: 3.5697445441400035e-09 - lu_1323: - Im: 7.768305669359793e-09 - Re: 8.751116830095952e-09 - lu_1331: - Im: 8.145367536525537e-09 - Re: 4.323879606839941e-09 - lu_1332: - Im: 3.622110904339191e-09 - Re: 6.916463976246868e-09 - lu_1333: - Im: 1.5681172398332154e-09 - Re: 4.259503159532352e-10 - lu_2211: 2.0558908161649015e-09 - lu_2212: - Im: 9.44407153821641e-09 - Re: 3.291560755636038e-09 - lu_2213: - Im: 2.905865335546395e-09 - Re: 2.0465054539692907e-09 - lu_2222: 6.058261595088272e-09 - lu_2223: - Im: 1.4749550941597146e-09 - Re: 6.603999177907905e-10 - lu_2233: 3.975039792092813e-09 - lu_2311: - Im: 5.029649750101473e-09 - Re: 6.160100603113093e-09 - lu_2312: - Im: 3.9353147137048495e-09 - Re: 6.381362890172939e-09 - lu_2313: - Im: 2.874912025979337e-10 - Re: 9.82706973182199e-09 - lu_2321: - Im: 7.654073679215379e-10 - Re: 9.294121351684769e-09 - lu_2322: - Im: 2.8776517068165196e-09 - Re: 8.532002715743127e-09 - lu_2323: - Im: 3.270148598773225e-09 - Re: 5.4145999323029405e-09 - lu_2331: - Im: 3.48885912276548e-09 - Re: 9.31753715117659e-09 - lu_2332: - Im: 6.187994804808093e-09 - Re: 7.767695155998537e-09 - lu_2333: - Im: 7.612016397734742e-09 - Re: 8.810824866249007e-09 - lu_3311: 2.5324182238051596e-09 - lu_3312: - Im: 9.66698185710963e-09 - Re: 6.9476680553988545e-09 - lu_3313: - Im: 3.824063200679023e-09 - Re: 3.76118914087082e-09 - lu_3322: 6.994618986583653e-09 - lu_3323: - Im: 6.858087651302363e-09 - Re: 8.87027398468441e-09 - lu_3333: 7.740615749166717e-09 - phi: 1.0435204452555747e-11 - phiB: 2.3066081799083427e-10 - phiBox: 4.671291668359807e-09 - phiBtilde: 6.5104526611981664e-09 - phiD: 7.4333308440006566e-09 - phiG: 6.858633213356174e-09 - phiGtilde: 6.078255822417449e-09 - phiW: 4.168128249023073e-09 - phiWB: 3.0784250307716035e-11 - phiWtilde: 8.961563384640746e-09 - phiWtildeB: 8.400338497854981e-09 - phid_11: 5.2461340208563715e-09 - phid_12: - Im: 7.701725777064054e-09 - Re: 4.944839374978892e-09 - phid_13: - Im: 2.4821766325222804e-09 - Re: 8.341672266006007e-10 - phid_22: 4.1147780405177635e-09 - phid_23: - Im: 9.93792492468085e-09 - Re: 7.97621297621786e-09 - phid_33: 6.206633535318308e-09 - phie_11: 8.391647885073103e-09 - phie_12: - Im: 8.023675688339578e-09 - Re: 4.068763167137036e-09 - phie_13: - Im: 6.302773047992991e-09 - Re: 4.084637736800558e-09 - phie_22: 2.6725189815896336e-10 - phie_23: - Im: 7.987387601814823e-09 - Re: 9.722990275279533e-09 - phie_33: 9.854383672619132e-09 - phil1_11: 5.939798361063989e-09 - phil1_12: - Im: 2.8366994714952533e-09 - Re: 1.3865568593703171e-09 - phil1_13: - Im: 2.9133990909950645e-09 - Re: 1.9295559671063313e-09 - phil1_22: 5.906649871131898e-09 - phil1_23: - Im: 9.654553315433942e-09 - Re: 4.653186361494931e-09 - phil1_33: 8.405421055947745e-09 - phil3_11: 7.786967165144765e-09 - phil3_12: - Im: 7.760765795541876e-09 - Re: 6.988304645108635e-09 - phil3_13: - Im: 3.554916865435066e-09 - Re: 3.1494052661324724e-09 - phil3_22: 7.634316046935623e-09 - phil3_23: - Im: 1.7389880294301542e-09 - Re: 5.461386089197196e-09 - phil3_33: 2.3623971436286127e-09 - phiq1_11: 7.558590386047402e-09 - phiq1_12: - Im: 7.58492849761379e-09 - Re: 1.887287792159842e-10 - phiq1_13: - Im: 2.4853350424968834e-09 - Re: 4.5461643816708806e-11 - phiq1_22: 7.1598375069759355e-09 - phiq1_23: - Im: 6.415253700717478e-09 - Re: 8.180742203945262e-09 - phiq1_33: 3.452398043781084e-09 - phiq3_11: 1.2019433342237761e-10 - phiq3_12: - Im: 2.220738543552975e-09 - Re: 3.490541117622558e-09 - phiq3_13: - Im: 9.615221106338584e-09 - Re: 2.3065003901817325e-09 - phiq3_22: 6.1146449227866965e-09 - phiq3_23: - Im: 8.786439954892026e-09 - Re: 2.6630159245658457e-09 - phiq3_33: 9.895854550663337e-09 - phiu_11: 7.372490513633564e-09 - phiu_12: - Im: 5.157680285148839e-09 - Re: 4.250293385820501e-09 - phiu_13: - Im: 3.457122467295656e-09 - Re: 4.545251968924993e-09 - phiu_22: 2.2977366066990824e-09 - phiu_23: - Im: 3.54621148117229e-11 - Re: 3.778240256772185e-09 - phiu_33: 2.356961237540103e-09 - phiud_11: - Im: 7.947179363644664e-09 - Re: 9.118412453431249e-09 - phiud_12: - Im: 6.74986910220596e-09 - Re: 9.78557237743518e-09 - phiud_13: - Im: 4.280423056853421e-09 - Re: 4.350040225955529e-09 - phiud_21: - Im: 7.2401912734676165e-09 - Re: 8.831111105279198e-09 - phiud_22: - Im: 6.9182762551788395e-09 - Re: 2.2004268755200784e-10 - phiud_23: - Im: 6.316628782148716e-09 - Re: 3.628767420652964e-09 - phiud_31: - Im: 1.2532897718321767e-09 - Re: 8.145159380183864e-10 - phiud_32: - Im: 1.568697364259748e-09 - Re: 9.09764904198083e-09 - phiud_33: - Im: 8.118912079292493e-09 - Re: 8.739122708652995e-09 - qd1_1111: 2.76569679927937e-09 - qd1_1112: - Im: 3.0388433932785885e-09 - Re: 1.5336524641750349e-09 - qd1_1113: - Im: 7.321014075581044e-09 - Re: 9.055790551348708e-10 - qd1_1122: 8.873289324382385e-09 - qd1_1123: - Im: 4.155435105769277e-09 - Re: 5.7415610575042595e-09 - qd1_1133: 9.04604932730155e-09 - qd1_1211: - Im: 9.094235191164903e-09 - Re: 7.46677158162065e-09 - qd1_1212: - Im: 2.493404515852852e-09 - Re: 6.520771668126412e-09 - qd1_1213: - Im: 1.1105262510400772e-09 - Re: 4.6626672354339036e-09 - qd1_1221: - Im: 1.0947818854063984e-09 - Re: 9.819162460802145e-09 - qd1_1222: - Im: 3.1047247902588616e-10 - Re: 7.13216934531865e-09 - qd1_1223: - Im: 5.131595863058336e-11 - Re: 8.731861657738779e-09 - qd1_1231: - Im: 7.558892197987402e-09 - Re: 7.807542008475962e-09 - qd1_1232: - Im: 2.905229442766786e-09 - Re: 8.609916610073022e-09 - qd1_1233: - Im: 3.757230117002414e-09 - Re: 9.099807034137947e-09 - qd1_1311: - Im: 5.683759291959195e-09 - Re: 3.951549940430606e-09 - qd1_1312: - Im: 1.4543246654685705e-09 - Re: 6.565458049062877e-09 - qd1_1313: - Im: 9.201739425814659e-09 - Re: 3.7080940623096372e-09 - qd1_1321: - Im: 9.00815720684295e-09 - Re: 2.455592778437167e-09 - qd1_1322: - Im: 8.342330159620765e-09 - Re: 7.532898172746838e-09 - qd1_1323: - Im: 8.433531131135974e-09 - Re: 9.418962748892382e-09 - qd1_1331: - Im: 9.894590875459666e-09 - Re: 1.1563698358350738e-09 - qd1_1332: - Im: 5.7713761307825694e-09 - Re: 6.218890066387286e-09 - qd1_1333: - Im: 7.481754115293135e-09 - Re: 8.336875273427331e-09 - qd1_2211: 8.129731280410561e-09 - qd1_2212: - Im: 8.272334311790618e-09 - Re: 3.576217430391935e-09 - qd1_2213: - Im: 4.04906045855421e-09 - Re: 9.00442935642237e-09 - qd1_2222: 1.0528374183276968e-09 - qd1_2223: - Im: 9.61151386926791e-09 - Re: 5.077684685069124e-09 - qd1_2233: 6.658828129874119e-09 - qd1_2311: - Im: 9.519674874769604e-09 - Re: 2.8870259883511075e-09 - qd1_2312: - Im: 8.049162733387972e-10 - Re: 4.787526973221521e-09 - qd1_2313: - Im: 5.072151235994633e-09 - Re: 4.323679060533964e-09 - qd1_2321: - Im: 3.600591208146803e-09 - Re: 5.015563381254734e-09 - qd1_2322: - Im: 2.5419440044642996e-09 - Re: 1.2722192201119143e-10 - qd1_2323: - Im: 9.911746590807312e-09 - Re: 2.9526445295277758e-09 - qd1_2331: - Im: 2.9533184178750407e-09 - Re: 5.367647579451882e-09 - qd1_2332: - Im: 2.9904187342231115e-09 - Re: 9.151764038925034e-09 - qd1_2333: - Im: 9.236719051462372e-10 - Re: 3.658366815168701e-10 - qd1_3311: 5.952387086068095e-09 - qd1_3312: - Im: 3.3867638743368034e-09 - Re: 4.743682230839786e-09 - qd1_3313: - Im: 8.58865595777302e-09 - Re: 2.069297004821855e-09 - qd1_3322: 9.015970373462205e-09 - qd1_3323: - Im: 6.8216308930594265e-09 - Re: 4.4787185996745695e-10 - qd1_3333: 9.399646508624896e-09 - qd8_1111: 2.766447328344052e-09 - qd8_1112: - Im: 7.625353151478752e-09 - Re: 4.645710855809049e-10 - qd8_1113: - Im: 7.58655338498122e-09 - Re: 1.7171026694661996e-09 - qd8_1122: 4.478695472775774e-09 - qd8_1123: - Im: 6.051412277430502e-09 - Re: 3.837480653529494e-09 - qd8_1133: 2.8437252592522155e-09 - qd8_1211: - Im: 9.117489588601205e-09 - Re: 2.8141770561777804e-09 - qd8_1212: - Im: 7.762605240209454e-09 - Re: 5.234381670168379e-09 - qd8_1213: - Im: 6.704131767162435e-09 - Re: 8.170207187804614e-09 - qd8_1221: - Im: 1.8148459202279476e-10 - Re: 7.809031526692502e-09 - qd8_1222: - Im: 2.2695977075385665e-09 - Re: 5.2774628887058465e-09 - qd8_1223: - Im: 7.878878769850964e-09 - Re: 8.599816948151117e-09 - qd8_1231: - Im: 2.8819077275853155e-09 - Re: 6.604756808829293e-09 - qd8_1232: - Im: 6.3827290157728756e-09 - Re: 4.115330919357235e-09 - qd8_1233: - Im: 3.9923059824570405e-09 - Re: 6.297841810055552e-09 - qd8_1311: - Im: 3.3731753194949723e-09 - Re: 5.237338739024362e-09 - qd8_1312: - Im: 7.292271844271312e-09 - Re: 7.974390401627815e-09 - qd8_1313: - Im: 4.603214530656446e-09 - Re: 7.283856292235946e-09 - qd8_1321: - Im: 9.27268944003088e-09 - Re: 8.363207393950628e-09 - qd8_1322: - Im: 2.8770885401882627e-09 - Re: 3.931627690748443e-09 - qd8_1323: - Im: 6.3436720350997335e-09 - Re: 8.252547144577893e-10 - qd8_1331: - Im: 2.4196926780341957e-09 - Re: 3.3210928093619162e-09 - qd8_1332: - Im: 3.004690536759791e-10 - Re: 2.307458457904713e-09 - qd8_1333: - Im: 9.037087774368247e-09 - Re: 2.8791247530067554e-09 - qd8_2211: 7.435576477323283e-09 - qd8_2212: - Im: 4.405439788690942e-09 - Re: 8.143009170080662e-09 - qd8_2213: - Im: 2.8931680560665017e-09 - Re: 5.857281029347434e-09 - qd8_2222: 2.3566476507640533e-09 - qd8_2223: - Im: 9.695506701634269e-09 - Re: 7.560424246361876e-09 - qd8_2233: 6.6060259907768085e-09 - qd8_2311: - Im: 4.034413149775735e-09 - Re: 3.8347993478501377e-10 - qd8_2312: - Im: 4.064605208088843e-09 - Re: 7.482982782350693e-09 - qd8_2313: - Im: 4.11908471878156e-09 - Re: 1.7859200239777607e-10 - qd8_2321: - Im: 7.29644602186494e-09 - Re: 9.158291118753505e-09 - qd8_2322: - Im: 1.9642644578996673e-09 - Re: 5.460981491904332e-09 - qd8_2323: - Im: 6.187353375874113e-09 - Re: 7.063254257763942e-09 - qd8_2331: - Im: 5.74890089075858e-10 - Re: 1.383554502948342e-09 - qd8_2332: - Im: 4.532826279934965e-09 - Re: 8.582348095092747e-09 - qd8_2333: - Im: 3.3945957459612374e-10 - Re: 2.4194280614981323e-09 - qd8_3311: 1.8139840703426992e-09 - qd8_3312: - Im: 8.957738534851221e-09 - Re: 2.1996795439875094e-09 - qd8_3313: - Im: 1.4452138880852373e-09 - Re: 2.7199162888794173e-09 - qd8_3322: 5.238323312062423e-09 - qd8_3323: - Im: 5.670883508493082e-09 - Re: 8.844375098741475e-10 - qd8_3333: 6.3767385148168686e-09 - qe_1111: 6.563574042204735e-09 - qe_1112: - Im: 6.475086495233832e-09 - Re: 6.084058543723275e-09 - qe_1113: - Im: 6.904241866416216e-10 - Re: 3.9245430450308005e-09 - qe_1122: 5.961261385813231e-09 - qe_1123: - Im: 2.9684764468502635e-09 - Re: 1.3178496950460406e-09 - qe_1133: 8.719635832233542e-09 - qe_1211: - Im: 2.1385383540219182e-09 - Re: 5.576982669956204e-09 - qe_1212: - Im: 3.963891642372197e-10 - Re: 2.8621796633072628e-09 - qe_1213: - Im: 5.341537242354449e-09 - Re: 8.602187391261927e-09 - qe_1221: - Im: 8.068642477279957e-09 - Re: 4.989348867055078e-09 - qe_1222: - Im: 3.767799289762837e-09 - Re: 2.1965365453738573e-09 - qe_1223: - Im: 7.747450128223132e-09 - Re: 6.3764249471801265e-09 - qe_1231: - Im: 9.047643814688511e-10 - Re: 6.6737985839189705e-09 - qe_1232: - Im: 3.530296564088362e-09 - Re: 9.312870669566069e-09 - qe_1233: - Im: 1.2423098006609824e-09 - Re: 1.006722919731079e-09 - qe_1311: - Im: 6.246340716015752e-09 - Re: 1.349644165387628e-09 - qe_1312: - Im: 3.06841991085426e-09 - Re: 9.859056930307615e-09 - qe_1313: - Im: 2.4029407936937055e-09 - Re: 7.850739755530984e-09 - qe_1321: - Im: 9.949253126627192e-09 - Re: 7.327231371317511e-09 - qe_1322: - Im: 6.10249900353646e-09 - Re: 7.243618764441124e-09 - qe_1323: - Im: 5.2003191865032085e-09 - Re: 4.450708178413331e-09 - qe_1331: - Im: 5.709528676750783e-09 - Re: 3.5930197956017485e-10 - qe_1332: - Im: 4.045725855030901e-09 - Re: 1.121076143269888e-09 - qe_1333: - Im: 5.864211560617424e-09 - Re: 1.908389009147755e-09 - qe_2211: 3.983864875722678e-09 - qe_2212: - Im: 4.044808906427915e-09 - Re: 1.751459852803745e-09 - qe_2213: - Im: 7.503978897271602e-10 - Re: 8.81504349765189e-09 - qe_2222: 1.026002173319398e-09 - qe_2223: - Im: 4.966388363664616e-09 - Re: 5.135866547705368e-09 - qe_2233: 6.254130432799966e-09 - qe_2311: - Im: 8.905143317382619e-09 - Re: 2.003198355672524e-09 - qe_2312: - Im: 7.66308185936695e-10 - Re: 7.2991395021979044e-09 - qe_2313: - Im: 3.825309108325892e-09 - Re: 1.2814552776518029e-09 - qe_2321: - Im: 6.625848592266494e-09 - Re: 7.774038813847146e-09 - qe_2322: - Im: 5.492122404262878e-09 - Re: 3.830698101473727e-09 - qe_2323: - Im: 2.1469430732193674e-09 - Re: 7.948278594467898e-09 - qe_2331: - Im: 7.555396903619555e-09 - Re: 8.068486148630932e-09 - qe_2332: - Im: 6.0420493509331876e-09 - Re: 4.35568018767622e-09 - qe_2333: - Im: 3.307070363192475e-09 - Re: 4.347775461429332e-09 - qe_3311: 9.327620654371782e-09 - qe_3312: - Im: 5.690680646980383e-09 - Re: 8.87960195211202e-09 - qe_3313: - Im: 8.823838936410777e-09 - Re: 1.0671317861129515e-09 - qe_3322: 5.8000640107849954e-09 - qe_3323: - Im: 4.898177629270555e-09 - Re: 1.8431085620066058e-09 - qe_3333: 4.7088503616547875e-09 - qq1_1111: 7.778834920303137e-09 - qq1_1112: - Im: 2.9538333353467785e-09 - Re: 6.562911395822824e-10 - qq1_1113: - Im: 5.370662333161982e-09 - Re: 7.94545636104585e-09 - qq1_1122: 4.601865583738853e-09 - qq1_1123: - Im: 8.627422143419742e-09 - Re: 6.822343901204456e-09 - qq1_1133: 5.8513544165963295e-09 - qq1_1212: - Im: 1.4465378606016577e-09 - Re: 9.540208856699128e-09 - qq1_1213: - Im: 5.882661837584659e-09 - Re: 8.917033999529393e-09 - qq1_1221: 9.076404224877701e-09 - qq1_1222: - Im: 7.21908154590073e-10 - Re: 3.6881780634922792e-09 - qq1_1223: - Im: 8.636210601880919e-09 - Re: 2.1708059155974423e-09 - qq1_1231: - Im: 3.0863409459124004e-09 - Re: 8.528391467221998e-09 - qq1_1232: - Im: 5.926533873954491e-09 - Re: 3.1028096442105925e-09 - qq1_1233: - Im: 2.4106583401168182e-09 - Re: 3.454046581055115e-10 - qq1_1313: - Im: 3.839689513431442e-09 - Re: 9.289598100945707e-09 - qq1_1322: - Im: 7.778286000544565e-09 - Re: 4.301066603077442e-09 - qq1_1323: - Im: 2.067261317285859e-09 - Re: 7.817841249169728e-09 - qq1_1331: 8.487020283856111e-09 - qq1_1332: - Im: 5.814052428179117e-11 - Re: 7.997783134264559e-09 - qq1_1333: - Im: 5.197814887967367e-10 - Re: 1.1908276278000285e-10 - qq1_2222: 9.560977590151354e-09 - qq1_2223: - Im: 7.28507697776722e-09 - Re: 1.5849785329969146e-09 - qq1_2233: 9.33636284984776e-09 - qq1_2323: - Im: 3.8411283977353606e-10 - Re: 7.869674300236604e-09 - qq1_2332: 9.795101749232374e-09 - qq1_2333: - Im: 4.029126170742553e-09 - Re: 2.877762295774818e-09 - qq1_3333: 2.675654988313967e-09 - qq3_1111: 9.94940739503485e-09 - qq3_1112: - Im: 1.6196488963494172e-09 - Re: 8.022188791859298e-09 - qq3_1113: - Im: 8.99079444169952e-09 - Re: 8.959642074638292e-09 - qq3_1122: 8.349454063312613e-09 - qq3_1123: - Im: 4.4082682273724685e-09 - Re: 4.317744903793065e-09 - qq3_1133: 9.223122024535195e-09 - qq3_1212: - Im: 2.954231868885293e-09 - Re: 5.9189853023106085e-09 - qq3_1213: - Im: 3.840714831252905e-09 - Re: 3.96479028631383e-09 - qq3_1221: 8.444243611740481e-09 - qq3_1222: - Im: 7.403672877483361e-09 - Re: 7.634060553451946e-09 - qq3_1223: - Im: 8.111065916521204e-09 - Re: 1.3112412701089926e-09 - qq3_1231: - Im: 3.299305383412432e-10 - Re: 9.616600621117052e-09 - qq3_1232: - Im: 8.547129072589078e-09 - Re: 4.727995172690681e-09 - qq3_1233: - Im: 7.5456285956021e-09 - Re: 8.333105153825003e-09 - qq3_1313: - Im: 9.871716625661333e-09 - Re: 1.959864497779098e-09 - qq3_1322: - Im: 6.3509822166393785e-09 - Re: 9.30344821592914e-09 - qq3_1323: - Im: 4.152936205128558e-09 - Re: 5.933978872500376e-09 - qq3_1331: 5.048913485894136e-10 - qq3_1332: - Im: 4.808919290746153e-09 - Re: 7.892111562984397e-09 - qq3_1333: - Im: 9.059964639669197e-09 - Re: 9.854483353508268e-09 - qq3_2222: 5.406385612599595e-10 - qq3_2223: - Im: 3.4386233171647063e-09 - Re: 2.994272336484516e-09 - qq3_2233: 4.04942166318095e-09 - qq3_2323: - Im: 8.423939328641539e-10 - Re: 3.1721067220422506e-09 - qq3_2332: 1.8164581821874404e-09 - qq3_2333: - Im: 1.4765198551847393e-09 - Re: 8.929810039808284e-10 - qq3_3333: 1.352106530681907e-10 - qqql_1111: - Im: 5.308021072139879e-09 - Re: 8.961043296944192e-09 - qqql_1112: - Im: 2.1065223627582673e-09 - Re: 9.913742820501378e-09 - qqql_1113: - Im: 8.620239390425577e-09 - Re: 3.5335563515913537e-09 - qqql_1121: - Im: 8.525305372031005e-09 - Re: 9.935672396296316e-09 - qqql_1122: - Im: 2.68953574063458e-09 - Re: 1.9723196601500913e-09 - qqql_1123: - Im: 7.300471930687917e-09 - Re: 7.442935808325383e-09 - qqql_1131: - Im: 8.459347917054294e-09 - Re: 1.4264220676609262e-09 - qqql_1132: - Im: 7.51276023945483e-10 - Re: 2.809087864284652e-09 - qqql_1133: - Im: 5.280379181740424e-10 - Re: 2.4103715934950243e-09 - qqql_1211: - Im: 8.163762554001097e-09 - Re: 5.447155450865038e-09 - qqql_1212: - Im: 7.524508789319684e-10 - Re: 6.701017160091257e-09 - qqql_1213: - Im: 9.837864749003678e-09 - Re: 9.730206161288246e-10 - qqql_1221: - Im: 2.8130764723468737e-09 - Re: 4.846917915114118e-09 - qqql_1222: - Im: 7.2277229224697604e-09 - Re: 1.7679955547441163e-09 - qqql_1223: - Im: 9.395010069380635e-09 - Re: 6.551859420199008e-09 - qqql_1231: - Im: 6.550171107290608e-09 - Re: 2.6915407296635386e-09 - qqql_1232: - Im: 2.6899438080278738e-09 - Re: 9.11808215500426e-10 - qqql_1233: - Im: 3.910447953960156e-09 - Re: 5.258469832290684e-09 - qqql_1311: - Im: 3.602762176343679e-09 - Re: 1.3278606494517042e-09 - qqql_1312: - Im: 2.5155745140444697e-09 - Re: 1.8326902316780225e-09 - qqql_1313: - Im: 6.138129902840566e-09 - Re: 5.957948050015128e-10 - qqql_1321: - Im: 7.570941041353862e-09 - Re: 5.70580678807782e-09 - qqql_1322: - Im: 2.9094152335147828e-09 - Re: 8.411635065442835e-09 - qqql_1323: - Im: 4.056193396237584e-10 - Re: 1.3616299509407126e-09 - qqql_1331: - Im: 1.2916015746426357e-09 - Re: 6.926105368680391e-09 - qqql_1332: - Im: 4.013559160169089e-10 - Re: 2.263560202490932e-09 - qqql_1333: - Im: 4.620893434042069e-09 - Re: 9.939173286150797e-09 - qqql_2121: - Im: 2.863550426768657e-10 - Re: 4.227329791800758e-09 - qqql_2122: - Im: 5.9946831686546566e-09 - Re: 4.316425058847478e-09 - qqql_2123: - Im: 4.954765123846281e-09 - Re: 9.017858304423507e-09 - qqql_2131: - Im: 2.4635286893604337e-09 - Re: 8.4149216832448e-09 - qqql_2132: - Im: 1.7169058771684142e-09 - Re: 2.6756621527700787e-09 - qqql_2133: - Im: 4.949736357043034e-09 - Re: 2.0461180196321328e-09 - qqql_2221: - Im: 6.755429010360297e-09 - Re: 1.4083873466402586e-09 - qqql_2222: - Im: 6.283569751784785e-09 - Re: 1.0788952620956915e-09 - qqql_2223: - Im: 8.876620744690405e-09 - Re: 7.220772669428638e-09 - qqql_2231: - Im: 4.350279761791627e-09 - Re: 7.134060414878504e-09 - qqql_2232: - Im: 5.503957212501084e-09 - Re: 3.5276832224313326e-10 - qqql_2233: - Im: 7.274787335683493e-09 - Re: 1.1056931636665357e-09 - qqql_2311: - Im: 7.214871227701684e-09 - Re: 7.1811895446619e-09 - qqql_2312: - Im: 3.6324722060699335e-09 - Re: 6.358148156869071e-10 - qqql_2313: - Im: 9.22213900995856e-09 - Re: 3.200390348937838e-09 - qqql_2321: - Im: 9.268091032144116e-09 - Re: 3.755231998957666e-09 - qqql_2322: - Im: 9.459888575580837e-09 - Re: 9.134510383537598e-10 - qqql_2323: - Im: 2.8176401217708824e-09 - Re: 2.0553586560486124e-09 - qqql_2331: - Im: 8.885045462010942e-09 - Re: 4.160538434631515e-09 - qqql_2332: - Im: 6.076629005602481e-09 - Re: 4.1423054393856975e-09 - qqql_2333: - Im: 3.878023908426756e-09 - Re: 3.827378154576505e-09 - qqql_3131: - Im: 2.014994839595259e-09 - Re: 4.243820051765259e-09 - qqql_3132: - Im: 5.207827998269684e-09 - Re: 6.613689106616955e-09 - qqql_3133: - Im: 7.435102452586553e-09 - Re: 9.389329098457521e-09 - qqql_3231: - Im: 8.038380477045781e-10 - Re: 6.147336194115224e-09 - qqql_3232: - Im: 6.929646893562252e-09 - Re: 2.176609072698589e-09 - qqql_3233: - Im: 4.992593909047249e-09 - Re: 8.321468307787043e-09 - qqql_3331: - Im: 4.167653682583058e-09 - Re: 1.1013030380166877e-09 - qqql_3332: - Im: 1.1070840177059616e-10 - Re: 3.842823066383984e-09 - qqql_3333: - Im: 4.666953260138957e-09 - Re: 8.552602241121108e-09 - qque_1111: - Im: 7.92947782014971e-09 - Re: 6.750440718062072e-09 - qque_1112: - Im: 9.902102305847781e-09 - Re: 8.877281859518862e-09 - qque_1113: - Im: 1.1760142776748261e-09 - Re: 2.486542318102628e-09 - qque_1121: - Im: 4.652740275724608e-09 - Re: 6.520055212185846e-09 - qque_1122: - Im: 6.863980110773642e-09 - Re: 5.46539960154538e-09 - qque_1123: - Im: 5.575567403330604e-09 - Re: 8.85593701439006e-09 - qque_1131: - Im: 8.212856735529198e-09 - Re: 6.434390780896406e-09 - qque_1132: - Im: 8.77211695417159e-09 - Re: 8.381446733148847e-09 - qque_1133: - Im: 4.832892103359734e-09 - Re: 4.027348068144933e-09 - qque_1211: - Im: 3.582940573334377e-09 - Re: 3.1613280665786947e-09 - qque_1212: - Im: 7.83837976496163e-09 - Re: 7.891267574105513e-09 - qque_1213: - Im: 2.1629564451787099e-10 - Re: 1.0488274129388598e-09 - qque_1221: - Im: 6.172454304518289e-09 - Re: 8.46726925443277e-09 - qque_1222: - Im: 9.825980375500269e-09 - Re: 8.807963427122639e-09 - qque_1223: - Im: 1.2256752462060606e-09 - Re: 8.069582585101615e-09 - qque_1231: - Im: 9.851718433061563e-09 - Re: 9.277279302388041e-09 - qque_1232: - Im: 8.21443521058678e-09 - Re: 3.841021973572771e-09 - qque_1233: - Im: 7.527844668644535e-11 - Re: 6.762367520434725e-09 - qque_1311: - Im: 3.6191864654705686e-09 - Re: 3.2323183837488844e-09 - qque_1312: - Im: 2.469904106197662e-10 - Re: 1.2209414174043542e-09 - qque_1313: - Im: 5.4140602804962515e-09 - Re: 4.942790952679782e-09 - qque_1321: - Im: 9.812247376258865e-10 - Re: 7.234061460336707e-09 - qque_1322: - Im: 4.486835739973272e-10 - Re: 8.6145192621953e-09 - qque_1323: - Im: 3.282231929127304e-09 - Re: 1.5130162624203446e-09 - qque_1331: - Im: 8.559055766730293e-09 - Re: 5.376182670593169e-09 - qque_1332: - Im: 1.4198425113236802e-09 - Re: 5.803022310928147e-09 - qque_1333: - Im: 1.2001617607669624e-09 - Re: 4.455623779886714e-09 - qque_2211: - Im: 1.7421231275737881e-09 - Re: 9.69060505859851e-09 - qque_2212: - Im: 4.215277059746161e-09 - Re: 9.385539939760838e-09 - qque_2213: - Im: 6.823724341513466e-09 - Re: 1.589062755990467e-11 - qque_2221: - Im: 5.483119756071405e-09 - Re: 4.751808439402238e-09 - qque_2222: - Im: 4.458739150974499e-09 - Re: 4.0921359982146165e-09 - qque_2223: - Im: 8.901517225695283e-09 - Re: 7.182391495484373e-09 - qque_2231: - Im: 3.4014816284515193e-09 - Re: 1.8573006690477024e-09 - qque_2232: - Im: 7.017352236135533e-11 - Re: 2.0034579752626135e-09 - qque_2233: - Im: 2.105742650474405e-09 - Re: 3.616850522973518e-09 - qque_2311: - Im: 5.822055393158859e-09 - Re: 3.68107496912603e-10 - qque_2312: - Im: 8.366977449245716e-09 - Re: 8.721628188328578e-09 - qque_2313: - Im: 9.900434433320975e-09 - Re: 2.0601270408345806e-10 - qque_2321: - Im: 9.469228414162482e-09 - Re: 2.28110162977353e-09 - qque_2322: - Im: 6.659837179005399e-09 - Re: 2.395747126646042e-09 - qque_2323: - Im: 7.282837725566133e-09 - Re: 5.278835566947928e-09 - qque_2331: - Im: 3.425395113191957e-09 - Re: 1.6786117224856056e-09 - qque_2332: - Im: 4.419600859567077e-09 - Re: 8.996196645014596e-09 - qque_2333: - Im: 3.5893087148688688e-09 - Re: 7.624267964897347e-10 - qque_3311: - Im: 1.5685048131663449e-09 - Re: 6.310769663700226e-09 - qque_3312: - Im: 6.2069905114002454e-09 - Re: 4.6802576873144655e-09 - qque_3313: - Im: 1.2397312358867097e-09 - Re: 3.006465940096209e-09 - qque_3321: - Im: 9.982504957011025e-09 - Re: 1.0176104329639246e-09 - qque_3322: - Im: 7.501233211448291e-09 - Re: 1.721683195577597e-09 - qque_3323: - Im: 5.128396740582744e-09 - Re: 9.779935929364164e-09 - qque_3331: - Im: 4.623105061514108e-09 - Re: 7.95980849305971e-09 - qque_3332: - Im: 5.392203284671931e-09 - Re: 8.588066738069411e-09 - qque_3333: - Im: 4.682795813180823e-09 - Re: 7.315815987734013e-09 - qu1_1111: 6.138690884229966e-09 - qu1_1112: - Im: 6.241492088447277e-09 - Re: 5.839706298293617e-09 - qu1_1113: - Im: 1.459493237776569e-09 - Re: 7.031816832382925e-09 - qu1_1122: 6.967577107853156e-09 - qu1_1123: - Im: 6.968493699682579e-09 - Re: 1.236339484192872e-09 - qu1_1133: 2.058146508177432e-09 - qu1_1211: - Im: 3.4713115603533807e-09 - Re: 4.3206986400875836e-10 - qu1_1212: - Im: 3.6921960994757666e-09 - Re: 8.001882501861742e-09 - qu1_1213: - Im: 2.355427092560358e-09 - Re: 5.712018572868405e-09 - qu1_1221: - Im: 3.369149931507671e-09 - Re: 2.8743246473195794e-09 - qu1_1222: - Im: 8.817352348066913e-09 - Re: 8.308026022260273e-09 - qu1_1223: - Im: 7.004735127760538e-09 - Re: 5.04320799003692e-09 - qu1_1231: - Im: 1.540750148032888e-09 - Re: 9.933520112847429e-09 - qu1_1232: - Im: 9.519373234961095e-09 - Re: 9.266962747898362e-09 - qu1_1233: - Im: 1.2097256672467815e-09 - Re: 4.556928213488374e-09 - qu1_1311: - Im: 4.388977339314147e-09 - Re: 7.907367095536727e-09 - qu1_1312: - Im: 4.7862285213939924e-09 - Re: 3.0123995792584403e-09 - qu1_1313: - Im: 5.392998347346671e-09 - Re: 7.805359828007639e-09 - qu1_1321: - Im: 1.2566689706579404e-09 - Re: 9.205685626851597e-09 - qu1_1322: - Im: 9.86847906268997e-09 - Re: 9.610630971379732e-09 - qu1_1323: - Im: 5.968473844530755e-09 - Re: 3.579407656271223e-09 - qu1_1331: - Im: 8.00439411773256e-09 - Re: 1.987081995833846e-09 - qu1_1332: - Im: 4.010113611682601e-09 - Re: 9.054895474884145e-09 - qu1_1333: - Im: 2.635117982720804e-09 - Re: 2.567158015070858e-10 - qu1_2211: 8.282492795831734e-09 - qu1_2212: - Im: 7.862686717358463e-09 - Re: 3.866415357985957e-09 - qu1_2213: - Im: 1.478644714457733e-09 - Re: 2.318122254132946e-09 - qu1_2222: 3.958063321266882e-09 - qu1_2223: - Im: 6.382965761669323e-09 - Re: 3.356709138592272e-09 - qu1_2233: 8.20608310730643e-09 - qu1_2311: - Im: 4.598277956132445e-09 - Re: 9.762614569670156e-09 - qu1_2312: - Im: 8.497472973223113e-09 - Re: 3.895894686949293e-09 - qu1_2313: - Im: 3.2112515908389083e-09 - Re: 7.647839002089238e-09 - qu1_2321: - Im: 9.514304898378244e-09 - Re: 2.808556172863195e-09 - qu1_2322: - Im: 6.781677312623335e-10 - Re: 2.803223272624971e-09 - qu1_2323: - Im: 6.9979264474540685e-09 - Re: 7.434149306644807e-09 - qu1_2331: - Im: 2.7893468914215704e-09 - Re: 6.281204027104959e-09 - qu1_2332: - Im: 7.52065971699193e-09 - Re: 9.445775279574016e-09 - qu1_2333: - Im: 3.170156223875855e-09 - Re: 1.894025219014368e-09 - qu1_3311: 9.022487306736595e-09 - qu1_3312: - Im: 9.702066501563112e-10 - Re: 6.5929241454375585e-09 - qu1_3313: - Im: 6.6160980754755285e-09 - Re: 5.676549473080589e-09 - qu1_3322: 4.88961199676049e-09 - qu1_3323: - Im: 4.844344020108235e-09 - Re: 2.5934266097949587e-09 - qu1_3333: 6.753463718031977e-09 - qu8_1111: 8.698010791116639e-10 - qu8_1112: - Im: 2.9438118405177637e-09 - Re: 7.859665480871354e-09 - qu8_1113: - Im: 3.4784531547935173e-09 - Re: 5.958075883353405e-09 - qu8_1122: 5.342664936841547e-09 - qu8_1123: - Im: 4.662395650389e-09 - Re: 1.078740874607488e-09 - qu8_1133: 2.9654626352414404e-09 - qu8_1211: - Im: 4.6369647264621897e-10 - Re: 6.368137487142623e-10 - qu8_1212: - Im: 4.613911835413142e-09 - Re: 8.143979063033858e-10 - qu8_1213: - Im: 3.6842906986764747e-09 - Re: 2.0115513855665244e-09 - qu8_1221: - Im: 5.061729804238192e-09 - Re: 9.841855713043085e-09 - qu8_1222: - Im: 4.864370546525539e-09 - Re: 5.151911827428646e-09 - qu8_1223: - Im: 4.419284172155552e-09 - Re: 8.57448477107044e-09 - qu8_1231: - Im: 7.043004221704507e-10 - Re: 5.449285104412282e-09 - qu8_1232: - Im: 1.9500231912639855e-09 - Re: 6.678380394027988e-09 - qu8_1233: - Im: 6.410515649305948e-10 - Re: 3.4441740832249213e-09 - qu8_1311: - Im: 4.978842119717109e-09 - Re: 3.3566138133509383e-09 - qu8_1312: - Im: 6.447691268128536e-09 - Re: 6.832144010530318e-09 - qu8_1313: - Im: 8.148977247335664e-09 - Re: 8.554611913419262e-09 - qu8_1321: - Im: 8.074343055320744e-09 - Re: 7.047605219839392e-10 - qu8_1322: - Im: 6.552321953727986e-09 - Re: 4.600233301158298e-09 - qu8_1323: - Im: 8.664628320617774e-09 - Re: 9.244537985693937e-09 - qu8_1331: - Im: 9.350177333914036e-09 - Re: 6.8025435748936505e-09 - qu8_1332: - Im: 1.7121628040896286e-09 - Re: 8.876147469079615e-09 - qu8_1333: - Im: 4.9497782460003585e-09 - Re: 8.720950667009448e-09 - qu8_2211: 8.732897964685804e-09 - qu8_2212: - Im: 5.361707363272996e-09 - Re: 8.833246516030714e-09 - qu8_2213: - Im: 1.2690502012041071e-09 - Re: 4.823316263213349e-09 - qu8_2222: 7.0456450637034645e-09 - qu8_2223: - Im: 3.231652999858291e-09 - Re: 9.071678119347432e-09 - qu8_2233: 9.204696173761617e-09 - qu8_2311: - Im: 9.357016647155953e-09 - Re: 6.238220789273083e-09 - qu8_2312: - Im: 2.1523694186680378e-09 - Re: 4.395924869855765e-09 - qu8_2313: - Im: 8.205198266062708e-09 - Re: 1.2704838187659828e-09 - qu8_2321: - Im: 9.399729301136048e-09 - Re: 2.2476671908746294e-09 - qu8_2322: - Im: 2.999471826383715e-09 - Re: 8.977858668787561e-09 - qu8_2323: - Im: 5.779943595124517e-09 - Re: 3.2619313268744423e-09 - qu8_2331: - Im: 7.575722470997023e-09 - Re: 3.538277772424968e-09 - qu8_2332: - Im: 5.073039128685474e-09 - Re: 1.1385730496072454e-09 - qu8_2333: - Im: 7.0169545943630905e-09 - Re: 3.6714108518309797e-09 - qu8_3311: 1.7485183958443995e-09 - qu8_3312: - Im: 9.291563715868006e-09 - Re: 5.603734000052318e-11 - qu8_3313: - Im: 2.8077417825827277e-09 - Re: 1.1556545586564681e-09 - qu8_3322: 3.375318784635739e-09 - qu8_3323: - Im: 6.297810911819901e-10 - Re: 1.0039222636484146e-09 - qu8_3333: 4.834425520568302e-09 - quqd1_1111: - Im: 7.074795200361906e-10 - Re: 3.735532308474652e-09 - quqd1_1112: - Im: 3.2425524103215544e-09 - Re: 5.4151134924832135e-09 - quqd1_1113: - Im: 3.2181944877232904e-09 - Re: 7.19511691466356e-09 - quqd1_1121: - Im: 7.107842634221084e-09 - Re: 4.666105955617858e-09 - quqd1_1122: - Im: 9.725788778001376e-09 - Re: 8.385311774018681e-09 - quqd1_1123: - Im: 8.079865504989584e-09 - Re: 1.1126043183983615e-09 - quqd1_1131: - Im: 8.488758958207072e-09 - Re: 9.445197822848445e-09 - quqd1_1132: - Im: 4.557572740917857e-09 - Re: 7.324524045700133e-09 - quqd1_1133: - Im: 6.6285625970737565e-09 - Re: 2.638705946597143e-09 - quqd1_1211: - Im: 3.1382655218328917e-09 - Re: 3.591540406037549e-09 - quqd1_1212: - Im: 4.398028042238414e-09 - Re: 3.6039064363435226e-09 - quqd1_1213: - Im: 3.339322642489939e-09 - Re: 5.3296145488962945e-09 - quqd1_1221: - Im: 7.1525578687549184e-09 - Re: 6.426671042527776e-10 - quqd1_1222: - Im: 6.046870346243272e-10 - Re: 5.1511020299675545e-09 - quqd1_1223: - Im: 7.60164241903013e-09 - Re: 7.014802504199973e-09 - quqd1_1231: - Im: 6.762430137814099e-09 - Re: 8.580779355051217e-09 - quqd1_1232: - Im: 1.2235254814539554e-09 - Re: 1.0868918286431352e-09 - quqd1_1233: - Im: 9.948114196589664e-09 - Re: 7.4474340626353855e-09 - quqd1_1311: - Im: 6.934393207988167e-09 - Re: 8.791667815790304e-09 - quqd1_1312: - Im: 4.205973258005746e-09 - Re: 9.61509962232234e-09 - quqd1_1313: - Im: 8.343470292061311e-09 - Re: 3.9266227857424965e-09 - quqd1_1321: - Im: 5.800960256085638e-09 - Re: 5.514762494386952e-09 - quqd1_1322: - Im: 4.781294195411424e-09 - Re: 6.408607893438982e-09 - quqd1_1323: - Im: 3.5976793115017414e-09 - Re: 6.331679933341316e-09 - quqd1_1331: - Im: 6.988742888337434e-09 - Re: 8.687386324262936e-10 - quqd1_1332: - Im: 1.0155775529625078e-09 - Re: 1.0845886348093315e-09 - quqd1_1333: - Im: 1.01804043117251e-09 - Re: 2.153043627193131e-09 - quqd1_2111: - Im: 4.996321121733061e-10 - Re: 5.701887619348134e-10 - quqd1_2112: - Im: 3.058015254108846e-09 - Re: 7.806222705663066e-09 - quqd1_2113: - Im: 2.2362165067886574e-10 - Re: 8.586604612574625e-09 - quqd1_2121: - Im: 1.6665580596127605e-09 - Re: 3.8423862373044415e-09 - quqd1_2122: - Im: 4.798135324495758e-09 - Re: 2.954606525454181e-09 - quqd1_2123: - Im: 9.49786145859258e-09 - Re: 8.812349192404118e-09 - quqd1_2131: - Im: 1.0462984986484091e-09 - Re: 3.0674895021004746e-09 - quqd1_2132: - Im: 6.81724077060738e-09 - Re: 6.686645518807978e-09 - quqd1_2133: - Im: 4.532742468620927e-09 - Re: 1.7518171256152127e-09 - quqd1_2211: - Im: 6.313933347351293e-09 - Re: 8.018882958018277e-09 - quqd1_2212: - Im: 1.3393857875917692e-09 - Re: 9.919984145455959e-09 - quqd1_2213: - Im: 1.5536238560291793e-09 - Re: 4.391821010007626e-09 - quqd1_2221: - Im: 5.97993816688988e-09 - Re: 2.177762566768533e-09 - quqd1_2222: - Im: 6.263187327062727e-09 - Re: 6.968028472216802e-09 - quqd1_2223: - Im: 8.721287258903781e-09 - Re: 4.361609690547184e-09 - quqd1_2231: - Im: 9.406339588303005e-09 - Re: 5.612273908899185e-09 - quqd1_2232: - Im: 9.303895108890803e-09 - Re: 8.214780877668892e-09 - quqd1_2233: - Im: 3.3250430131945863e-09 - Re: 6.264988317616351e-09 - quqd1_2311: - Im: 4.165358585731274e-09 - Re: 3.0011406425457933e-09 - quqd1_2312: - Im: 2.1887794173090357e-09 - Re: 4.7228716698186444e-09 - quqd1_2313: - Im: 6.48072036928928e-09 - Re: 5.4529145460038865e-09 - quqd1_2321: - Im: 1.9015751578330444e-09 - Re: 6.392651043233743e-10 - quqd1_2322: - Im: 3.980015960512973e-10 - Re: 2.0108896236739937e-09 - quqd1_2323: - Im: 3.1033729267461443e-09 - Re: 1.985984376129879e-10 - quqd1_2331: - Im: 5.165068875918067e-10 - Re: 4.370918523744037e-09 - quqd1_2332: - Im: 3.3738976009985577e-09 - Re: 9.12131433335583e-09 - quqd1_2333: - Im: 5.022060813640772e-09 - Re: 4.202244462709377e-09 - quqd1_3111: - Im: 8.136668294798631e-09 - Re: 7.36874423140204e-09 - quqd1_3112: - Im: 3.550105178216505e-09 - Re: 2.8807541064703346e-09 - quqd1_3113: - Im: 4.607253683865361e-09 - Re: 7.023059257496933e-10 - quqd1_3121: - Im: 4.619114926399133e-09 - Re: 2.3347130841164467e-09 - quqd1_3122: - Im: 2.26742080725722e-09 - Re: 5.778364658137849e-09 - quqd1_3123: - Im: 6.250399569209392e-09 - Re: 7.079421753528813e-09 - quqd1_3131: - Im: 8.597944407350437e-09 - Re: 3.3867306625957593e-09 - quqd1_3132: - Im: 3.5224822809916368e-09 - Re: 1.5563910994358876e-09 - quqd1_3133: - Im: 5.466382106777343e-09 - Re: 4.815892016785951e-09 - quqd1_3211: - Im: 7.402820748552651e-09 - Re: 7.238418229720773e-09 - quqd1_3212: - Im: 2.604461139382861e-09 - Re: 3.008446636859553e-09 - quqd1_3213: - Im: 6.827872358166576e-10 - Re: 6.375883799192641e-09 - quqd1_3221: - Im: 9.352871650433677e-09 - Re: 1.7651168825996055e-09 - quqd1_3222: - Im: 4.753213315586994e-09 - Re: 4.974218563324911e-09 - quqd1_3223: - Im: 8.822883921783838e-09 - Re: 1.6646986736931934e-09 - quqd1_3231: - Im: 9.861715536849275e-09 - Re: 1.9925645845665586e-09 - quqd1_3232: - Im: 6.251841702227686e-09 - Re: 7.883983495173285e-09 - quqd1_3233: - Im: 8.337912842202777e-10 - Re: 9.013246145754652e-09 - quqd1_3311: - Im: 7.596055063712219e-09 - Re: 4.1548662300289676e-09 - quqd1_3312: - Im: 8.855068871762932e-09 - Re: 8.488332417898859e-10 - quqd1_3313: - Im: 2.0444559512700677e-09 - Re: 4.922790787541186e-09 - quqd1_3321: - Im: 5.243372296710272e-09 - Re: 2.2323797872964203e-09 - quqd1_3322: - Im: 8.651540073710365e-09 - Re: 3.6040871738537262e-09 - quqd1_3323: - Im: 5.236308748170174e-09 - Re: 4.436840076807529e-09 - quqd1_3331: - Im: 4.9595474413711305e-09 - Re: 5.0734663731352375e-09 - quqd1_3332: - Im: 8.562794287283575e-09 - Re: 6.275311080563471e-09 - quqd1_3333: - Im: 5.338487482829524e-10 - Re: 1.3203271607118095e-09 - quqd8_1111: - Im: 6.500121872197113e-09 - Re: 7.0163146742658e-09 - quqd8_1112: - Im: 9.221456921176613e-09 - Re: 1.4997314981538013e-09 - quqd8_1113: - Im: 6.624905530777772e-09 - Re: 3.201592125142927e-10 - quqd8_1121: - Im: 9.655296361908188e-09 - Re: 8.589628697478709e-09 - quqd8_1122: - Im: 1.0571879441515364e-09 - Re: 5.275899457432851e-09 - quqd8_1123: - Im: 3.677277677964521e-09 - Re: 2.75808832913481e-09 - quqd8_1131: - Im: 5.751937450611604e-09 - Re: 9.253853233574564e-09 - quqd8_1132: - Im: 1.6983191924035334e-09 - Re: 9.161435544570669e-09 - quqd8_1133: - Im: 2.69997708906779e-09 - Re: 2.5170690031962664e-09 - quqd8_1211: - Im: 8.017673881154332e-09 - Re: 2.107992580727636e-09 - quqd8_1212: - Im: 1.25541394323065e-09 - Re: 8.501016013733785e-09 - quqd8_1213: - Im: 6.615246537880947e-09 - Re: 6.7322927462583306e-09 - quqd8_1221: - Im: 4.0320198160799095e-09 - Re: 6.827596799479848e-09 - quqd8_1222: - Im: 4.623751695532492e-09 - Re: 2.1007765746365724e-09 - quqd8_1223: - Im: 1.9205479745467635e-09 - Re: 8.52711603720863e-09 - quqd8_1231: - Im: 4.837510363351567e-09 - Re: 9.98598659073381e-10 - quqd8_1232: - Im: 5.680610570988221e-09 - Re: 8.261542051097945e-09 - quqd8_1233: - Im: 8.140119760479738e-09 - Re: 6.831246666872656e-09 - quqd8_1311: - Im: 4.7403443601211995e-09 - Re: 4.712574537876393e-09 - quqd8_1312: - Im: 3.962451636133448e-09 - Re: 8.85015487440713e-09 - quqd8_1313: - Im: 6.396080387920375e-09 - Re: 3.883183218602316e-09 - quqd8_1321: - Im: 1.1122654369480312e-09 - Re: 9.47610527919495e-09 - quqd8_1322: - Im: 7.535145887016247e-09 - Re: 7.72352428183092e-09 - quqd8_1323: - Im: 7.599619985840918e-09 - Re: 7.314863417493228e-09 - quqd8_1331: - Im: 3.6715480846476424e-09 - Re: 1.6582399584375374e-09 - quqd8_1332: - Im: 2.415433463967488e-09 - Re: 5.80794720914543e-09 - quqd8_1333: - Im: 3.9686474935350326e-09 - Re: 8.563943483903525e-09 - quqd8_2111: - Im: 9.564999793058805e-09 - Re: 2.476439989118362e-10 - quqd8_2112: - Im: 9.243980747782529e-09 - Re: 9.094828012802067e-09 - quqd8_2113: - Im: 8.080817312837285e-09 - Re: 9.360099753472564e-09 - quqd8_2121: - Im: 1.7420077031293357e-09 - Re: 9.09539130629917e-09 - quqd8_2122: - Im: 2.9463574916535207e-09 - Re: 1.7621876004472216e-09 - quqd8_2123: - Im: 1.6876800976293272e-09 - Re: 2.6742890231772563e-10 - quqd8_2131: - Im: 9.020055863634411e-09 - Re: 9.07673299822821e-09 - quqd8_2132: - Im: 6.870403376854258e-09 - Re: 6.40536398706081e-09 - quqd8_2133: - Im: 1.9595147733989227e-09 - Re: 8.532916518269322e-09 - quqd8_2211: - Im: 2.7538317128770464e-09 - Re: 4.913059198711104e-09 - quqd8_2212: - Im: 5.623040577904014e-09 - Re: 6.453636821864828e-10 - quqd8_2213: - Im: 1.8550945733992298e-09 - Re: 2.7547503618344593e-09 - quqd8_2221: - Im: 5.6568730512844815e-09 - Re: 1.3272438461166125e-09 - quqd8_2222: - Im: 9.185676514186228e-09 - Re: 8.065762631647538e-09 - quqd8_2223: - Im: 8.186178647189635e-10 - Re: 4.365621704642534e-09 - quqd8_2231: - Im: 6.010278602006458e-09 - Re: 5.237137984474276e-09 - quqd8_2232: - Im: 2.5132859200743595e-10 - Re: 3.3989298474034825e-09 - quqd8_2233: - Im: 7.643859789298548e-09 - Re: 5.92487762876233e-09 - quqd8_2311: - Im: 2.330371812950884e-09 - Re: 9.674363102305573e-09 - quqd8_2312: - Im: 7.692407647910522e-09 - Re: 3.539504930506989e-09 - quqd8_2313: - Im: 3.406262220207705e-09 - Re: 8.3970942507757e-09 - quqd8_2321: - Im: 2.6339481395640965e-09 - Re: 9.016925770260258e-09 - quqd8_2322: - Im: 8.717073276146918e-09 - Re: 2.6878264330505518e-09 - quqd8_2323: - Im: 8.353123568154754e-09 - Re: 2.215931615118555e-09 - quqd8_2331: - Im: 6.029962986271308e-09 - Re: 1.8948843615945444e-09 - quqd8_2332: - Im: 7.659309790994548e-09 - Re: 9.9217819608032e-09 - quqd8_2333: - Im: 8.47805154536696e-09 - Re: 4.19121148498105e-09 - quqd8_3111: - Im: 5.762227926483521e-10 - Re: 9.328338000549075e-09 - quqd8_3112: - Im: 6.209650875051256e-09 - Re: 1.6214945861416753e-09 - quqd8_3113: - Im: 8.526023718300414e-09 - Re: 1.610177794523282e-10 - quqd8_3121: - Im: 5.47389306823396e-09 - Re: 7.882579813694075e-09 - quqd8_3122: - Im: 9.822172362592186e-10 - Re: 4.5629544534023035e-09 - quqd8_3123: - Im: 7.027334157167512e-09 - Re: 3.605724430986087e-09 - quqd8_3131: - Im: 8.965975486234968e-09 - Re: 2.782844745649896e-09 - quqd8_3132: - Im: 9.85658245248095e-09 - Re: 1.3130289555975827e-09 - quqd8_3133: - Im: 4.5431424035393355e-10 - Re: 2.5304498212288327e-09 - quqd8_3211: - Im: 9.581136246124856e-10 - Re: 5.367194184694074e-09 - quqd8_3212: - Im: 2.9634722193169617e-09 - Re: 3.5534660039697763e-09 - quqd8_3213: - Im: 8.858563626855976e-10 - Re: 8.790809024173474e-09 - quqd8_3221: - Im: 6.760600273688412e-09 - Re: 4.2793117606194125e-09 - quqd8_3222: - Im: 7.325905547096522e-09 - Re: 1.7977204750107013e-09 - quqd8_3223: - Im: 7.634628785762173e-09 - Re: 8.284735894716385e-09 - quqd8_3231: - Im: 6.263134658819935e-10 - Re: 1.3880161614176777e-09 - quqd8_3232: - Im: 5.454209202989002e-11 - Re: 5.366136286546295e-09 - quqd8_3233: - Im: 7.008361034773531e-09 - Re: 1.993389459089846e-09 - quqd8_3311: - Im: 3.4600120421263483e-09 - Re: 9.418842089880649e-09 - quqd8_3312: - Im: 7.267019991000568e-10 - Re: 3.376598010267491e-09 - quqd8_3313: - Im: 3.5200986811926606e-09 - Re: 3.439046309651024e-09 - quqd8_3321: - Im: 5.899792479689834e-09 - Re: 9.785158379571925e-09 - quqd8_3322: - Im: 8.229835626710425e-09 - Re: 9.169304311080369e-09 - quqd8_3323: - Im: 4.604274846149169e-09 - Re: 2.994675884042647e-09 - quqd8_3331: - Im: 5.515857163991918e-09 - Re: 8.097208052332225e-09 - quqd8_3332: - Im: 8.016634810339989e-09 - Re: 2.1177546508559986e-09 - quqd8_3333: - Im: 1.688512362526733e-09 - Re: 6.956032712253395e-09 - uB_11: - Im: 8.910973812142533e-09 - Re: 8.310592716286195e-09 - uB_12: - Im: 6.407159919539146e-09 - Re: 1.2404564038199784e-11 - uB_13: - Im: 6.1744461154462425e-09 - Re: 5.597116506044265e-09 - uB_21: - Im: 1.8637063887110696e-09 - Re: 7.958093677997908e-09 - uB_22: - Im: 6.224146227141153e-09 - Re: 6.290946109116522e-09 - uB_23: - Im: 9.73468320313246e-09 - Re: 1.3381067953812365e-09 - uB_31: - Im: 9.465428050496145e-09 - Re: 1.2961797974477029e-09 - uB_32: - Im: 7.224967908569962e-09 - Re: 4.763595802065155e-09 - uB_33: - Im: 7.614288515270518e-10 - Re: 1.5045412563374172e-09 - uG_11: - Im: 9.629276537389457e-09 - Re: 8.252446398273939e-09 - uG_12: - Im: 7.0142844222965985e-09 - Re: 2.818030995402496e-09 - uG_13: - Im: 1.762069563574491e-09 - Re: 2.049622105016957e-09 - uG_21: - Im: 2.776809092731267e-09 - Re: 2.4904374343082836e-09 - uG_22: - Im: 3.6031229045900425e-09 - Re: 9.665236697497744e-09 - uG_23: - Im: 2.2058667978493686e-09 - Re: 7.62484695737267e-09 - uG_31: - Im: 9.457140261984639e-09 - Re: 7.762214828635015e-09 - uG_32: - Im: 7.108211900781227e-09 - Re: 7.924093384320764e-09 - uG_33: - Im: 1.3233404454197573e-09 - Re: 9.19309587833594e-09 - uW_11: - Im: 8.219240904644807e-09 - Re: 1.3757935392136622e-09 - uW_12: - Im: 2.2947868750494695e-09 - Re: 1.0213071466664336e-09 - uW_13: - Im: 7.659862038800364e-09 - Re: 4.66907262302721e-09 - uW_21: - Im: 7.546533305292543e-09 - Re: 7.528534479239756e-09 - uW_22: - Im: 9.294180643489527e-09 - Re: 2.137649026064483e-09 - uW_23: - Im: 8.579419094019307e-09 - Re: 6.947419743603602e-09 - uW_31: - Im: 5.203756069219807e-09 - Re: 6.8629347028860016e-09 - uW_32: - Im: 4.651282033592332e-09 - Re: 1.963398898373083e-09 - uW_33: - Im: 3.3231235246908643e-09 - Re: 8.669588650617197e-09 - ud1_1111: 4.89681433769507e-09 - ud1_1112: - Im: 4.150174901759496e-10 - Re: 9.33748623611202e-09 - ud1_1113: - Im: 8.514626928034414e-09 - Re: 4.609658627154534e-10 - ud1_1122: 3.94029475407183e-09 - ud1_1123: - Im: 1.8005017282454961e-09 - Re: 9.755895725629367e-09 - ud1_1133: 6.17337744290401e-09 - ud1_1211: - Im: 3.6404422915388926e-09 - Re: 7.067881077750475e-09 - ud1_1212: - Im: 5.1207163470586e-09 - Re: 6.625479512810484e-10 - ud1_1213: - Im: 3.8471974120603437e-10 - Re: 9.51376673418095e-09 - ud1_1221: - Im: 6.551427399838255e-09 - Re: 9.026509148891333e-09 - ud1_1222: - Im: 1.1964754034213888e-09 - Re: 6.119374226494024e-10 - ud1_1223: - Im: 2.2550261415688332e-09 - Re: 8.38965704415359e-09 - ud1_1231: - Im: 2.7689240246912185e-09 - Re: 1.7630813982953353e-09 - ud1_1232: - Im: 3.3529873959185453e-09 - Re: 6.588712042647136e-09 - ud1_1233: - Im: 8.62780143049558e-09 - Re: 2.303847130950085e-09 - ud1_1311: - Im: 5.663503682639667e-09 - Re: 9.384730088611426e-09 - ud1_1312: - Im: 3.8901093463979946e-09 - Re: 5.918522785130338e-09 - ud1_1313: - Im: 5.05554630033149e-09 - Re: 8.424534404614425e-09 - ud1_1321: - Im: 4.678501708918864e-09 - Re: 7.898313345186691e-09 - ud1_1322: - Im: 4.406731062795439e-09 - Re: 4.0756126408574764e-09 - ud1_1323: - Im: 3.1929093547142476e-09 - Re: 8.028881693619535e-09 - ud1_1331: - Im: 2.884041038891949e-11 - Re: 4.8220442430717214e-09 - ud1_1332: - Im: 8.625169344663854e-09 - Re: 5.529662430679747e-09 - ud1_1333: - Im: 8.204578762923794e-09 - Re: 4.044949740589079e-09 - ud1_2211: 8.128667324318317e-10 - ud1_2212: - Im: 5.205449616532223e-09 - Re: 1.0541820962843552e-09 - ud1_2213: - Im: 8.232670398171245e-09 - Re: 5.065293208602222e-09 - ud1_2222: 2.331627859404678e-09 - ud1_2223: - Im: 6.835931414290673e-09 - Re: 4.789558478220567e-09 - ud1_2233: 7.144977006794651e-09 - ud1_2311: - Im: 2.9832061635956697e-09 - Re: 8.525224891806208e-09 - ud1_2312: - Im: 9.231559325234519e-09 - Re: 1.0618400020675122e-09 - ud1_2313: - Im: 1.7751819250382716e-09 - Re: 6.861817213286056e-09 - ud1_2321: - Im: 5.007799990952928e-09 - Re: 6.564662173555459e-09 - ud1_2322: - Im: 2.713656644412514e-09 - Re: 9.073370577840023e-10 - ud1_2323: - Im: 7.539801006931488e-09 - Re: 2.810852682930298e-10 - ud1_2331: - Im: 1.5085612426978035e-10 - Re: 5.138625291941256e-09 - ud1_2332: - Im: 8.685358605176389e-09 - Re: 8.971699857139214e-09 - ud1_2333: - Im: 2.288928131820506e-09 - Re: 1.281626050347574e-09 - ud1_3311: 9.507056232635268e-09 - ud1_3312: - Im: 3.127060283695804e-09 - Re: 2.9955390972914685e-09 - ud1_3313: - Im: 1.114323181824517e-09 - Re: 3.713921190104639e-09 - ud1_3322: 8.215847648739975e-09 - ud1_3323: - Im: 9.777619923295677e-09 - Re: 5.525430771706862e-09 - ud1_3333: 6.925644351327879e-09 - ud8_1111: 7.121217555815122e-09 - ud8_1112: - Im: 2.8504305562156806e-09 - Re: 5.113914651717214e-09 - ud8_1113: - Im: 4.7827518631256e-09 - Re: 5.169639493811479e-09 - ud8_1122: 9.091967112974168e-09 - ud8_1123: - Im: 3.1186970426195772e-09 - Re: 2.794103258506164e-10 - ud8_1133: 9.902826032254361e-09 - ud8_1211: - Im: 1.3122734335831576e-09 - Re: 7.695146873347835e-09 - ud8_1212: - Im: 6.585419974769079e-09 - Re: 5.2735703677898435e-09 - ud8_1213: - Im: 7.08724932057903e-09 - Re: 8.713051252061646e-09 - ud8_1221: - Im: 7.398071607879505e-09 - Re: 1.6643344202218912e-09 - ud8_1222: - Im: 9.591268425963567e-09 - Re: 4.67342802106584e-09 - ud8_1223: - Im: 6.0982240155397364e-09 - Re: 5.24746278158104e-09 - ud8_1231: - Im: 6.765676695181231e-09 - Re: 9.813395693134724e-09 - ud8_1232: - Im: 2.2917330362937596e-09 - Re: 3.238746459342079e-09 - ud8_1233: - Im: 4.849601646513039e-09 - Re: 4.385065706072262e-09 - ud8_1311: - Im: 4.556971740075167e-09 - Re: 8.256210092018712e-09 - ud8_1312: - Im: 4.464246138226405e-09 - Re: 7.682817963449984e-10 - ud8_1313: - Im: 1.7148682703137552e-09 - Re: 5.0607264530628375e-09 - ud8_1321: - Im: 6.295567952124735e-09 - Re: 2.7484017043950173e-09 - ud8_1322: - Im: 8.930790611872796e-09 - Re: 4.412421764919081e-09 - ud8_1323: - Im: 3.0390327597301095e-09 - Re: 6.042354704388376e-10 - ud8_1331: - Im: 1.7735229368058881e-09 - Re: 4.784226813709269e-10 - ud8_1332: - Im: 5.076004657808479e-09 - Re: 1.875156044199584e-09 - ud8_1333: - Im: 1.5264407375646572e-09 - Re: 3.567402681560239e-10 - ud8_2211: 6.603310144202953e-09 - ud8_2212: - Im: 8.443337519490002e-10 - Re: 6.339773162594564e-09 - ud8_2213: - Im: 4.776222231993291e-09 - Re: 2.268340212012138e-09 - ud8_2222: 1.573742064022724e-09 - ud8_2223: - Im: 3.2040242774303063e-09 - Re: 3.8170559219105635e-09 - ud8_2233: 1.0191096546553258e-10 - ud8_2311: - Im: 2.718741542935754e-10 - Re: 9.49453882804794e-09 - ud8_2312: - Im: 1.3174322202019585e-09 - Re: 9.76201253742675e-09 - ud8_2313: - Im: 5.798993522640317e-09 - Re: 3.6032729421237444e-09 - ud8_2321: - Im: 1.3429329990637974e-09 - Re: 2.562599707713673e-09 - ud8_2322: - Im: 3.982218478516153e-09 - Re: 2.040658337743255e-09 - ud8_2323: - Im: 9.470847962701672e-09 - Re: 9.602840474274396e-09 - ud8_2331: - Im: 3.826076148156869e-09 - Re: 6.319959755038822e-09 - ud8_2332: - Im: 8.964012210751099e-09 - Re: 7.226028505213388e-09 - ud8_2333: - Im: 1.4967638118864134e-09 - Re: 1.3987423306145819e-09 - ud8_3311: 9.66268371945964e-09 - ud8_3312: - Im: 8.474499789499876e-09 - Re: 2.3386787662892063e-09 - ud8_3313: - Im: 2.6277239271918164e-10 - Re: 3.5523982516007636e-10 - ud8_3322: 3.001355048673956e-09 - ud8_3323: - Im: 6.878551725789408e-09 - Re: 8.352602652802265e-09 - ud8_3333: 2.686633756006488e-09 - uphi_11: - Im: 5.106243496158314e-09 - Re: 7.467779892414574e-09 - uphi_12: - Im: 7.335899190910795e-09 - Re: 5.757226198935949e-10 - uphi_13: - Im: 3.765418108349299e-09 - Re: 9.435836228421135e-10 - uphi_21: - Im: 6.1010295442752e-09 - Re: 5.343581707210578e-09 - uphi_22: - Im: 5.428690992363072e-10 - Re: 5.379250063273057e-09 - uphi_23: - Im: 6.5275515525602646e-09 - Re: 9.394214481585719e-09 - uphi_31: - Im: 9.545501691602062e-09 - Re: 4.421891562364205e-09 - uphi_32: - Im: 8.922102668671363e-09 - Re: 8.224080744336415e-10 - uphi_33: - Im: 4.7979813581510154e-09 - Re: 6.354709873931106e-09 - uu_1111: 5.109924324425678e-09 - uu_1112: - Im: 9.59416716791598e-09 - Re: 8.738986280096332e-09 - uu_1113: - Im: 9.682143248730672e-09 - Re: 7.861737791743214e-09 - uu_1122: 3.2288533942812702e-09 - uu_1123: - Im: 9.619235734012579e-09 - Re: 4.631900321141146e-09 - uu_1133: 9.137480114518856e-09 - uu_1212: - Im: 4.636669287584218e-09 - Re: 7.186694836055102e-09 - uu_1213: - Im: 2.6040025525985388e-09 - Re: 5.255573033206583e-09 - uu_1221: 7.590273287887965e-09 - uu_1222: - Im: 3.9111475708266676e-10 - Re: 9.376731437999206e-09 - uu_1223: - Im: 5.7605288242408535e-09 - Re: 1.6421285063056068e-10 - uu_1231: - Im: 8.671660842494176e-09 - Re: 5.4138242043559694e-09 - uu_1232: - Im: 4.6306584815377975e-09 - Re: 9.006899146335573e-09 - uu_1233: - Im: 6.505602305862848e-09 - Re: 1.4501472728842802e-09 - uu_1313: - Im: 4.283826409133005e-09 - Re: 9.341788082905e-10 - uu_1322: - Im: 3.284458182608191e-09 - Re: 6.393240875905861e-09 - uu_1323: - Im: 5.443369060200261e-09 - Re: 6.5338810818547015e-09 - uu_1331: 8.598181393413697e-09 - uu_1332: - Im: 4.254855707591865e-09 - Re: 9.811825400825191e-09 - uu_1333: - Im: 8.288016141847243e-10 - Re: 2.1540071330445666e-10 - uu_2222: 3.0815780166459016e-09 - uu_2223: - Im: 8.326069534772652e-09 - Re: 7.285496839325754e-09 - uu_2233: 4.379888787576519e-09 - uu_2323: - Im: 8.315923101648053e-09 - Re: 9.856156823798288e-09 - uu_2332: 3.760667779775433e-09 - uu_2333: - Im: 5.041100622608575e-09 - Re: 3.2707778288049108e-09 - uu_3333: 9.169625252012162e-09 diff --git a/wcxf/data/test.Warsaw_mass_incomplete.yml b/wcxf/data/test.Warsaw_mass_incomplete.yml deleted file mode 100644 index b046cb9..0000000 --- a/wcxf/data/test.Warsaw_mass_incomplete.yml +++ /dev/null @@ -1,11 +0,0 @@ -basis: Warsaw mass -eft: SMEFT -scale: 160.0 -values: - G: 9.298977469992998e-09 - Gtilde: 3.3033200969269584e-09 - W: 3.818508801650694e-09 - Wtilde: 9.005842974540492e-09 - dB_11: - Im: 7.088804605377087e-09 - Re: 4.440182014344588e-09 diff --git a/wcxf/data/test.basis1.yml b/wcxf/data/test.basis1.yml deleted file mode 100644 index aeab33a..0000000 --- a/wcxf/data/test.basis1.yml +++ /dev/null @@ -1,12 +0,0 @@ -eft: MyEFT -basis: MyBasis 1 -sectors: - My Sector 1: - C_1: - real: true - C_2: - My Sector 2: - C_3: - My Sector 3: - C_4: - real: true diff --git a/wcxf/data/test.basis2.yml b/wcxf/data/test.basis2.yml deleted file mode 100644 index 05a353e..0000000 --- a/wcxf/data/test.basis2.yml +++ /dev/null @@ -1,4 +0,0 @@ -eft: MyEFT -basis: MyBasis 2 -parent: MyBasis 1 -sectors: {} diff --git a/wcxf/data/test.basis3.yml b/wcxf/data/test.basis3.yml deleted file mode 100644 index 269f0fe..0000000 --- a/wcxf/data/test.basis3.yml +++ /dev/null @@ -1,7 +0,0 @@ -eft: MyEFT -basis: MyBasis 2 -parent: MyBasis 1 -sectors: - My Sector 1: - C_1: - real: true diff --git a/wcxf/data/test.eft.yml b/wcxf/data/test.eft.yml deleted file mode 100644 index 6c6dd7b..0000000 --- a/wcxf/data/test.eft.yml +++ /dev/null @@ -1,5 +0,0 @@ -eft: MyEFT -sectors: - My Sector 1: - My Sector 2: - My Sector 3: diff --git a/wcxf/data/test.otherbasis1.yml b/wcxf/data/test.otherbasis1.yml deleted file mode 100644 index 24f3f08..0000000 --- a/wcxf/data/test.otherbasis1.yml +++ /dev/null @@ -1,12 +0,0 @@ -eft: MyOtherEFT -basis: MyOtherBasis 1 -sectors: - My other Sector 1: - D_1: - real: true - D_2: - My other Sector 2: - D_3: - My other Sector 3: - D_4: - real: true diff --git a/wcxf/data/test.othereft.yml b/wcxf/data/test.othereft.yml deleted file mode 100644 index d8cd9e6..0000000 --- a/wcxf/data/test.othereft.yml +++ /dev/null @@ -1,5 +0,0 @@ -eft: MyOtherEFT -sectors: - My other Sector 1: - My other Sector 2: - My other Sector 3: diff --git a/wcxf/data/test.wcs.bern.out.yml b/wcxf/data/test.wcs.bern.out.yml deleted file mode 100644 index 2fc1035..0000000 --- a/wcxf/data/test.wcs.bern.out.yml +++ /dev/null @@ -1,51 +0,0 @@ -# output file : translated by hand -eft: WET -basis: Bern -scale: 4.8 -values: -# Class-I - 1sbsb: 30312.05821859348 - 1dbdb: 30312.05821859348 - 1dsds: 30312.05821859348 -# Class-II - 1udmumu: - Re: -0.974513419918 - Im: 0.0 - 1usmumu: - Re: -0.2243 - Im: 0.0 - 1ubmumu: - Re: -0.00107253675999 - Im: 0.00345746509722 - 1cdmumu: - Re: 0.224145679321 - Im: 0.00014222196414 - 1csmumu: - Re: -0.973641108953 - Im: 3.27346816417e-05 - 1cbmumu: - Re: -0.04221 - Im: 0.0 -# Class-V(semileptonic) - 1sbmumu: - Re: -2.57198626387e-05 - Im: 4.81650697852e-07 - 1dbmumu: - Re: 5.23630194213e-06 - Im: 2.09262179567e-06 -# Class-V(chromomagnetic) - 7gammasb: - Re: -0.000714327615426 - Im: 1.33770696717e-05 - 8gsb: - Re: -0.000714327615426 - Im: 1.33770696717e-05 - 7gammadb: - Re: 0.000145429823344 - Im: 5.81191882044e-05 - 8gdb: - Re: 0.000145429823344 - Im: 5.81191882044e-05 - - - diff --git a/wcxf/data/test.wcs.bern.yml b/wcxf/data/test.wcs.bern.yml deleted file mode 100644 index 7fbfa56..0000000 --- a/wcxf/data/test.wcs.bern.yml +++ /dev/null @@ -1,32 +0,0 @@ -# To do : check scale dependence -eft: WET -basis: Bern -scale: 4.8 -values: -# Class-I - 1sbsb: 1.0 - 1dbdb: 1.0 - 1dsds: 1.0 -# Class-II - 1udmumu: 1.0 - 1usmumu: 1.0 - 1ubmumu: 1.0 - 1cdmumu: 1.0 - 1csmumu: 1.0 - 1cbmumu: 1.0 -# Class-V(Semileptonic) - 1sbmumu: - Re: 1.0 - Im: 0.0 - 1dbmumu: - Re: 1.0 - Im: 0.0 - 1dsmumu: - Re: 1.0 - Im: 0.0 -# Class-V chromomagnetic - 7gammasb: 1.0 - 8gsb: 1.0 - 7gammadb: 1.0 - 8gdb: 1.0 - diff --git a/wcxf/data/test.wcs.bern2.out.yml b/wcxf/data/test.wcs.bern2.out.yml deleted file mode 100644 index e24254f..0000000 --- a/wcxf/data/test.wcs.bern2.out.yml +++ /dev/null @@ -1,140 +0,0 @@ -# output file 2 : translated by hand -eft: WET -basis: Bern -scale: 4.8 -values: -# Class-I - 1sbsb: - Re: 30312.05821859348 - Im: 30312.05821859348 - 1dbdb: - Re: 30312.05821859348 - Im: 30312.05821859348 - 1dsds: - Re: 30312.05821859348 - Im: 30312.05821859348 - -# Class-II - 1udmumu: - Re: 30312.05821859348 - Im: -30312.05821859348 - 1usmumu: - Re: 30312.05821859348 - Im: -30312.05821859348 - 1ubmumu: - Re: 30312.05821859348 - Im: -30312.05821859348 - 1cdmumu: - Re: 30312.05821859348 - Im: -30312.05821859348 - 1csmumu: - Re: 30312.05821859348 - Im: -30312.05821859348 - 1cbmumu: - Re: 30312.05821859348 - Im: -30312.05821859348 - -# Class-III - 1sbuc: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3sbuc: - Re: 2526.004851549 - Im: 2526.004851549 - 1sbcu: - Re: -10104.019406197827 - Im: 10104.019406197827 - 3sbcu: - Re: 2526.004851549 - Im: -2526.004851549 - 1dbuc: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3dbuc: - Re: 2526.004851549 - Im: 2526.004851549 - 1dbcu: - Re: -10104.019406197827 - Im: 10104.019406197827 - 3dbcu: - Re: 2526.004851549 - Im: -2526.004851549 - 1dsuc: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3dsuc: - Re: 2526.004851549 - Im: 2526.004851549 - 1dscu: - Re: -10104.019406197827 - Im: 10104.019406197827 - 3dscu: - Re: 2526.004851549 - Im: -2526.004851549 -# Todo: dduu, ddcc to be added - -# Class-IV - 1sbsd: - Re: -10104.019406197827 - Im: 10104.019406197827 - 3sbsd: - Re: 2526.004851549 - Im: -2526.004851549 - 1dbds: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3dbds: - Re: 2526.004851549 - Im: 2526.004851549 -# 1dbsb: -# Re: -10104.019406197827 -# Im: -10104.019406197827 -# 3dbsb: -# Re: 2526.004851549 -# Im: 2526.004851549 -# Class-V(semileptonic) - 1sbmumu: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3sbmumu: - Re: 2526.004851549 - Im: 2526.004851549 - 1dbmumu: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3dbmumu: - Re: 2526.004851549 - Im: 2526.004851549 - 1dsmumu: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3dsmumu: - Re: 2526.004851549 - Im: 2526.004851549 -# Class-V(four quark) - 1sbdd: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3sbdd: - Re: 2526.004851549 - Im: 2526.004851549 - 1dbdd: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3dbdd: - Re: 2526.004851549 - Im: 2526.004851549 - 1dsdd: - Re: -10104.019406197827 - Im: -10104.019406197827 - 3dsdd: - Re: 2526.004851549 - Im: 2526.004851549 -# Class-V(chromomagnetic) - 7gammasb: - Re: 64733.19486516104 - Im: 64733.19486516104 - 8gsb: - Re: 12283.231706405995 - Im: 12283.231706405995 - diff --git a/wcxf/data/test.wcs.flavio.out.yml b/wcxf/data/test.wcs.flavio.out.yml deleted file mode 100644 index 35e6530..0000000 --- a/wcxf/data/test.wcs.flavio.out.yml +++ /dev/null @@ -1,42 +0,0 @@ -# output file: translated by hand -eft: WET -basis: flavio -scale: 4.8 -values: -# Class-I - CVLL_sdsd: 3.2990171528061985e-05 - CVLL_bsbs: 3.2990171528061985e-05 - CVLL_bdbd: 3.2990171528061985e-05 -# Class-II - CVL_dumunumu: -1.02615313403 - CVL_sumunumu: -4.4583147570 - CVL_bumunumu: - Re: -81.845545007 - Im: -263.840015355 - CVL_dcmunumu: - Re: 4.46138243856 - Im: -0.00283077762245 - CVL_scmunumu: - Re: -1.02707249075 - Im: -3.45310923075e-05 - CVL_bcmunumu: -23.6910684672 -# Class-V semileptonic - C9_bsmumu: - Re: -38866.8261563 - Im: -727.851241058 - C9_bdmumu: - Re: 164674.3334774109 - Im: -65810.01310290069 -## Class-V chromomagnetic - C7_bs: - Re: -1399.42710929 - Im: -26.2067901859 - C8_bs: - Re: -1399.42710929 - Im: -26.2067901859 - C7_bd: - Re: 5929.21391487 - Im: -2369.53529544 - C8_bd: - Re: 5929.21391487 - Im: -2369.53529544 diff --git a/wcxf/data/test.wcs.flavio.yml b/wcxf/data/test.wcs.flavio.yml deleted file mode 100644 index 3d56409..0000000 --- a/wcxf/data/test.wcs.flavio.yml +++ /dev/null @@ -1,24 +0,0 @@ -# input file -eft: WET -basis: flavio -scale: 4.8 -values: -# Class-I - CVLL_sdsd: 1.0 - CVLL_bsbs: 1.0 - CVLL_bdbd: 1.0 -# Class-II - CVL_dumunumu: 1.0 - CVL_sumunumu: 1.0 - CVL_bumunumu: 1.0 - CVL_dcmunumu: 1.0 - CVL_scmunumu: 1.0 - CVL_bcmunumu: 1.0 -# Class-V(semileptonic) - C9_bsmumu: 1.0 - C9_bdmumu: 1.0 -## Class-V(chromomagnetic) - C7_bs: 1.0 - C8_bs: 1.0 - C7_bd: 1.0 - C8_bd: 1.0 diff --git a/wcxf/data/test.wcs.jms.yml b/wcxf/data/test.wcs.jms.yml deleted file mode 100644 index 49104aa..0000000 --- a/wcxf/data/test.wcs.jms.yml +++ /dev/null @@ -1,106 +0,0 @@ -# input file -eft: WET -basis: JMS -scale: 4.8 -values: -# Class-I - VddLL_2323: - Re: 1.0 - Im: 1.0 - VddLL_1313: - Re: 1.0 - Im: 1.0 - VddLL_1212: - Re: 1.0 - Im: 1.0 -# Class-II - VnueduLL_2211: - Re: 1.0 - Im: 1.0 - VnueduLL_2221: - Re: 1.0 - Im: 1.0 - VnueduLL_2231: - Re: 1.0 - Im: 1.0 - VnueduLL_2212: - Re: 1.0 - Im: 1.0 - VnueduLL_2222: - Re: 1.0 - Im: 1.0 - VnueduLL_2232: - Re: 1.0 - Im: 1.0 -# Class-III -# sbuc - V1udLL_1223: - Re: 1.0 - Im: 1.0 -# sbcu - V1udLL_1232: - Re: 1.0 - Im: 1.0 -# dbuc - V1udLL_1213: - Re: 1.0 - Im: 1.0 -# dbcu - V1udLL_1231: - Re: 1.0 - Im: 1.0 -# dsuc - V1udLL_1212: - Re: 1.0 - Im: 1.0 -# dscu - V1udLL_1221: - Re: 1.0 - Im: 1.0 -# Class-IV -# dbds - VddLL_1213: - Re: 1.0 - Im: 1.0 -# dbsb ** to be fixed later * -# VddLL_3132: -# Re: 1.0 -# Im: 1.0 -# sbsd - VddLL_1232: - Re: 1.0 - Im: 1.0 -# Class-V(Semileptonic) -# sbmumu - VedLL_2223: - Re: 1.0 - Im: 1.0 -# dbmumu - VedLL_2213: - Re: 1.0 - Im: 1.0 -# sdmumu - VedLL_2212: - Re: 1.0 - Im: 1.0 -# Class-V(four quark) -# ddsb - VddLL_1123: - Re: 1.0 - Im: 1.0 -# dddb - VddLL_1113: - Re: 1.0 - Im: 1.0 -# ddds - VddLL_1112: - Re: 1.0 - Im: 1.0 -# Class-V(chromomagnetic) - dgamma_23: - Re: 1.0 - Im: 1.0 - dG_23: - Re: 1.0 - Im: 1.0 - diff --git a/wcxf/data/test.wcs.yml b/wcxf/data/test.wcs.yml deleted file mode 100644 index 41a690f..0000000 --- a/wcxf/data/test.wcs.yml +++ /dev/null @@ -1,9 +0,0 @@ -eft: MyEFT -basis: MyBasis 1 -scale: 1e16 -values: - C_1: 0.12 - C_2: - Re: 0.3156 - Im: -0.53 - C_4: 0.32 diff --git a/wcxf/matchers/__init__.py b/wcxf/matchers/__init__.py deleted file mode 100644 index cb51155..0000000 --- a/wcxf/matchers/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# Import matchers from the wilson package - -import wilson diff --git a/wcxf/test_bases.py b/wcxf/test_bases.py deleted file mode 100644 index 81288fc..0000000 --- a/wcxf/test_bases.py +++ /dev/null @@ -1,10 +0,0 @@ -import unittest -import wcxf - -class TestBases(unittest.TestCase): - def test_bases(self): - for basis in wcxf.Basis.instances.values(): - try: - basis.validate() - except: - self.fail("Basis {}-{} failed to validate".format(basis.eft, basis.basis)) diff --git a/wcxf/test_cli.py b/wcxf/test_cli.py deleted file mode 100644 index e1f2261..0000000 --- a/wcxf/test_cli.py +++ /dev/null @@ -1,81 +0,0 @@ -import unittest -import numpy as np -import numpy.testing as npt -import yaml -import json -import pkgutil -import wcxf -import subprocess -import tempfile -import os - -def _del_files(fs): - """Delete files if they exist""" - for f in fs: - try: - os.remove(f) - except OSError: - pass - -class TestCLI(unittest.TestCase): - def test_convert(self): - yml1 = pkgutil.get_data('wcxf', 'data/test.basis1.yml').decode('utf-8') - d_yml1 = yaml.safe_load(yml1) - # YAML stdin -> JSON stdout - res = subprocess.run(['wcxf', 'convert', 'json', '-'], - input=yml1.encode(), - stdout=subprocess.PIPE) - json1 = res.stdout.decode('utf-8') - d_json1 = json.loads(json1) - self.assertDictEqual(d_yml1, d_json1) - # JSON stdin -> YAML stdout - res = subprocess.run(['wcxf', 'convert', 'yaml', '-'], - input=json1.encode(), - stdout=subprocess.PIPE) - yml2 = res.stdout.decode('utf-8') - d_yml2 = yaml.safe_load(yml2) - self.assertDictEqual(d_json1, d_yml2) - # YAML file -> JSON file - _, fin = tempfile.mkstemp() - with open(fin, 'w') as f: - f.write(yml1) - _, fout = tempfile.mkstemp() - res = subprocess.run(['wcxf', 'convert', 'json', fin, '--output', fout]) - with open(fout, 'r') as f: - d_json3 = json.load(f) - self.assertDictEqual(d_yml1, d_json3) - # delete temp files - _del_files([fin, fout]) - # JSON file -> YAML file - _, fin = tempfile.mkstemp() - with open(fin, 'w') as f: - f.write(json1) - _, fout = tempfile.mkstemp() - res = subprocess.run(['wcxf', 'convert', 'yaml', fin, '--output', fout]) - with open(fout, 'r') as f: - yml3 = f.read() - d_yml3 = yaml.safe_load(yml3) - self.assertDictEqual(d_yml3, d_json1) - # delete temp files - _del_files([fin, fout]) - - def test_validate(self): - _root = os.path.abspath(os.path.dirname(__file__)) - wet = os.path.join(_root, 'bases', 'wet.eft.json') - with open(wet, 'rb') as f: - s = f.read() - res = subprocess.run(['wcxf', 'validate', 'eft', '-'], - input=s, - stdout=subprocess.PIPE) - res = res.stdout.decode('utf-8') - self.assertEqual(res, "Validation successful.\n") - - _root = os.path.abspath(os.path.dirname(__file__)) - wet = os.path.join(_root, 'bases', 'wet.flavio.basis.json') - with open(wet, 'rb') as f: - s = f.read() - res = subprocess.run(['wcxf', 'validate', 'basis', '-'], - input=s, - stdout=subprocess.PIPE) - res = res.stdout.decode('utf-8') - self.assertEqual(res, "Validation successful.\n") diff --git a/wcxf/test_smeft.py b/wcxf/test_smeft.py deleted file mode 100644 index 3f7154d..0000000 --- a/wcxf/test_smeft.py +++ /dev/null @@ -1,20 +0,0 @@ -import unittest -import numpy as np -import numpy.testing as npt -import yaml -import json -import pkgutil -import wcxf - -class TestSMEFT(unittest.TestCase): - def test_smeft_number(self): - """Test the number of B and L conserving coefficients in SMEFT""" - basis = wcxf.Basis['SMEFT', 'Warsaw'] - sector = basis.sectors['dB=dL=0'] - count=0 - for wc in sector: - if 'real' not in sector[wc] or not sector[wc]['real']: - count +=2 # complex coeffs - else: - count +=1 # real coeffs - self.assertEqual(count, 2499) # no. of B and L conserving coefficients diff --git a/wcxf/test_wcxf.py b/wcxf/test_wcxf.py deleted file mode 100644 index 5e366dd..0000000 --- a/wcxf/test_wcxf.py +++ /dev/null @@ -1,101 +0,0 @@ -import unittest -import numpy as np -import numpy.testing as npt -import yaml -import json -import pkgutil -import wcxf -from wcxf import translators - -class TestBasis(unittest.TestCase): - def test_eft(self): - f = pkgutil.get_data('wcxf', 'data/test.eft.yml') - eft = wcxf.EFT.load(f.decode('utf-8')) - self.assertEqual(eft, wcxf.EFT['MyEFT']) - self.assertEqual(eft.eft, 'MyEFT') - self.assertIsInstance(eft.sectors, dict) - f = pkgutil.get_data('wcxf', 'data/test.basis1.yml') - basis = wcxf.Basis.load(f.decode('utf-8')) - self.assertEqual(eft.known_bases, ('MyBasis 1',)) - self.assertIsInstance(eft.dump(fmt='json'), str) - self.assertIsInstance(eft.dump(fmt='yaml'), str) - - def test_basis(self): - f = pkgutil.get_data('wcxf', 'data/test.eft.yml') - eft = wcxf.EFT.load(f.decode('utf-8')) - f = pkgutil.get_data('wcxf', 'data/test.basis1.yml') - basis = wcxf.Basis.load(f.decode('utf-8')) - self.assertEqual(basis, wcxf.Basis['MyEFT', 'MyBasis 1']) - self.assertEqual(basis._name, ('MyEFT', 'MyBasis 1')) - self.assertEqual(basis.basis, 'MyBasis 1') - basis.validate() - - def test_wc(self): - f = pkgutil.get_data('wcxf', 'data/test.eft.yml') - eft = wcxf.EFT.load(f.decode('utf-8')) - f = pkgutil.get_data('wcxf', 'data/test.basis1.yml') - basis = wcxf.Basis.load(f.decode('utf-8')) - f = pkgutil.get_data('wcxf', 'data/test.wcs.yml') - wc = wcxf.WC.load(f.decode('utf-8')) - self.assertEqual(wc.eft, 'MyEFT') - self.assertEqual(wc.basis, 'MyBasis 1') - wc.validate() - self.assertEqual(wc.scale, 1e16) - self.assertEqual(wc.dict['C_1'], 0.12) - self.assertEqual(wc.dict['C_2'], 0.3156-0.53j) - - def test_translator(self): - # A trivial translator translating from MyBasis 1 to MyBasis 2 - @wcxf.translator('MyEFT', 'MyBasis 1', 'MyBasis 2') - def f(x, scale, parameters): - return x - self.assertIn(('MyEFT', 'MyBasis 1', 'MyBasis 2'), wcxf.Translator.instances) - f = pkgutil.get_data('wcxf', 'data/test.wcs.yml') - wc = wcxf.WC.load(f.decode('utf-8')) - wc_out = wcxf.Translator['MyEFT', 'MyBasis 1', 'MyBasis 2'].translate(wc) - self.assertDictEqual( - {k: v for k, v in wc.__dict__.items() if k[0] != '_' and k != 'basis'}, - {k: v for k, v in wc_out.__dict__.items() if k[0] != '_' and k != 'basis'} - ) - self.assertIn(('MyEFT', 'MyBasis 1', 'MyBasis 2'), - wcxf.Basis['MyEFT', 'MyBasis 1'].known_translators['from']) - self.assertIn(('MyEFT', 'MyBasis 1', 'MyBasis 2'), - wcxf.Basis['MyEFT', 'MyBasis 2'].known_translators['to']) - self.assertIn(('MyEFT', 'MyBasis 1', 'MyBasis 2'), - wcxf.EFT['MyEFT'].known_translators) - # remove dummy translator - del wcxf.Translator['MyEFT', 'MyBasis 1', 'MyBasis 2'] - - def test_matcher(self): - # A trivial translator translating from MyBasis 1 to MyBasis 2 - @wcxf.matcher('MyEFT', 'MyBasis 1', 'MyOtherEFT', 'MyOtherBasis 1') - def f(x, scale, parameters): - return x - # self.assertIn(('MyEFT', 'MyBasis 1', 'MyBasis 2'), wcxf.Translator.instances) - f = pkgutil.get_data('wcxf', 'data/test.wcs.yml') - wc = wcxf.WC.load(f.decode('utf-8')) - wc_out = wcxf.Matcher['MyEFT', 'MyBasis 1', 'MyOtherEFT', 'MyOtherBasis 1'].match(wc) - # self.assertIn(('MyEFT', 'MyBasis 1', 'MyBasis 2'), - # wcxf.Basis['MyEFT', 'MyBasis 1'].known_translators['from']) - # self.assertIn(('MyEFT', 'MyBasis 1', 'MyBasis 2'), - # wcxf.Basis['MyEFT', 'MyBasis 2'].known_translators['to']) - # self.assertIn(('MyEFT', 'MyBasis 1', 'MyBasis 2'), - # wcxf.EFT['MyEFT'].known_translators) - # remove dummy matcher - del wcxf.Matcher['MyEFT', 'MyBasis 1', 'MyOtherEFT', 'MyOtherBasis 1'] - - def test_inheritance(self): - f = pkgutil.get_data('wcxf', 'data/test.basis1.yml') - parent = wcxf.Basis.load(f.decode('utf-8')) - f = pkgutil.get_data('wcxf', 'data/test.basis2.yml') - child = wcxf.Basis.load(f.decode('utf-8')) - self.assertDictEqual(parent.sectors, child.sectors) - - def test_inheritance_modifiedsector(self): - f = pkgutil.get_data('wcxf', 'data/test.basis1.yml') - parent = wcxf.Basis.load(f.decode('utf-8')) - f = pkgutil.get_data('wcxf', 'data/test.basis3.yml') - child = wcxf.Basis.load(f.decode('utf-8')) - self.assertEqual(set(parent.sectors.keys()), set(child.sectors.keys())) - self.assertEqual(set(parent.sectors['My Sector 1'].keys()), {'C_1', 'C_2'}) - self.assertEqual(set(child.sectors['My Sector 1'].keys()), {'C_1'}) diff --git a/wcxf/test_wet.py b/wcxf/test_wet.py deleted file mode 100644 index ade12d7..0000000 --- a/wcxf/test_wet.py +++ /dev/null @@ -1,237 +0,0 @@ -import unittest -import wcxf -import pkgutil -class TestWET(unittest.TestCase): - def test_bern(self): - basis = wcxf.Basis['WET', 'Bern'] - # comparing no. of WCs to table 1 of arXiv:1704.06639 - self.assertEqual(len(basis.sectors['sbsb']), 8) - self.assertEqual(len(basis.sectors['dbdb']), 8) - self.assertEqual(len(basis.sectors['ubenu']), 5*3) - self.assertEqual(len(basis.sectors['ubmunu']), 5*3) - self.assertEqual(len(basis.sectors['ubtaunu']), 5*3) - self.assertEqual(len(basis.sectors['cbenu']), 5*3) - self.assertEqual(len(basis.sectors['cbmunu']), 5*3) - self.assertEqual(len(basis.sectors['cbtaunu']), 5*3) - self.assertEqual(len(basis.sectors['sbuc']), 20) - self.assertEqual(len(basis.sectors['sbcu']), 20) - self.assertEqual(len(basis.sectors['dbuc']), 20) - self.assertEqual(len(basis.sectors['dbcu']), 20) - self.assertEqual(len(basis.sectors['sbsd']), 10) - self.assertEqual(len(basis.sectors['dbds']), 10) - self.assertEqual(len(basis.sectors['sb']), 57*2) - self.assertEqual(len(basis.sectors['sbnunu']), 2*9) - self.assertEqual(len(basis.sectors['db']), 57*2) - self.assertEqual(len(basis.sectors['dbnunu']), 2*9) - for l1 in ['e', 'mu', 'tau']: - for l2 in ['e', 'mu', 'tau']: - if l1 != l2: - self.assertEqual(len(basis.sectors['sb'+l1+l2]), 10) - self.assertEqual(len(basis.sectors['db'+l1+l2]), 10) - - def test_jms(self): - basis = wcxf.Basis['WET', 'JMS'] - all_wc = {k: v for sk, sv in basis.sectors.items() for k, v in sv.items()} - def isreal(wc): - if 'real' in all_wc[wc] and all_wc[wc]['real']: - return True - else: - return False - def assert_len(s, n): - L = sum([1 if isreal(k) else 2 for k in all_wc if s in k]) - try: - self.assertEqual(L, n, - msg="Failed for {}".format(s)) - except Exception as exc: - print(exc) - # compare individual counts to tables 11-17 in arXiv:1709.04486 - assert_len('egamma_', 9*2) - assert_len('ugamma_', 4*2) - assert_len('dgamma_', 9*2) - assert_len('uG_', 4*2) - assert_len('dG_', 9*2) - assert_len('VnunuLL_', 36) - assert_len('VeeLL_', 36) - assert_len('VnueLL_', 81) - assert_len('VnuuLL_', 36) - assert_len('VnudLL_', 81) - assert_len('VeuLL_', 36) - assert_len('VedLL_', 81) - assert_len('VnueduLL_', 2*54) - assert_len('VuuLL_', 10) - assert_len('VddLL_', 45) - assert_len('V1udLL_', 36) - assert_len('V8udLL_', 36) - assert_len('VeeRR_', 36) - assert_len('VeuRR_', 36) - assert_len('VedRR_', 81) - assert_len('VuuRR_', 10) - assert_len('VddRR_', 45) - assert_len('V1udRR_', 36) - assert_len('V8udRR_', 36) - assert_len('VnueLR_', 81) - assert_len('VeeLR_', 81) - assert_len('VnuuLR_', 36) - assert_len('VnudLR_', 81) - assert_len('VeuLR_', 36) - assert_len('VedLR_', 81) - assert_len('VueLR_', 36) - assert_len('VdeLR_', 81) - assert_len('VnueduLR_', 2*54) - assert_len('V1uuLR_', 16) - assert_len('V8uuLR_', 16) - assert_len('V1udLR_', 36) - assert_len('V8udLR_', 36) - assert_len('V1duLR_', 36) - assert_len('V8duLR_', 36) - assert_len('V1ddLR_', 81) - assert_len('V8ddLR_', 81) - assert_len('V1udduLR_', 2*36) - assert_len('V8udduLR_', 2*36) - assert_len('SeuRL_', 2*36) - assert_len('SedRL_', 2*81) - assert_len('SnueduRL_', 2*54) - assert_len('SeeRR', 2*45) - assert_len('SeuRR', 2*36) - assert_len('TeuRR', 2*36) - assert_len('SedRR', 2*81) - assert_len('TedRR', 2*81) - assert_len('SnueduRR', 2*54) - assert_len('TnueduRR', 2*54) - assert_len('S1uuRR', 2*10) - assert_len('S8uuRR', 2*10) - assert_len('S1udRR', 2*36) - assert_len('S8udRR', 2*36) - assert_len('S1ddRR', 2*45) - assert_len('S8ddRR', 2*45) - assert_len('S1udduRR', 2*36) - assert_len('S8udduRR', 2*36) - # compare total count to table 22 - ntot = sum([1 if isreal(k) else 2 for k in all_wc]) - self.assertEqual(ntot, 1+87+186+76+21+66+76+90+252+266+171+45+342+254+1+66+156+51+15+51+51+72+207+216+171+45+342+254+9+9+26+26+288*2) - -# Unit test for Bern to flavio translator - def test_wc1(self): - f = pkgutil.get_data('wcxf', 'data/test.wcs.bern.yml').decode('utf-8') - wc0 = wcxf.WC.load(f) - wc0.validate() - self.assertEqual(wc0.eft, 'WET') - self.assertEqual(wc0.basis, 'Bern') - self.assertEqual(wc0.scale, 4.8) - wc1= wc0.translate('flavio') - f = pkgutil.get_data('wcxf', 'data/test.wcs.flavio.out.yml').decode('utf-8') - wc2 = wcxf.WC.load(f) - self.assertEqual(wc2.eft, 'WET') - self.assertEqual(wc2.basis, 'flavio') - self.assertEqual(wc2.scale, 4.8) - wc2.validate() - self.assertAlmostEqual(wc1.dict['CVLL_sdsd'], wc2.dict['CVLL_sdsd']) - self.assertAlmostEqual(wc1.dict['CVLL_bsbs'], wc2.dict['CVLL_bsbs']) - self.assertAlmostEqual(wc1.dict['CVLL_bdbd'], wc2.dict['CVLL_bdbd']) - self.assertAlmostEqual(wc1.dict['CVL_dumunumu'], wc2.dict['CVL_dumunumu']) - self.assertAlmostEqual(wc1.dict['CVL_sumunumu'], wc2.dict['CVL_sumunumu']) - self.assertAlmostEqual(wc1.dict['CVL_bumunumu'], wc2.dict['CVL_bumunumu']) - self.assertAlmostEqual(wc1.dict['CVL_dcmunumu'], wc2.dict['CVL_dcmunumu']) - self.assertAlmostEqual(wc1.dict['CVL_scmunumu'], wc2.dict['CVL_scmunumu']) - self.assertAlmostEqual(wc1.dict['CVL_bcmunumu'], wc2.dict['CVL_bcmunumu']) - self.assertAlmostEqual(wc1.dict['C9_bsmumu'], wc2.dict['C9_bsmumu']) - self.assertAlmostEqual(wc1.dict['C9_bdmumu'], wc2.dict['C9_bdmumu']) - self.assertAlmostEqual(wc1.dict['C7_bs'], wc2.dict['C7_bs']) - self.assertAlmostEqual(wc1.dict['C8_bs'], wc2.dict['C8_bs']) - self.assertAlmostEqual(wc1.dict['C7_bd'], wc2.dict['C7_bd']) - self.assertAlmostEqual(wc1.dict['C8_bd'], wc2.dict['C8_bd']) - -# Unit test for flavio to Bern translator - def test_wc2(self): - f = pkgutil.get_data('wcxf', 'data/test.wcs.flavio.yml').decode('utf-8') - wc0 = wcxf.WC.load(f) - wc0.validate() - self.assertEqual(wc0.eft, 'WET') - self.assertEqual(wc0.basis, 'flavio') - self.assertEqual(wc0.scale, 4.8) - wc1= wc0.translate('Bern') - f = pkgutil.get_data('wcxf', 'data/test.wcs.bern.out.yml').decode('utf-8') - wc2 = wcxf.WC.load(f) - self.assertEqual(wc2.eft, 'WET') - self.assertEqual(wc2.basis, 'Bern') - self.assertEqual(wc2.scale, 4.8) - wc2.validate() - self.assertAlmostEqual(wc1.dict['1sbsb'], wc2.dict['1sbsb']) - self.assertAlmostEqual(wc1.dict['1dbdb'], wc2.dict['1dbdb']) - self.assertAlmostEqual(wc1.dict['1dsds'], wc2.dict['1dsds']) - self.assertAlmostEqual(wc1.dict['1udmumu'], wc2.dict['1udmumu']) - self.assertAlmostEqual(wc1.dict['1usmumu'], wc2.dict['1usmumu']) - self.assertAlmostEqual(wc1.dict['1ubmumu'], wc2.dict['1ubmumu']) - self.assertAlmostEqual(wc1.dict['1cdmumu'], wc2.dict['1cdmumu']) - self.assertAlmostEqual(wc1.dict['1csmumu'], wc2.dict['1csmumu']) - self.assertAlmostEqual(wc1.dict['1cbmumu'], wc2.dict['1cbmumu']) - self.assertAlmostEqual(wc1.dict['1sbmumu'], wc2.dict['1sbmumu']) - self.assertAlmostEqual(wc1.dict['1dbmumu'], wc2.dict['1dbmumu']) - self.assertAlmostEqual(wc1.dict['7gammasb'], wc2.dict['7gammasb']) - self.assertAlmostEqual(wc1.dict['8gsb'], wc2.dict['8gsb']) - self.assertAlmostEqual(wc1.dict['7gammadb'], wc2.dict['7gammadb']) - self.assertAlmostEqual(wc1.dict['8gdb'], wc2.dict['8gdb']) - -# Unit test for JMS to Bern translator - def test_wc3(self): - f = pkgutil.get_data('wcxf', 'data/test.wcs.jms.yml').decode('utf-8') - wc0 = wcxf.WC.load(f) - wc0.validate() - self.assertEqual(wc0.eft, 'WET') - self.assertEqual(wc0.basis, 'JMS') - self.assertEqual(wc0.scale, 4.8) - wc1= wc0.translate('Bern') - f = pkgutil.get_data('wcxf', 'data/test.wcs.bern2.out.yml').decode('utf-8') - wc2 = wcxf.WC.load(f) - self.assertEqual(wc2.eft, 'WET') - self.assertEqual(wc2.basis, 'Bern') - self.assertEqual(wc2.scale, 4.8) - wc2.validate() - self.assertAlmostEqual(wc1.dict['1sbsb'], wc2.dict['1sbsb']) - self.assertAlmostEqual(wc1.dict['1dbdb'], wc2.dict['1dbdb']) - self.assertAlmostEqual(wc1.dict['1dsds'], wc2.dict['1dsds']) - self.assertAlmostEqual(wc1.dict['1udmumu'], wc2.dict['1udmumu']) - self.assertAlmostEqual(wc1.dict['1usmumu'], wc2.dict['1usmumu']) - self.assertAlmostEqual(wc1.dict['1ubmumu'], wc2.dict['1ubmumu']) - self.assertAlmostEqual(wc1.dict['1cdmumu'], wc2.dict['1cdmumu']) - self.assertAlmostEqual(wc1.dict['1csmumu'], wc2.dict['1csmumu']) - self.assertAlmostEqual(wc1.dict['1cbmumu'], wc2.dict['1cbmumu']) - self.assertAlmostEqual(wc1.dict['1sbuc'], wc2.dict['1sbuc']) - self.assertAlmostEqual(wc1.dict['3sbuc'], wc2.dict['3sbuc']) - self.assertAlmostEqual(wc1.dict['1sbcu'], wc2.dict['1sbcu']) - self.assertAlmostEqual(wc1.dict['3sbcu'], wc2.dict['3sbcu']) - self.assertAlmostEqual(wc1.dict['1dbuc'], wc2.dict['1dbuc']) - self.assertAlmostEqual(wc1.dict['3dbuc'], wc2.dict['3dbuc']) - self.assertAlmostEqual(wc1.dict['1dbcu'], wc2.dict['1dbcu']) - self.assertAlmostEqual(wc1.dict['3dbcu'], wc2.dict['3dbcu']) - self.assertAlmostEqual(wc1.dict['1dsuc'], wc2.dict['1dsuc']) - self.assertAlmostEqual(wc1.dict['3dsuc'], wc2.dict['3dsuc']) - self.assertAlmostEqual(wc1.dict['1dscu'], wc2.dict['1dscu']) - self.assertAlmostEqual(wc1.dict['3dscu'], wc2.dict['3dscu']) - self.assertAlmostEqual(wc1.dict['1sbsd'], wc2.dict['1sbsd']) - self.assertAlmostEqual(wc1.dict['3sbsd'], wc2.dict['3sbsd']) - self.assertAlmostEqual(wc1.dict['1dbds'], wc2.dict['1dbds']) - self.assertAlmostEqual(wc1.dict['3dbds'], wc2.dict['3dbds']) -# self.assertAlmostEqual(wc1.dict['1dbsb'], wc2.dict['1dbsb']) -# self.assertAlmostEqual(wc1.dict['3dbsb'], wc2.dict['3dbsb']) - self.assertAlmostEqual(wc1.dict['1sbmumu'], wc2.dict['1sbmumu']) - self.assertAlmostEqual(wc1.dict['3sbmumu'], wc2.dict['3sbmumu']) - self.assertAlmostEqual(wc1.dict['1dbmumu'], wc2.dict['1dbmumu']) - self.assertAlmostEqual(wc1.dict['3dbmumu'], wc2.dict['3dbmumu']) - self.assertAlmostEqual(wc1.dict['1dsmumu'], wc2.dict['1dsmumu']) - self.assertAlmostEqual(wc1.dict['3dsmumu'], wc2.dict['3dsmumu']) - self.assertAlmostEqual(wc1.dict['1sbdd'], wc2.dict['1sbdd']) - self.assertAlmostEqual(wc1.dict['3sbdd'], wc2.dict['3sbdd']) - self.assertAlmostEqual(wc1.dict['1dbdd'], wc2.dict['1dbdd']) - self.assertAlmostEqual(wc1.dict['3dbdd'], wc2.dict['3dbdd']) - self.assertAlmostEqual(wc1.dict['1dsdd'], wc2.dict['1dsdd']) - self.assertAlmostEqual(wc1.dict['3dsdd'], wc2.dict['3dsdd']) - self.assertAlmostEqual(wc1.dict['7gammasb'], wc2.dict['7gammasb']) - self.assertAlmostEqual(wc1.dict['8gsb'], wc2.dict['8gsb']) - - def test_jms_bnv(self): - basis = wcxf.Basis['WET', 'JMS'] - bnvsec = ['uddnu', 'udsnu', 'udbnu', 'ussnu', 'usbnu', 'ubbnu', 'cddnu', 'cdsnu', 'cdbnu', 'cssnu', 'csbnu', 'cbbnu', 'uude', 'uudmu', 'uudtau', 'ucde', 'ucdmu', 'ucdtau', 'ccde', 'ccdmu', 'ccdtau', 'uuse', 'uusmu', 'uustau', 'ucse', 'ucsmu', 'ucstau', 'ccse', 'ccsmu', 'ccstau', 'uube', 'uubmu', 'uubtau', 'ucbe', 'ucbmu', 'ucbtau', 'ccbe', 'ccbmu', 'ccbtau'] - Ntot = sum([len(basis.sectors[s]) for s in bnvsec]) - # arXiv:1709.04486, table 20 - self.assertEqual(Ntot, 288) diff --git a/wcxf/translators/__init__.py b/wcxf/translators/__init__.py deleted file mode 100644 index 97f14b4..0000000 --- a/wcxf/translators/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# Import translators from the wilson package - -import wilson