From e7259557c0ba42f27c3f7a8731c4ba551e601704 Mon Sep 17 00:00:00 2001 From: giadarol Date: Thu, 12 Dec 2019 15:11:11 +0100 Subject: [PATCH 01/14] Changed bb tools sligtly --- .../load_from_mad/001_line_with_bb_from_madx.py | 7 +++++-- pysixtrack/be_beamfields/tools.py | 15 ++++++++++----- pysixtrack/line.py | 7 ++++--- 3 files changed, 19 insertions(+), 10 deletions(-) diff --git a/examples/load_from_mad/001_line_with_bb_from_madx.py b/examples/load_from_mad/001_line_with_bb_from_madx.py index c3e4a2c..9c417c3 100644 --- a/examples/load_from_mad/001_line_with_bb_from_madx.py +++ b/examples/load_from_mad/001_line_with_bb_from_madx.py @@ -6,7 +6,9 @@ import pysixtrack from pysixtrack.be_beamfields.tools import get_bb_names_madpoints_sigmas -from pysixtrack.be_beamfields.tools import shift_strong_beam_based_on_close_ip +from pysixtrack.be_beamfields.tools import ( + compute_shift_strong_beam_based_on_close_ip, +) from pysixtrack.be_beamfields.tools import setup_beam_beam_in_line from pysixtrack import MadPoint @@ -68,7 +70,7 @@ ) # Correct for small shifts between surveys of the two beams -shift_strong_beam_based_on_close_ip( +strong_shifts = compute_shift_strong_beam_based_on_close_ip( points_weak=bb_xyz_b1, points_strong=bb_xyz_b2, IPs_survey_weak=IP_xyz_b1, @@ -96,6 +98,7 @@ bb_sigmas_strong=bb_sigmas_b2, bb_points_weak=bb_xyz_b1, bb_points_strong=bb_xyz_b2, + bb_shift_strong=strong_shifts, beta_r_strong=beta_r, bunch_intensity_strong=bunch_intensity, n_slices_6D=n_slices, diff --git a/pysixtrack/be_beamfields/tools.py b/pysixtrack/be_beamfields/tools.py index 1fde524..3a8f1e3 100644 --- a/pysixtrack/be_beamfields/tools.py +++ b/pysixtrack/be_beamfields/tools.py @@ -135,10 +135,10 @@ def get_bb_names_madpoints_sigmas( return element_names, points, sigmas -def shift_strong_beam_based_on_close_ip( +def compute_shift_strong_beam_based_on_close_ip( points_weak, points_strong, IPs_survey_weak, IPs_survey_strong ): - + strong_shift = [] for i_bb, _ in enumerate(points_weak): pbw = points_weak[i_bb] @@ -155,10 +155,11 @@ def shift_strong_beam_based_on_close_ip( # Shift Bs shift_ws = IPs_survey_strong[use_ip].p - IPs_survey_weak[use_ip].p - pbs.p -= shift_ws + strong_shift.append(shift_ws) + return strong_shift -def find_bb_separations(points_weak, points_strong, names=None): +def find_bb_separations(points_weak, points_strong, strong_shift, names=None): if names is None: names = ["bb_%d" % ii for ii in range(len(points_weak))] @@ -171,7 +172,9 @@ def find_bb_separations(points_weak, points_strong, names=None): pbs = points_strong[i_bb] # Find vws - vbb_ws = points_strong[i_bb].p - points_weak[i_bb].p + vbb_ws = (points_strong[i_bb].p - strong_shift[i_bb]) - points_weak[ + i_bb + ].p # Check that the two reference system are parallel try: @@ -211,6 +214,7 @@ def setup_beam_beam_in_line( bb_sigmas_strong, bb_points_weak, bb_points_strong, + bb_shift_strong, beta_r_strong, bunch_intensity_strong, n_slices_6D, @@ -220,6 +224,7 @@ def setup_beam_beam_in_line( sep_x, sep_y = find_bb_separations( points_weak=bb_points_weak, points_strong=bb_points_strong, + strong_shift=bb_shift_strong, names=bb_names, ) diff --git a/pysixtrack/line.py b/pysixtrack/line.py index 55f0857..b6d8636 100644 --- a/pysixtrack/line.py +++ b/pysixtrack/line.py @@ -356,7 +356,7 @@ def find_element_ids(self, element): idx_el = self.elements.index(element) idx_after_el = idx_el + 1 el_name = self.element_names[idx_el] - if self.element_names[idx_after_el] == el_name + '_aperture': + if self.element_names[idx_after_el] == el_name + "_aperture": idx_after_el += 1 return idx_el, idx_after_el @@ -368,8 +368,9 @@ def add_offset_error_to(self, element, dx=0, dy=0): xyshift = elements.XYShift(dx=dx, dy=dy) inv_xyshift = elements.XYShift(dx=-dx, dy=-dy) self.insert_element(idx_el, xyshift, el_name + "_offset_in") - self.insert_element(idx_after_el + 1, inv_xyshift, - el_name + "_offset_out") + self.insert_element( + idx_after_el + 1, inv_xyshift, el_name + "_offset_out" + ) def add_tilt_error_to(self, element, angle): idx_el, idx_after_el = self.find_element_ids(element) From c0cd15069523a45a55cf8b7cc1d40c91cf8bea94 Mon Sep 17 00:00:00 2001 From: giadarol Date: Tue, 9 Jun 2020 10:54:35 +0200 Subject: [PATCH 02/14] Updated sixtrack loader --- pysixtrack/loader_sixtrack.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pysixtrack/loader_sixtrack.py b/pysixtrack/loader_sixtrack.py index d652c3f..ce4164a 100644 --- a/pysixtrack/loader_sixtrack.py +++ b/pysixtrack/loader_sixtrack.py @@ -36,6 +36,7 @@ def _expand_struct(sixinput, convert=elements): # Line = convert.Line BeamBeam4D = convert.BeamBeam4D BeamBeam6D = convert.BeamBeam6D + RFMultipole = convert.RFMultipole exclude = False # add special elenents if "CAV" in sixinput.iter_struct(): @@ -114,6 +115,28 @@ def _expand_struct(sixinput, convert=elements): elem = BeamBeam6D(**thisbb._asdict()) else: raise ValueError("What?!") + elif etype == 23: + print(nnn, sixinput.single[nnn]) + voltage_V = d1 *1e6 + freq_Hz = d2 * 1e6 + phase_rad = d3 + p0c_eV = sixinput.initialconditions[12]*1e6 + elem = RFMultipole( + frequency = freq_Hz, + knl= [voltage_V / p0c_eV], # Sign to be checked!!! + pn=[p0c_eV], + ) + elif etype == -23: + print(nnn, sixinput.single[nnn]) + voltage_V = d1 *1e6 + freq_Hz = d2 * 1e6 + phase_rad = d3 + p0c_eV = sixinput.initialconditions[12]*1e6 + elem = RFMultipole( + frequency = freq_Hz, + ksl= [-voltage_V / p0c_eV], # Sign to be checked!!! + pn=[p0c_eV], + ) else: rest.append([nnn] + sixinput.single[nnn]) if elem is not None: From e8a160225c68ebe951b1489797845bff29d353be Mon Sep 17 00:00:00 2001 From: giadarol Date: Tue, 16 Jun 2020 16:48:48 +0200 Subject: [PATCH 03/14] Check --- pysixtrack/loader_sixtrack.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pysixtrack/loader_sixtrack.py b/pysixtrack/loader_sixtrack.py index ce4164a..67108f7 100644 --- a/pysixtrack/loader_sixtrack.py +++ b/pysixtrack/loader_sixtrack.py @@ -124,18 +124,19 @@ def _expand_struct(sixinput, convert=elements): elem = RFMultipole( frequency = freq_Hz, knl= [voltage_V / p0c_eV], # Sign to be checked!!! - pn=[p0c_eV], + pn=[90.], ) elif etype == -23: - print(nnn, sixinput.single[nnn]) voltage_V = d1 *1e6 freq_Hz = d2 * 1e6 phase_rad = d3 p0c_eV = sixinput.initialconditions[12]*1e6 + print(nnn, sixinput.single[nnn]) + print(f'p0c_eV: {p0c_eV}') elem = RFMultipole( frequency = freq_Hz, ksl= [-voltage_V / p0c_eV], # Sign to be checked!!! - pn=[p0c_eV], + ps=[90.], ) else: rest.append([nnn] + sixinput.single[nnn]) From 534831d8f4515bf73ddaaeae7a5d53925eec9af9 Mon Sep 17 00:00:00 2001 From: giadarol Date: Wed, 17 Jun 2020 15:40:43 +0200 Subject: [PATCH 04/14] Just comments --- pysixtrack/loader_sixtrack.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysixtrack/loader_sixtrack.py b/pysixtrack/loader_sixtrack.py index 67108f7..347c76a 100644 --- a/pysixtrack/loader_sixtrack.py +++ b/pysixtrack/loader_sixtrack.py @@ -123,7 +123,7 @@ def _expand_struct(sixinput, convert=elements): p0c_eV = sixinput.initialconditions[12]*1e6 elem = RFMultipole( frequency = freq_Hz, - knl= [voltage_V / p0c_eV], # Sign to be checked!!! + knl= [voltage_V / p0c_eV], pn=[90.], ) elif etype == -23: @@ -135,7 +135,7 @@ def _expand_struct(sixinput, convert=elements): print(f'p0c_eV: {p0c_eV}') elem = RFMultipole( frequency = freq_Hz, - ksl= [-voltage_V / p0c_eV], # Sign to be checked!!! + ksl= [-voltage_V / p0c_eV], ps=[90.], ) else: From 449fe318093bab61c3e28b25adff283f562b0224 Mon Sep 17 00:00:00 2001 From: giadarol Date: Mon, 22 Jun 2020 10:58:15 +0200 Subject: [PATCH 05/14] Fix to new line API --- examples/bbsimple/testbb6d.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/bbsimple/testbb6d.py b/examples/bbsimple/testbb6d.py index 54a54fe..b49eb9e 100644 --- a/examples/bbsimple/testbb6d.py +++ b/examples/bbsimple/testbb6d.py @@ -14,10 +14,10 @@ p0c_eV = sixinput.initialconditions[-3] * 1e6 # Build pysixtrack line from sixtrack input -line, other_data = pysixtrack.Line.from_sixinput(sixinput) +line = pysixtrack.Line.from_sixinput(sixinput) # Info on sixtrack->pyblep conversion -iconv = line.other_data["iconv"] +iconv = line.other_info["iconv"] ######################################################## # Search closed orbit # From e2a4c8d63db61fa5521baba069fd20ea129d7f98 Mon Sep 17 00:00:00 2001 From: giadarol Date: Mon, 22 Jun 2020 10:59:36 +0200 Subject: [PATCH 06/14] Same modificatoin in another example --- examples/beambeam/testbb6d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/beambeam/testbb6d.py b/examples/beambeam/testbb6d.py index e0ed726..cfdc448 100644 --- a/examples/beambeam/testbb6d.py +++ b/examples/beambeam/testbb6d.py @@ -17,7 +17,7 @@ line = pysixtrack.Line.from_sixinput(sixinput) # Info on sixtrack->pyblep conversion -iconv = line.other_data["iconv"] +iconv = line.other_info["iconv"] ######################################################## # Search closed orbit # From ffc323a398908e5c8a36d94e6d03866cc89837f7 Mon Sep 17 00:00:00 2001 From: giadarol Date: Mon, 22 Jun 2020 11:04:50 +0200 Subject: [PATCH 07/14] Similar fix --- examples/fodo/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/fodo/benchmark.py b/examples/fodo/benchmark.py index a6f2da8..a436daa 100644 --- a/examples/fodo/benchmark.py +++ b/examples/fodo/benchmark.py @@ -3,7 +3,7 @@ six = sixtracktools.SixInput(".") line = pysixtrack.Line.from_sixinput(six) -iconv = line.other_data["iconv"] +iconv = line.other_info["iconv"] sixdump = sixtracktools.SixDump101("res/dump.dat")[1::2] From bf0f99dac09f898d081f68b00945cb45ba6c4e92 Mon Sep 17 00:00:00 2001 From: giadarol Date: Mon, 22 Jun 2020 11:05:34 +0200 Subject: [PATCH 08/14] This example was very old, removed Functionality is covered elsewhere --- .../load_from_sixtrack_input/000_basics.py | 43 - .../sixtrack_input/.gitignore | 32 - .../sixtrack_input/fort.16 | 0 .../sixtrack_input/fort.2 | 4576 ----------------- .../sixtrack_input/fort.3 | 137 - .../sixtrack_input/fort.8 | 0 6 files changed, 4788 deletions(-) delete mode 100644 examples/load_from_sixtrack_input/000_basics.py delete mode 100644 examples/load_from_sixtrack_input/sixtrack_input/.gitignore delete mode 100644 examples/load_from_sixtrack_input/sixtrack_input/fort.16 delete mode 100644 examples/load_from_sixtrack_input/sixtrack_input/fort.2 delete mode 100644 examples/load_from_sixtrack_input/sixtrack_input/fort.3 delete mode 100644 examples/load_from_sixtrack_input/sixtrack_input/fort.8 diff --git a/examples/load_from_sixtrack_input/000_basics.py b/examples/load_from_sixtrack_input/000_basics.py deleted file mode 100644 index 3944f0a..0000000 --- a/examples/load_from_sixtrack_input/000_basics.py +++ /dev/null @@ -1,43 +0,0 @@ -import sixtracktools -import pysixtrack -import pysixtracklib - -# Read sixtrack input using sixtracktools - -sixinput = sixtracktools.SixInput("sixtrack_input") - -# Build a pysixtrack line from pyblep line - -ps_line = pysixtrack.Line.from_sixinput(sixinput) - -# Build a pysixtracklib line from pyblep line - -pslib_line = pysixtracklib.Elements() -pslib_line.append_line(ps_line) -pslib_line.BeamMonitor(num_stores=1) - -# Build a pysixtrack particle -ps_part = pysixtrack.Particles(p0c=7000e9) -ps_part.x = 1e-3 -ps_part.px = 2e-4 - -# Build a pysixtracklib particle -pslib_part_set = pysixtracklib.ParticlesSet() -pslib_part = pslib_part_set.Particles(num_particles=1) -ps_part.partid = 0 -ps_part.state = 1 -ps_part.elemid = 0 -ps_part.turn = 0 -pslib_part.from_pysixtrack(ps_part, particle_index=0) - -# Track with pysisxtrack -ps_line.track(ps_part) - -# Track with sixtracklib -job = pysixtracklib.TrackJob(pslib_line, pslib_part_set) -job.track(until_turn=1) -job.collect() - -# Compare -print("pysixtrack x: ", ps_part.x) -print("sixtracklib x:", job.output.particles[0].x[0]) diff --git a/examples/load_from_sixtrack_input/sixtrack_input/.gitignore b/examples/load_from_sixtrack_input/sixtrack_input/.gitignore deleted file mode 100644 index 156b0d9..0000000 --- a/examples/load_from_sixtrack_input/sixtrack_input/.gitignore +++ /dev/null @@ -1,32 +0,0 @@ -aperture_losses.dat -beam_expert.txt -dump3.dat -file_units.dat -fort.10 -fort.11 -fort.110 -fort.111 -fort.12 -fort.14 -fort.15 -fort.18 -fort.20 -fort.208 -fort.209 -fort.21 -fort.210 -fort.27 -fort.28 -fort.29 -fort.31 -fort.34 -fort.4 -fort.7 -fort.9 -fort.98 -maximum_memory_allocation_mbytes.txt -mem_alloc.log -sim_meta.dat -sim_time.dat -singletrackfile.dat -symplecticity_check.txt diff --git a/examples/load_from_sixtrack_input/sixtrack_input/fort.16 b/examples/load_from_sixtrack_input/sixtrack_input/fort.16 deleted file mode 100644 index e69de29..0000000 diff --git a/examples/load_from_sixtrack_input/sixtrack_input/fort.2 b/examples/load_from_sixtrack_input/sixtrack_input/fort.2 deleted file mode 100644 index 745ad26..0000000 --- a/examples/load_from_sixtrack_input/sixtrack_input/fort.2 +++ /dev/null @@ -1,4576 +0,0 @@ -SINGLE ELEMENTS--------------------------------------------------------- -mymarker 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip3 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_27 0 0.000000000e+00 0.000000000e+00 2.339180000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwa.a4r3.b1..1 2 9.644776680e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_602 0 0.000000000e+00 0.000000000e+00 8.288000000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_604 0 0.000000000e+00 0.000000000e+00 1.313600000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwb.4r3.b1..1 2 -5.351300010e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_605 0 0.000000000e+00 0.000000000e+00 1.776800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.4r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_606 0 0.000000000e+00 0.000000000e+00 2.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.4r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_34 0 0.000000000e+00 0.000000000e+00 5.081800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.a5r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.a5r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_609 0 0.000000000e+00 0.000000000e+00 3.820000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.b5r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.b5r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_610 0 0.000000000e+00 0.000000000e+00 2.848000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.a5r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.b5r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_35 0 0.000000000e+00 0.000000000e+00 3.356480000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwa.a5r3.b1..1 2 -1.013148948e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwb.5r3.b1..1 2 -7.553092680e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_613 0 0.000000000e+00 0.000000000e+00 5.553600000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_42 0 0.000000000e+00 0.000000000e+00 4.559800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbw.a6r3.b1 11 1.887290781e-04 3.400000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_615 0 0.000000000e+00 0.000000000e+00 4.235000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_616 0 0.000000000e+00 0.000000000e+00 1.422850000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.6r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_617 0 0.000000000e+00 0.000000000e+00 3.794500000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbw.d6r3.b1 11 -1.887290781e-04 3.400000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_43 0 0.000000000e+00 0.000000000e+00 5.413666667e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtlh.a6r3.b1..1 2 1.612420397e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_44 0 0.000000000e+00 0.000000000e+00 8.666666667e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_622 0 0.000000000e+00 0.000000000e+00 5.893333333e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_623 0 0.000000000e+00 0.000000000e+00 5.883333333e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_50 0 0.000000000e+00 0.000000000e+00 4.558366667e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.7r3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_51 0 0.000000000e+00 0.000000000e+00 1.269066667e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mq.7r3.b1..1 2 -1.358414348e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_52 0 0.000000000e+00 0.000000000e+00 2.066666667e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_630 0 0.000000000e+00 0.000000000e+00 9.023333333e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.7r3.b1..1 2 -7.037052238e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_54 0 0.000000000e+00 0.000000000e+00 4.985752651e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mb.a8r3.b1..1 11 -2.549994037e-03 7.150000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_55 0 0.000000000e+00 0.000000000e+00 9.533333333e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_56 0 0.000000000e+00 0.000000000e+00 6.126171968e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_58 0 0.000000000e+00 0.000000000e+00 5.049752651e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mq.8r3.b1..1 2 1.339000135e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.8r3.b1..1 2 -1.599728674e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_65 0 0.000000000e+00 0.000000000e+00 5.050752651e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.a9r3.b1..1 2 -2.493397569e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_69 0 0.000000000e+00 0.000000000e+00 4.929752651e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.10r3.b1..1 2 -1.793088174e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_80 0 0.000000000e+00 0.000000000e+00 1.876645265e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11r3.b1..1 2 2.210452592e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_679 0 0.000000000e+00 0.000000000e+00 5.786666667e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.11r3.b1 3 -1.509802623e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_83 0 0.000000000e+00 0.000000000e+00 4.407085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_89 0 0.000000000e+00 0.000000000e+00 4.183419317e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12r3.b1..1 2 -6.215194632e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_90 0 0.000000000e+00 0.000000000e+00 2.133333333e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_689 0 0.000000000e+00 0.000000000e+00 8.680000000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_690 0 0.000000000e+00 0.000000000e+00 8.616666667e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.12r3.b1 3 2.356503048e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_92 0 0.000000000e+00 0.000000000e+00 4.403085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13r3.b1..1 2 6.140635983e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.14r3.b1..1 2 8.232734089e-08 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.15r3.b1..1 2 1.158563793e-07 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_179 0 0.000000000e+00 0.000000000e+00 5.264752651e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13l4.b1..1 2 -2.250046058e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12l4.b1..1 2 -6.150345817e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11l4.b1..1 2 -1.345452392e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_472 0 0.000000000e+00 0.000000000e+00 1.718178598e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_476 0 0.000000000e+00 0.000000000e+00 4.761085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10l4.b1..1 2 6.606215677e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1016 0 0.000000000e+00 0.000000000e+00 1.280000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_478 0 0.000000000e+00 0.000000000e+00 5.270085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_482 0 0.000000000e+00 0.000000000e+00 4.553085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9l4.b1..1 2 -3.965141741e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_147 0 0.000000000e+00 0.000000000e+00 6.400000000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1024 0 0.000000000e+00 0.000000000e+00 9.460000000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9l4.b1..1 2 -5.617284133e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1025 0 0.000000000e+00 0.000000000e+00 9.066666667e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_485 0 0.000000000e+00 0.000000000e+00 5.132085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8l4.b1..1 2 5.726800157e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_495 0 0.000000000e+00 0.000000000e+00 4.751085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.7l4.b1..1 2 -6.044772853e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_497 0 0.000000000e+00 0.000000000e+00 9.402700000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.6l4.b1..1 2 4.398774165e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_499 0 0.000000000e+00 0.000000000e+00 3.428000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.5l4.b1..1 2 -3.887272793e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_501 0 0.000000000e+00 0.000000000e+00 3.796000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbrb.5l4.b1..1 11 -3.929010270e-04 2.362500000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1048 0 0.000000000e+00 0.000000000e+00 2.520000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1051 0 0.000000000e+00 0.000000000e+00 6.434100000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbrs.5l4.b1..1 11 3.929010270e-04 2.362500000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1052 0 0.000000000e+00 0.000000000e+00 6.169000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -acnca.d5l4.b1 12 0.000000000e+00 1.782000000e+04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1053 0 0.000000000e+00 0.000000000e+00 3.462000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_504 0 0.000000000e+00 0.000000000e+00 1.986400000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -acsca.d5l4.b1 12 2.000000000e+00 3.564000000e+04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1056 0 0.000000000e+00 0.000000000e+00 1.496000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1058 0 0.000000000e+00 0.000000000e+00 1.002000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip4 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1059 0 0.000000000e+00 0.000000000e+00 9.590000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_505 0 0.000000000e+00 0.000000000e+00 3.392500000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.5r4.b1..1 2 4.286735279e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.6r4.b1..1 2 -4.619921964e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_513 0 0.000000000e+00 0.000000000e+00 9.365300000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.7r4.b1..1 2 3.737100116e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_515 0 0.000000000e+00 0.000000000e+00 5.125085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8r4.b1..1 2 -9.652747767e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9r4.b1..1 2 3.771950829e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9r4.b1..1 2 5.343597008e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10r4.b1..1 2 -8.899632656e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_538 0 0.000000000e+00 0.000000000e+00 1.782445265e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mq.11r4.b1..1 2 1.349310316e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11r4.b1..1 2 2.851946347e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.11r4.b1 3 1.291500000e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12r4.b1..1 2 -6.595564796e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mq.12r4.b1..1 2 -1.349084078e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.12r4.b1 3 -7.380000000e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13r4.b1..1 2 -5.839442407e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.13r4.b1 3 7.519231179e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.14r4.b1 3 -4.693372518e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_680 0 0.000000000e+00 0.000000000e+00 5.930000000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.16r4.b1 1 1.890188464e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1119 0 0.000000000e+00 0.000000000e+00 3.810085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.14l5.b1 1 -5.417033780e-07 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13l5.b1..1 2 -7.856199969e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.13l5.b1 -1 1.986998266e-30 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12l5.b1..1 2 1.705355822e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.12l5.b1 1 -1.936208193e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11l5.b1..1 2 -4.718014781e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_911 0 0.000000000e+00 0.000000000e+00 1.812378598e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10l5.b1..1 2 -8.493404960e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1199 0 0.000000000e+00 0.000000000e+00 8.250000000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_917 0 0.000000000e+00 0.000000000e+00 4.445085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9l5.b1..1 2 4.099521980e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9l5.b1..1 2 5.807656138e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8l5.b1..1 2 -9.649116469e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_934 0 0.000000000e+00 0.000000000e+00 4.623085984e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.b7l5.b1..1 2 7.265983799e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1215 0 0.000000000e+00 0.000000000e+00 1.047000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_937 0 0.000000000e+00 0.000000000e+00 3.054700000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.6l5.b1..1 2 -1.486845229e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1220 0 0.000000000e+00 0.000000000e+00 1.122000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbch.6l5.b1 1 -2.022869193e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_939 0 0.000000000e+00 0.000000000e+00 1.593800000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqyl.5l5.b1..1 2 1.689829344e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyv.5l5.b1 -1 5.949177968e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_941 0 0.000000000e+00 0.000000000e+00 3.353500000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqyy.4l5.b1..1 2 -1.354335830e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_943 0 0.000000000e+00 0.000000000e+00 2.458000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyyv.4l5.b1 -1 -2.613748775e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1225 0 0.000000000e+00 0.000000000e+00 1.296000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyyh.a4l5.b1 1 1.006698346e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_944 0 0.000000000e+00 0.000000000e+00 1.538900000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbrdh.4l5.b1 1 -1.157619374e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1229 0 0.000000000e+00 0.000000000e+00 2.150000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbrd.4l5.b1..1 11 3.461267254e-04 2.500000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1230 0 0.000000000e+00 0.000000000e+00 2.666666667e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_946 0 0.000000000e+00 0.000000000e+00 5.380000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcth.4l5.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1235 0 0.000000000e+00 0.000000000e+00 1.680000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tctva.4l5.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1236 0 0.000000000e+00 0.000000000e+00 3.090000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tanc.4l5 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_947 0 0.000000000e+00 0.000000000e+00 5.331100000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbxa.4l5..1 11 -3.461267254e-04 1.625000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1240 0 0.000000000e+00 0.000000000e+00 1.733333333e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_949 0 0.000000000e+00 0.000000000e+00 2.918587879e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_18 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_17 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3581 0 0.000000000e+00 0.000000000e+00 4.813892256e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxch.3l5 1 8.356257777e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_951 0 0.000000000e+00 0.000000000e+00 2.780156250e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxc.3l5..1 2 3.083730956e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3582 0 0.000000000e+00 0.000000000e+00 4.784774200e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_16 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3583 0 0.000000000e+00 0.000000000e+00 1.835079966e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1246 0 0.000000000e+00 0.000000000e+00 4.803125000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3584 0 0.000000000e+00 0.000000000e+00 3.760003157e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_15 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3585 0 0.000000000e+00 0.000000000e+00 1.043121843e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3586 0 0.000000000e+00 0.000000000e+00 7.538357113e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_14 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_953 0 0.000000000e+00 0.000000000e+00 3.251851789e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxd.b2l5..1 2 -2.639127976e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1251 0 0.000000000e+00 0.000000000e+00 4.110625000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3588 0 0.000000000e+00 0.000000000e+00 7.710860690e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_13 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3589 0 0.000000000e+00 0.000000000e+00 3.339538931e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3590 0 0.000000000e+00 0.000000000e+00 1.175690025e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_12 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3591 0 0.000000000e+00 0.000000000e+00 2.934934975e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_955 0 0.000000000e+00 0.000000000e+00 1.802279398e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_11 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3593 0 0.000000000e+00 0.000000000e+00 5.237831019e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_956 0 0.000000000e+00 0.000000000e+00 3.388022938e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_10 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3595 0 0.000000000e+00 0.000000000e+00 7.226020623e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3596 0 0.000000000e+00 0.000000000e+00 7.903251894e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_9 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3597 0 0.000000000e+00 0.000000000e+00 6.552060606e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxdh.a2l5 1 -1.067828934e-06 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_957 0 0.000000000e+00 0.000000000e+00 2.560156250e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxc.1l5..1 2 3.071435523e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3598 0 0.000000000e+00 0.000000000e+00 4.434808502e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_8 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3599 0 0.000000000e+00 0.000000000e+00 4.359644150e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3600 0 0.000000000e+00 0.000000000e+00 4.221834806e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_7 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3601 0 0.000000000e+00 0.000000000e+00 5.812901936e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3602 0 0.000000000e+00 0.000000000e+00 8.000188763e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_6 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_959 0 0.000000000e+00 0.000000000e+00 2.290137374e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tasc.1l5 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3604 0 0.000000000e+00 0.000000000e+00 1.449885522e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_5 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3570 0 0.000000000e+00 0.000000000e+00 3.740022896e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_4 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_3 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_2 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l5b1_1 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3605 0 0.000000000e+00 0.000000000e+00 4.900228956e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbcs2.1l5 25 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1261 0 0.000000000e+00 0.000000000e+00 3.250000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip5 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1 0 0.000000000e+00 0.000000000e+00 1.000444172e-09 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_ho5b1_0 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_1 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_2 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_3 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_4 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_5 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tasc.1r5 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_6 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxc.1r5..1 2 -3.071435523e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_7 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_8 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxdh.a2r5 1 1.067828934e-06 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_9 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxd.a2r5..1 2 2.639127976e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_10 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_11 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_12 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_13 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_14 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxc.3r5..1 2 -3.083730956e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_15 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_16 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxch.3r5 1 -8.356257777e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_17 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r5b1_18 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbxa.4r5..1 11 3.461267254e-04 1.625000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tanc.4r5 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_973 0 0.000000000e+00 0.000000000e+00 1.015000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbrd.4r5.b1..1 11 -3.461267254e-04 2.500000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbrdh.4r5.b1 1 1.820837843e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyyv.a4r5.b1 -1 1.969436512e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyyh.4r5.b1 1 -3.099519744e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqyy.4r5.b1..1 2 1.354335830e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_978 0 0.000000000e+00 0.000000000e+00 3.465700000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqyl.5r5.b1..1 2 -1.689829344e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyh.5r5.b1 1 3.673148884e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.6r5.b1..1 2 1.835401866e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbcv.6r5.b1 -1 -4.267434170e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_982 0 0.000000000e+00 0.000000000e+00 2.891200000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.a7r5.b1..1 2 -7.266336311e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_985 0 0.000000000e+00 0.000000000e+00 5.136580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_987 0 0.000000000e+00 0.000000000e+00 6.127161366e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_989 0 0.000000000e+00 0.000000000e+00 4.761580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8r5.b1..1 2 8.910837452e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_991 0 0.000000000e+00 0.000000000e+00 5.270580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_995 0 0.000000000e+00 0.000000000e+00 4.553580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9r5.b1..1 2 -3.906192135e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9r5.b1..1 2 -5.533772192e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_998 0 0.000000000e+00 0.000000000e+00 5.132580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10r5.b1..1 2 8.143977403e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.10r5.b1 3 7.697190500e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1004 0 0.000000000e+00 0.000000000e+00 4.445580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1008 0 0.000000000e+00 0.000000000e+00 1.876694735e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11r5.b1..1 2 2.496820655e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.11r5.b1 3 -4.483503460e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1011 0 0.000000000e+00 0.000000000e+00 4.407580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1017 0 0.000000000e+00 0.000000000e+00 4.183914016e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12r5.b1..1 2 5.341847563e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.12r5.b1 -1 1.762069417e-29 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1292 0 0.000000000e+00 0.000000000e+00 3.810580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13r5.b1..1 2 1.569459133e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.13r5.b1 1 -1.590249878e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1034 0 0.000000000e+00 0.000000000e+00 5.265247349e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.14r5.b1 -1 1.266279679e-29 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.15r5.b1 1 -5.560557702e-09 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1051 0 0.000000000e+00 0.000000000e+00 4.403580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.15l6.b1 1 1.590012612e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13l6.b1..1 2 2.696452153e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12l6.b1..1 2 -8.130481004e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1379 0 0.000000000e+00 0.000000000e+00 5.050247349e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11l6.b1..1 2 -6.310276412e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1382 0 0.000000000e+00 0.000000000e+00 1.718228068e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10l6.b1..1 2 9.019843588e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9l6.b1..1 2 -4.054577580e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9l6.b1..1 2 -5.743984906e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8l6.b1..1 2 7.725433983e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1405 0 0.000000000e+00 0.000000000e+00 6.165858068e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqyl.5l6.b1..1 2 -5.945289020e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1407 0 0.000000000e+00 0.000000000e+00 3.382000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.4l6.b1..1 2 4.149202524e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1409 0 0.000000000e+00 0.000000000e+00 3.992000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdqm.b4l6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1450 0 0.000000000e+00 0.000000000e+00 1.350000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdqm.a4l6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1410 0 0.000000000e+00 0.000000000e+00 1.227230000e+02 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdsa.4l6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_231 0 0.000000000e+00 0.000000000e+00 3.550000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdsb.4l6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1411 0 0.000000000e+00 0.000000000e+00 3.882500000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip6 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1412 0 0.000000000e+00 0.000000000e+00 1.467900000e+02 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdqa.a4r6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdqa.b4r6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1457 0 0.000000000e+00 0.000000000e+00 3.910000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.4r6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1458 0 0.000000000e+00 0.000000000e+00 1.084800000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdqm.a4r6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdqm.b4r6.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.4r6.b1..1 2 -4.082646382e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqyl.5r6.b1..1 2 5.582415940e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8r6.b1..1 2 -5.964105202e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9r6.b1..1 2 3.991125366e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9r6.b1..1 2 5.654094269e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10r6.b1..1 2 -8.684315236e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1440 0 0.000000000e+00 0.000000000e+00 1.782494735e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11r6.b1..1 2 1.665702411e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12r6.b1..1 2 7.711429267e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13r6.b1..1 2 -4.411143873e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13l7.b1..1 2 -8.626376036e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12l7.b1..1 2 -2.603557839e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11l7.b1..1 2 -1.051515045e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1832 0 0.000000000e+00 0.000000000e+00 1.812428068e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.10l7.b1..1 2 -2.914862249e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1839 0 0.000000000e+00 0.000000000e+00 4.986247349e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1843 0 0.000000000e+00 0.000000000e+00 5.051247350e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.b9l7.b1..1 2 -5.201098267e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1847 0 0.000000000e+00 0.000000000e+00 4.930247349e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.8l7.b1..1 2 6.784237997e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.7l7.b1..1 2 -8.283655001e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1861 0 0.000000000e+00 0.000000000e+00 3.040533333e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtlh.f6l7.b1..1 2 -2.135414662e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1868 0 0.000000000e+00 0.000000000e+00 1.011966667e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbw.d6l7.b1 11 1.887290893e-04 3.400000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2145 0 0.000000000e+00 0.000000000e+00 5.200000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcp.d6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcp.c6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcp.b6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcp.a6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_104 0 0.000000000e+00 0.000000000e+00 1.600000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tchsv.6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2146 0 0.000000000e+00 0.000000000e+00 1.200000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tchsh.6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tchss.6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2147 0 0.000000000e+00 0.000000000e+00 1.700450000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcapa.6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2148 0 0.000000000e+00 0.000000000e+00 2.950000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbw.b6l7.b1 11 -1.887290893e-04 3.400000000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2149 0 0.000000000e+00 0.000000000e+00 2.535000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcapb.6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2150 0 0.000000000e+00 0.000000000e+00 2.400000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2151 0 0.000000000e+00 0.000000000e+00 4.605000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.b6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.b6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.a6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.a6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2152 0 0.000000000e+00 0.000000000e+00 1.432250000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcapc.6l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1869 0 0.000000000e+00 0.000000000e+00 1.551800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwa.e5l7.b1..1 2 1.037711917e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwb.5l7.b1..1 2 2.537503756e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1876 0 0.000000000e+00 0.000000000e+00 1.986680000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.b5l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.b5l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.a5l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.a5l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1877 0 0.000000000e+00 0.000000000e+00 1.093680000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwa.e4l7.b1..1 2 -1.020843766e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2165 0 0.000000000e+00 0.000000000e+00 2.106800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.d4l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.d4l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwb.4l7.b1..1 2 -2.577226203e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1884 0 0.000000000e+00 0.000000000e+00 1.119180000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.c4l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.c4l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2168 0 0.000000000e+00 0.000000000e+00 3.874100000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.b4l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.b4l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.a4l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.a4l7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_5 0 0.000000000e+00 0.000000000e+00 1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip7 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.a4r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.a4r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2169 0 0.000000000e+00 0.000000000e+00 4.674100000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.b4r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.b4r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1885 0 0.000000000e+00 0.000000000e+00 7.191800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwa.a4r7.b1..1 2 1.020843766e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2172 0 0.000000000e+00 0.000000000e+00 6.213600000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1892 0 0.000000000e+00 0.000000000e+00 2.936800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.a5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.a5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.b5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.b5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2175 0 0.000000000e+00 0.000000000e+00 1.000000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.c5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.c5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.d5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.d5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.e5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.e5r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1893 0 0.000000000e+00 0.000000000e+00 7.866800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwa.a5r7.b1..1 2 -1.037711917e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1900 0 0.000000000e+00 0.000000000e+00 3.251800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.6r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.6r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2180 0 0.000000000e+00 0.000000000e+00 5.066000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.a6r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2181 0 0.000000000e+00 0.000000000e+00 1.616150000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2182 0 0.000000000e+00 0.000000000e+00 4.935000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2183 0 0.000000000e+00 0.000000000e+00 9.777500000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.b6r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2184 0 0.000000000e+00 0.000000000e+00 2.537700000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2185 0 0.000000000e+00 0.000000000e+00 3.657000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.c6r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.d6r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1901 0 0.000000000e+00 0.000000000e+00 4.462666667e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtlh.a6r7.b1..1 2 1.949109550e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1908 0 0.000000000e+00 0.000000000e+00 5.021666667e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.a7r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2190 0 0.000000000e+00 0.000000000e+00 1.183800000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcla.b7r7.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_1909 0 0.000000000e+00 0.000000000e+00 1.360966667e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.7r7.b1..1 2 -2.897906093e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.8r7.b1..1 2 -6.304459846e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.a9r7.b1..1 2 -2.288156289e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.10r7.b1..1 2 5.200020421e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11r7.b1..1 2 1.279154123e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12r7.b1..1 2 -2.303860373e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13r7.b1..1 2 -1.290202169e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13l8.b1..1 2 -5.706072068e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12l8.b1..1 2 -4.269701363e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11l8.b1..1 2 -4.240750959e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10l8.b1..1 2 7.465515126e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9l8.b1..1 2 -4.195193881e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9l8.b1..1 2 -5.943191331e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8l8.b1..1 2 6.924294730e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2353 0 0.000000000e+00 0.000000000e+00 4.623580683e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.b7l8.b1..1 2 -6.718665696e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2356 0 0.000000000e+00 0.000000000e+00 1.606300000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.6l8.b1..1 2 5.430521187e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2787 0 0.000000000e+00 0.000000000e+00 1.187000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.6l8.b1..1 2 3.846619174e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2359 0 0.000000000e+00 0.000000000e+00 2.910000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tclim.6l8.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2360 0 0.000000000e+00 0.000000000e+00 4.883300000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbcv.5l8.b1 -1 -2.920950907e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2793 0 0.000000000e+00 0.000000000e+00 1.146000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbch.a5l8.b1 1 -4.115107466e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2794 0 0.000000000e+00 0.000000000e+00 9.870000002e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.b5l8.b1..1 2 -4.289472617e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2795 0 0.000000000e+00 0.000000000e+00 1.061000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2363 0 0.000000000e+00 0.000000000e+00 2.323000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.b4l8.b1..1 2 2.709772159e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2366 0 0.000000000e+00 0.000000000e+00 2.134000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyh.4l8.b1 1 9.914948757e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyv.a4l8.b1 -1 2.539084654e-06 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2801 0 0.000000000e+00 0.000000000e+00 2.767000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbrc.4l8.b1..1 11 -3.831263293e-04 2.362500000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2368 0 0.000000000e+00 0.000000000e+00 4.390000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcth.4l8.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2369 0 0.000000000e+00 0.000000000e+00 4.222500000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tclia.4l8 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2808 0 0.000000000e+00 0.000000000e+00 2.260000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tctvb.4l8 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2370 0 0.000000000e+00 0.000000000e+00 6.860000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mbx.4l8..1 11 3.831263293e-04 2.362500000e+00 -1.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2372 0 0.000000000e+00 0.000000000e+00 5.514000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxv.3l8 -1 -1.600000000e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2813 0 0.000000000e+00 0.000000000e+00 6.780625001e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxa.3l8..1 2 -3.495480624e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2814 0 0.000000000e+00 0.000000000e+00 3.981250000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2374 0 0.000000000e+00 0.000000000e+00 3.285937500e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxb.b2l8..1 2 3.018075892e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2820 0 0.000000000e+00 0.000000000e+00 3.437500000e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2823 0 0.000000000e+00 0.000000000e+00 7.028749998e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2824 0 0.000000000e+00 0.000000000e+00 6.408750002e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2377 0 0.000000000e+00 0.000000000e+00 2.379875000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2826 0 0.000000000e+00 0.000000000e+00 7.060625002e-01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2379 0 0.000000000e+00 0.000000000e+00 2.316406250e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip8 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxa.1r8..1 2 3.495480624e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqxb.a2r8..1 2 -3.018075892e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2389 0 0.000000000e+00 0.000000000e+00 4.470000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcddm.4r8 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2843 0 0.000000000e+00 0.000000000e+00 2.390000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tctvb.4r8 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2390 0 0.000000000e+00 0.000000000e+00 4.887500000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyh.a4r8.b1 1 7.335587968e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyv.4r8.b1 -1 -2.668754252e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.a4r8.b1..1 2 -2.150469048e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2395 0 0.000000000e+00 0.000000000e+00 2.324500000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.a5r8.b1..1 2 3.779219185e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2398 0 0.000000000e+00 0.000000000e+00 2.133000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyh.5r8.b1 1 -6.978454266e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_2852 0 0.000000000e+00 0.000000000e+00 1.147000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyv.b5r8.b1 -1 6.345226795e-06 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2399 0 0.000000000e+00 0.000000000e+00 6.415900000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.6r8.b1..1 2 -4.356218555e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.6r8.b1..1 2 -3.085654810e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2402 0 0.000000000e+00 0.000000000e+00 2.441200000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.a7r8.b1..1 2 5.985989309e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2405 0 0.000000000e+00 0.000000000e+00 5.136085983e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8r8.b1..1 2 -9.414029141e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9r8.b1..1 2 4.516897059e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9r8.b1..1 2 6.398937501e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10r8.b1..1 2 -8.715188154e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11r8.b1..1 2 -1.321052662e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12r8.b1..1 2 4.687848038e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13r8.b1..1 2 -2.552157851e-06 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.13r8.b1 3 7.709853362e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.14r8.b1 3 -4.594321006e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.15r8.b1 -1 -1.418539807e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.16r8.b1 1 1.194912746e-21 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.15l1.b1 -1 -3.130803069e-08 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.14l1.b1 1 -1.724004555e-10 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.13l1.b1 -1 1.408919816e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.12l1.b1 1 -1.992211109e-10 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2827 0 0.000000000e+00 0.000000000e+00 2.942500000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbch.6l1.b1 1 -3.256373226e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyv.5l1.b1 -1 6.177614813e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyyv.4l1.b1 -1 -2.434601660e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyyh.a4l1.b1 1 1.369943521e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2834 0 0.000000000e+00 0.000000000e+00 1.348900000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbrdv.4l1.b1 -1 -1.773599720e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_1228 0 0.000000000e+00 0.000000000e+00 1.900000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbrdh.4l1.b1 1 -7.088374306e-21 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcth.4l1.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tctva.4l1.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tanal.4l1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_18 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_17 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxcv.3l1 -1 7.835381707e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxch.3l1 1 5.116732170e-21 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_16 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_15 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_14 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_13 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_12 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_11 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_10 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_9 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxdv.a2l1 -1 8.582606691e-07 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxdh.a2l1 1 -6.538566449e-23 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_8 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_7 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_6 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tasc.1l1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_5 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_4 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_3 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_2 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.l1b1_1 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3728 0 0.000000000e+00 0.000000000e+00 2.240022896e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3253 0 0.000000000e+00 0.000000000e+00 1.500000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip1.l1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_ho1b1_0 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_1 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_2 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_3 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_4 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_5 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tasc.1r1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_6 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_7 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_8 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxdv.a2r1 -1 -8.582606691e-07 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxdh.a2r1 1 6.538566449e-23 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_9 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_10 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_11 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_12 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_13 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_14 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_15 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_16 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxcv.3r1 -1 -7.835381707e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxch.3r1 1 -5.116732170e-21 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_17 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -bb_par.r1b1_18 20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tanar.4r1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3258 0 0.000000000e+00 0.000000000e+00 6.980000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tclp.4r1.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2863 0 0.000000000e+00 0.000000000e+00 3.170000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbrdh.4r1.b1 1 1.114941618e-20 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbrdv.4r1.b1 -1 1.127640692e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyyv.a4r1.b1 -1 -1.660247830e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyyh.4r1.b1 1 -2.323830724e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyh.5r1.b1 1 4.882698972e-14 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbcv.6r1.b1 -1 7.389676189e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_2872 0 0.000000000e+00 0.000000000e+00 3.003400000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.10r1.b1 3 7.339618790e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ms.11r1.b1 3 -4.342410499e-02 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.12r1.b1 -1 1.913001215e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.13r1.b1 1 -1.881041291e-10 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.14r1.b1 -1 9.137821098e-08 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.15r1.b1 1 1.682652912e-10 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbv.16l2.b1 -1 -1.903647093e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbh.15l2.b1 1 1.010391403e-21 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13l2.b1..1 2 -2.685952477e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12l2.b1..1 2 -2.315344809e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11l2.b1..1 2 -3.886012447e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10l2.b1..1 2 7.672929757e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9l2.b1..1 2 -4.053918558e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9l2.b1..1 2 -5.743051290e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8l2.b1..1 2 5.990552727e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.b7l2.b1..1 2 -7.199643307e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3297 0 0.000000000e+00 0.000000000e+00 1.570000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.6l2.b1..1 2 6.326784383e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.6l2.b1..1 2 4.481472271e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3300 0 0.000000000e+00 0.000000000e+00 6.217100000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyh.b5l2.b1 1 -6.030380299e-06 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyv.5l2.b1 -1 -3.182603635e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.b5l2.b1..1 2 -3.533389133e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3304 0 0.000000000e+00 0.000000000e+00 2.323800000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.b4l2.b1..1 2 3.284746223e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyh.4l2.b1 1 2.815987962e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyv.a4l2.b1 -1 8.942598374e-16 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcth.4l2.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3310 0 0.000000000e+00 0.000000000e+00 3.740000000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tdi.4l2.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3425 0 0.000000000e+00 0.000000000e+00 7.085000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tctvb.4l2 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcdd.4l2 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3311 0 0.000000000e+00 0.000000000e+00 4.340000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbxh.3l2 1 1.600000000e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3320 0 0.000000000e+00 0.000000000e+00 2.013906250e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3437 0 0.000000000e+00 0.000000000e+00 3.025000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -ip2 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tctvb.4r2 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tclia.4r2 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3331 0 0.000000000e+00 0.000000000e+00 4.661500000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyh.a4r2.b1 1 -1.064336172e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbyv.4r2.b1 -1 -5.422779793e-16 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqy.a4r2.b1..1 2 -3.260629757e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3336 0 0.000000000e+00 0.000000000e+00 1.995800000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbcv.a5r2.b1 -1 1.241458592e-15 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mcbch.5r2.b1 1 4.643722594e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.a5r2.b1..1 2 3.771170878e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3340 0 0.000000000e+00 0.000000000e+00 5.518400000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tclib.6r2.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3451 0 0.000000000e+00 0.000000000e+00 6.745000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tclim.6r2.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3341 0 0.000000000e+00 0.000000000e+00 3.662000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.6r2.b1..1 2 -5.519344634e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.6r2.b1..1 2 -3.909535782e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3344 0 0.000000000e+00 0.000000000e+00 1.504700000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.a7r2.b1..1 2 6.435592788e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.8r2.b1..1 2 -8.153588026e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqmc.9r2.b1..1 2 3.843818214e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqm.9r2.b1..1 2 5.445409136e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqml.10r2.b1..1 2 -8.748956513e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11r2.b1..1 2 1.804403305e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12r2.b1..1 2 3.064956459e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13r2.b1..1 2 3.577904348e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.13l3.b1..1 2 5.583107465e-05 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqt.12l3.b1..1 2 -5.577616555e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.11l3.b1..1 2 -6.145290487e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.10l3.b1..1 2 -6.456484606e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.b9l3.b1..1 2 2.697713634e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.8l3.b1..1 2 -1.992812853e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtli.7l3.b1..1 2 1.664432968e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3791 0 0.000000000e+00 0.000000000e+00 5.820933333e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqtlh.f6l3.b1..1 2 -1.756516783e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3798 0 0.000000000e+00 0.000000000e+00 5.262666667e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3538 0 0.000000000e+00 0.000000000e+00 5.946500000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcp.6l3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tchsh.6l3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3540 0 0.000000000e+00 0.000000000e+00 7.276500000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcapa.6l3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -drift_3541 0 0.000000000e+00 0.000000000e+00 3.200000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3799 0 0.000000000e+00 0.000000000e+00 4.711800000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwa.e5l3.b1..1 2 1.013148948e-03 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsg.5l3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -tcsm.5l3.b1 0 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -d_c6t_3806 0 0.000000000e+00 0.000000000e+00 7.694660000e+01 0.000000000e+00 0.000000000e+00 0.000000000e+00 -mqwa.e4l3.b1..1 2 -9.644776680e-04 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 0.000000000e+00 -NEXT -BLOCK DEFINITIONS------------------------------------------------------- -1 1 -BLOC1 d_c6t_27 -BLOC2 drift_602 -BLOC3 drift_604 -BLOC4 drift_605 -BLOC5 drift_606 -BLOC6 d_c6t_34 -BLOC7 drift_609 -BLOC8 drift_610 -BLOC9 d_c6t_35 -BLOC10 drift_613 -BLOC11 d_c6t_42 -BLOC12 drift_615 -BLOC13 drift_616 -BLOC14 drift_617 -BLOC15 d_c6t_43 -BLOC16 d_c6t_44 -BLOC17 drift_622 -BLOC18 drift_623 -BLOC19 d_c6t_50 -BLOC20 d_c6t_51 -BLOC21 d_c6t_52 -BLOC22 drift_630 -BLOC23 d_c6t_54 -BLOC24 d_c6t_55 -BLOC25 d_c6t_56 -BLOC26 d_c6t_58 -BLOC27 d_c6t_65 -BLOC28 d_c6t_69 -BLOC29 d_c6t_80 -BLOC30 drift_679 -BLOC31 d_c6t_83 -BLOC32 d_c6t_89 -BLOC33 d_c6t_90 -BLOC34 drift_689 -BLOC35 drift_690 -BLOC36 d_c6t_92 -BLOC37 d_c6t_179 -BLOC38 d_c6t_472 -BLOC39 d_c6t_476 -BLOC40 drift_1016 -BLOC41 d_c6t_478 -BLOC42 d_c6t_482 -BLOC43 drift_147 -BLOC44 drift_1024 -BLOC45 drift_1025 -BLOC46 d_c6t_485 -BLOC47 d_c6t_495 -BLOC48 d_c6t_497 -BLOC49 d_c6t_499 -BLOC50 d_c6t_501 -BLOC51 drift_1048 -BLOC52 drift_1051 -BLOC53 drift_1052 -BLOC54 drift_1053 -BLOC55 d_c6t_504 -BLOC56 drift_1056 -BLOC57 drift_1058 -BLOC58 drift_1059 -BLOC59 d_c6t_505 -BLOC60 d_c6t_513 -BLOC61 d_c6t_515 -BLOC62 d_c6t_538 -BLOC63 drift_680 -BLOC64 drift_1119 -BLOC65 d_c6t_911 -BLOC66 drift_1199 -BLOC67 d_c6t_917 -BLOC68 d_c6t_934 -BLOC69 drift_1215 -BLOC70 d_c6t_937 -BLOC71 drift_1220 -BLOC72 d_c6t_939 -BLOC73 d_c6t_941 -BLOC74 d_c6t_943 -BLOC75 drift_1225 -BLOC76 d_c6t_944 -BLOC77 drift_1229 -BLOC78 drift_1230 -BLOC79 d_c6t_946 -BLOC80 drift_1235 -BLOC81 drift_1236 -BLOC82 d_c6t_947 -BLOC83 drift_1240 -BLOC84 d_c6t_949 -BLOC85 drift_3570 -BLOC86 drift_3581 -BLOC87 d_c6t_951 -BLOC88 drift_3582 -BLOC89 drift_3583 -BLOC90 drift_1246 -BLOC91 drift_3584 -BLOC92 drift_3585 -BLOC93 drift_3586 -BLOC94 d_c6t_953 -BLOC95 drift_1251 -BLOC96 drift_3588 -BLOC97 drift_3589 -BLOC98 drift_3590 -BLOC99 drift_3591 -BLOC100 d_c6t_955 -BLOC101 drift_3593 -BLOC102 d_c6t_956 -BLOC103 drift_3595 -BLOC104 drift_3596 -BLOC105 drift_3597 -BLOC106 d_c6t_957 -BLOC107 drift_3598 -BLOC108 drift_3599 -BLOC109 drift_3600 -BLOC110 drift_3601 -BLOC111 drift_3602 -BLOC112 d_c6t_959 -BLOC113 drift_3604 -BLOC114 drift_3605 -BLOC115 drift_1261 -BLOC116 d_c6t_1 -BLOC117 d_c6t_973 -BLOC118 d_c6t_978 -BLOC119 d_c6t_982 -BLOC120 d_c6t_985 -BLOC121 d_c6t_987 -BLOC122 d_c6t_989 -BLOC123 d_c6t_991 -BLOC124 d_c6t_995 -BLOC125 d_c6t_998 -BLOC126 d_c6t_1004 -BLOC127 d_c6t_1008 -BLOC128 d_c6t_1011 -BLOC129 d_c6t_1017 -BLOC130 drift_1292 -BLOC131 d_c6t_1034 -BLOC132 d_c6t_1051 -BLOC133 d_c6t_1379 -BLOC134 d_c6t_1382 -BLOC135 d_c6t_1405 -BLOC136 d_c6t_1407 -BLOC137 d_c6t_1409 -BLOC138 drift_1450 -BLOC139 d_c6t_1410 -BLOC140 drift_231 -BLOC141 d_c6t_1411 -BLOC142 d_c6t_1412 -BLOC143 drift_1457 -BLOC144 drift_1458 -BLOC145 d_c6t_1440 -BLOC146 d_c6t_1832 -BLOC147 d_c6t_1839 -BLOC148 d_c6t_1843 -BLOC149 d_c6t_1847 -BLOC150 d_c6t_1861 -BLOC151 d_c6t_1868 -BLOC152 drift_2145 -BLOC153 drift_104 -BLOC154 drift_2146 -BLOC155 drift_2147 -BLOC156 drift_2148 -BLOC157 drift_2149 -BLOC158 drift_2150 -BLOC159 drift_2151 -BLOC160 drift_2152 -BLOC161 d_c6t_1869 -BLOC162 d_c6t_1876 -BLOC163 d_c6t_1877 -BLOC164 drift_2165 -BLOC165 d_c6t_1884 -BLOC166 drift_2168 -BLOC167 drift_5 -BLOC168 drift_2169 -BLOC169 d_c6t_1885 -BLOC170 drift_2172 -BLOC171 d_c6t_1892 -BLOC172 drift_2175 -BLOC173 d_c6t_1893 -BLOC174 d_c6t_1900 -BLOC175 drift_2180 -BLOC176 drift_2181 -BLOC177 drift_2182 -BLOC178 drift_2183 -BLOC179 drift_2184 -BLOC180 drift_2185 -BLOC181 d_c6t_1901 -BLOC182 d_c6t_1908 -BLOC183 drift_2190 -BLOC184 d_c6t_1909 -BLOC185 d_c6t_2353 -BLOC186 d_c6t_2356 -BLOC187 drift_2787 -BLOC188 d_c6t_2359 -BLOC189 d_c6t_2360 -BLOC190 drift_2793 -BLOC191 drift_2794 -BLOC192 drift_2795 -BLOC193 d_c6t_2363 -BLOC194 d_c6t_2366 -BLOC195 drift_2801 -BLOC196 d_c6t_2368 -BLOC197 d_c6t_2369 -BLOC198 drift_2808 -BLOC199 d_c6t_2370 -BLOC200 d_c6t_2372 -BLOC201 drift_2813 -BLOC202 drift_2814 -BLOC203 d_c6t_2374 -BLOC204 drift_2820 -BLOC205 drift_2823 -BLOC206 drift_2824 -BLOC207 d_c6t_2377 -BLOC208 drift_2826 -BLOC209 d_c6t_2379 -BLOC210 d_c6t_2389 -BLOC211 drift_2843 -BLOC212 d_c6t_2390 -BLOC213 d_c6t_2395 -BLOC214 d_c6t_2398 -BLOC215 drift_2852 -BLOC216 d_c6t_2399 -BLOC217 d_c6t_2402 -BLOC218 d_c6t_2405 -BLOC219 d_c6t_2827 -BLOC220 d_c6t_2834 -BLOC221 drift_1228 -BLOC222 drift_3728 -BLOC223 drift_3253 -BLOC224 drift_3258 -BLOC225 d_c6t_2863 -BLOC226 d_c6t_2872 -BLOC227 d_c6t_3297 -BLOC228 d_c6t_3300 -BLOC229 d_c6t_3304 -BLOC230 d_c6t_3310 -BLOC231 drift_3425 -BLOC232 d_c6t_3311 -BLOC233 d_c6t_3320 -BLOC234 drift_3437 -BLOC235 d_c6t_3331 -BLOC236 d_c6t_3336 -BLOC237 d_c6t_3340 -BLOC238 drift_3451 -BLOC239 d_c6t_3341 -BLOC240 d_c6t_3344 -BLOC241 d_c6t_3791 -BLOC242 d_c6t_3798 -BLOC243 drift_3538 -BLOC244 drift_3540 -BLOC245 drift_3541 -BLOC246 d_c6t_3799 -BLOC247 d_c6t_3806 -NEXT -STRUCTURE INPUT--------------------------------------------------------- -ip3 BLOC1 mqwa.a4r3.b1..1 -BLOC2 mqwa.a4r3.b1..1 BLOC2 -mqwa.a4r3.b1..1 BLOC2 mqwa.a4r3.b1..1 -BLOC3 mqwa.a4r3.b1..1 BLOC2 -mqwa.a4r3.b1..1 BLOC2 mqwa.a4r3.b1..1 -BLOC2 mqwa.a4r3.b1..1 BLOC3 -mqwb.4r3.b1..1 BLOC2 mqwb.4r3.b1..1 -BLOC2 mqwb.4r3.b1..1 BLOC2 -mqwb.4r3.b1..1 BLOC3 mqwa.a4r3.b1..1 -BLOC2 mqwa.a4r3.b1..1 BLOC2 -mqwa.a4r3.b1..1 BLOC2 mqwa.a4r3.b1..1 -BLOC3 mqwa.a4r3.b1..1 BLOC2 -mqwa.a4r3.b1..1 BLOC2 mqwa.a4r3.b1..1 -BLOC2 mqwa.a4r3.b1..1 BLOC4 -tcsg.4r3.b1 BLOC5 tcsm.4r3.b1 -BLOC4 mqwa.a4r3.b1..1 BLOC2 -mqwa.a4r3.b1..1 BLOC2 mqwa.a4r3.b1..1 -BLOC2 mqwa.a4r3.b1..1 BLOC6 -tcsg.a5r3.b1 BLOC5 tcsm.a5r3.b1 -BLOC7 tcsg.b5r3.b1 BLOC5 -tcsm.b5r3.b1 BLOC8 tcla.a5r3.b1 -BLOC5 tcla.b5r3.b1 BLOC9 -mqwa.a5r3.b1..1 BLOC2 mqwa.a5r3.b1..1 -BLOC2 mqwa.a5r3.b1..1 BLOC2 -mqwa.a5r3.b1..1 BLOC3 mqwa.a5r3.b1..1 -BLOC2 mqwa.a5r3.b1..1 BLOC2 -mqwa.a5r3.b1..1 BLOC2 mqwa.a5r3.b1..1 -BLOC3 mqwb.5r3.b1..1 BLOC2 -mqwb.5r3.b1..1 BLOC2 mqwb.5r3.b1..1 -BLOC2 mqwb.5r3.b1..1 BLOC3 -mqwa.a5r3.b1..1 BLOC2 mqwa.a5r3.b1..1 -BLOC2 mqwa.a5r3.b1..1 BLOC2 -mqwa.a5r3.b1..1 BLOC10 mqwa.a5r3.b1..1 -BLOC2 mqwa.a5r3.b1..1 BLOC2 -mqwa.a5r3.b1..1 BLOC2 mqwa.a5r3.b1..1 -BLOC3 mqwa.a5r3.b1..1 BLOC2 -mqwa.a5r3.b1..1 BLOC2 mqwa.a5r3.b1..1 -BLOC2 mqwa.a5r3.b1..1 BLOC11 -mbw.a6r3.b1 BLOC12 mbw.a6r3.b1 -BLOC12 mbw.a6r3.b1 BLOC13 -tcla.6r3.b1 BLOC14 mbw.d6r3.b1 -BLOC12 mbw.d6r3.b1 BLOC12 -mbw.d6r3.b1 BLOC15 mqtlh.a6r3.b1..1 -BLOC16 mqtlh.a6r3.b1..1 BLOC17 -mqtlh.a6r3.b1..1 BLOC16 mqtlh.a6r3.b1..1 -BLOC17 mqtlh.a6r3.b1..1 BLOC16 -mqtlh.a6r3.b1..1 BLOC18 mqtlh.a6r3.b1..1 -BLOC16 mqtlh.a6r3.b1..1 BLOC18 -mqtlh.a6r3.b1..1 BLOC16 mqtlh.a6r3.b1..1 -BLOC18 mqtlh.a6r3.b1..1 BLOC16 -mqtlh.a6r3.b1..1 BLOC19 tcla.7r3.b1 -BLOC20 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC22 mqtli.7r3.b1..1 -BLOC16 mqtli.7r3.b1..1 BLOC23 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC26 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC22 -mqtli.8r3.b1..1 BLOC16 mqtli.8r3.b1..1 -BLOC23 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC27 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC22 mqtli.a9r3.b1..1 BLOC16 -mqtli.a9r3.b1..1 BLOC18 mqtli.a9r3.b1..1 -BLOC16 mqtli.a9r3.b1..1 BLOC28 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC26 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC22 -mqtli.10r3.b1..1 BLOC16 mqtli.10r3.b1..1 -BLOC23 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC29 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC22 mqtli.11r3.b1..1 BLOC16 -mqtli.11r3.b1..1 BLOC30 ms.11r3.b1 -BLOC31 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.12r3.b1..1 BLOC33 -mqt.12r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.13r3.b1..1 -BLOC33 mqt.13r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.14r3.b1..1 -BLOC33 mqt.14r3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.15r3.b1..1 -BLOC33 mqt.15r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC37 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC37 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC37 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC37 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.15r3.b1..1 -BLOC33 mqt.15r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.14r3.b1..1 -BLOC33 mqt.14r3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.13l4.b1..1 -BLOC33 mqt.13l4.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.12l4.b1..1 BLOC33 mqt.12l4.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC26 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC22 mqtli.11l4.b1..1 -BLOC16 mqtli.11l4.b1..1 BLOC30 -ms.11r3.b1 BLOC38 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC39 mqml.10l4.b1..1 BLOC40 -mqml.10l4.b1..1 BLOC40 mqml.10l4.b1..1 -BLOC40 mqml.10l4.b1..1 BLOC41 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC42 mqmc.9l4.b1..1 -BLOC43 mqmc.9l4.b1..1 BLOC43 -mqmc.9l4.b1..1 BLOC43 mqmc.9l4.b1..1 -BLOC44 mqm.9l4.b1..1 BLOC45 -mqm.9l4.b1..1 BLOC45 mqm.9l4.b1..1 -BLOC45 mqm.9l4.b1..1 BLOC46 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC39 mqml.8l4.b1..1 -BLOC40 mqml.8l4.b1..1 BLOC40 -mqml.8l4.b1..1 BLOC40 mqml.8l4.b1..1 -BLOC41 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC47 -mqm.7l4.b1..1 BLOC45 mqm.7l4.b1..1 -BLOC45 mqm.7l4.b1..1 BLOC45 -mqm.7l4.b1..1 BLOC48 mqy.6l4.b1..1 -BLOC45 mqy.6l4.b1..1 BLOC45 -mqy.6l4.b1..1 BLOC45 mqy.6l4.b1..1 -BLOC49 mqy.5l4.b1..1 BLOC45 -mqy.5l4.b1..1 BLOC45 mqy.5l4.b1..1 -BLOC45 mqy.5l4.b1..1 BLOC50 -mbrb.5l4.b1..1 BLOC51 mbrb.5l4.b1..1 -BLOC51 mbrb.5l4.b1..1 BLOC51 -mbrb.5l4.b1..1 BLOC52 mbrs.5l4.b1..1 -BLOC51 mbrs.5l4.b1..1 BLOC51 -mbrs.5l4.b1..1 BLOC51 mbrs.5l4.b1..1 -BLOC53 acnca.d5l4.b1 BLOC5 -acnca.d5l4.b1 BLOC54 acnca.d5l4.b1 -BLOC5 acnca.d5l4.b1 BLOC55 -acsca.d5l4.b1 BLOC56 acsca.d5l4.b1 -BLOC56 acsca.d5l4.b1 BLOC56 -acsca.d5l4.b1 BLOC57 ip4 -BLOC58 acsca.d5l4.b1 BLOC56 -acsca.d5l4.b1 BLOC56 acsca.d5l4.b1 -BLOC56 acsca.d5l4.b1 BLOC59 -mbrs.5l4.b1..1 BLOC51 mbrs.5l4.b1..1 -BLOC51 mbrs.5l4.b1..1 BLOC51 -mbrs.5l4.b1..1 BLOC52 mbrb.5l4.b1..1 -BLOC51 mbrb.5l4.b1..1 BLOC51 -mbrb.5l4.b1..1 BLOC51 mbrb.5l4.b1..1 -BLOC50 mqy.5r4.b1..1 BLOC45 -mqy.5r4.b1..1 BLOC45 mqy.5r4.b1..1 -BLOC45 mqy.5r4.b1..1 BLOC49 -mqy.6r4.b1..1 BLOC45 mqy.6r4.b1..1 -BLOC45 mqy.6r4.b1..1 BLOC45 -mqy.6r4.b1..1 BLOC60 mqm.7r4.b1..1 -BLOC45 mqm.7r4.b1..1 BLOC45 -mqm.7r4.b1..1 BLOC45 mqm.7r4.b1..1 -BLOC61 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC39 -mqml.8r4.b1..1 BLOC40 mqml.8r4.b1..1 -BLOC40 mqml.8r4.b1..1 BLOC40 -mqml.8r4.b1..1 BLOC41 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC42 mqmc.9r4.b1..1 BLOC43 -mqmc.9r4.b1..1 BLOC43 mqmc.9r4.b1..1 -BLOC43 mqmc.9r4.b1..1 BLOC44 -mqm.9r4.b1..1 BLOC45 mqm.9r4.b1..1 -BLOC45 mqm.9r4.b1..1 BLOC45 -mqm.9r4.b1..1 BLOC46 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC39 mqml.10r4.b1..1 BLOC40 -mqml.10r4.b1..1 BLOC40 mqml.10r4.b1..1 -BLOC40 mqml.10r4.b1..1 BLOC41 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC62 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC22 -mqtli.11r4.b1..1 BLOC16 mqtli.11r4.b1..1 -BLOC30 ms.11r4.b1 BLOC31 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.12r4.b1..1 BLOC33 mqt.12r4.b1..1 -BLOC34 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.13r4.b1..1 BLOC33 -mqt.13r4.b1..1 BLOC34 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.14r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC63 mcbh.16r4.b1 -BLOC64 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC37 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC37 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC37 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC37 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.14r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.14r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.14r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.14r4.b1 BLOC63 mcbh.14l5.b1 -BLOC64 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.13l5.b1..1 BLOC33 -mqt.13l5.b1..1 BLOC34 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC63 mcbv.13l5.b1 -BLOC64 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.12l5.b1..1 BLOC33 -mqt.12l5.b1..1 BLOC34 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC63 mcbh.12l5.b1 -BLOC64 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC26 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC22 mqtli.11l5.b1..1 -BLOC16 mqtli.11l5.b1..1 BLOC30 -ms.13r4.b1 BLOC65 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC39 mqml.10l5.b1..1 BLOC40 -mqml.10l5.b1..1 BLOC40 mqml.10l5.b1..1 -BLOC40 mqml.10l5.b1..1 BLOC66 -ms.14r4.b1 BLOC67 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC42 mqmc.9l5.b1..1 BLOC43 -mqmc.9l5.b1..1 BLOC43 mqmc.9l5.b1..1 -BLOC43 mqmc.9l5.b1..1 BLOC44 -mqm.9l5.b1..1 BLOC45 mqm.9l5.b1..1 -BLOC45 mqm.9l5.b1..1 BLOC45 -mqm.9l5.b1..1 BLOC46 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC39 mqml.8l5.b1..1 BLOC40 -mqml.8l5.b1..1 BLOC40 mqml.8l5.b1..1 -BLOC40 mqml.8l5.b1..1 BLOC41 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC68 mqm.b7l5.b1..1 -BLOC45 mqm.b7l5.b1..1 BLOC45 -mqm.b7l5.b1..1 BLOC45 mqm.b7l5.b1..1 -BLOC69 mqm.b7l5.b1..1 BLOC45 -mqm.b7l5.b1..1 BLOC45 mqm.b7l5.b1..1 -BLOC45 mqm.b7l5.b1..1 BLOC70 -mqml.6l5.b1..1 BLOC40 mqml.6l5.b1..1 -BLOC40 mqml.6l5.b1..1 BLOC40 -mqml.6l5.b1..1 BLOC71 mcbch.6l5.b1 -BLOC72 mqyl.5l5.b1..1 BLOC40 -mqyl.5l5.b1..1 BLOC40 mqyl.5l5.b1..1 -BLOC40 mqyl.5l5.b1..1 BLOC71 -mcbyv.5l5.b1 BLOC73 mqyy.4l5.b1..1 -BLOC45 mqyy.4l5.b1..1 BLOC45 -mqyy.4l5.b1..1 BLOC45 mqyy.4l5.b1..1 -BLOC74 mcbyyv.4l5.b1 BLOC75 -mcbyyh.a4l5.b1 BLOC76 mcbrdh.4l5.b1 -BLOC77 mbrd.4l5.b1..1 BLOC78 -mbrd.4l5.b1..1 BLOC78 mbrd.4l5.b1..1 -BLOC78 mbrd.4l5.b1..1 BLOC79 -tcth.4l5.b1 BLOC80 tctva.4l5.b1 -BLOC81 tanc.4l5 BLOC82 -mbxa.4l5..1 BLOC83 mbxa.4l5..1 -BLOC83 mbxa.4l5..1 BLOC83 -mbxa.4l5..1 BLOC84 bb_par.l5b1_18 -BLOC85 bb_par.l5b1_17 BLOC86 -mcbxch.3l5 BLOC87 mqxc.3l5..1 -BLOC88 bb_par.l5b1_16 BLOC89 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC90 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC90 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC91 bb_par.l5b1_15 BLOC92 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC90 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC90 -mqxc.3l5..1 BLOC93 bb_par.l5b1_14 -BLOC94 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC96 bb_par.l5b1_13 -BLOC97 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC98 bb_par.l5b1_12 BLOC99 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC100 bb_par.l5b1_11 BLOC101 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC102 bb_par.l5b1_10 BLOC103 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC104 bb_par.l5b1_9 BLOC105 -mcbxdh.a2l5 BLOC106 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC107 -bb_par.l5b1_8 BLOC108 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC90 -mqxc.1l5..1 BLOC90 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC90 -mqxc.1l5..1 BLOC90 mqxc.1l5..1 -BLOC109 bb_par.l5b1_7 BLOC110 -mqxc.1l5..1 BLOC90 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC90 -mqxc.1l5..1 BLOC90 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC90 -mqxc.1l5..1 BLOC111 bb_par.l5b1_6 -BLOC112 tasc.1l5 BLOC113 -bb_par.l5b1_5 BLOC85 bb_par.l5b1_4 -BLOC85 bb_par.l5b1_3 BLOC85 -bb_par.l5b1_2 BLOC85 bb_par.l5b1_1 -BLOC114 mbcs2.1l5 BLOC115 -ip5 BLOC116 -mymarker bb_ho5b1_0 -BLOC115 mbcs2.1l5 BLOC114 -bb_par.r5b1_1 BLOC85 bb_par.r5b1_2 -BLOC85 bb_par.r5b1_3 BLOC85 -bb_par.r5b1_4 BLOC85 bb_par.r5b1_5 -BLOC113 tasc.1r5 BLOC112 -bb_par.r5b1_6 BLOC111 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC90 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC90 mqxc.1r5..1 -BLOC110 bb_par.r5b1_7 BLOC109 -mqxc.1r5..1 BLOC90 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC90 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC108 bb_par.r5b1_8 -BLOC107 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC106 mcbxdh.a2r5 -BLOC105 bb_par.r5b1_9 BLOC104 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC103 bb_par.r5b1_10 BLOC102 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC101 bb_par.r5b1_11 BLOC100 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC99 bb_par.r5b1_12 BLOC98 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC97 -bb_par.r5b1_13 BLOC96 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC94 -bb_par.r5b1_14 BLOC93 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC90 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC90 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC92 bb_par.r5b1_15 BLOC91 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC90 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC90 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC89 bb_par.r5b1_16 BLOC88 -mqxc.3r5..1 BLOC87 mcbxch.3r5 -BLOC86 bb_par.r5b1_17 BLOC85 -bb_par.r5b1_18 BLOC84 mbxa.4r5..1 -BLOC83 mbxa.4r5..1 BLOC83 -mbxa.4r5..1 BLOC83 mbxa.4r5..1 -BLOC82 tanc.4r5 BLOC117 -mbrd.4r5.b1..1 BLOC78 mbrd.4r5.b1..1 -BLOC78 mbrd.4r5.b1..1 BLOC78 -mbrd.4r5.b1..1 BLOC77 mcbrdh.4r5.b1 -BLOC76 mcbyyv.a4r5.b1 BLOC75 -mcbyyh.4r5.b1 BLOC74 mqyy.4r5.b1..1 -BLOC45 mqyy.4r5.b1..1 BLOC45 -mqyy.4r5.b1..1 BLOC45 mqyy.4r5.b1..1 -BLOC118 mqyl.5r5.b1..1 BLOC40 -mqyl.5r5.b1..1 BLOC40 mqyl.5r5.b1..1 -BLOC40 mqyl.5r5.b1..1 BLOC71 -mcbyh.5r5.b1 BLOC72 mqml.6r5.b1..1 -BLOC40 mqml.6r5.b1..1 BLOC40 -mqml.6r5.b1..1 BLOC40 mqml.6r5.b1..1 -BLOC71 mcbcv.6r5.b1 BLOC119 -mqm.a7r5.b1..1 BLOC45 mqm.a7r5.b1..1 -BLOC45 mqm.a7r5.b1..1 BLOC45 -mqm.a7r5.b1..1 BLOC69 mqm.a7r5.b1..1 -BLOC45 mqm.a7r5.b1..1 BLOC45 -mqm.a7r5.b1..1 BLOC45 mqm.a7r5.b1..1 -BLOC120 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC122 -mqml.8r5.b1..1 BLOC40 mqml.8r5.b1..1 -BLOC40 mqml.8r5.b1..1 BLOC40 -mqml.8r5.b1..1 BLOC123 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC124 mqmc.9r5.b1..1 BLOC43 -mqmc.9r5.b1..1 BLOC43 mqmc.9r5.b1..1 -BLOC43 mqmc.9r5.b1..1 BLOC44 -mqm.9r5.b1..1 BLOC45 mqm.9r5.b1..1 -BLOC45 mqm.9r5.b1..1 BLOC45 -mqm.9r5.b1..1 BLOC125 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC122 mqml.10r5.b1..1 BLOC40 -mqml.10r5.b1..1 BLOC40 mqml.10r5.b1..1 -BLOC40 mqml.10r5.b1..1 BLOC66 -ms.10r5.b1 BLOC126 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC127 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC22 mqtli.11r5.b1..1 -BLOC16 mqtli.11r5.b1..1 BLOC30 -ms.11r5.b1 BLOC128 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.12r5.b1..1 -BLOC33 mqt.12r5.b1..1 BLOC34 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC63 -mcbv.12r5.b1 BLOC130 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.13r5.b1..1 -BLOC33 mqt.13r5.b1..1 BLOC34 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.12r4.b1 BLOC63 -mcbh.13r5.b1 BLOC130 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.10r5.b1 BLOC63 mcbv.14r5.b1 -BLOC130 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r5.b1 -BLOC63 mcbh.15r5.b1 BLOC130 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.12r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.10r5.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.11r5.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.12r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.10r5.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.11r5.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.12r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.10r5.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.11r5.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC131 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.10r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC131 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.10r5.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC131 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.12r4.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.10r5.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC131 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.10r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.10r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.10r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC63 mcbh.15l6.b1 BLOC130 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.10r5.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.13l6.b1..1 BLOC33 mqt.13l6.b1..1 -BLOC34 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r5.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.12l6.b1..1 BLOC33 -mqt.12l6.b1..1 BLOC34 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC133 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC22 -mqtli.11l6.b1..1 BLOC16 mqtli.11l6.b1..1 -BLOC30 ms.12r4.b1 BLOC134 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC122 mqml.10l6.b1..1 -BLOC40 mqml.10l6.b1..1 BLOC40 -mqml.10l6.b1..1 BLOC40 mqml.10l6.b1..1 -BLOC123 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC124 -mqmc.9l6.b1..1 BLOC43 mqmc.9l6.b1..1 -BLOC43 mqmc.9l6.b1..1 BLOC43 -mqmc.9l6.b1..1 BLOC44 mqm.9l6.b1..1 -BLOC45 mqm.9l6.b1..1 BLOC45 -mqm.9l6.b1..1 BLOC45 mqm.9l6.b1..1 -BLOC125 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC122 -mqml.8l6.b1..1 BLOC40 mqml.8l6.b1..1 -BLOC40 mqml.8l6.b1..1 BLOC40 -mqml.8l6.b1..1 BLOC123 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC135 mqyl.5l6.b1..1 BLOC40 -mqyl.5l6.b1..1 BLOC40 mqyl.5l6.b1..1 -BLOC40 mqyl.5l6.b1..1 BLOC136 -mqy.4l6.b1..1 BLOC45 mqy.4l6.b1..1 -BLOC45 mqy.4l6.b1..1 BLOC45 -mqy.4l6.b1..1 BLOC137 tcdqm.b4l6.b1 -BLOC138 tcdqm.a4l6.b1 BLOC139 -tcdsa.4l6.b1 BLOC140 tcdsb.4l6.b1 -BLOC141 ip6 BLOC142 -tcdqa.a4r6.b1 BLOC140 tcdqa.b4r6.b1 -BLOC143 tcsg.4r6.b1 BLOC144 -tcdqm.a4r6.b1 BLOC138 tcdqm.b4r6.b1 -BLOC137 mqy.4r6.b1..1 BLOC45 -mqy.4r6.b1..1 BLOC45 mqy.4r6.b1..1 -BLOC45 mqy.4r6.b1..1 BLOC136 -mqyl.5r6.b1..1 BLOC40 mqyl.5r6.b1..1 -BLOC40 mqyl.5r6.b1..1 BLOC40 -mqyl.5r6.b1..1 BLOC135 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC122 mqml.8r6.b1..1 BLOC40 -mqml.8r6.b1..1 BLOC40 mqml.8r6.b1..1 -BLOC40 mqml.8r6.b1..1 BLOC123 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC124 mqmc.9r6.b1..1 -BLOC43 mqmc.9r6.b1..1 BLOC43 -mqmc.9r6.b1..1 BLOC43 mqmc.9r6.b1..1 -BLOC44 mqm.9r6.b1..1 BLOC45 -mqm.9r6.b1..1 BLOC45 mqm.9r6.b1..1 -BLOC45 mqm.9r6.b1..1 BLOC125 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC122 mqml.10r6.b1..1 -BLOC40 mqml.10r6.b1..1 BLOC40 -mqml.10r6.b1..1 BLOC40 mqml.10r6.b1..1 -BLOC123 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC145 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC22 mqtli.11r6.b1..1 BLOC16 -mqtli.11r6.b1..1 BLOC30 ms.12r3.b1 -BLOC128 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.12r6.b1..1 BLOC33 -mqt.12r6.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.13r6.b1..1 -BLOC33 mqt.13r6.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.15r3.b1..1 -BLOC33 mqt.15r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.14r3.b1..1 -BLOC33 mqt.14r3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC131 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC131 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC131 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC131 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.14r3.b1..1 -BLOC33 mqt.14r3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.15r3.b1..1 -BLOC33 mqt.15r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.13l7.b1..1 -BLOC33 mqt.13l7.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.12l7.b1..1 BLOC33 mqt.12l7.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC133 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC22 mqtli.11l7.b1..1 -BLOC16 mqtli.11l7.b1..1 BLOC30 -ms.12r3.b1 BLOC146 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC133 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC22 mqtli.10l7.b1..1 -BLOC16 mqtli.10l7.b1..1 BLOC147 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC148 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC22 -mqtli.b9l7.b1..1 BLOC16 mqtli.b9l7.b1..1 -BLOC18 mqtli.b9l7.b1..1 BLOC16 -mqtli.b9l7.b1..1 BLOC149 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC133 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC22 mqtli.8l7.b1..1 -BLOC16 mqtli.8l7.b1..1 BLOC147 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC133 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC22 -mqtli.7l7.b1..1 BLOC16 mqtli.7l7.b1..1 -BLOC150 mqtlh.f6l7.b1..1 BLOC16 -mqtlh.f6l7.b1..1 BLOC18 mqtlh.f6l7.b1..1 -BLOC16 mqtlh.f6l7.b1..1 BLOC18 -mqtlh.f6l7.b1..1 BLOC16 mqtlh.f6l7.b1..1 -BLOC18 mqtlh.f6l7.b1..1 BLOC16 -mqtlh.f6l7.b1..1 BLOC17 mqtlh.f6l7.b1..1 -BLOC16 mqtlh.f6l7.b1..1 BLOC17 -mqtlh.f6l7.b1..1 BLOC16 mqtlh.f6l7.b1..1 -BLOC151 mbw.d6l7.b1 BLOC12 -mbw.d6l7.b1 BLOC152 tcp.d6l7.b1 -BLOC5 tcp.c6l7.b1 BLOC5 -tcp.b6l7.b1 BLOC5 tcp.a6l7.b1 -BLOC153 tchsv.6l7.b1 BLOC154 -tchsh.6l7.b1 BLOC154 tchss.6l7.b1 -BLOC155 tcapa.6l7.b1 BLOC156 -mbw.b6l7.b1 BLOC157 tcapb.6l7.b1 -BLOC158 mbw.b6l7.b1 BLOC159 -tcsg.b6l7.b1 BLOC5 tcsm.b6l7.b1 -BLOC5 tcsg.a6l7.b1 BLOC5 -tcsm.a6l7.b1 BLOC160 tcapc.6l7.b1 -BLOC161 mqwa.e5l7.b1..1 BLOC2 -mqwa.e5l7.b1..1 BLOC2 mqwa.e5l7.b1..1 -BLOC2 mqwa.e5l7.b1..1 BLOC3 -mqwa.e5l7.b1..1 BLOC2 mqwa.e5l7.b1..1 -BLOC2 mqwa.e5l7.b1..1 BLOC2 -mqwa.e5l7.b1..1 BLOC3 mqwa.e5l7.b1..1 -BLOC2 mqwa.e5l7.b1..1 BLOC2 -mqwa.e5l7.b1..1 BLOC2 mqwa.e5l7.b1..1 -BLOC3 mqwb.5l7.b1..1 BLOC2 -mqwb.5l7.b1..1 BLOC2 mqwb.5l7.b1..1 -BLOC2 mqwb.5l7.b1..1 BLOC3 -mqwa.e5l7.b1..1 BLOC2 mqwa.e5l7.b1..1 -BLOC2 mqwa.e5l7.b1..1 BLOC2 -mqwa.e5l7.b1..1 BLOC3 mqwa.e5l7.b1..1 -BLOC2 mqwa.e5l7.b1..1 BLOC2 -mqwa.e5l7.b1..1 BLOC2 mqwa.e5l7.b1..1 -BLOC162 tcsg.b5l7.b1 BLOC5 -tcsm.b5l7.b1 BLOC5 tcsg.a5l7.b1 -BLOC5 tcsm.a5l7.b1 BLOC163 -mqwa.e4l7.b1..1 BLOC2 mqwa.e4l7.b1..1 -BLOC2 mqwa.e4l7.b1..1 BLOC2 -mqwa.e4l7.b1..1 BLOC3 mqwa.e4l7.b1..1 -BLOC2 mqwa.e4l7.b1..1 BLOC2 -mqwa.e4l7.b1..1 BLOC2 mqwa.e4l7.b1..1 -BLOC164 tcsg.d4l7.b1 BLOC5 -tcsm.d4l7.b1 BLOC164 mqwa.e4l7.b1..1 -BLOC2 mqwa.e4l7.b1..1 BLOC2 -mqwa.e4l7.b1..1 BLOC2 mqwa.e4l7.b1..1 -BLOC3 mqwb.4l7.b1..1 BLOC2 -mqwb.4l7.b1..1 BLOC2 mqwb.4l7.b1..1 -BLOC2 mqwb.4l7.b1..1 BLOC3 -mqwa.e4l7.b1..1 BLOC2 mqwa.e4l7.b1..1 -BLOC2 mqwa.e4l7.b1..1 BLOC2 -mqwa.e4l7.b1..1 BLOC3 mqwa.e4l7.b1..1 -BLOC2 mqwa.e4l7.b1..1 BLOC2 -mqwa.e4l7.b1..1 BLOC2 mqwa.e4l7.b1..1 -BLOC165 tcsg.c4l7.b1 BLOC5 -tcsm.c4l7.b1 BLOC166 tcsg.b4l7.b1 -BLOC5 tcsm.b4l7.b1 BLOC5 -tcsg.a4l7.b1 BLOC5 tcsm.a4l7.b1 -BLOC167 ip7 BLOC167 -tcsg.a4r7.b1 BLOC5 tcsm.a4r7.b1 -BLOC168 tcsg.b4r7.b1 BLOC5 -tcsm.b4r7.b1 BLOC169 mqwa.a4r7.b1..1 -BLOC2 mqwa.a4r7.b1..1 BLOC2 -mqwa.a4r7.b1..1 BLOC2 mqwa.a4r7.b1..1 -BLOC3 mqwa.a4r7.b1..1 BLOC2 -mqwa.a4r7.b1..1 BLOC2 mqwa.a4r7.b1..1 -BLOC2 mqwa.a4r7.b1..1 BLOC3 -mqwb.4l7.b1..1 BLOC2 mqwb.4l7.b1..1 -BLOC2 mqwb.4l7.b1..1 BLOC2 -mqwb.4l7.b1..1 BLOC3 mqwa.a4r7.b1..1 -BLOC2 mqwa.a4r7.b1..1 BLOC2 -mqwa.a4r7.b1..1 BLOC2 mqwa.a4r7.b1..1 -BLOC170 mqwa.a4r7.b1..1 BLOC2 -mqwa.a4r7.b1..1 BLOC2 mqwa.a4r7.b1..1 -BLOC2 mqwa.a4r7.b1..1 BLOC3 -mqwa.a4r7.b1..1 BLOC2 mqwa.a4r7.b1..1 -BLOC2 mqwa.a4r7.b1..1 BLOC2 -mqwa.a4r7.b1..1 BLOC171 tcsg.a5r7.b1 -BLOC5 tcsm.a5r7.b1 BLOC5 -tcsg.b5r7.b1 BLOC5 tcsm.b5r7.b1 -BLOC172 tcsg.c5r7.b1 BLOC5 -tcsm.c5r7.b1 BLOC5 tcsg.d5r7.b1 -BLOC5 tcsm.d5r7.b1 BLOC5 -tcsg.e5r7.b1 BLOC5 tcsm.e5r7.b1 -BLOC173 mqwa.a5r7.b1..1 BLOC2 -mqwa.a5r7.b1..1 BLOC2 mqwa.a5r7.b1..1 -BLOC2 mqwa.a5r7.b1..1 BLOC3 -mqwa.a5r7.b1..1 BLOC2 mqwa.a5r7.b1..1 -BLOC2 mqwa.a5r7.b1..1 BLOC2 -mqwa.a5r7.b1..1 BLOC3 mqwb.5l7.b1..1 -BLOC2 mqwb.5l7.b1..1 BLOC2 -mqwb.5l7.b1..1 BLOC2 mqwb.5l7.b1..1 -BLOC3 mqwa.a5r7.b1..1 BLOC2 -mqwa.a5r7.b1..1 BLOC2 mqwa.a5r7.b1..1 -BLOC2 mqwa.a5r7.b1..1 BLOC3 -mqwa.a5r7.b1..1 BLOC2 mqwa.a5r7.b1..1 -BLOC2 mqwa.a5r7.b1..1 BLOC2 -mqwa.a5r7.b1..1 BLOC3 mqwa.a5r7.b1..1 -BLOC2 mqwa.a5r7.b1..1 BLOC2 -mqwa.a5r7.b1..1 BLOC2 mqwa.a5r7.b1..1 -BLOC174 tcsg.6r7.b1 BLOC5 -tcsm.6r7.b1 BLOC175 tcla.a6r7.b1 -BLOC176 mbw.b6l7.b1 BLOC177 -mbw.b6l7.b1 BLOC178 tcla.b6r7.b1 -BLOC179 mbw.d6l7.b1 BLOC12 -mbw.d6l7.b1 BLOC180 tcla.c6r7.b1 -BLOC5 tcla.d6r7.b1 BLOC181 -mqtlh.a6r7.b1..1 BLOC16 mqtlh.a6r7.b1..1 -BLOC18 mqtlh.a6r7.b1..1 BLOC16 -mqtlh.a6r7.b1..1 BLOC18 mqtlh.a6r7.b1..1 -BLOC16 mqtlh.a6r7.b1..1 BLOC18 -mqtlh.a6r7.b1..1 BLOC16 mqtlh.a6r7.b1..1 -BLOC17 mqtlh.a6r7.b1..1 BLOC16 -mqtlh.a6r7.b1..1 BLOC17 mqtlh.a6r7.b1..1 -BLOC16 mqtlh.a6r7.b1..1 BLOC182 -tcla.a7r7.b1 BLOC183 tcla.b7r7.b1 -BLOC184 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC22 mqtli.7r7.b1..1 -BLOC16 mqtli.7r7.b1..1 BLOC147 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC133 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC22 -mqtli.8r7.b1..1 BLOC16 mqtli.8r7.b1..1 -BLOC147 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC148 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC22 mqtli.a9r7.b1..1 BLOC16 -mqtli.a9r7.b1..1 BLOC18 mqtli.a9r7.b1..1 -BLOC16 mqtli.a9r7.b1..1 BLOC149 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC133 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC22 -mqtli.10r7.b1..1 BLOC16 mqtli.10r7.b1..1 -BLOC147 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC127 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC22 mqtli.11r7.b1..1 BLOC16 -mqtli.11r7.b1..1 BLOC30 ms.11r3.b1 -BLOC128 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.12r7.b1..1 BLOC33 -mqt.12r7.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.13r7.b1..1 -BLOC33 mqt.13r7.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.14r3.b1..1 -BLOC33 mqt.14r3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.15r3.b1..1 -BLOC33 mqt.15r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC131 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC131 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC131 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC131 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.15r3.b1..1 -BLOC33 mqt.15r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.14r3.b1..1 -BLOC33 mqt.14r3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC129 mqt.13l8.b1..1 -BLOC33 mqt.13l8.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.12l8.b1..1 BLOC33 mqt.12l8.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC133 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC22 mqtli.11l8.b1..1 -BLOC16 mqtli.11l8.b1..1 BLOC30 -ms.11r3.b1 BLOC134 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC122 mqml.10l8.b1..1 BLOC40 -mqml.10l8.b1..1 BLOC40 mqml.10l8.b1..1 -BLOC40 mqml.10l8.b1..1 BLOC123 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC124 mqmc.9l8.b1..1 -BLOC43 mqmc.9l8.b1..1 BLOC43 -mqmc.9l8.b1..1 BLOC43 mqmc.9l8.b1..1 -BLOC44 mqm.9l8.b1..1 BLOC45 -mqm.9l8.b1..1 BLOC45 mqm.9l8.b1..1 -BLOC45 mqm.9l8.b1..1 BLOC125 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC122 mqml.8l8.b1..1 -BLOC40 mqml.8l8.b1..1 BLOC40 -mqml.8l8.b1..1 BLOC40 mqml.8l8.b1..1 -BLOC123 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC185 -mqm.b7l8.b1..1 BLOC45 mqm.b7l8.b1..1 -BLOC45 mqm.b7l8.b1..1 BLOC45 -mqm.b7l8.b1..1 BLOC69 mqm.b7l8.b1..1 -BLOC45 mqm.b7l8.b1..1 BLOC45 -mqm.b7l8.b1..1 BLOC45 mqm.b7l8.b1..1 -BLOC186 mqml.6l8.b1..1 BLOC40 -mqml.6l8.b1..1 BLOC40 mqml.6l8.b1..1 -BLOC40 mqml.6l8.b1..1 BLOC187 -mqm.6l8.b1..1 BLOC45 mqm.6l8.b1..1 -BLOC45 mqm.6l8.b1..1 BLOC45 -mqm.6l8.b1..1 BLOC188 tclim.6l8.b1 -BLOC189 mcbcv.5l8.b1 BLOC190 -mcbch.a5l8.b1 BLOC191 mqm.b5l8.b1..1 -BLOC45 mqm.b5l8.b1..1 BLOC45 -mqm.b5l8.b1..1 BLOC45 mqm.b5l8.b1..1 -BLOC192 mqm.b5l8.b1..1 BLOC45 -mqm.b5l8.b1..1 BLOC45 mqm.b5l8.b1..1 -BLOC45 mqm.b5l8.b1..1 BLOC193 -mqy.b4l8.b1..1 BLOC45 mqy.b4l8.b1..1 -BLOC45 mqy.b4l8.b1..1 BLOC45 -mqy.b4l8.b1..1 BLOC192 mqy.b4l8.b1..1 -BLOC45 mqy.b4l8.b1..1 BLOC45 -mqy.b4l8.b1..1 BLOC45 mqy.b4l8.b1..1 -BLOC194 mcbyh.4l8.b1 BLOC190 -mcbyv.a4l8.b1 BLOC195 mbrc.4l8.b1..1 -BLOC51 mbrc.4l8.b1..1 BLOC51 -mbrc.4l8.b1..1 BLOC51 mbrc.4l8.b1..1 -BLOC196 tcth.4l8.b1 BLOC197 -tclia.4l8 BLOC198 tctvb.4l8 -BLOC199 mbx.4l8..1 BLOC51 -mbx.4l8..1 BLOC51 mbx.4l8..1 -BLOC51 mbx.4l8..1 BLOC200 -mcbxv.3l8 BLOC201 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC203 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC205 -mcbxv.3l8 BLOC206 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC207 mcbxv.3l8 BLOC208 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC209 ip8 -BLOC209 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC208 -mcbxv.3l8 BLOC207 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC206 mcbxv.3l8 BLOC205 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC203 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC201 mcbxv.3l8 BLOC200 -mbrc.4l8.b1..1 BLOC51 mbrc.4l8.b1..1 -BLOC51 mbrc.4l8.b1..1 BLOC51 -mbrc.4l8.b1..1 BLOC210 tcddm.4r8 -BLOC211 tctvb.4r8 BLOC212 -mbx.4l8..1 BLOC51 mbx.4l8..1 -BLOC51 mbx.4l8..1 BLOC51 -mbx.4l8..1 BLOC195 mcbyh.a4r8.b1 -BLOC190 mcbyv.4r8.b1 BLOC194 -mqy.a4r8.b1..1 BLOC45 mqy.a4r8.b1..1 -BLOC45 mqy.a4r8.b1..1 BLOC45 -mqy.a4r8.b1..1 BLOC192 mqy.a4r8.b1..1 -BLOC45 mqy.a4r8.b1..1 BLOC45 -mqy.a4r8.b1..1 BLOC45 mqy.a4r8.b1..1 -BLOC213 mqy.a5r8.b1..1 BLOC45 -mqy.a5r8.b1..1 BLOC45 mqy.a5r8.b1..1 -BLOC45 mqy.a5r8.b1..1 BLOC192 -mqy.a5r8.b1..1 BLOC45 mqy.a5r8.b1..1 -BLOC45 mqy.a5r8.b1..1 BLOC45 -mqy.a5r8.b1..1 BLOC214 mcbyh.5r8.b1 -BLOC215 mcbyv.b5r8.b1 BLOC216 -mqml.6r8.b1..1 BLOC40 mqml.6r8.b1..1 -BLOC40 mqml.6r8.b1..1 BLOC40 -mqml.6r8.b1..1 BLOC187 mqm.6r8.b1..1 -BLOC45 mqm.6r8.b1..1 BLOC45 -mqm.6r8.b1..1 BLOC45 mqm.6r8.b1..1 -BLOC217 mqm.a7r8.b1..1 BLOC45 -mqm.a7r8.b1..1 BLOC45 mqm.a7r8.b1..1 -BLOC45 mqm.a7r8.b1..1 BLOC69 -mqm.a7r8.b1..1 BLOC45 mqm.a7r8.b1..1 -BLOC45 mqm.a7r8.b1..1 BLOC45 -mqm.a7r8.b1..1 BLOC218 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC39 mqml.8r8.b1..1 BLOC40 -mqml.8r8.b1..1 BLOC40 mqml.8r8.b1..1 -BLOC40 mqml.8r8.b1..1 BLOC41 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC42 mqmc.9r8.b1..1 -BLOC43 mqmc.9r8.b1..1 BLOC43 -mqmc.9r8.b1..1 BLOC43 mqmc.9r8.b1..1 -BLOC44 mqm.9r8.b1..1 BLOC45 -mqm.9r8.b1..1 BLOC45 mqm.9r8.b1..1 -BLOC45 mqm.9r8.b1..1 BLOC46 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC39 mqml.10r8.b1..1 -BLOC40 mqml.10r8.b1..1 BLOC40 -mqml.10r8.b1..1 BLOC40 mqml.10r8.b1..1 -BLOC41 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC62 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC22 mqtli.11r8.b1..1 BLOC16 -mqtli.11r8.b1..1 BLOC30 ms.11r4.b1 -BLOC31 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.12r8.b1..1 BLOC33 -mqt.12r8.b1..1 BLOC34 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.13r8.b1..1 -BLOC33 mqt.13r8.b1..1 BLOC34 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.13r8.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC35 ms.14r8.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC63 -mcbv.15r8.b1 BLOC64 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC63 mcbh.16r8.b1 -BLOC64 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC37 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r8.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC37 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.11r4.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC37 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.13r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r8.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC37 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r8.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.14r8.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r8.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.14r8.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r8.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.14r8.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.13r8.b1 BLOC63 mcbv.15l1.b1 -BLOC64 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.14r8.b1 -BLOC63 mcbh.14l1.b1 BLOC64 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.13l5.b1..1 BLOC33 mqt.13l5.b1..1 -BLOC34 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC63 mcbv.13l1.b1 BLOC64 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.12l5.b1..1 BLOC33 mqt.12l5.b1..1 -BLOC34 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC63 mcbh.12l1.b1 BLOC64 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC26 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC22 mqtli.11l5.b1..1 BLOC16 -mqtli.11l5.b1..1 BLOC30 ms.13r8.b1 -BLOC65 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC39 -mqml.10l5.b1..1 BLOC40 mqml.10l5.b1..1 -BLOC40 mqml.10l5.b1..1 BLOC40 -mqml.10l5.b1..1 BLOC66 ms.14r8.b1 -BLOC67 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC42 -mqmc.9l5.b1..1 BLOC43 mqmc.9l5.b1..1 -BLOC43 mqmc.9l5.b1..1 BLOC43 -mqmc.9l5.b1..1 BLOC44 mqm.9l5.b1..1 -BLOC45 mqm.9l5.b1..1 BLOC45 -mqm.9l5.b1..1 BLOC45 mqm.9l5.b1..1 -BLOC46 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC39 -mqml.8l5.b1..1 BLOC40 mqml.8l5.b1..1 -BLOC40 mqml.8l5.b1..1 BLOC40 -mqml.8l5.b1..1 BLOC41 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC68 mqm.b7l5.b1..1 BLOC45 -mqm.b7l5.b1..1 BLOC45 mqm.b7l5.b1..1 -BLOC45 mqm.b7l5.b1..1 BLOC69 -mqm.b7l5.b1..1 BLOC45 mqm.b7l5.b1..1 -BLOC45 mqm.b7l5.b1..1 BLOC45 -mqm.b7l5.b1..1 BLOC219 mcbch.6l1.b1 -BLOC71 mqml.6l5.b1..1 BLOC40 -mqml.6l5.b1..1 BLOC40 mqml.6l5.b1..1 -BLOC40 mqml.6l5.b1..1 BLOC72 -mcbyv.5l1.b1 BLOC71 mqyl.5l5.b1..1 -BLOC40 mqyl.5l5.b1..1 BLOC40 -mqyl.5l5.b1..1 BLOC40 mqyl.5l5.b1..1 -BLOC118 mqyy.4l5.b1..1 BLOC45 -mqyy.4l5.b1..1 BLOC45 mqyy.4l5.b1..1 -BLOC45 mqyy.4l5.b1..1 BLOC74 -mcbyyv.4l1.b1 BLOC75 mcbyyh.a4l1.b1 -BLOC220 mcbrdv.4l1.b1 BLOC221 -mcbrdh.4l1.b1 BLOC77 mbrd.4l5.b1..1 -BLOC78 mbrd.4l5.b1..1 BLOC78 -mbrd.4l5.b1..1 BLOC78 mbrd.4l5.b1..1 -BLOC79 tcth.4l1.b1 BLOC80 -tctva.4l1.b1 BLOC81 tanal.4l1 -BLOC82 mbxa.4l5..1 BLOC83 -mbxa.4l5..1 BLOC83 mbxa.4l5..1 -BLOC83 mbxa.4l5..1 BLOC84 -bb_par.l1b1_18 BLOC85 bb_par.l1b1_17 -BLOC86 mcbxcv.3l1 mcbxch.3l1 -BLOC87 mqxc.3l5..1 BLOC88 -bb_par.l1b1_16 BLOC89 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC90 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC90 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC91 -bb_par.l1b1_15 BLOC92 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC90 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC90 mqxc.3l5..1 BLOC90 -mqxc.3l5..1 BLOC90 mqxc.3l5..1 -BLOC93 bb_par.l1b1_14 BLOC94 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC96 bb_par.l1b1_13 BLOC97 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC98 -bb_par.l1b1_12 BLOC99 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC100 -bb_par.l1b1_11 BLOC101 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC102 -bb_par.l1b1_10 BLOC103 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC95 -mqxd.b2l5..1 BLOC95 mqxd.b2l5..1 -BLOC95 mqxd.b2l5..1 BLOC104 -bb_par.l1b1_9 BLOC105 mcbxdv.a2l1 -mcbxdh.a2l1 BLOC106 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC107 -bb_par.l1b1_8 BLOC108 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC90 -mqxc.1l5..1 BLOC90 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC90 -mqxc.1l5..1 BLOC90 mqxc.1l5..1 -BLOC109 bb_par.l1b1_7 BLOC110 -mqxc.1l5..1 BLOC90 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC90 -mqxc.1l5..1 BLOC90 mqxc.1l5..1 -BLOC90 mqxc.1l5..1 BLOC90 -mqxc.1l5..1 BLOC111 bb_par.l1b1_6 -BLOC112 tasc.1l1 BLOC113 -bb_par.l1b1_5 BLOC85 bb_par.l1b1_4 -BLOC85 bb_par.l1b1_3 BLOC85 -bb_par.l1b1_2 BLOC85 bb_par.l1b1_1 -BLOC222 mbcs2.1l5 BLOC223 -ip1.l1 ip1 BLOC116 -bb_ho1b1_0 BLOC223 mbcs2.1l5 -BLOC222 bb_par.r1b1_1 BLOC85 -bb_par.r1b1_2 BLOC85 bb_par.r1b1_3 -BLOC85 bb_par.r1b1_4 BLOC85 -bb_par.r1b1_5 BLOC113 tasc.1r1 -BLOC112 bb_par.r1b1_6 BLOC111 -mqxc.1r5..1 BLOC90 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC90 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC110 bb_par.r1b1_7 -BLOC109 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC90 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC90 -mqxc.1r5..1 BLOC90 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC108 -bb_par.r1b1_8 BLOC107 mqxc.1r5..1 -BLOC90 mqxc.1r5..1 BLOC106 -mcbxdv.a2r1 mcbxdh.a2r1 BLOC105 -bb_par.r1b1_9 BLOC104 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC103 -bb_par.r1b1_10 BLOC102 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC101 -bb_par.r1b1_11 BLOC100 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC99 -bb_par.r1b1_12 BLOC98 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC95 mqxd.a2r5..1 -BLOC95 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC97 bb_par.r1b1_13 -BLOC96 mqxd.a2r5..1 BLOC95 -mqxd.a2r5..1 BLOC94 bb_par.r1b1_14 -BLOC93 mqxc.3r5..1 BLOC90 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC90 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC92 -bb_par.r1b1_15 BLOC91 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC90 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC90 -mqxc.3r5..1 BLOC90 mqxc.3r5..1 -BLOC90 mqxc.3r5..1 BLOC89 -bb_par.r1b1_16 BLOC88 mqxc.3r5..1 -BLOC87 mcbxcv.3r1 mcbxch.3r1 -BLOC86 bb_par.r1b1_17 BLOC85 -bb_par.r1b1_18 BLOC84 mbxa.4r5..1 -BLOC83 mbxa.4r5..1 BLOC83 -mbxa.4r5..1 BLOC83 mbxa.4r5..1 -BLOC82 tanar.4r1 BLOC224 -tclp.4r1.b1 BLOC225 mbrd.4r5.b1..1 -BLOC78 mbrd.4r5.b1..1 BLOC78 -mbrd.4r5.b1..1 BLOC78 mbrd.4r5.b1..1 -BLOC77 mcbrdh.4r1.b1 BLOC221 -mcbrdv.4r1.b1 BLOC220 mcbyyv.a4r1.b1 -BLOC75 mcbyyh.4r1.b1 BLOC74 -mqyy.4r5.b1..1 BLOC45 mqyy.4r5.b1..1 -BLOC45 mqyy.4r5.b1..1 BLOC45 -mqyy.4r5.b1..1 BLOC73 mcbyh.5r1.b1 -BLOC71 mqyl.5r5.b1..1 BLOC40 -mqyl.5r5.b1..1 BLOC40 mqyl.5r5.b1..1 -BLOC40 mqyl.5r5.b1..1 BLOC72 -mcbcv.6r1.b1 BLOC71 mqml.6r5.b1..1 -BLOC40 mqml.6r5.b1..1 BLOC40 -mqml.6r5.b1..1 BLOC40 mqml.6r5.b1..1 -BLOC226 mqm.a7r5.b1..1 BLOC45 -mqm.a7r5.b1..1 BLOC45 mqm.a7r5.b1..1 -BLOC45 mqm.a7r5.b1..1 BLOC69 -mqm.a7r5.b1..1 BLOC45 mqm.a7r5.b1..1 -BLOC45 mqm.a7r5.b1..1 BLOC45 -mqm.a7r5.b1..1 BLOC120 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC122 mqml.8r5.b1..1 BLOC40 -mqml.8r5.b1..1 BLOC40 mqml.8r5.b1..1 -BLOC40 mqml.8r5.b1..1 BLOC123 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC124 mqmc.9r5.b1..1 -BLOC43 mqmc.9r5.b1..1 BLOC43 -mqmc.9r5.b1..1 BLOC43 mqmc.9r5.b1..1 -BLOC44 mqm.9r5.b1..1 BLOC45 -mqm.9r5.b1..1 BLOC45 mqm.9r5.b1..1 -BLOC45 mqm.9r5.b1..1 BLOC125 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC122 mqml.10r5.b1..1 -BLOC40 mqml.10r5.b1..1 BLOC40 -mqml.10r5.b1..1 BLOC40 mqml.10r5.b1..1 -BLOC66 ms.10r1.b1 BLOC126 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC127 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC22 -mqtli.11r5.b1..1 BLOC16 mqtli.11r5.b1..1 -BLOC30 ms.11r1.b1 BLOC128 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.12r5.b1..1 BLOC33 mqt.12r5.b1..1 -BLOC34 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC63 mcbv.12r1.b1 BLOC130 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.13r5.b1..1 BLOC33 mqt.13r5.b1..1 -BLOC34 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC63 mcbh.13r1.b1 BLOC130 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.10r1.b1 BLOC63 -mcbv.14r1.b1 BLOC130 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.11r1.b1 BLOC63 mcbh.15r1.b1 -BLOC130 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.10r1.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r1.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.10r1.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r1.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.10r1.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r1.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC131 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.10r1.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.11r1.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC131 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.10r1.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.12r4.b1..1 BLOC21 mq.12r4.b1..1 -BLOC131 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.11r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.11r4.b1..1 BLOC21 -mq.11r4.b1..1 BLOC35 ms.10r1.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC131 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.10r1.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.11r1.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.10r1.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.11r1.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.12r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.10r1.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC35 -ms.11r1.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC131 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC63 mcbv.16l2.b1 -BLOC130 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC131 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.12r4.b1 -BLOC63 mcbh.15l2.b1 BLOC130 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC131 -mq.11r4.b1..1 BLOC21 mq.11r4.b1..1 -BLOC35 ms.10r1.b1 BLOC132 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC129 -mqt.13l2.b1..1 BLOC33 mqt.13l2.b1..1 -BLOC34 mq.12r4.b1..1 BLOC21 -mq.12r4.b1..1 BLOC35 ms.11r1.b1 -BLOC132 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC129 mqt.12l2.b1..1 BLOC33 -mqt.12l2.b1..1 BLOC34 mq.11r4.b1..1 -BLOC21 mq.11r4.b1..1 BLOC35 -ms.11r4.b1 BLOC132 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC133 mq.12r4.b1..1 -BLOC21 mq.12r4.b1..1 BLOC22 -mqtli.11l2.b1..1 BLOC16 mqtli.11l2.b1..1 -BLOC30 ms.12r4.b1 BLOC134 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC121 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC122 mqml.10l2.b1..1 -BLOC40 mqml.10l2.b1..1 BLOC40 -mqml.10l2.b1..1 BLOC40 mqml.10l2.b1..1 -BLOC123 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC124 -mqmc.9l2.b1..1 BLOC43 mqmc.9l2.b1..1 -BLOC43 mqmc.9l2.b1..1 BLOC43 -mqmc.9l2.b1..1 BLOC44 mqm.9l2.b1..1 -BLOC45 mqm.9l2.b1..1 BLOC45 -mqm.9l2.b1..1 BLOC45 mqm.9l2.b1..1 -BLOC125 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC121 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC122 -mqml.8l2.b1..1 BLOC40 mqml.8l2.b1..1 -BLOC40 mqml.8l2.b1..1 BLOC40 -mqml.8l2.b1..1 BLOC123 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC121 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC185 mqm.b7l2.b1..1 BLOC45 -mqm.b7l2.b1..1 BLOC45 mqm.b7l2.b1..1 -BLOC45 mqm.b7l2.b1..1 BLOC69 -mqm.b7l2.b1..1 BLOC45 mqm.b7l2.b1..1 -BLOC45 mqm.b7l2.b1..1 BLOC45 -mqm.b7l2.b1..1 BLOC227 mqml.6l2.b1..1 -BLOC40 mqml.6l2.b1..1 BLOC40 -mqml.6l2.b1..1 BLOC40 mqml.6l2.b1..1 -BLOC187 mqm.6l2.b1..1 BLOC45 -mqm.6l2.b1..1 BLOC45 mqm.6l2.b1..1 -BLOC45 mqm.6l2.b1..1 BLOC228 -mcbyh.b5l2.b1 BLOC190 mcbyv.5l2.b1 -BLOC194 mqy.b5l2.b1..1 BLOC45 -mqy.b5l2.b1..1 BLOC45 mqy.b5l2.b1..1 -BLOC45 mqy.b5l2.b1..1 BLOC192 -mqy.b5l2.b1..1 BLOC45 mqy.b5l2.b1..1 -BLOC45 mqy.b5l2.b1..1 BLOC45 -mqy.b5l2.b1..1 BLOC229 mqy.b4l2.b1..1 -BLOC45 mqy.b4l2.b1..1 BLOC45 -mqy.b4l2.b1..1 BLOC45 mqy.b4l2.b1..1 -BLOC192 mqy.b4l2.b1..1 BLOC45 -mqy.b4l2.b1..1 BLOC45 mqy.b4l2.b1..1 -BLOC45 mqy.b4l2.b1..1 BLOC194 -mcbyh.4l2.b1 BLOC190 mcbyv.a4l2.b1 -BLOC195 mbrc.4l8.b1..1 BLOC51 -mbrc.4l8.b1..1 BLOC51 mbrc.4l8.b1..1 -BLOC51 mbrc.4l8.b1..1 BLOC196 -tcth.4l2.b1 BLOC230 tdi.4l2.b1 -BLOC231 tctvb.4l2 BLOC51 -tcdd.4l2 BLOC232 mbx.4l8..1 -BLOC51 mbx.4l8..1 BLOC51 -mbx.4l8..1 BLOC51 mbx.4l8..1 -BLOC200 mcbxh.3l2 BLOC201 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC203 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC205 mcbxh.3l2 BLOC206 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC204 mqxb.b2l8..1 -BLOC204 mqxb.b2l8..1 BLOC204 -mqxb.b2l8..1 BLOC207 mcbxh.3l2 -BLOC208 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC202 -mqxa.3l8..1 BLOC202 mqxa.3l8..1 -BLOC202 mqxa.3l8..1 BLOC233 -mbcs2.1l5 BLOC234 ip2 -BLOC234 mbcs2.1l5 BLOC233 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC208 mcbxh.3l2 -BLOC207 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC206 -mcbxh.3l2 BLOC205 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC204 mqxb.a2r8..1 BLOC204 -mqxb.a2r8..1 BLOC204 mqxb.a2r8..1 -BLOC203 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC202 -mqxa.1r8..1 BLOC202 mqxa.1r8..1 -BLOC202 mqxa.1r8..1 BLOC201 -mcbxh.3l2 BLOC200 mbrc.4l8.b1..1 -BLOC51 mbrc.4l8.b1..1 BLOC51 -mbrc.4l8.b1..1 BLOC51 mbrc.4l8.b1..1 -BLOC199 tctvb.4r2 BLOC198 -tclia.4r2 BLOC235 mbx.4l8..1 -BLOC51 mbx.4l8..1 BLOC51 -mbx.4l8..1 BLOC51 mbx.4l8..1 -BLOC195 mcbyh.a4r2.b1 BLOC190 -mcbyv.4r2.b1 BLOC194 mqy.a4r2.b1..1 -BLOC45 mqy.a4r2.b1..1 BLOC45 -mqy.a4r2.b1..1 BLOC45 mqy.a4r2.b1..1 -BLOC192 mqy.a4r2.b1..1 BLOC45 -mqy.a4r2.b1..1 BLOC45 mqy.a4r2.b1..1 -BLOC45 mqy.a4r2.b1..1 BLOC236 -mcbcv.a5r2.b1 BLOC215 mcbch.5r2.b1 -BLOC214 mqm.a5r2.b1..1 BLOC45 -mqm.a5r2.b1..1 BLOC45 mqm.a5r2.b1..1 -BLOC45 mqm.a5r2.b1..1 BLOC192 -mqm.a5r2.b1..1 BLOC45 mqm.a5r2.b1..1 -BLOC45 mqm.a5r2.b1..1 BLOC45 -mqm.a5r2.b1..1 BLOC237 tclib.6r2.b1 -BLOC238 tclim.6r2.b1 BLOC239 -mqml.6r2.b1..1 BLOC40 mqml.6r2.b1..1 -BLOC40 mqml.6r2.b1..1 BLOC40 -mqml.6r2.b1..1 BLOC187 mqm.6r2.b1..1 -BLOC45 mqm.6r2.b1..1 BLOC45 -mqm.6r2.b1..1 BLOC45 mqm.6r2.b1..1 -BLOC240 mqm.a7r2.b1..1 BLOC45 -mqm.a7r2.b1..1 BLOC45 mqm.a7r2.b1..1 -BLOC45 mqm.a7r2.b1..1 BLOC69 -mqm.a7r2.b1..1 BLOC45 mqm.a7r2.b1..1 -BLOC45 mqm.a7r2.b1..1 BLOC45 -mqm.a7r2.b1..1 BLOC218 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC39 mqml.8r2.b1..1 BLOC40 -mqml.8r2.b1..1 BLOC40 mqml.8r2.b1..1 -BLOC40 mqml.8r2.b1..1 BLOC41 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC42 mqmc.9r2.b1..1 -BLOC43 mqmc.9r2.b1..1 BLOC43 -mqmc.9r2.b1..1 BLOC43 mqmc.9r2.b1..1 -BLOC44 mqm.9r2.b1..1 BLOC45 -mqm.9r2.b1..1 BLOC45 mqm.9r2.b1..1 -BLOC45 mqm.9r2.b1..1 BLOC46 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC39 mqml.10r2.b1..1 -BLOC40 mqml.10r2.b1..1 BLOC40 -mqml.10r2.b1..1 BLOC40 mqml.10r2.b1..1 -BLOC41 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC62 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC22 mqtli.11r2.b1..1 BLOC16 -mqtli.11r2.b1..1 BLOC30 ms.12r3.b1 -BLOC31 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.12r2.b1..1 BLOC33 -mqt.12r2.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.13r2.b1..1 -BLOC33 mqt.13r2.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.15r3.b1..1 -BLOC33 mqt.15r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.14r3.b1..1 -BLOC33 mqt.14r3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC37 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC37 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC37 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC37 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC37 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC37 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC37 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.14r3.b1..1 -BLOC33 mqt.14r3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.15r3.b1..1 BLOC33 mqt.15r3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.14r3.b1..1 BLOC33 -mqt.14r3.b1..1 BLOC34 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC35 -ms.12r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.15r3.b1..1 -BLOC33 mqt.15r3.b1..1 BLOC34 -mq.7r3.b1..1 BLOC21 mq.7r3.b1..1 -BLOC35 ms.11r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.14r3.b1..1 BLOC33 mqt.14r3.b1..1 -BLOC34 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC35 ms.12r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC32 mqt.15r3.b1..1 BLOC33 -mqt.15r3.b1..1 BLOC34 mq.7r3.b1..1 -BLOC21 mq.7r3.b1..1 BLOC35 -ms.11r3.b1 BLOC36 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC32 mqt.13l3.b1..1 -BLOC33 mqt.13l3.b1..1 BLOC34 -mq.8r3.b1..1 BLOC21 mq.8r3.b1..1 -BLOC35 ms.12r3.b1 BLOC36 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC32 -mqt.12l3.b1..1 BLOC33 mqt.12l3.b1..1 -BLOC34 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC35 ms.11r3.b1 -BLOC36 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC25 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC26 mq.8r3.b1..1 BLOC21 -mq.8r3.b1..1 BLOC22 mqtli.11l3.b1..1 -BLOC16 mqtli.11l3.b1..1 BLOC30 -ms.12r3.b1 BLOC65 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC26 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC22 mqtli.10l3.b1..1 -BLOC16 mqtli.10l3.b1..1 BLOC23 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC27 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC22 -mqtli.b9l3.b1..1 BLOC16 mqtli.b9l3.b1..1 -BLOC18 mqtli.b9l3.b1..1 BLOC16 -mqtli.b9l3.b1..1 BLOC28 mb.a8r3.b1..1 -BLOC24 mb.a8r3.b1..1 BLOC25 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC26 mq.7r3.b1..1 BLOC21 -mq.7r3.b1..1 BLOC22 mqtli.8l3.b1..1 -BLOC16 mqtli.8l3.b1..1 BLOC23 -mb.a8r3.b1..1 BLOC24 mb.a8r3.b1..1 -BLOC25 mb.a8r3.b1..1 BLOC24 -mb.a8r3.b1..1 BLOC26 mq.8r3.b1..1 -BLOC21 mq.8r3.b1..1 BLOC22 -mqtli.7l3.b1..1 BLOC16 mqtli.7l3.b1..1 -BLOC241 mqtlh.f6l3.b1..1 BLOC16 -mqtlh.f6l3.b1..1 BLOC17 mqtlh.f6l3.b1..1 -BLOC16 mqtlh.f6l3.b1..1 BLOC17 -mqtlh.f6l3.b1..1 BLOC16 mqtlh.f6l3.b1..1 -BLOC18 mqtlh.f6l3.b1..1 BLOC16 -mqtlh.f6l3.b1..1 BLOC18 mqtlh.f6l3.b1..1 -BLOC16 mqtlh.f6l3.b1..1 BLOC18 -mqtlh.f6l3.b1..1 BLOC16 mqtlh.f6l3.b1..1 -BLOC242 mbw.d6r3.b1 BLOC12 -mbw.d6r3.b1 BLOC12 mbw.d6r3.b1 -BLOC243 tcp.6l3.b1 BLOC153 -tchsh.6l3.b1 BLOC244 tcapa.6l3.b1 -BLOC245 mbw.a6r3.b1 BLOC12 -mbw.a6r3.b1 BLOC12 mbw.a6r3.b1 -BLOC246 mqwa.e5l3.b1..1 BLOC2 -mqwa.e5l3.b1..1 BLOC2 mqwa.e5l3.b1..1 -BLOC2 mqwa.e5l3.b1..1 BLOC3 -mqwa.e5l3.b1..1 BLOC2 mqwa.e5l3.b1..1 -BLOC2 mqwa.e5l3.b1..1 BLOC2 -mqwa.e5l3.b1..1 BLOC4 tcsg.5l3.b1 -BLOC5 tcsm.5l3.b1 BLOC4 -mqwa.e5l3.b1..1 BLOC2 mqwa.e5l3.b1..1 -BLOC2 mqwa.e5l3.b1..1 BLOC2 -mqwa.e5l3.b1..1 BLOC3 mqwb.5r3.b1..1 -BLOC2 mqwb.5r3.b1..1 BLOC2 -mqwb.5r3.b1..1 BLOC2 mqwb.5r3.b1..1 -BLOC3 mqwa.e5l3.b1..1 BLOC2 -mqwa.e5l3.b1..1 BLOC2 mqwa.e5l3.b1..1 -BLOC2 mqwa.e5l3.b1..1 BLOC3 -mqwa.e5l3.b1..1 BLOC2 mqwa.e5l3.b1..1 -BLOC2 mqwa.e5l3.b1..1 BLOC2 -mqwa.e5l3.b1..1 BLOC247 mqwa.e4l3.b1..1 -BLOC2 mqwa.e4l3.b1..1 BLOC2 -mqwa.e4l3.b1..1 BLOC2 mqwa.e4l3.b1..1 -BLOC10 mqwa.e4l3.b1..1 BLOC2 -mqwa.e4l3.b1..1 BLOC2 mqwa.e4l3.b1..1 -BLOC2 mqwa.e4l3.b1..1 BLOC3 -mqwa.e4l3.b1..1 BLOC2 mqwa.e4l3.b1..1 -BLOC2 mqwa.e4l3.b1..1 BLOC2 -mqwa.e4l3.b1..1 BLOC3 mqwb.4r3.b1..1 -BLOC2 mqwb.4r3.b1..1 BLOC2 -mqwb.4r3.b1..1 BLOC2 mqwb.4r3.b1..1 -BLOC3 mqwa.e4l3.b1..1 BLOC2 -mqwa.e4l3.b1..1 BLOC2 mqwa.e4l3.b1..1 -BLOC2 mqwa.e4l3.b1..1 BLOC3 -mqwa.e4l3.b1..1 BLOC2 mqwa.e4l3.b1..1 -BLOC2 mqwa.e4l3.b1..1 BLOC2 -mqwa.e4l3.b1..1 BLOC1 -NEXT diff --git a/examples/load_from_sixtrack_input/sixtrack_input/fort.3 b/examples/load_from_sixtrack_input/sixtrack_input/fort.3 deleted file mode 100644 index 3610d00..0000000 --- a/examples/load_from_sixtrack_input/sixtrack_input/fort.3 +++ /dev/null @@ -1,137 +0,0 @@ -GEOME-STRENG TITLE:LHC4_60_290_1.8_6D_q15_e2.2_Oct_v3%1%s%64.31_59.32%4_6%6%45 -PRINTOUT OF INPUT PARAMETERS-------------------------------------------- -NEXT -TRACKING PARAMETERS----------------------------------------------------- -1 0 1 0.00 0.00 0 1 -1 1 0 1 2 -0 0 1 1 1000 50000 2 -NEXT -INITIAL COORDINATES----------------------------------------------------- - 2 0. 0. 0.999999 0 - 0. - 0. - 0. - 0. - 0. - 0.0 - 0.01 - 0.002 - 0.03 - 0.004 - 0.05 - 0.00027 - 7000000. - 7000000. - 7000000. -NEXT -SYNC - 35640 0.000346 16.000 0. 26658.883200 938.272046 1 - 1. 1. -NEXT -DUMP -ALL 1 664 101 dump3.dat -NEXT -LINEAR OPTICS -ELEMENT 0 1 1 2.5 2.5 -NEXT -BEAM -EXPERT - 2.2000e+11 2.5 2.5 7.5000e-02 1.1000e-04 1 0 0 0 - bb_par.l5b1_18 0 2.4690512563437284e+000 5.9337539926380769e+000 24.342662050000001e+000 3.8389316030000000e-004 1.0000000000000000e+000 - bb_par.l5b1_17 0 2.5325436210963566e+000 6.2258132535999069e+000 25.456570480000000e+000 3.9312902200000000e-004 1.0000000000000000e+000 - bb_par.l5b1_16 0 2.6045001274614301e+000 6.5057053955634752e+000 26.017196980000001e+000 4.0177300239999998e-004 1.0000000000000000e+000 - bb_par.l5b1_15 0 3.0124290148106567e+000 6.0106999492413458e+000 26.151592940000000e+000 3.8609569500000002e-004 1.0000000000000000e+000 - bb_par.l5b1_14 0 4.0508843040262645e+000 4.5632791428378567e+000 25.900539670000001e+000 3.3632194289999999e-004 1.0000000000000000e+000 - bb_par.l5b1_13 0 5.5174056861510063e+000 3.0517713384496505e+000 25.557437289999999e+000 2.7493498820000003e-004 1.0000000000000000e+000 - bb_par.l5b1_12 0 6.4551186330154975e+000 2.1265959190474706e+000 24.942721190000000e+000 2.2937583060000000e-004 1.0000000000000000e+000 - bb_par.l5b1_11 0 6.3845158830189765e+000 1.6657512072050769e+000 23.802135600000000e+000 2.0284467420000001e-004 1.0000000000000000e+000 - bb_par.l5b1_10 0 5.6727512545683512e+000 1.4159801116067261e+000 22.263078600000000e+000 1.8683207410000001e-004 1.0000000000000000e+000 - bb_par.l5b1_9 0 4.1097896388940836e+000 1.4288171771336908e+000 20.081253990000000e+000 1.8746823560000000e-004 1.0000000000000000e+000 - bb_par.l5b1_8 0 2.5773232916394058e+000 1.5283998109665915e+000 17.708427940000000e+000 1.9368454090000001e-004 1.0000000000000000e+000 - bb_par.l5b1_7 0 1.6312627512681093e+000 1.4438850129344978e+000 15.448503060000000e+000 1.8805857370000000e-004 1.0000000000000000e+000 - bb_par.l5b1_6 0 1.1301823459889806e+000 1.1262369321956609e+000 13.239579940000000e+000 1.6589151829999999e-004 1.0000000000000000e+000 - bb_par.l5b1_5 0 7.8486473200560114e-001 7.8211963027134035e-001 11.032983440000001e+000 1.3801748309999999e-004 1.0000000000000000e+000 - bb_par.l5b1_4 0 5.0233200954427504e-001 5.0057013433233144e-001 8.8263869330000002e+000 1.1014344800000000e-004 1.0000000000000000e+000 - bb_par.l5b1_3 0 2.8258417860597712e-001 2.8158844438826092e-001 6.6197904279999999e+000 8.2269412789999998e-005 1.0000000000000000e+000 - bb_par.l5b1_2 0 1.2562123918558168e-001 1.2517456043791944e-001 4.4131939229999997e+000 5.4395377619999997e-005 1.0000000000000000e+000 - bb_par.l5b1_1 0 3.1443191285114379e-002 3.1328482481451932e-002 2.2065974179999999e+000 2.6521342440000000e-005 1.0000000000000000e+000 - bb_ho5b1_0 15 2.9500000000000001e-004 0.0000000000000000e+000 9.1249858139999997e-007 -1.3528401410000000e-006 - 5.0034904287164825e-005 -9.5933702435896557e-008 2.2442853989596686e-003 5.0210518708273642e-005 7.5281139492566265e-007 - 2.2365333553914309e-003 -1.6633936155651148e-009 -1.5308147527101169e-009 7.3429015665098211e-010 -6.5172371426280837e-009 1.0000000000000000e+000 - bb_par.r5b1_1 0 3.1441770046453613e-002 3.1339744553102268e-002 -2.2065955920000002e+000 -2.9226727900000001e-005 1.0000000000000000e+000 - bb_par.r5b1_2 0 1.2561839670835107e-001 1.2519708458125575e-001 -4.4131920969999996e+000 -5.7100763079999998e-005 1.0000000000000000e+000 - bb_par.r5b1_3 0 2.8257991488973672e-001 2.8162223060384217e-001 -6.6197886019999999e+000 -8.4974798249999999e-005 1.0000000000000000e+000 - bb_par.r5b1_4 0 5.0232632459220838e-001 5.0061518261964988e-001 -8.8263851080000002e+000 -1.1284883340000000e-004 1.0000000000000000e+000 - bb_par.r5b1_5 0 7.8485762581413310e-001 7.8217594062696949e-001 -11.032981610000000e+000 -1.4072286860000000e-004 1.0000000000000000e+000 - bb_par.r5b1_6 0 1.1301738185477808e+000 1.1263045046311166e+000 -13.239578119999999e+000 -1.6859690380000001e-004 1.0000000000000000e+000 - bb_par.r5b1_7 0 1.4489267054992951e+000 1.6256593064129110e+000 -15.448509860000000e+000 -2.0232402110000001e-004 1.0000000000000000e+000 - bb_par.r5b1_8 0 1.5337310327716311e+000 2.5684627649943046e+000 -17.708469149999999e+000 -2.5412074129999999e-004 1.0000000000000000e+000 - bb_par.r5b1_9 0 1.4337954001193285e+000 4.0956526301219460e+000 -20.081349490000001e+000 -3.2074327350000001e-004 1.0000000000000000e+000 - bb_par.r5b1_10 0 1.4209078897413632e+000 5.6532311753224995e+000 -22.263216289999999e+000 -3.7671041900000000e-004 1.0000000000000000e+000 - bb_par.r5b1_11 0 1.6715424781841688e+000 6.3625426973680561e+000 -23.802278410000000e+000 -3.9954697059999998e-004 1.0000000000000000e+000 - bb_par.r5b1_12 0 2.1339837792041614e+000 6.4329000697014500e+000 -24.942846100000001e+000 -4.0165857220000000e-004 1.0000000000000000e+000 - bb_par.r5b1_13 0 3.0623680329892764e+000 5.4984143654307989e+000 -25.557506950000001e+000 -3.7125319360000001e-004 1.0000000000000000e+000 - bb_par.r5b1_14 0 4.5791197430480350e+000 4.0369413656180351e+000 -25.900526500000002e+000 -3.1801704040000000e-004 1.0000000000000000e+000 - bb_par.r5b1_15 0 6.0315601950176525e+000 3.0020601351501797e+000 -26.151511249999999e+000 -2.7412950559999998e-004 1.0000000000000000e+000 - bb_par.r5b1_16 0 6.5282772069516630e+000 2.5955338516801936e+000 -26.017086140000000e+000 -2.5475781969999998e-004 1.0000000000000000e+000 - bb_par.r5b1_17 0 6.2474064986036115e+000 2.5238227214811628e+000 -25.456456620000001e+000 -2.5106548810000000e-004 1.0000000000000000e+000 - bb_par.r5b1_18 0 5.9543265061042305e+000 2.4605464708370244e+000 -24.342545810000001e+000 -2.4774777410000001e-004 1.0000000000000000e+000 - bb_par.l1b1_18 0 2.4453915906392605e+000 5.9246156480209136e+000 1.7852829300000000e-004 24.263057230000001e+000 1.0000000000000000e+000 - bb_par.l1b1_17 0 2.5082770622259680e+000 6.2162233913155216e+000 1.8091900779999999e-004 25.348122539999999e+000 1.0000000000000000e+000 - bb_par.l1b1_16 0 2.5795454446451664e+000 6.4956829815813499e+000 1.8357953630000000e-004 25.913897739999999e+000 1.0000000000000000e+000 - bb_par.l1b1_15 0 2.9835664390021805e+000 6.0014394725584257e+000 1.9753296239999999e-004 26.060380960000000e+000 1.0000000000000000e+000 - bb_par.l1b1_14 0 4.0120712843986572e+000 4.5562487911792848e+000 2.2914410270000001e-004 25.824147360000001e+000 1.0000000000000000e+000 - bb_par.l1b1_13 0 5.4645395486571013e+000 3.0470700172890228e+000 2.6748880480000000e-004 25.496763150000000e+000 1.0000000000000000e+000 - bb_par.l1b1_12 0 6.3932669995083042e+000 2.1233199832378067e+000 2.8938769619999999e-004 24.897105130000000e+000 1.0000000000000000e+000 - bb_par.l1b1_11 0 6.3233421409104755e+000 1.6631850636522600e+000 2.8786307399999999e-004 23.771061750000001e+000 1.0000000000000000e+000 - bb_par.l1b1_10 0 5.6183998932712074e+000 1.4137984943264161e+000 2.7140912779999998e-004 22.246431520000002e+000 1.0000000000000000e+000 - bb_par.l1b1_9 0 4.0704172612716576e+000 1.4266153235010426e+000 2.3108939760000001e-004 20.078973739999999e+000 1.0000000000000000e+000 - bb_par.l1b1_8 0 2.5526364255504679e+000 1.5260440171049194e+000 1.8309404000000000e-004 17.708622380000001e+000 1.0000000000000000e+000 - bb_par.l1b1_7 0 1.6156415748136290e+000 1.4416591967273391e+000 1.4577796230000000e-004 15.448658719999999e+000 1.0000000000000000e+000 - bb_par.l1b1_6 0 1.1193631588715744e+000 1.1245006729571665e+000 1.2147743290000000e-004 13.239709520000000e+000 1.0000000000000000e+000 - bb_par.l1b1_5 0 7.7735471007505763e-001 7.8091381717896147e-001 1.0139282900000000e-004 11.033091040000000e+000 1.0000000000000000e+000 - bb_par.l1b1_4 0 4.9752879820584245e-001 4.9979834463684619e-001 8.1308225150000004e-005 8.8264725550000005e+000 1.0000000000000000e+000 - bb_par.l1b1_3 0 2.7988542327175636e-001 2.8115425533633054e-001 6.1223621290000004e-005 6.6198540719999999e+000 1.0000000000000000e+000 - bb_par.l1b1_2 0 1.2442458527275180e-001 1.2498154927712136e-001 4.1139017420000000e-005 4.4132355900000002e+000 1.0000000000000000e+000 - bb_par.l1b1_1 0 3.1146284209145926e-002 3.1280226459102507e-002 2.1054413559999999e-005 2.2066171059999999e+000 1.0000000000000000e+000 - bb_ho1b1_0 15 2.9500000000000001e-004 1.5700000000000001e+000 9.6983435799999992e-007 -1.3760678740000000e-006 - 5.0520080285947416e-005 -6.0102042820216679e-007 2.2227616225043104e-003 5.0286882391145739e-005 7.7036976500561835e-007 - 2.2330904282531743e-003 -3.6528061007530751e-009 2.6610093044576255e-008 3.6386713069639950e-008 1.1594620089159194e-007 1.0000000000000000e+000 - bb_par.r1b1_1 0 3.1137292902883109e-002 3.1291730563730337e-002 -1.9114794169999999e-005 -2.2066198579999998e+000 1.0000000000000000e+000 - bb_par.r1b1_2 0 1.2440660266024108e-001 1.2500455748637873e-001 -3.9199398030000000e-005 -4.4132383409999996e+000 1.0000000000000000e+000 - bb_par.r1b1_3 0 2.7985844935271914e-001 2.8118876765036310e-001 -5.9284001890000001e-005 -6.6198568240000002e+000 1.0000000000000000e+000 - bb_par.r1b1_4 0 4.9749283298064084e-001 4.9984436105741470e-001 -7.9368605759999998e-005 -8.8264753070000008e+000 1.0000000000000000e+000 - bb_par.r1b1_5 0 7.7730975354344767e-001 7.8097133770244376e-001 -9.9453209619999999e-005 -11.033093790000001e+000 1.0000000000000000e+000 - bb_par.r1b1_6 0 1.1193092110475640e+000 1.1245696975951323e+000 -1.1953781350000001e-004 -13.239712270000000e+000 1.0000000000000000e+000 - bb_par.r1b1_7 0 1.4350019289418381e+000 1.6231550848947471e+000 -1.3551144120000001e-004 -15.448661970000000e+000 1.0000000000000000e+000 - bb_par.r1b1_8 0 1.5189954927064870e+000 2.5645057164849878e+000 -1.3956999820000001e-004 -17.708627610000001e+000 1.0000000000000000e+000 - bb_par.r1b1_9 0 1.4200244002253559e+000 4.0893420699705363e+000 -1.3509844260000000e-004 -20.078982109999998e+000 1.0000000000000000e+000 - bb_par.r1b1_10 0 1.4072651096279496e+000 5.6445202819752645e+000 -1.3464586309999999e-004 -22.246442349999999e+000 1.0000000000000000e+000 - bb_par.r1b1_11 0 1.6554976228443443e+000 6.3527390178973215e+000 -1.4618400250000001e-004 -23.771072860000000e+000 1.0000000000000000e+000 - bb_par.r1b1_12 0 2.1135042658473391e+000 6.4229885352324203e+000 -1.6529777280000000e-004 -24.897114970000001e+000 1.0000000000000000e+000 - bb_par.r1b1_13 0 3.0329827718413100e+000 5.4899438273772336e+000 -1.9811631760000001e-004 -25.496768419999999e+000 1.0000000000000000e+000 - bb_par.r1b1_14 0 4.5351834278253023e+000 4.0307240578574195e+000 -2.4233517500000000e-004 -25.824145160000000e+000 1.0000000000000000e+000 - bb_par.r1b1_15 0 5.9736913201220814e+000 2.9974387026659750e+000 -2.7818854729999998e-004 -26.060373530000000e+000 1.0000000000000000e+000 - bb_par.r1b1_16 0 6.4656478131346748e+000 2.5915403784956927e+000 -2.8948047600000000e-004 -25.913891990000000e+000 1.0000000000000000e+000 - bb_par.r1b1_17 0 6.1874779676075446e+000 2.5199418460775598e+000 -2.8325232359999999e-004 -25.348123850000000e+000 1.0000000000000000e+000 - bb_par.r1b1_18 0 5.8972159774117294e+000 2.4567656757803236e+000 -2.7659780290000002e-004 -24.263065749999999e+000 1.0000000000000000e+000 -NEXT -ITERATION-ACCURACY------------------------------------------------------ - 50 1D-12 1D-15 - 10 1D-10 1D-10 - 10 1D-6 1D-6 - 1D-6 1D-9 1D-9 -NEXT -FLUCTUATION -100000 1 7 3 -NEXT -POSTPROCESSING---------------------------------------------------------- -LHC Dynamic Aperture at Injection Version 5 (1998) -20 0 0 1 .08 .08 1 0 0 1. 1. -64. 59. 1 1 10 .005 1 .050 -0 1 0 1 1 1 1 1 30 -NEXT -/DIFFERENTIAL ALGEBRA--------------------------------------------------- -/5 6 1E-38 0 0 -/NEXT -ENDE================================================================== diff --git a/examples/load_from_sixtrack_input/sixtrack_input/fort.8 b/examples/load_from_sixtrack_input/sixtrack_input/fort.8 deleted file mode 100644 index e69de29..0000000 From 96dd4f9536c1ce107127efadb6edf251cdac5def Mon Sep 17 00:00:00 2001 From: Roman Martin Date: Thu, 9 Jan 2020 13:27:49 +0100 Subject: [PATCH 09/14] Fix AttributeError for misaligned non-multipoles --- pysixtrack/line.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pysixtrack/line.py b/pysixtrack/line.py index 1c51535..f0a03f5 100644 --- a/pysixtrack/line.py +++ b/pysixtrack/line.py @@ -496,7 +496,8 @@ def apply_madx_errors(self, error_table): error_table[f"k{o}sl"][i_line] for o in range(max_multipole_err + 1) ] - self.add_multipole_error_to(element, knl, ksl) + if any(knl) or any(ksl): + self.add_multipole_error_to(element, knl, ksl) return elements_not_found From 15a9ba05b31056778e5a42c26b07a3e3bffc43e7 Mon Sep 17 00:00:00 2001 From: Roman Martin Date: Thu, 9 Jan 2020 15:23:39 +0100 Subject: [PATCH 10/14] Fix dx,dy,tilt error assignment for multiply sliced elements --- pysixtrack/line.py | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/pysixtrack/line.py b/pysixtrack/line.py index f0a03f5..e883cb9 100644 --- a/pysixtrack/line.py +++ b/pysixtrack/line.py @@ -345,7 +345,7 @@ def from_madx_sequence( # error handling (alignment, multipole orders, ...): - def find_element_ids(self, element): + def find_element_ids(self, element_name): """Find element in this Line instance's self.elements. Return index before and after the element, taking into account @@ -355,36 +355,34 @@ def find_element_ids(self, element): Raises IndexError if element not in this Line. """ # will raise error if element not present: - idx_el = self.elements.index(element) + idx_el = self.element_names.index(element_name) idx_after_el = idx_el + 1 - el_name = self.element_names[idx_el] - if self.element_names[idx_after_el] == el_name + "_aperture": + if self.element_names[idx_after_el] == element_name + "_aperture": idx_after_el += 1 return idx_el, idx_after_el - def add_offset_error_to(self, element, dx=0, dy=0): - idx_el, idx_after_el = self.find_element_ids(element) - el_name = self.element_names[idx_el] + def add_offset_error_to(self, element_name, dx=0, dy=0): + idx_el, idx_after_el = self.find_element_ids(element_name) if not dx and not dy: return xyshift = elements.XYShift(dx=dx, dy=dy) inv_xyshift = elements.XYShift(dx=-dx, dy=-dy) - self.insert_element(idx_el, xyshift, el_name + "_offset_in") + self.insert_element(idx_el, xyshift, element_name + "_offset_in") self.insert_element( - idx_after_el + 1, inv_xyshift, el_name + "_offset_out" + idx_after_el + 1, inv_xyshift, element_name + "_offset_out" ) - def add_tilt_error_to(self, element, angle): + def add_tilt_error_to(self, element_name, angle): '''Alignment error of transverse rotation around s-axis. - The given `element` gets wrapped by SRotation elements - with rotation angle `angle`. + The element corresponding to the given `element_name` + gets wrapped by SRotation elements with rotation angle + `angle`. In the case of a thin dipole component, the corresponding curvature terms in the Multipole (hxl and hyl) are rotated by `angle` as well. ''' - idx_el, idx_after_el = self.find_element_ids(element) - el_name = self.element_names[idx_el] + idx_el, idx_after_el = self.find_element_ids(element_name) if not angle: return if isinstance(element, elements.Multipole) and ( @@ -401,8 +399,8 @@ def add_tilt_error_to(self, element, angle): element.hyl = hyl1 srot = elements.SRotation(angle=angle) inv_srot = elements.SRotation(angle=-angle) - self.insert_element(idx_el, srot, el_name + "_tilt_in") - self.insert_element(idx_after_el + 1, inv_srot, el_name + "_tilt_out") + self.insert_element(idx_el, srot, element_name + "_tilt_in") + self.insert_element(idx_after_el + 1, inv_srot, element_name + "_tilt_out") def add_multipole_error_to(self, element, knl=[], ksl=[]): # will raise error if element not present: @@ -478,12 +476,12 @@ def apply_madx_errors(self, error_table): dy = error_table["dy"][i_line] except KeyError: dy = 0 - self.add_offset_error_to(element, dx, dy) + self.add_offset_error_to(element_name, dx, dy) # add tilt try: dpsi = error_table["dpsi"][i_line] - self.add_tilt_error_to(element, angle=dpsi / deg2rad) + self.add_tilt_error_to(element_name, angle=dpsi / deg2rad) except KeyError: pass From ccf3f9a8058e07f3f603d610ef771fd515d7456b Mon Sep 17 00:00:00 2001 From: Roman Martin Date: Thu, 9 Jan 2020 15:28:37 +0100 Subject: [PATCH 11/14] Unify interfaces of add_xyz_error_to() functions to use element_name --- pysixtrack/line.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pysixtrack/line.py b/pysixtrack/line.py index e883cb9..cd849f2 100644 --- a/pysixtrack/line.py +++ b/pysixtrack/line.py @@ -402,9 +402,10 @@ def add_tilt_error_to(self, element_name, angle): self.insert_element(idx_el, srot, element_name + "_tilt_in") self.insert_element(idx_after_el + 1, inv_srot, element_name + "_tilt_out") - def add_multipole_error_to(self, element, knl=[], ksl=[]): + def add_multipole_error_to(self, element_name, knl=[], ksl=[]): # will raise error if element not present: - assert element in self.elements + assert element_name in self.element_names + element = self.elements[self.element_names.index(element_name)] # normal components knl = np.trim_zeros(knl, trim="b") if len(element.knl) < len(knl): @@ -465,7 +466,6 @@ def apply_madx_errors(self, error_table): if element_name not in self.element_names: elements_not_found.append(element_name) continue - element = self.elements[self.element_names.index(element_name)] # add offset try: @@ -495,7 +495,7 @@ def apply_madx_errors(self, error_table): for o in range(max_multipole_err + 1) ] if any(knl) or any(ksl): - self.add_multipole_error_to(element, knl, ksl) + self.add_multipole_error_to(element_name, knl, ksl) return elements_not_found From f8ad42439f9c28db335d67647d57d72d5ec14731 Mon Sep 17 00:00:00 2001 From: Adrian Oeftiger Date: Thu, 20 Aug 2020 10:16:56 +0200 Subject: [PATCH 12/14] line: add missing element in add_tilt_error, fix tests missing element bug introduced in previous commit when changing from elements to element_names as reference for errors --- pysixtrack/line.py | 8 +++++--- tests/test_line.py | 18 ++++++++++-------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/pysixtrack/line.py b/pysixtrack/line.py index cd849f2..ef23164 100644 --- a/pysixtrack/line.py +++ b/pysixtrack/line.py @@ -346,13 +346,14 @@ def from_madx_sequence( # error handling (alignment, multipole orders, ...): def find_element_ids(self, element_name): - """Find element in this Line instance's self.elements. + """Find element_name in this Line instance's + self.elements_name list. Assumes the names are unique. Return index before and after the element, taking into account attached _aperture instances (LimitRect, LimitEllipse, ...) which would follow the element occurrence in the list. - Raises IndexError if element not in this Line. + Raises IndexError if element_name not found in this Line. """ # will raise error if element not present: idx_el = self.element_names.index(element_name) @@ -375,7 +376,7 @@ def add_offset_error_to(self, element_name, dx=0, dy=0): def add_tilt_error_to(self, element_name, angle): '''Alignment error of transverse rotation around s-axis. The element corresponding to the given `element_name` - gets wrapped by SRotation elements with rotation angle + gets wrapped by SRotation elements with rotation angle `angle`. In the case of a thin dipole component, the corresponding @@ -385,6 +386,7 @@ def add_tilt_error_to(self, element_name, angle): idx_el, idx_after_el = self.find_element_ids(element_name) if not angle: return + element = self.elements[self.element_names.index(element_name)] if isinstance(element, elements.Multipole) and ( element.hxl or element.hyl): dpsi = angle * deg2rad diff --git a/tests/test_line.py b/tests/test_line.py index de0ef86..26dc6aa 100644 --- a/tests/test_line.py +++ b/tests/test_line.py @@ -20,33 +20,35 @@ def test_line(): n_elements = 3 position = 1 - line.insert_element(position, drift_exact, "exact drift") + drift_exact_name = "exact drift" + line.insert_element(position, drift_exact, drift_exact_name) n_elements += 1 assert len(line) == n_elements - assert line.find_element_ids(drift_exact)[0] == position + assert line.find_element_ids(drift_exact_name)[0] == position assert line.get_length() == length - line.insert_element(position, multipole, "multipole") + multipole_name = "multipole" + line.insert_element(position, multipole, multipole_name) n_elements += 1 line.insert_element(position + 1, aperture, "multipole_aperture") n_elements += 1 assert len(line) == n_elements - line.add_offset_error_to(multipole, dx=0, dy=0) + line.add_offset_error_to(multipole_name, dx=0, dy=0) assert len(line) == n_elements - line.add_offset_error_to(multipole, dx=0.2, dy=-0.003) + line.add_offset_error_to(multipole_name, dx=0.2, dy=-0.003) n_elements += 2 assert len(line) == n_elements - line.add_tilt_error_to(multipole, angle=0) + line.add_tilt_error_to(multipole_name, angle=0) assert len(line) == n_elements - line.add_tilt_error_to(multipole, angle=0.1) + line.add_tilt_error_to(multipole_name, angle=0.1) n_elements += 2 assert len(line) == n_elements - line.add_multipole_error_to(multipole, knl=[0, 0.1], ksl=[-0.03, 0.01]) + line.add_multipole_error_to(multipole_name, knl=[0, 0.1], ksl=[-0.03, 0.01]) # line.add_multipole_error_to(drift_exact,knl=[0,0.1],ksl=[-0.03,0.01]) line_dict = line.to_dict() From dc7be9c9d318baa4511e602b8c1a01470aa00100 Mon Sep 17 00:00:00 2001 From: Adrian Oeftiger Date: Fri, 21 Aug 2020 10:52:38 +0200 Subject: [PATCH 13/14] interpolated profile SC: adding MAD-X loader and unifying setup_SC_in_line --- pysixtrack/be_beamfields/tools.py | 67 ++++++++++--------------------- pysixtrack/loader_mad.py | 12 ++++++ 2 files changed, 34 insertions(+), 45 deletions(-) diff --git a/pysixtrack/be_beamfields/tools.py b/pysixtrack/be_beamfields/tools.py index 99bee93..410a793 100644 --- a/pysixtrack/be_beamfields/tools.py +++ b/pysixtrack/be_beamfields/tools.py @@ -135,10 +135,10 @@ def get_bb_names_madpoints_sigmas( return element_names, points, sigmas -def compute_shift_strong_beam_based_on_close_ip( +def shift_strong_beam_based_on_close_ip( points_weak, points_strong, IPs_survey_weak, IPs_survey_strong ): - strong_shift = [] + for i_bb, _ in enumerate(points_weak): pbw = points_weak[i_bb] @@ -155,11 +155,10 @@ def compute_shift_strong_beam_based_on_close_ip( # Shift Bs shift_ws = IPs_survey_strong[use_ip].p - IPs_survey_weak[use_ip].p - strong_shift.append(shift_ws) - return strong_shift + pbs.p -= shift_ws -def find_bb_separations(points_weak, points_strong, strong_shift, names=None): +def find_bb_separations(points_weak, points_strong, names=None): if names is None: names = ["bb_%d" % ii for ii in range(len(points_weak))] @@ -172,9 +171,7 @@ def find_bb_separations(points_weak, points_strong, strong_shift, names=None): pbs = points_strong[i_bb] # Find vws - vbb_ws = (points_strong[i_bb].p - strong_shift[i_bb]) - points_weak[ - i_bb - ].p + vbb_ws = points_strong[i_bb].p - points_weak[i_bb].p # Check that the two reference system are parallel try: @@ -214,7 +211,6 @@ def setup_beam_beam_in_line( bb_sigmas_strong, bb_points_weak, bb_points_strong, - bb_shift_strong, beta_r_strong, bunch_intensity_strong, n_slices_6D, @@ -224,7 +220,6 @@ def setup_beam_beam_in_line( sep_x, sep_y = find_bb_separations( points_weak=bb_points_weak, points_strong=bb_points_strong, - strong_shift=bb_shift_strong, names=bb_names, ) @@ -279,6 +274,8 @@ def setup_beam_beam_in_line( ################################## # space charge related functions # ################################## +sc_mode_to_slotid = {"Coasting": "1", "Bunched": "2", "Interpolated": "3"} + def determine_sc_locations(line, n_SCkicks, length_fuzzy): s_elements = np.array(line.get_s_elements()) length_target = s_elements[-1] / float(n_SCkicks) @@ -298,7 +295,7 @@ def determine_sc_locations(line, n_SCkicks, length_fuzzy): def install_sc_placeholders(mad, seq_name, name, s, mode="Bunched"): - sid = {"Coasting": "1", "Bunched": "2"}[mode] + sid = sc_mode_to_slotid[mode] mad.input( f""" seqedit, sequence={seq_name};""" @@ -322,50 +319,20 @@ def get_spacecharge_names_twdata(mad, seq_name, mode): mad, seq_name, ele_type="placeholder", - slot_id={"Coasting": 1, "Bunched": 2}[mode], + slot_id=int(sc_mode_to_slotid[mode]), use_survey=False, use_twiss=True, ) return mad_sc_names, twdata -def setup_spacecharge_bunched_in_line( - sc_elements, - sc_lengths, - sc_twdata, - betagamma, - number_of_particles, - bunchlength_rms, - delta_rms, - neps_x, - neps_y, -): - - for ii, ss in enumerate(sc_elements): - - ss.number_of_particles = number_of_particles - ss.bunchlength_rms = bunchlength_rms - ss.sigma_x = np.sqrt( - sc_twdata["betx"][ii] * neps_x / betagamma - + (sc_twdata["dispersion_x"][ii] * delta_rms) ** 2 - ) - ss.sigma_y = np.sqrt( - sc_twdata["bety"][ii] * neps_y / betagamma - + (sc_twdata["dispersion_y"][ii] * delta_rms) ** 2 - ) - ss.length = sc_lengths[ii] - ss.x_co = sc_twdata["x"][ii] - ss.y_co = sc_twdata["y"][ii] - ss.enabled = True - - -def setup_spacecharge_coasting_in_line( +def setup_spacecharge_in_line( sc_elements, sc_lengths, sc_twdata, betagamma, number_of_particles, - circumference, + zeta_length, delta_rms, neps_x, neps_y, @@ -374,7 +341,17 @@ def setup_spacecharge_coasting_in_line( for ii, ss in enumerate(sc_elements): ss.number_of_particles = number_of_particles - ss.circumference = circumference + if isinstance(ss, pysixtrack.elements.SpaceChargeQGaussianProfile): + ss.bunchlength_rms = zeta_length + elif isinstance(ss, pysixtrack.elements.SpaceChargeCoasting): + ss.circumference = zeta_length + elif isinstance(ss, pysixtrack.elements.SpaceChargeInterpolatedProfile): + # InterpolatedProfile + if ii == 0: + print ('Warning: please add the profile data to ' + 'SpaceChargeInterpolatedProfile nodes manually!') + else: + raise NotImplementedError('Unknown space charge node type.') ss.sigma_x = np.sqrt( sc_twdata["betx"][ii] * neps_x / betagamma + (sc_twdata["dispersion_x"][ii] * delta_rms) ** 2 diff --git a/pysixtrack/loader_mad.py b/pysixtrack/loader_mad.py index 9dc7681..e27afaa 100644 --- a/pysixtrack/loader_mad.py +++ b/pysixtrack/loader_mad.py @@ -177,6 +177,18 @@ def iter_from_madx_sequence( x_co=0.0, y_co=0.0, ) + elif ee.slot_id == 3: + newele = classes.SpaceChargeInterpolatedProfile( + number_of_particles=0.0, + line_density_profile=[1.0, 1.0], + z0=0.0, + dz=1.0, + sigma_x=1.0, + sigma_y=1.0, + length=0.0, + x_co=0.0, + y_co=0.0, + ) else: newele = myDrift(length=ee.l) old_pp+=ee.l From 33f9c3562b1b2122bc551b68ec315f65b8d9338b Mon Sep 17 00:00:00 2001 From: Adrian Oeftiger Date: Mon, 24 Aug 2020 12:17:43 +0200 Subject: [PATCH 14/14] spacecharge: added semantics in tools and removal of duplicate... ...default options in loader_mad.py . --- pysixtrack/be_beamfields/spacecharge.py | 6 +- pysixtrack/be_beamfields/tools.py | 122 +++++++++++++++--------- pysixtrack/loader_mad.py | 34 +------ 3 files changed, 86 insertions(+), 76 deletions(-) diff --git a/pysixtrack/be_beamfields/spacecharge.py b/pysixtrack/be_beamfields/spacecharge.py index b5f2224..d6bfdb4 100644 --- a/pysixtrack/be_beamfields/spacecharge.py +++ b/pysixtrack/be_beamfields/spacecharge.py @@ -15,7 +15,7 @@ class SpaceChargeCoasting(Element): ("y_co", "m", "Vertical closed orbit offset", 0.0), ] _extra = [ - ("min_sigma_diff", "m", "Threshold to detect round beam", 1e-10), + ("min_sigma_diff", "m", "Threshold to detect round beam", 1e-8), ("enabled", "", "Switch to disable space charge effect", True), ] @@ -79,7 +79,7 @@ class SpaceChargeQGaussianProfile(Element): ("y_co", "m", "Vertical closed orbit offset", 0.0), ] _extra = [ - ("min_sigma_diff", "m", "Threshold to detect round beam", 1e-10), + ("min_sigma_diff", "m", "Threshold to detect round beam", 1e-8), ("enabled", "", "Switch to disable space charge effect", True), ("q_parameter", "", "q parameter of generalised Gaussian distribution (q=1 for standard Gaussian)", 1.0), ("b_parameter", "", "b parameter of generalised Gaussian distribution (b=1 for standard Gaussian)", 1.0), @@ -158,7 +158,7 @@ class SpaceChargeInterpolatedProfile(Element): ("y_co", "m", "Vertical closed orbit offset", 0.0), ] _extra = [ - ("min_sigma_diff", "m", "Threshold to detect round beam", 1e-10), + ("min_sigma_diff", "m", "Threshold to detect round beam", 1e-8), ("enabled", "", "Switch to disable space charge effect", True), ] diff --git a/pysixtrack/be_beamfields/tools.py b/pysixtrack/be_beamfields/tools.py index 410a793..7906d2a 100644 --- a/pysixtrack/be_beamfields/tools.py +++ b/pysixtrack/be_beamfields/tools.py @@ -11,8 +11,7 @@ def norm(v): def get_points_twissdata_for_elements( - ele_names, mad, seq_name, use_survey=True, use_twiss=True -): + ele_names, mad, seq_name, use_survey=True, use_twiss=True): mad.use(sequence=seq_name) @@ -77,8 +76,8 @@ def get_elements(seq, ele_type=None, slot_id=None): def get_points_twissdata_for_element_type( - mad, seq_name, ele_type=None, slot_id=None, use_survey=True, use_twiss=True -): + mad, seq_name, ele_type=None, slot_id=None, + use_survey=True, use_twiss=True): elements, element_names = get_elements( seq=mad.sequence[seq_name], ele_type=ele_type, slot_id=slot_id @@ -116,8 +115,7 @@ def find_alpha_and_phi(dpx, dpy): def get_bb_names_madpoints_sigmas( - mad, seq_name, use_survey=True, use_twiss=True -): + mad, seq_name, use_survey=True, use_twiss=True): ( _, element_names, @@ -136,8 +134,7 @@ def get_bb_names_madpoints_sigmas( def shift_strong_beam_based_on_close_ip( - points_weak, points_strong, IPs_survey_weak, IPs_survey_strong -): + points_weak, points_strong, IPs_survey_weak, IPs_survey_strong): for i_bb, _ in enumerate(points_weak): @@ -206,16 +203,15 @@ def find_bb_separations(points_weak, points_strong, names=None): def setup_beam_beam_in_line( - line, - bb_names, - bb_sigmas_strong, - bb_points_weak, - bb_points_strong, - beta_r_strong, - bunch_intensity_strong, - n_slices_6D, - bb_coupling, -): + line, + bb_names, + bb_sigmas_strong, + bb_points_weak, + bb_points_strong, + beta_r_strong, + bunch_intensity_strong, + n_slices_6D, + bb_coupling): sep_x, sep_y = find_bb_separations( points_weak=bb_points_weak, @@ -326,32 +322,18 @@ def get_spacecharge_names_twdata(mad, seq_name, mode): return mad_sc_names, twdata -def setup_spacecharge_in_line( - sc_elements, - sc_lengths, - sc_twdata, - betagamma, - number_of_particles, - zeta_length, - delta_rms, - neps_x, - neps_y, -): +def _setup_spacecharge_in_line( + sc_elements, + sc_lengths, + sc_twdata, + betagamma, + number_of_particles, + delta_rms, + neps_x, + neps_y): for ii, ss in enumerate(sc_elements): - ss.number_of_particles = number_of_particles - if isinstance(ss, pysixtrack.elements.SpaceChargeQGaussianProfile): - ss.bunchlength_rms = zeta_length - elif isinstance(ss, pysixtrack.elements.SpaceChargeCoasting): - ss.circumference = zeta_length - elif isinstance(ss, pysixtrack.elements.SpaceChargeInterpolatedProfile): - # InterpolatedProfile - if ii == 0: - print ('Warning: please add the profile data to ' - 'SpaceChargeInterpolatedProfile nodes manually!') - else: - raise NotImplementedError('Unknown space charge node type.') ss.sigma_x = np.sqrt( sc_twdata["betx"][ii] * neps_x / betagamma + (sc_twdata["dispersion_x"][ii] * delta_rms) ** 2 @@ -365,10 +347,64 @@ def setup_spacecharge_in_line( ss.y_co = sc_twdata["y"][ii] ss.enabled = True +def setup_spacecharge_bunched_in_line( + sc_elements, + sc_lengths, + sc_twdata, + betagamma, + number_of_particles, + delta_rms, + neps_x, + neps_y, + bunchlength_rms): + + for ii, ss in enumerate(sc_elements): + ss.bunchlength_rms = bunchlength_rms + _setup_spacecharge_in_line( + sc_elements, sc_lengths, sc_twdata, betagamma, + number_of_particles, delta_rms, neps_x, neps_y) + +def setup_spacecharge_coasting_in_line( + sc_elements, + sc_lengths, + sc_twdata, + betagamma, + number_of_particles, + delta_rms, + neps_x, + neps_y, + circumference): + + for ii, ss in enumerate(sc_elements): + ss.circumference = circumference + _setup_spacecharge_in_line( + sc_elements, sc_lengths, sc_twdata, betagamma, + number_of_particles, delta_rms, neps_x, neps_y) + +def setup_spacecharge_interpolated_in_line( + sc_elements, + sc_lengths, + sc_twdata, + betagamma, + number_of_particles, + delta_rms, + neps_x, + neps_y, + line_density_profile, + dz, + z0): + + for ii, ss in enumerate(sc_elements): + ss.line_density_profile = line_density_profile + ss.dz = dz + ss.z0 = z0 + _setup_spacecharge_in_line( + sc_elements, sc_lengths, sc_twdata, betagamma, + number_of_particles, delta_rms, neps_x, neps_y) + def check_spacecharge_consistency( - sc_elements, sc_names, sc_lengths, mad_sc_names -): + sc_elements, sc_names, sc_lengths, mad_sc_names): assert len(sc_elements) == len(mad_sc_names) assert len(sc_lengths) == len(mad_sc_names) for ii, (ss, nn) in enumerate(zip(sc_elements, sc_names)): diff --git a/pysixtrack/loader_mad.py b/pysixtrack/loader_mad.py index e27afaa..546c286 100644 --- a/pysixtrack/loader_mad.py +++ b/pysixtrack/loader_mad.py @@ -158,40 +158,14 @@ def iter_from_madx_sequence( ) elif mad_etype == "placeholder": if ee.slot_id == 1: - newele = classes.SpaceChargeCoasting( - number_of_particles=0.0, - circumference=0.0, - sigma_x=1.0, - sigma_y=1.0, - length=0.0, - x_co=0.0, - y_co=0.0, - ) + newele = classes.SpaceChargeCoasting() elif ee.slot_id == 2: - newele = classes.SpaceChargeQGaussianProfile( - number_of_particles=0.0, - bunchlength_rms=0.0, - sigma_x=1.0, - sigma_y=1.0, - length=0.0, - x_co=0.0, - y_co=0.0, - ) + newele = classes.SpaceChargeQGaussianProfile() elif ee.slot_id == 3: - newele = classes.SpaceChargeInterpolatedProfile( - number_of_particles=0.0, - line_density_profile=[1.0, 1.0], - z0=0.0, - dz=1.0, - sigma_x=1.0, - sigma_y=1.0, - length=0.0, - x_co=0.0, - y_co=0.0, - ) + newele = classes.SpaceChargeInterpolatedProfile() else: newele = myDrift(length=ee.l) - old_pp+=ee.l + old_pp += ee.l else: raise ValueError(f'MAD element "{mad_etype}" not recognized')