diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index f964a49e..aad8c2e2 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: # only lowest supported python on ubuntu-latest os: [ubuntu-latest] - python-version: [3.9] + python-version: [3.11] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 2c9a18e9..dd0a94c2 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [3.9] + python-version: [3.11] steps: - uses: actions/checkout@v3 @@ -32,6 +32,12 @@ jobs: - name: Install optipng, dvipng and cm-super run: sudo apt-get install -y optipng dvipng cm-super + - name: Get acc-models-lhc + run: git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1 + + - name: Move acc-models-lhc to examples folder + run: mv acc-models-lhc examples/ + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: @@ -42,18 +48,10 @@ jobs: - name: Install package with doc dependencies run: python -m pip install ".[docs]" - # Sometimes the minrpc client will close while documentation builds and I don't know why - # Forcing several successive builds here and hoping it works out (sphinx-gallery - # checks for the existence of already built examples to avoid re-running them, so - # once the gallery is built successive builds will just re-generate the html, very quickly) - name: Build documentation continue-on-error: true run: make docs - # - name: Build documentation (2/n) - # continue-on-error: true - # run: make docs - # Upload artifacts if in PR so reviewers can have a quick look without building documentation from the branch locally - name: Upload build artifacts uses: actions/upload-artifact@v3 @@ -63,10 +61,9 @@ jobs: path: doc_build retention-days: 7 + # Upload the doc to github pages branch and publish if from a push to master - name: Upload documentation to gh-pages if: success() && github.ref == 'refs/heads/master' # only for pushes to master uses: JamesIves/github-pages-deploy-action@v4 with: folder: doc_build - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Now default - # BRANCH: gh-pages # now default diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1f1a003e..f08ecca4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: # only lowest supported python on ubuntu-latest os: [ubuntu-latest] - python-version: [3.9] + python-version: [3.11] steps: diff --git a/docs/conf.py b/docs/conf.py index 42453122..d103eed2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -90,7 +90,7 @@ def __call__(self, *args, **kwargs): # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = "en" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. diff --git a/docs/contributing.rst b/docs/contributing.rst index 8b1212e1..a04a2ca7 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -33,13 +33,13 @@ Please include the following items in a bug report: .. code-block:: python - >>> import pyhdtoolkit - >>> print(pyhdtoolkit.version.version_info()) - PyhDToolkit version: 0.21.0 - Install path: /Users/felixsoubelet/Repositories/Work/PyhDToolkit/pyhdtoolkit - Python version: 3.10.6 - Python implementation: 3.10.6 | packaged by conda-forge | (main, Aug 22 2022, 20:41:54) [Clang 13.0.1 ] - Platform: macOS-12.5.1-x86_64-i386-64bit + import pyhdtoolkit + print(pyhdtoolkit.version.version_info()) + # PyhDToolkit version: 0.21.0 + # Install path: /Users/felixsoubelet/Repositories/Work/PyhDToolkit/pyhdtoolkit + # Python version: 3.10.6 + # Python implementation: 3.10.6 | packaged by conda-forge | (main, Aug 22 2022, 20:41:54) [Clang 13.0.1 ] + # Platform: macOS-12.5.1-x86_64-i386-64bit Enhancement Proposals --------------------- diff --git a/docs/quickstart.rst b/docs/quickstart.rst index d0037fad..5deaf6aa 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -51,14 +51,14 @@ Any jupyter notebook or Python files in the mounted directory can then be used o One can use the library by simply importing it: -.. prompt:: python >>> +.. prompt:: python import pyhdtoolkit This will include only the core components of ``PyhDToolkit``. The different sub-packages must be imported separately, depending on your needs: -.. prompt:: python >>> +.. prompt:: python import pyhdtoolkit.cpymadtools import pyhdtoolkit.maths @@ -78,14 +78,14 @@ All the public apis in the `~pyhdtoolkit.cpymadtools` work in the same fashion: `~cpymad.madx.Madx` instance, and then any `args` and `kwargs` relevant to the functionality at hand. Let's say one has initiated their ``MAD-X`` simulation through `~cpymad.madx.Madx` as follows: -.. prompt:: python >>> +.. prompt:: python from cpymad.madx import Madx madx = Madx() Then using the `~pyhdtoolkit.cpymadtools` apis goes as: -.. prompt:: python >>> +.. prompt:: python from pyhdtoolkit.cpymadtools import super_cool_function # pretend it exists ;) super_cool_function(madx, *args, **kwargs) @@ -111,7 +111,7 @@ Using the `~pyhdtoolkit.plotting` apis goes as: .. tabbed:: Standalone - .. prompt:: python >>> + .. prompt:: python from pyhdtoolkit.plotting.tune import plot_tune_diagram # for instance plot_tune_diagram(max_order=6, differentiate_orders=True) # and enjoy the result! @@ -120,7 +120,7 @@ Using the `~pyhdtoolkit.plotting` apis goes as: Let's say one has initiated their ``MAD-X`` simulation through `~cpymad.madx.Madx` as follows: - .. prompt:: python >>> + .. prompt:: python from cpymad.madx import Madx madx = Madx() @@ -128,7 +128,7 @@ Using the `~pyhdtoolkit.plotting` apis goes as: Then using the api goes as: - .. prompt:: python >>> + .. prompt:: python from pyhdtoolkit.plotting.aperture import plot_aperture # for instance plot_aperture(madx, *args, **kwargs) # and enjoy the result! @@ -145,14 +145,14 @@ functions, or perform many convenient :ref:`operations ` on mi For instance, one can safely run an input at the commandline with: -.. prompt:: python >>> +.. prompt:: python from pyhdtoolkit.utils.cmdline import CommandLine CommandLine.run("sleep 5") Alternatively one can easily parallelise an I/O-intensive function through multithreading with: -.. prompt:: python >>> +.. prompt:: python from pyhdtoolkit.utils.executors import MultiThreader Threader = MultiThreader() @@ -165,7 +165,7 @@ Alternatively one can easily parallelise an I/O-intensive function through multi .. tip:: A useful tidbit is the following which sets up the logging level for functions in the package: - .. prompt:: python >>> + .. prompt:: python from pyhdtoolkit.utils import logging logging.config_logger(level="trace") # the lowest level used, will give ALL logging diff --git a/docs/references.bib b/docs/references.bib index c9b58f98..74bcb371 100644 --- a/docs/references.bib +++ b/docs/references.bib @@ -90,4 +90,15 @@ @article{Carlier:AccuracyFeasibilityMeasurement2017 journaltitle = {Physical Review Accelerators and Beams}, title = {Accuracy and Feasibility of the β * Measurement for {{LHC}} and {{High Luminosity LHC}} Using k Modulation}, year = {2017} +} + +@article{PRAB:Soubelet:Rigid_Waist_Shift_Method_Local_Coupling_Correction_LHC_IR, + author = {F. Soubelet and T. Persson and R. Tomás and O. Apsimon and C.P. Welsch}, + doi = {10.1103/PhysRevAccelBeams.26.051001}, + journal = {{Phys. Rev. ST Accel. Beams}}, + month = May, + publisher = {{American Physical Society}}, + title = {{Rigid Waist Shift: A New Method for Local Coupling Corrections in the LHC Interaction Regions}}, + volume = {26}, + year = 2023 } \ No newline at end of file diff --git a/docs/releases/v1.3.2.rst b/docs/releases/v1.3.2.rst index df3fa308..933eb9ef 100644 --- a/docs/releases/v1.3.2.rst +++ b/docs/releases/v1.3.2.rst @@ -1,4 +1,4 @@ -.. _release_1.3.1: +.. _release_1.3.2: 1.3.2 ----- diff --git a/examples/README.rst b/examples/README.rst index 0897528b..7532587a 100755 --- a/examples/README.rst +++ b/examples/README.rst @@ -26,7 +26,7 @@ submodules, or plots made from results of convenient functions available in `~py Update the ``rcParams`` at runtime with: - .. prompt:: python >>> + .. prompt:: python from matplotlib import pyplot as plt from pyhdtoolkit.plotting.styles.thesis import MEDIUM @@ -36,7 +36,7 @@ submodules, or plots made from results of convenient functions available in `~py Or, for a temporary update of the ``rcParams``: - .. prompt:: python >>> + .. prompt:: python from matplotlib import pyplot as plt from pyhdtoolkit.plotting.styles.thesis import MEDIUM @@ -48,7 +48,7 @@ submodules, or plots made from results of convenient functions available in `~py Do a one-time install of the styles as **.mplstyle** files to use in `~matplotlib`: - .. prompt:: python >>> + .. prompt:: python from matplotlib import pyplot as plt from pyhdtoolkit.plotting.styles import install_mpl_styles diff --git a/examples/acc-models-lhc/lhc.seq b/examples/acc-models-lhc/lhc.seq deleted file mode 100755 index 0b810f65..00000000 --- a/examples/acc-models-lhc/lhc.seq +++ /dev/null @@ -1,25891 +0,0 @@ - - /********************************************************************************** - * - * LHC ring (draft) version YETS 2021-2022 in MAD X sequence format - * Generated the 28-JAN-2022 16:48:56 from LAYOUT - * - ***********************************************************************************/ - - -/************************************************************************************/ -/* GEOMETRY */ -/************************************************************************************/ - -if (version>=50401){option,-rbarc;}; - -LHCLENGTH := 26658.8832; -sep_ARC := 0.194; -sep_IR3 := 0.224; -sep_IR4 := 0.420; -sep_IR7 := 0.224; -IP1OFS.B1 := 0; -IP1OFS.B2 := 0; -IP2OFS.B1 := 154; -IP2OFS.B2 := -154; -IP3OFS.B1 := 0; -IP3OFS.B2 := 0; -IP4OFS.B1 := -154; -IP4OFS.B2 := 154; -IP5OFS.B1 := -308; -IP5OFS.B2 := 308; -IP6OFS.B1 := -154; -IP6OFS.B2 := 154; -IP7OFS.B1 := 0; -IP7OFS.B2 := 0; -IP8OFS.B1 := 154; -IP8OFS.B2 := -154; -Dsep1 := 85.913; -Dsep2 := 63.295; -Dsep3 := 26.493; -Dsep4 := 71.901; -Dsep5 := 85.913; -Dsep7 := 39.7395; -Dsep8 := 63.295; -AIP1 := ATAN(sep_ARC/2/Dsep1); -AIP2 := ATAN(sep_ARC/2/Dsep2); -AIP3 := ATAN((sep_IR3-sep_ARC)/2/Dsep3); -AIP4 := ATAN((sep_IR4-sep_ARC)/2/Dsep4); -AIP5 := ATAN(sep_ARC/2/Dsep5); -AIP7 := ATAN((sep_IR7-sep_ARC)/2/Dsep7); -AIP8 := ATAN((sep_ARC)/2/Dsep8); -pIP1 := 0; -pIP1.L1 := 26658.8832; -pIP2 := 3332.3604; -pIP3 := 6664.7208; -pIP4 := 9997.0812; -pIP5 := 13329.4416; -pIP6 := 16661.802; -pIP7 := 19994.1624; -pIP8 := 23315.3028; -HRF200 := 17820; -HRF400 := 35640; - -A.MB := TWOPI/8/(23*6+2*2*4); -AB.A12 := A.MB; -AB.A23 := A.MB; -AB.A34 := A.MB; -AB.A45 := A.MB; -AB.A56 := A.MB; -AB.A67 := A.MB; -AB.A78 := A.MB; -AB.A81 := A.MB; - -l.ACSCA := 0; -l.ACSPH001 := 0.5125; -l.ACSPH002 := 0.5825; -l.ADTKH := 0; -l.ADTKV := 0; -l.APWL := 0; -l.BBCWB := 0; -l.BBCWE := 0; -l.BBCWI := 0; -l.BBCWT := 0; -l.BCTDC := 0; -l.BCTFR := 0; -l.BGCAB := 0; -l.BGVCA001 := 0; -l.BGVCA003 := 0; -l.BGVCA004 := 0; -l.BPLH := 0; -l.BPLV := 0; -l.BPLX := 0; -l.BPM := 0; -l.BPMCS := 0; -l.BPMR := 0; -l.BPMRA := 0; -l.BPMSA := 0; -l.BPMSE := 0; -l.BPMSI002 := 0; -l.BPMSW002 := 0; -l.BPMSX002 := 0; -l.BPMSX003 := 0; -l.BPMSX004 := 0; -l.BPMSY002 := 0; -l.BPMS_003 := 0; -l.BPMWA := 0; -l.BPMWB := 0; -l.BPMWC := 0; -l.BPMWE003 := 0; -l.BPMWE007 := 0; -l.BPMWE008 := 0; -l.BPMWE009 := 0; -l.BPMWF := 0; -l.BPMWG := 0; -l.BPMWI := 0; -l.BPMWJ := 0; -l.BPMWT := 0; -l.BPMW_010 := 0; -l.BPMW_013 := 0; -l.BPMW_014 := 0; -l.BPMW_015 := 0; -l.BPMYA := 0; -l.BPMYB := 0; -l.BPM_A := 0; -l.BPTDH := 0; -l.BPTDJ := 0; -l.BPTDV := 0; -l.BPTUH := 0; -l.BPTUJ := 0; -l.BPTUT := 0; -l.BPTUV := 0; -l.BPTX := 0; -l.BQKH := 0; -l.BQKV := 0; -l.BQSH := 0; -l.BQSV := 0; -l.BRANA := 0; -l.BRANC := 0; -l.BRAND := 0; -l.BSRTM := 0; -l.BSRTMB := 0; -l.BSRTO001 := 0; -l.BSRTO002 := 0; -l.BSRTR := 0; -l.BTVM := 0; -l.BTVSE := 0; -l.BTVSI084 := 0; -l.BTVSI088 := 0.5; -l.BTVSS074 := 0; -l.BTVSS075 := 0.75; -l.BTVST064 := 0; -l.BTVST065 := 0; -l.BWS := 0; -l.DFBAA := 2.175; -l.DFBAB := 2.675; -l.DFBAC := 2.175; -l.DFBAD := 2.675; -l.DFBAE := 2.175; -l.DFBAF := 2.675; -l.DFBAG := 2.175; -l.DFBAH := 2.675; -l.DFBAI := 2.175; -l.DFBAJ := 2.675; -l.DFBAK := 2.175; -l.DFBAL := 2.675; -l.DFBAM := 2.175; -l.DFBAN := 2.675; -l.DFBAO := 2.175; -l.DFBAP := 2.675; -l.DFBXA := 3.09; -l.DFBXB := 3.09; -l.DFBXC := 2.853; -l.DFBXD := 2.853; -l.DFBXE := 3.09; -l.DFBXF := 3.09; -l.DFBXG := 2.853; -l.DFBXH := 2.853; -l.LEAL := 12.7747; -l.LEAR := 12.7747; -l.LEBL := 12.7747; -l.LEBR := 12.7747; -l.LECL := 12.7747; -l.LEDR := 13.7167; -l.LEEL := 13.7167; -l.LEFL := 13.7167; -l.LEGR := 13.7167; -l.LEHR := 13.7167; -l.LEIR := 13.7167; -l.LEJL := 10.12; -l.LENLA := 2.156; -l.LENRA := 2.156; -l.LEPLA := 5.30935; -l.LEPLB := 5.30935; -l.LEPRA := 5.30935; -l.LEPRB := 5.30935; -l.MB := 14.3; -l.MBAS2 := 3; -l.MBAW := 4.5406; -l.MBCS2 := 6.5; -l.MBLS2 := 6.05; -l.MBLW := 5; -l.MBRB := 9.45; -l.MBRC := 9.45; -l.MBRS := 9.45; -l.MBW := 3.4; -l.MBWMD := 2.62; -l.MBX := 9.45; -l.MBXW := 3.4; -l.MBXWH := 3.4; -l.MBXWS := 0.78; -l.MBXWT := 1.53; -l.MCBCH := 0.904; -l.MCBCV := 0.904; -l.MCBH := 0.647; -l.MCBH_UNPLUGGED := 0.647; -l.MCBV := 0.647; -l.MCBV_UNPLUGGED := 0.647; -l.MCBWH := 1.7; -l.MCBWV := 1.7; -l.MCBXH := 0.45; -l.MCBXH_UNPLUGGED := 0.45; -l.MCBXV := 0.48; -l.MCBYH := 0.899; -l.MCBYV := 0.899; -l.MCD := 0.066; -l.MCD_UNPLUGGED := 0.066; -l.MCO := 0.066; -l.MCOSX := 0.138; -l.MCOSX_UNPLUGGED := 0.138; -l.MCOX := 0.137; -l.MCOX_UNPLUGGED := 0.137; -l.MCO_UNPLUGGED := 0.066; -l.MCS := 0.11; -l.MCSSX := 0.132; -l.MCSSX_UNPLUGGED := 0.132; -l.MCSX := 0.576; -l.MCS_UNPLUGGED := 0.11; -l.MCTX := 0.615; -l.MGMWH := 0.5263; -l.MGMWH003 := 0.5263; -l.MGMWV := 0.5263; -l.MGMWV003 := 0.5263; -l.MKD := 1.348; -l.MKIMA192 := 0; -l.MKIMA193 := 0; -l.MKQA := 1.583; -l.MO := 0.32; -l.MO_UNPLUGGED := 0.32; -l.MQ := 3.1; -l.MQM := 3.4; -l.MQMC := 2.4; -l.MQML := 4.8; -l.MQS := 0.32; -l.MQSX := 0.223; -l.MQT := 0.32; -l.MQTLH := 1.3; -l.MQTLI := 1.3; -l.MQT_UNPLUGGED := 0.32; -l.MQWA := 3.108; -l.MQWB := 3.108; -l.MQXA := 6.37; -l.MQXB := 5.5; -l.MQY := 3.4; -l.MS := 0.369; -l.MSDA := 4.088; -l.MSDB := 4.088; -l.MSDB2 := 2.044; -l.MSDC := 4.088; -l.MSIA := 4; -l.MSIB := 4; -l.MSS := 0.369; -l.MSS_UNPLUGGED := 0.369; -l.MU := 0.14; -l.OMK := 0; -l.TANAL := 3.492; -l.TANAR := 3.492; -l.TANB := 0.605; -l.TANC := 3.492; -l.TAS := 1.8; -l.TASB := 1.2; -l.TCAPA019 := 1; -l.TCAPA020 := 1; -l.TCAPB := 0.2; -l.TCAPC := 0.6; -l.TCAPD := 0.618; -l.TCAPM := 3.52; -l.TCDD := 1; -l.TCDDM := 1; -l.TCDQA := 0; -l.TCDQM := 1.05; -l.TCDSA := 3.012; -l.TCDSB := 3.012; -l.TCL := 1; -l.TCLA := 1; -l.TCLD := 0.6; -l.TCLIA := 1; -l.TCLIB := 1; -l.TCLIM := 0.5; -l.TCP := 0.6; -l.TCPCH := 0; -l.TCPCV := 0; -l.TCPPM := 0.6; -l.TCSG := 1; -l.TCSP := 1; -l.TCSPM := 1; -l.TCTPH := 1; -l.TCTPV := 1; -l.TCTWH := 1; -l.TCTWV := 1; -l.TDISA := 1.565; -l.TDISB := 1.565; -l.TDISC := 1.565; -l.X1ZDC001 := 0.6; -l.X1ZDC002 := 0.3; -l.X2ZDC001 := 1.5; -l.X2ZDC002 := 1.5; -l.X5FCA := 0; -l.X5FCB := 0; -l.X5ZDC001 := 0.775; -l.X5ZDC002 := 0.125; -l.XRPH := 0; -l.XRPV := 0; - -R0 := 0.0; -DS := 0.097*TWOPI/8/(23*6+2*2*4)*(1-R0); - -AD1.L2 := AIP2*(1-R0); -AD1.L8 := AIP8*(1-R0); -AD1.LR1 := AIP1/6*(1-R0); -AD1.LR5 := AIP5/6*(1-R0); -AD1.R2 := AIP2*(1-R0); -AD1.R8 := AIP8*(1-R0); -AD2.L1 := AIP1*(1-R0); -AD2.L2 := AIP2*(1-R0); -AD2.L5 := AIP5*(1-R0); -AD2.L8 := AIP8*(1-R0); -AD2.R1 := AIP1*(1-R0); -AD2.R2 := AIP2*(1-R0); -AD2.R5 := AIP5*(1-R0); -AD2.R8 := AIP8*(1-R0); -AD3.L4 := AIP4*(1-R0); -AD3.LR3 := (AIP3/3)*(1-R0); -AD3.LR7 := (AIP7/2)*(1-R0); -AD3.R4 := AIP4*(1-R0); -AD4.L4 := AIP4*(1-R0); -AD4.LR3 := (AIP3/3)*(1-R0); -AD4.LR7 := (AIP7/2)*(1-R0); -AD4.R4 := AIP4*(1-R0); -AD34.LR3 := (AIP3/3)*(1-R0); -AD34.LR7 := (AIP7/2)*(1-R0); - -/************************************************************************************/ -/* Kmax STRENGTH */ -/************************************************************************************/ - -Kmax_MB := 8.3274; -Kmax_MBAW := 0.6792; -Kmax_MBLW := 1.1; -Kmax_MBRB_4.5K := 3.88; -Kmax_MBRC_4.5K := 3.8; -Kmax_MBRS_4.5K := 3.88; -Kmax_MBW := 1.42; -Kmax_MBWMD := 1.345; -Kmax_MBX := 3.8; -Kmax_MBXW := 1.282; -Kmax_MBXWH := 1.24; -Kmax_MBXWS := 1.1; -Kmax_MBXWT := 1.68; -Kmax_MCBCH := 3.11; -Kmax_MCBCH_4.5K := 2.33; -Kmax_MCBCV := 3.11; -Kmax_MCBCV_4.5K := 2.33; -Kmax_MCBH := 2.93; -Kmax_MCBV := 2.93; -Kmax_MCBWH := 1.1; -Kmax_MCBWV := 1.1; -Kmax_MCBXH := 3.35; -Kmax_MCBXV := 3.26; -Kmax_MCBYH_4.5K := 2.5; -Kmax_MCBYV_4.5K := 2.5; -Kmax_MCD := 1200000 * 24; -Kmax_MCO := 8150 * 6; -Kmax_MCOSX := 9680 * 6; -Kmax_MCOX := 9230 * 6; -Kmax_MCS := 1630 * 2; -Kmax_MCSSX := 377 * 2; -Kmax_MCSX := 104 * 2; -Kmax_MCTX := 7060000 * 120; -Kmax_MO := 63100 * 6; -Kmax_MQ := 223; -Kmax_MQM := 200; -Kmax_MQM_4.5K := 160; -Kmax_MQMC := 200; -Kmax_MQML := 200; -Kmax_MQML_4.5K := 160; -Kmax_MQS := 123; -Kmax_MQSX := 80; -Kmax_MQT := 123; -Kmax_MQTLH_4.5K := 90; -Kmax_MQTLI := 125; -Kmax_MQWA := 35; -Kmax_MQWB := 30; -Kmax_MQXA := 205; -Kmax_MQXB := 205; -Kmax_MQY_4.5K := 160; -Kmax_MS := 4430 * 2; -Kmax_MSDA := 0.8; -Kmax_MSDB := 0.99; -Kmax_MSDB2 := 0.99; -Kmax_MSDC := 1.17; -Kmax_MSIA := 0.76; -Kmax_MSIB := 1.13; -Kmax_MSS := 4430 * 2; - -/************************************************************************************/ -/* Kmin STRENGTH */ -/************************************************************************************/ - -Kmin_MB := 0.246; -Kmin_MBAW := -0.6792; -Kmin_MBLW := -1.1; -Kmin_MBRB_4.5K := 0.126; -Kmin_MBRC_4.5K := 0.104; -Kmin_MBRS_4.5K := 0.132; -Kmin_MBW := 0.036; -Kmin_MBWMD := 0.037; -Kmin_MBX := 0.131; -Kmin_MBXW := 0.031; -Kmin_MBXWH := -1.24; -Kmin_MBXWS := -1.1; -Kmin_MBXWT := 0.042; -Kmin_MCBCH := -3.11; -Kmin_MCBCH_4.5K := -2.33; -Kmin_MCBCV := -3.11; -Kmin_MCBCV_4.5K := -2.33; -Kmin_MCBH := -2.93; -Kmin_MCBV := -2.93; -Kmin_MCBWH := -1.1; -Kmin_MCBWV := -1.1; -Kmin_MCBXH := -3.35; -Kmin_MCBXV := -3.26; -Kmin_MCBYH_4.5K := -2.5; -Kmin_MCBYV_4.5K := -2.5; -Kmin_MCD := -1200000 * 24; -Kmin_MCO := -8150 * 6; -Kmin_MCOSX := -9680 * 6; -Kmin_MCOX := -9230 * 6; -Kmin_MCS := -1630 * 2; -Kmin_MCSSX := -377 * 2; -Kmin_MCSX := -104 * 2; -Kmin_MCTX := -7060000 * 120; -Kmin_MO := -63100 * 6; -Kmin_MQ := 6.575; -Kmin_MQM := 4.453; -Kmin_MQM_4.5K := 4.455; -Kmin_MQMC := 4.453; -Kmin_MQML := 4.453; -Kmin_MQML_4.5K := 4.455; -Kmin_MQS := -123; -Kmin_MQSX := -80; -Kmin_MQT := -123; -Kmin_MQTLH_4.5K := -90; -Kmin_MQTLI := -125; -Kmin_MQWA := 1.873; -Kmin_MQWB := -30; -Kmin_MQXA := 5.71; -Kmin_MQXB := 5.999; -Kmin_MQY_4.5K := 3.546; -Kmin_MS := -4430 * 2; -Kmin_MSDA := 0.021; -Kmin_MSDB := 0.026; -Kmin_MSDB2 := 0.026; -Kmin_MSDC := 0.031; -Kmin_MSIA := 0.04; -Kmin_MSIB := 0.059; -Kmin_MSS := -4430 * 2; - -/************************************************************************************/ -/* Imax */ -/************************************************************************************/ - -Imax_MB := 11850; -Imax_MBAW := 6000; -Imax_MBLW := 5850; -Imax_MBRB_4.5K := 6150; -Imax_MBRC_4.5K := 4400; -Imax_MBRS_4.5K := 5860; -Imax_MBW := 720; -Imax_MBWMD := 550; -Imax_MBX := 5800; -Imax_MBXW := 750; -Imax_MBXWH := 750; -Imax_MBXWS := 780; -Imax_MBXWT := 600; -Imax_MCBCH := 100; -Imax_MCBCH_4.5K := 80; -Imax_MCBCV := 100; -Imax_MCBCV_4.5K := 80; -Imax_MCBH := 55; -Imax_MCBV := 55; -Imax_MCBWH := 500; -Imax_MCBWV := 500; -Imax_MCBXH := 550; -Imax_MCBXV := 550; -Imax_MCBYH_4.5K := 72; -Imax_MCBYV_4.5K := 72; -Imax_MCD := 550; -Imax_MCO := 100; -Imax_MCOSX := 100; -Imax_MCOX := 100; -Imax_MCS := 550; -Imax_MCSSX := 100; -Imax_MCSX := 100; -Imax_MCTX := 80; -Imax_MO := 550; -Imax_MQ := 11870; -Imax_MQM := 5390; -Imax_MQM_4.5K := 4310; -Imax_MQMC := 5390; -Imax_MQML := 5390; -Imax_MQML_4.5K := 4310; -Imax_MQS := 550; -Imax_MQSX := 550; -Imax_MQT := 550; -Imax_MQTLH_4.5K := 400; -Imax_MQTLI := 550; -Imax_MQWA := 710; -Imax_MQWB := 600; -Imax_MQXA := 7180; -Imax_MQXB := 11960; -Imax_MQY_4.5K := 3610; -Imax_MS := 550; -Imax_MSDA := 880; -Imax_MSDB := 880; -Imax_MSDB2 := 880; -Imax_MSDC := 880; -Imax_MSIA := 950; -Imax_MSIB := 950; -Imax_MSS := 550; - -/************************************************************************************/ -/* CLASSES DEFINITION */ -/************************************************************************************/ - -HCORRECTOR: HKICKER; -VCORRECTOR: VKICKER; - -//---------------------- COLLIMATOR --------------------------------------------- -TANB : COLLIMATOR, L := l.TANB; ! TAN assembly in Point 8 - HCTANB_ duplication per beam for optic -TAS : COLLIMATOR, L := l.TAS; ! Beam Absorber (Secondaries) between the IP and Q1 -TASB : COLLIMATOR, L := l.TASB; ! Beam Absorber (Secondaries) between the Q2 and Q3 -TCAPA019 : COLLIMATOR, L := l.TCAPA019; ! Passive absorber with shielding length 1.0m IP7 -TCAPA020 : COLLIMATOR, L := l.TCAPA020; ! Passive absorber with shielding length 1.0m IP3 -TCAPB : COLLIMATOR, L := l.TCAPB; ! Passive absorber with shielding length 0.2m -TCAPC : COLLIMATOR, L := l.TCAPC; ! Passive absorber with shielding length 0.6m - Type C -TCAPD : COLLIMATOR, L := l.TCAPD; ! Passive absorber with shielding length 0.6m - Type D -TCAPM : COLLIMATOR, L := l.TCAPM; ! Passive absorber with Mask with shielding lenght 2.0 m IP7 (Right) -TCDD : COLLIMATOR, L := l.TCDD; ! Collimator for D1 Protection (IR2) -TCDDM : COLLIMATOR, L := l.TCDDM; ! Mask for D1 Protection (IR8) -TCDQA : COLLIMATOR, L := l.TCDQA; ! Collimator Absorber block for Q4 Protection (IR6) Type A -TCDQM : COLLIMATOR, L := l.TCDQM; ! Mask for Q4 Protection (IR6) - HCTCDQM duplication per beam for optic -TCDSA : COLLIMATOR, L := l.TCDSA; ! Collimator absorber block for MSD Protection (IR6) - upstream -TCDSB : COLLIMATOR, L := l.TCDSB; ! Collimator absorber block for MSD Protection (IR6) - downstream -TCL : COLLIMATOR, L := l.TCL; ! Target Collimator Auxiliary -TCLA : COLLIMATOR, L := l.TCLA; ! Active absorber for showers generated in the cleaning insertion -TCLD : COLLIMATOR, L := l.TCLD; ! Auxiliary Collimators in DS Area -TCLIA : COLLIMATOR, L := l.TCLIA; ! Collimator for Injection Protection at D1 (IR2 and IR8) -TCLIB : COLLIMATOR, L := l.TCLIB; ! Collimator for Injection Protection at Q6 (IR2 and IR8) -TCLIM : COLLIMATOR, L := l.TCLIM; ! Mask for Q6 Protection (IR2 and IR8) - HCTCLIM duplication per beam for optic -TCP : COLLIMATOR, L := l.TCP; ! Primary Collimator for Cleaning -TCPCH : COLLIMATOR, L := l.TCPCH; ! Target Collimator Primary Crystal Horizontal -TCPCV : COLLIMATOR, L := l.TCPCV; ! Target Collimator Primary Crystal Vertical -TCPPM : COLLIMATOR, L := l.TCPPM; ! Primary Collimator with BPM Metallic -TCSG : COLLIMATOR, L := l.TCSG; ! Secondary Collimator Graphite -TCSP : COLLIMATOR, L := l.TCSP; ! Secondary Collimator with Pick-Up -TCSPM : COLLIMATOR, L := l.TCSPM; ! Secondary Collimator with Pick-Up Metallic -TCTPH : COLLIMATOR, L := l.TCTPH; ! Tertiary Collimator with Pick-Up Horizontal -TCTPV : COLLIMATOR, L := l.TCTPV; ! Tertiary Collimator with Pick-Up Vertical for 1 Beam -TCTWH : COLLIMATOR, L := l.TCTWH; ! Tertiary Collimator with Wire Demonstrator for BBC (Horiz.) -TCTWV : COLLIMATOR, L := l.TCTWV; ! Tertiary Collimator with Wire Demonstrator for BBC - Verti -TDISA : COLLIMATOR, L := l.TDISA; ! Beam Absorber for Injection Graphite block -TDISB : COLLIMATOR, L := l.TDISB; ! Beam Absorber for Injection Graphite block -TDISC : COLLIMATOR, L := l.TDISC; ! Beam Absorber for Injection Copper/Titanium block -XRPH : COLLIMATOR, L := l.XRPH; ! Horizontal Roman Pot -XRPV : COLLIMATOR, L := l.XRPV; ! Vertical Roman Pot -//---------------------- HCORRECTOR --------------------------------------------- -MCBCH : HCORRECTOR, L := l.MCBCH, Kmax := Kmax_MCBCH, Kmin := Kmin_MCBCH, Calib := Kmax_MCBCH / Imax_MCBCH; ! Horizontal Orbit Corrector inserted in MCBCA(B,C,D) -MCBH : HCORRECTOR, L := l.MCBH, Kmax := Kmax_MCBH, Kmin := Kmin_MCBH, Calib := Kmax_MCBH / Imax_MCBH; ! Arc Orbit Corrector in MSCBA(B,C,D), Horizontal -MCBWH : HCORRECTOR, L := l.MCBWH, Kmax := Kmax_MCBWH, Kmin := Kmin_MCBWH, Calib := Kmax_MCBWH / Imax_MCBWH; ! Single Aperture Warm Orbit Horizontal Corrector -MCBXH : HCORRECTOR, Lrad := l.MCBXH, Kmax := Kmax_MCBXH, Kmin := Kmin_MCBXH, Calib := Kmax_MCBXH / Imax_MCBXH; ! Horizontal Single Aperture (70mm) Orbit Corrector in MCBXA or MCBXB -MCBYH : HCORRECTOR, L := l.MCBYH, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; ! Orbit Corrector in MCBYA(B) -//---------------------- HKICKER --------------------------------------------- -MBLW : HKICKER, L := l.MBLW, Kmax := Kmax_MBLW, Kmin := Kmin_MBLW, Calib := Kmax_MBLW / Imax_MBLW; ! LHC-b Spectrometer -MBXWH : HKICKER, L := l.MBXWH, Kmax := Kmax_MBXWH, Kmin := Kmin_MBXWH, Calib := Kmax_MBXWH / Imax_MBXWH; ! Single Aperture Warm Horizontal Dipole Module Compensating LHC-b Spectrometer -MBXWS : HKICKER, L := l.MBXWS, Kmax := Kmax_MBXWS, Kmin := Kmin_MBXWS, Calib := Kmax_MBXWS / Imax_MBXWS; ! Aperture Warm Horizontal Dipole Short Module -//---------------------- INSTRUMENT --------------------------------------------- -APWL : INSTRUMENT, L := l.APWL; ! Bunch Parameters -BCTDC : INSTRUMENT, L := l.BCTDC; ! DC Beam Current Transformers for the Rings -BCTFR : INSTRUMENT, L := l.BCTFR; ! Fast Beam Current Transformer for the Rings -BGCAB : INSTRUMENT, L := l.BGCAB; ! Beam Gas Curtain Type A Subtype B -BGVCA001 : INSTRUMENT, L := l.BGVCA001; ! Beam Gas Vertex Gas Injection Chamber -BPLH : INSTRUMENT, L := l.BPLH; ! Horizontal Long Stripline Coupler -BPLV : INSTRUMENT, L := l.BPLV; ! Vertical Long Stripline Coupler -BPLX : INSTRUMENT, L := l.BPLX; ! Long Stripline Coupler Equipped for Both Planes -BPTX : INSTRUMENT, L := l.BPTX; ! Pick-up for experiment timing in IR1, 2, 5 and 8. -BQSH : INSTRUMENT, L := l.BQSH; ! Horizontal Schottky Monitor -BQSV : INSTRUMENT, L := l.BQSV; ! Vertical Schottky Monitor -BRANA : INSTRUMENT, L := l.BRANA; ! TAN Type Luminosity Monitor 100 mm length -BRANC : INSTRUMENT, L := l.BRANC; ! Standalone Luminosity Monitor Cherenkov Type C -BRAND : INSTRUMENT, L := l.BRAND; ! TAN Type Luminosity Monitor Type D (in IP1 and IP5) -BSRTM : INSTRUMENT, L := l.BSRTM; ! Synchrotron Radiation Telescope Light Extraction Tank (Mirror) -BSRTMB : INSTRUMENT, L := l.BSRTMB; ! Synchrotron Radiation Telescope Light Extraction Tank (Mirror), Model B -BSRTO001 : INSTRUMENT, L := l.BSRTO001; ! Synchrotron Light Monitor Optical Table - 5R4 (RIGHT) -BSRTO002 : INSTRUMENT, L := l.BSRTO002; ! Synchrotron Light Monitor Optical Table - 5L4 (LEFT) -BSRTR : INSTRUMENT, L := l.BSRTR; ! Synchrotron Radiation Telescope Reflection System -BTVM : INSTRUMENT, L := l.BTVM; ! LHC Ring Beam Observation Systems based on Screens for Matching -BTVSE : INSTRUMENT, L := l.BTVSE; ! TV monitor located upstream the TCDS collimator to visualize the extracted beam at the entrance of the extraction septum. -BTVSI084 : INSTRUMENT, L := l.BTVSI084; ! BTVS for Injection Points 8/3/4 (combined Injection and Ring) -BTVSI088 : INSTRUMENT, L := l.BTVSI088; ! BTVS for Injection Points 2/7 (combined Injection and Ring) -BTVSS074 : INSTRUMENT, L := l.BTVSS074; ! BTVS close to Injection Septa IR8 -BTVSS075 : INSTRUMENT, L := l.BTVSS075; ! BTVS close to Injection Septa IR2 -BTVST064 : INSTRUMENT, L := l.BTVST064; ! BTVS for Injection Points close to TDI Absorber IR8 -BTVST065 : INSTRUMENT, L := l.BTVST065; ! BTVS for Injection Points close to TDI Absorber IR2 -BWS : INSTRUMENT, L := l.BWS; ! Wire Scanners Profile Monitors -TANAL : INSTRUMENT, Lrad := l.TANAL; ! TAN Assembly Left of Point 1 -TANAR : INSTRUMENT, Lrad := l.TANAR; ! TAN Assembly Right of Point 1 -TANC : INSTRUMENT, Lrad := l.TANC; ! TAN Assembly in Point 5 -X1ZDC001 : INSTRUMENT, Lrad := l.X1ZDC001; ! Zero Degree Calorimeter ATLAS Hadronic Part -X1ZDC002 : INSTRUMENT, Lrad := l.X1ZDC002; ! Zero Degree Calorimeter ATLAS Electro-Magnetic Part -X2ZDC001 : INSTRUMENT, Lrad := l.X2ZDC001; ! Zero Degree Calorimeter (ALICE) Left IP2 -X2ZDC002 : INSTRUMENT, Lrad := l.X2ZDC002; ! Zero Degree Calorimeter (ALICE) Right IP2 -X5FCA : INSTRUMENT, L := l.X5FCA; ! Forward Calorimeter (Scintillators) for CMS Type A -X5FCB : INSTRUMENT, L := l.X5FCB; ! Forward Calorimeter (Scintillators) for CMS Type B -X5ZDC001 : INSTRUMENT, Lrad := l.X5ZDC001; ! Zero Degree Calorimeter CMS Hadronic Part -X5ZDC002 : INSTRUMENT, Lrad := l.X5ZDC002; ! Zero Degree Calorimeter CMS Electro-Magnetic Part -//---------------------- MARKER --------------------------------------------- -OMK : MARKER, L := l.OMK; ! LHC markers -//---------------------- MONITOR --------------------------------------------- -BBCWB : MONITOR, L := l.BBCWB; ! Beam Beam Compensator Wire Marker (Bottom) -BBCWE : MONITOR, L := l.BBCWE; ! Beam Beam Compensator Wire Marker -BBCWI : MONITOR, L := l.BBCWI; ! Beam Beam Compensator Wire Marker -BBCWT : MONITOR, L := l.BBCWT; ! Beam Beam Compensator Wire Marker (Top) -BPM : MONITOR, L := l.BPM; ! Arc Beam Position Monitor -BPMCS : MONITOR, L := l.BPMCS; ! Strip Lines in Combined Pick-ups -BPMR : MONITOR, L := l.BPMR; ! Beam Position Monitor with Rotated Beam Screen -BPMRA : MONITOR, L := l.BPMRA; ! Beam Position Monitor with Rotated Beam Screen for Q7R -BPMSA : MONITOR, L := l.BPMSA; ! 80mm Aperture Warm Short-circuited Stripline Coupler -BPMSE : MONITOR, L := l.BPMSE; ! Beam Position Monitor (4 Strip Lines, WARM) upstream the TCDS3 -BPMSI002 : MONITOR, L := l.BPMSI002; ! Beam Position Monitor Directional (4 Strip Lines, Warm) for the dump interlock system -BPMSW002 : MONITOR, L := l.BPMSW002; ! Measuring point for BPMSW used in BPMSW001 and BPMWK -BPMSX002 : MONITOR, L := l.BPMSX002; ! Beam Position Monitor (4 Strip Lines, Warm) behind D1 - Interlock -BPMSX003 : MONITOR, L := l.BPMSX003; ! Measuring point for BPMSX001/004 (4 Strip Lines, Warm) behind D1 -BPMSX004 : MONITOR, L := l.BPMSX004; ! Beam Position Monitor (4 Strip Lines, Warm) behind D1 - Single Beam -BPMSY002 : MONITOR, L := l.BPMSY002; ! Measuring point for BPMSY001 -BPMS_003 : MONITOR, L := l.BPMS_003; ! Measuring point for BPMS -BPMWA : MONITOR, L := l.BPMWA; ! Beam Position Monitor, Warm, either Side of ADTV/H -BPMWB : MONITOR, L := l.BPMWB; ! Beam Position Monitor, Warm, on D2 -BPMWC : MONITOR, L := l.BPMWC; ! Beam Position Monitor, Warm, for left of Q6R3 and right of Q6L7. -BPMWE003 : MONITOR, L := l.BPMWE003; ! Beam Position Monitor, Warm, Type V (External Beam) -BPMWE007 : MONITOR, L := l.BPMWE007; ! Beam Position Monitor, Warm, Type V (External Beam) -BPMWE008 : MONITOR, L := l.BPMWE008; ! Beam Position Monitor, Warm, Type H (External Beam) -BPMWE009 : MONITOR, L := l.BPMWE009; ! Beam Position Monitor, Warm, Type H (External Beam) -BPMWF : MONITOR, L := l.BPMWF; ! Beam Position Monitor, Warm, Aperture 61mm in front of Q1 in LSS1 and LSS5 -BPMWG : MONITOR, L := l.BPMWG; ! Enlarged Warm BPM adapted for Elliptic 52x30 / 59x44 with QCF flanges -BPMWI : MONITOR, L := l.BPMWI; ! Beam Position Monitor, Warm, Aperture 80mm in front of D2 in LSS2L and LSS8R -BPMWJ : MONITOR, L := l.BPMWJ; ! Beam Position Monitor, Warm, Aperture 80mm , with QCF Flanges -BPMWT : MONITOR, L := l.BPMWT; ! warm 80mm aperture button BPM for TOTEM -BPMW_010 : MONITOR, L := l.BPMW_010; ! Beam Position Monitor, Warm, in MQW, Type V (External Beam) H (Internal Beam) -BPMW_013 : MONITOR, L := l.BPMW_013; ! Beam Position Monitor, Warm, in MQW 52H/30 Upstream 59H/44 Downstream -BPMW_014 : MONITOR, L := l.BPMW_014; ! Beam Position Monitor, Warm, in MQW, Type V (External Beam) H (Internal Beam) -BPMW_015 : MONITOR, L := l.BPMW_015; ! Beam Position Monitor, Warm, in MQW 52V/30 Upstream 59V/44 Downstream -BPMYA : MONITOR, L := l.BPMYA; ! Beam Position Monitor, Wide Aperture, Normal Beam Screen -BPMYB : MONITOR, L := l.BPMYB; ! Beam Position Monitor, Wide Aperture, Rotated Beam Screen -BPM_A : MONITOR, L := l.BPM_A; ! Beam Position Monitor adapted to Q7R (diam 63 DFBA CWT) -BPTDH : MONITOR, L := l.BPTDH; ! Embedded Downstream BPM in a Horizontal Collimator's Jaw -BPTDJ : MONITOR, L := l.BPTDJ; ! Embedded Downstream BPM in a skew collimator's Jaw -BPTDV : MONITOR, L := l.BPTDV; ! Embedded Downstream BPM in a Vertical Collimator's Jaw -BPTUH : MONITOR, L := l.BPTUH; ! Embedded Upstream BPM in a Horizontal Collimator -BPTUJ : MONITOR, L := l.BPTUJ; ! Embedded Upstream BPM in a skew collimator's Jaw -BPTUT : MONITOR, L := l.BPTUT; ! Embedded Upstream BPM in a skew collimator's Tank -BPTUV : MONITOR, L := l.BPTUV; ! Embedded Upstream BPM in a Vertical Collimator -//---------------------- MULTIPOLE --------------------------------------------- -MCD : MULTIPOLE, Lrad := l.MCD, Kmax := Kmax_MCD, Kmin := Kmin_MCD, Calib := Kmax_MCD / Imax_MCD; ! Decapole Corrector (b5) in Arc and Triplets -MCO : MULTIPOLE, Lrad := l.MCO, Kmax := Kmax_MCO, Kmin := Kmin_MCO, Calib := Kmax_MCO / Imax_MCO; ! Octupole Corrector (b4) in MCDO, (Spool Piece Corrector) -MCOSX : MULTIPOLE, Lrad := l.MCOSX, Kmax := Kmax_MCOSX, Kmin := Kmin_MCOSX, Calib := Kmax_MCOSX / Imax_MCOSX; ! Skew Octupole Spool-Piece (a4) Associated to MQSX in MQSXA -MCOX : MULTIPOLE, Lrad := l.MCOX, Kmax := Kmax_MCOX, Kmin := Kmin_MCOX, Calib := Kmax_MCOX / Imax_MCOX; ! Octupole Spool-Piece (b4) Associated to MQSXA -MCSSX : MULTIPOLE, Lrad := l.MCSSX, Kmax := Kmax_MCSSX, Kmin := Kmin_MCSSX, Calib := Kmax_MCSSX / Imax_MCSSX; ! Skew Sextupole Spool-Piece (a3) Associated to MQSX in MQSXA -MCSX : MULTIPOLE, Lrad := l.MCSX, Kmax := Kmax_MCSX, Kmin := Kmin_MCSX, Calib := Kmax_MCSX / Imax_MCSX; ! Sextupole Spool-Piece (b3) Associated to MCBXA -MCTX : MULTIPOLE, Lrad := l.MCTX, Kmax := Kmax_MCTX, Kmin := Kmin_MCTX, Calib := Kmax_MCTX / Imax_MCTX; ! Dodecapole Spool-Piece (b6) Associated to MCBXA -//---------------------- OCTUPOLE --------------------------------------------- -MO : OCTUPOLE, L := l.MO, Kmax := Kmax_MO, Kmin := Kmin_MO, Calib := Kmax_MO / Imax_MO; ! Magnet coil for Octupole lattice corrector in arc short straight section -//---------------------- PLACEHOLDER --------------------------------------------- -ACSPH001 : PLACEHOLDER, L := l.ACSPH001; ! Superconducting Cavity Place Holder -ACSPH002 : PLACEHOLDER, L := l.ACSPH002; ! Superconducting Cavity Place Holder -BGVCA003 : PLACEHOLDER, L := l.BGVCA003; ! Beam Gas Vertex Upstream Chamber -BGVCA004 : PLACEHOLDER, L := l.BGVCA004; ! Beam Gas Vertex Detection Chamber and Window -DFBAA : PLACEHOLDER, L := l.DFBAA; ! Distribution Feed Box for Arc - IR 1/L - HCDFBAA duplication per beam for optic -DFBAB : PLACEHOLDER, L := l.DFBAB; ! Distribution Feed Box for Arc - IR 1/R - HCDFBAB duplication per beam for optic -DFBAC : PLACEHOLDER, L := l.DFBAC; ! Distribution Feed Box for Arc - IR 2/L - HCDFBAC duplication per beam for optic -DFBAD : PLACEHOLDER, L := l.DFBAD; ! Distribution Feed Box for Arc - IR 2/R - HCDFBAD duplication per beam for optic -DFBAE : PLACEHOLDER, L := l.DFBAE; ! Distribution Feed Box for Arc - IR 3/L - HCDFBAE duplication per beam for optic -DFBAF : PLACEHOLDER, L := l.DFBAF; ! Distribution Feed Box for Arc - IR 3/R - HCDFBAF duplication per beam for optic -DFBAG : PLACEHOLDER, L := l.DFBAG; ! Distribution Feed Box for Arc - IR 4/L - HCDFBAG duplication per beam for optic -DFBAH : PLACEHOLDER, L := l.DFBAH; ! Distribution Feed Box for Arc - IR 4/R - HCDFBAH duplication per beam for optic -DFBAI : PLACEHOLDER, L := l.DFBAI; ! Distribution Feed Box for Arc - IR 5/L - HCDFBAI duplication per beam for optic -DFBAJ : PLACEHOLDER, L := l.DFBAJ; ! Distribution Feed Box for Arc - IR 5/R - HCDFBAJ duplication per beam for optic -DFBAK : PLACEHOLDER, L := l.DFBAK; ! Distribution Feed Box for Arc - IR 6/L - HCDFBAK duplication per beam for optic -DFBAL : PLACEHOLDER, L := l.DFBAL; ! Distribution Feed Box for Arc - IR 6/R - HCDFBAL duplication per beam for optic -DFBAM : PLACEHOLDER, L := l.DFBAM; ! Distribution Feed Box for Arc - IR 7/L - HCDFBAM duplication per beam for optic -DFBAN : PLACEHOLDER, L := l.DFBAN; ! Distribution Feed Box for Arc - IR 7/R - HCDFBAN duplication per beam for optic -DFBAO : PLACEHOLDER, L := l.DFBAO; ! Distribution Feed Box for Arc - IR 8/L - HCDFBAO duplication per beam for optic -DFBAP : PLACEHOLDER, L := l.DFBAP; ! Distribution Feed Box for Arc - IR 8/R - HCDFBAP duplication per beam for optic -DFBXA : PLACEHOLDER, L := l.DFBXA; ! DFBX Left of IP1 -DFBXB : PLACEHOLDER, L := l.DFBXB; ! DFBX Right of IP1 -DFBXC : PLACEHOLDER, L := l.DFBXC; ! DFBX Left of IP2 -DFBXD : PLACEHOLDER, L := l.DFBXD; ! DFBX Right of IP2 -DFBXE : PLACEHOLDER, L := l.DFBXE; ! DFBX Left of IP5 -DFBXF : PLACEHOLDER, L := l.DFBXF; ! DFBX Right of IP5 -DFBXG : PLACEHOLDER, L := l.DFBXG; ! DFBX Left of IP8 -DFBXH : PLACEHOLDER, L := l.DFBXH; ! DFBX Right of IP8 -LEAL : PLACEHOLDER, L := l.LEAL; ! Connection Cryostat Type AL - HCLEAL_ duplication per beam for optic -LEAR : PLACEHOLDER, L := l.LEAR; ! Connection Cryostat Type AR - HCLEAR_ duplication per beam for optic -LEBL : PLACEHOLDER, L := l.LEBL; ! Connection Cryostat Type BL - HCLEBL_ duplication per beam for optic -LEBR : PLACEHOLDER, L := l.LEBR; ! Connection Cryostat Type BR - HCLEBR_ duplication per beam for optic -LECL : PLACEHOLDER, L := l.LECL; ! Connection Cryostat type CL - HCLECL_ duplication per beam for optic -LEDR : PLACEHOLDER, L := l.LEDR; ! Connection Cryostat Type DR - HCLEDR_ duplication per beam for optic -LEEL : PLACEHOLDER, L := l.LEEL; ! Connection Cryostat Type EL - HCLEEL_ duplication per beam for optic -LEFL : PLACEHOLDER, L := l.LEFL; ! Connection Cryostat type FL - HCLEFL_ duplication per beam for optic -LEGR : PLACEHOLDER, L := l.LEGR; ! Connection Cryostat type GR - HCLEGR_ duplication per beam for optic -LEHR : PLACEHOLDER, L := l.LEHR; ! Connection Cryostat type HR - HCLEHR_ duplication per beam for optic -LEIR : PLACEHOLDER, L := l.LEIR; ! Connection Cryostat Type IR - HCLEIR_ duplication per beam for optic -LEJL : PLACEHOLDER, L := l.LEJL; ! Connection Cryostat Type DFB in point 6 left - HCLEJL_ duplication per beam for optic -LENLA : PLACEHOLDER, L := l.LENLA; ! By pass - 11T - Beam Screen Type L - P2 Right - HCLENLA duplication per beam for optic -LENRA : PLACEHOLDER, L := l.LENRA; ! By pass - 11T - Beam Screen Type R - P2 Left - HCLENRA duplication per beam for optic -LEPLA : PLACEHOLDER, L := l.LEPLA; ! Connection Cryostat - P2 - (side LBBLA.11R2) - HCLEPLA duplication per beam for optic -LEPLB : PLACEHOLDER, L := l.LEPLB; ! Connection Cryostat - P2 - (side LQTCC.11R2) - HCLEPLB duplication per beam for optic -LEPRA : PLACEHOLDER, L := l.LEPRA; ! Connection Cryostat - P2 - (side LBARA.11L2) - HCLEPRA duplication per beam for optic -LEPRB : PLACEHOLDER, L := l.LEPRB; ! Connection Cryostat - P2 - (side LQTCG.11L2) - HCLEPRB duplication per beam for optic -MCBH_UNPLUGGED : PLACEHOLDER, L := l.MCBH_UNPLUGGED; ! Arc Orbit Corrector in MSCBA(B,C,D), Horizontal -MCBV_UNPLUGGED : PLACEHOLDER, L := l.MCBV_UNPLUGGED; ! Arc Orbit Corrector in MSCBA(B,C,D), Verticall -MCBXH_UNPLUGGED : PLACEHOLDER, Lrad := l.MCBXH_UNPLUGGED; ! Horizontal Single Aperture (70mm) Orbit Corrector in MCBXA or MCBXB -MCD_UNPLUGGED : PLACEHOLDER, Lrad := l.MCD_UNPLUGGED; ! Decapole Corrector (b5) in Arc and Triplets -MCOSX_UNPLUGGED : PLACEHOLDER, Lrad := l.MCOSX_UNPLUGGED; ! Skew Octupole Spool-Piece (a4) Associated to MQSX in MQSXA -MCOX_UNPLUGGED : PLACEHOLDER, Lrad := l.MCOX_UNPLUGGED; ! Octupole Spool-Piece (b4) Associated to MQSXA -MCO_UNPLUGGED : PLACEHOLDER, Lrad := l.MCO_UNPLUGGED; ! Octupole Corrector (b4) in MCDO, (Spool Piece Corrector) -MCSSX_UNPLUGGED : PLACEHOLDER, Lrad := l.MCSSX_UNPLUGGED; ! Skew Sextupole Spool-Piece (a3) Associated to MQSX in MQSXA -MCS_UNPLUGGED : PLACEHOLDER, L := l.MCS_UNPLUGGED; ! MBB, (Spool Piece Corrector) -MO_UNPLUGGED : PLACEHOLDER, L := l.MO_UNPLUGGED; ! Magnet coil for Octupole lattice corrector in arc short straight section -MQT_UNPLUGGED : PLACEHOLDER, L := l.MQT_UNPLUGGED; ! Magnet coil for Tuning (or short trim) quadrupole corrector in arc short straight section -MSS_UNPLUGGED : PLACEHOLDER, L := l.MSS_UNPLUGGED; ! Arc skew Sextupole Corrector Associated to MCBH in MSCBC and MSCBD -//---------------------- QUADRUPOLE --------------------------------------------- -MQ : QUADRUPOLE, L := l.MQ, Kmax := Kmax_MQ, Kmin := Kmin_MQ, Calib := Kmax_MQ / Imax_MQ; ! Magnet coil for Lattice Quadrupole in the arc -MQM : QUADRUPOLE, L := l.MQM, Kmax := Kmax_MQM, Kmin := Kmin_MQM, Calib := Kmax_MQM / Imax_MQM; ! Magnet coil for Quadrupole in the insertions (3.4 m) -MQMC : QUADRUPOLE, L := l.MQMC, Kmax := Kmax_MQMC, Kmin := Kmin_MQMC, Calib := Kmax_MQMC / Imax_MQMC; ! Magnet coil for Quadrupole in the insertions (2.4 m) -MQML : QUADRUPOLE, L := l.MQML, Kmax := Kmax_MQML, Kmin := Kmin_MQML, Calib := Kmax_MQML / Imax_MQML; ! Magnet coil for Quadrupole in the insertions (4.8 m) -MQS : QUADRUPOLE, L := l.MQS, Kmax := Kmax_MQS, Kmin := Kmin_MQS, Calib := Kmax_MQS / Imax_MQS; ! Magnet coil for Skew quadrupole lattice corrector in arc short straight section -MQSX : QUADRUPOLE, L := l.MQSX, Kmax := Kmax_MQSX, Kmin := Kmin_MQSX, Calib := Kmax_MQSX / Imax_MQSX; ! Skew Quadrupole (a2) in MQSXA -MQT : QUADRUPOLE, L := l.MQT, Kmax := Kmax_MQT, Kmin := Kmin_MQT, Calib := Kmax_MQT / Imax_MQT; ! Magnet coil for Tuning (or short trim) quadrupole corrector in arc short straight section -MQTLH : QUADRUPOLE, L := l.MQTLH, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; ! Magnet coil for Insertion Region Long Trim Quadrupole Half Shell Type -MQTLI : QUADRUPOLE, L := l.MQTLI, Kmax := Kmax_MQTLI, Kmin := Kmin_MQTLI, Calib := Kmax_MQTLI / Imax_MQTLI; ! Magnet coil for Insertion Region Long Trim Quadrupole Inertia Tube Type -MQWA : QUADRUPOLE, L := l.MQWA, Kmax := Kmax_MQWA, Kmin := Kmin_MQWA, Calib := Kmax_MQWA / Imax_MQWA; ! Magnet coil for Twin Aperture Warm Quadrupole Module in IR3 and IR7. Asymmetrical FD or DF (Virtual Warm Magnet) -MQWB : QUADRUPOLE, L := l.MQWB, Kmax := Kmax_MQWB, Kmin := Kmin_MQWB, Calib := Kmax_MQWB / Imax_MQWB; ! Magnet coil for Twin Aperture Warm Quadrupole Module in IR3 and IR7. Symmetrical FF or DD (Virtual Warm Magnet) -MQXA : QUADRUPOLE, L := l.MQXA, Kmax := Kmax_MQXA, Kmin := Kmin_MQXA, Calib := Kmax_MQXA / Imax_MQXA; ! Single Aperture Inner Triplet Quadrupole (Q1, Q3) -MQXB : QUADRUPOLE, L := l.MQXB, Kmax := Kmax_MQXB, Kmin := Kmin_MQXB, Calib := Kmax_MQXB / Imax_MQXB; ! Single Aperture Inner Triplet Quadrupole (Q2) -MQY : QUADRUPOLE, L := l.MQY, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; ! Magnet coil for Wide aperture quadrupole in the insertions, twin aperture -//---------------------- RBEND --------------------------------------------- -MBRB : RBEND, L := l.MBRB, Calib := Kmax_MBRB_4.5K / Imax_MBRB_4.5K; ! Magnet coil for Twin Aperture Separation Dipole (194 mm). D4 -MBRC : RBEND, L := l.MBRC, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; ! Magnet coil for Twin Aperture (80mm) Recombination Dipole (D2) -MBRS : RBEND, L := l.MBRS, Calib := Kmax_MBRS_4.5K / Imax_MBRS_4.5K; ! Single Aperture Separation Dipole. D3 -MBW : RBEND, L := l.MBW, Kmax := Kmax_MBW, Kmin := Kmin_MBW, Calib := Kmax_MBW / Imax_MBW; ! Magnet coil for Twin Aperture Warm Dipole Module D3 and D4 in IR3 and IR7 -MBX : RBEND, L := l.MBX, Kmax := Kmax_MBX, Kmin := Kmin_MBX, Calib := Kmax_MBX / Imax_MBX; ! Single Aperture Separation Dipole. D1 -MBXW : RBEND, L := l.MBXW, Kmax := Kmax_MBXW, Kmin := Kmin_MBXW, Calib := Kmax_MBXW / Imax_MBXW; ! Single Aperture Warm Dipole Module D1 in IR1 and IR5 -//---------------------- RFCAVITY --------------------------------------------- -ACSCA : RFCAVITY, L := l.ACSCA; ! Superconducting Bare Cavity -//---------------------- SBEND --------------------------------------------- -MB : SBEND, L := l.MB, Kmax := Kmax_MB, Kmin := Kmin_MB, Calib := Kmax_MB / Imax_MB; ! Magnet coil for Main Dipole Coldmass -//---------------------- SEXTUPOLE --------------------------------------------- -MCS : SEXTUPOLE, L := l.MCS, Kmax := Kmax_MCS, Kmin := Kmin_MCS, Calib := Kmax_MCS / Imax_MCS; ! MBB, (Spool Piece Corrector) -MS : SEXTUPOLE, L := l.MS, Kmax := Kmax_MS, Kmin := Kmin_MS, Calib := Kmax_MS / Imax_MS; ! Septa and Sextupole Magnets -MSS : SEXTUPOLE, L := l.MSS, Kmax := Kmax_MSS, Kmin := Kmin_MSS, Calib := Kmax_MSS / Imax_MSS; ! Arc skew Sextupole Corrector Associated to MCBH in MSCBC and MSCBD -//---------------------- SOLENOID --------------------------------------------- -MBAS2 : SOLENOID, L := l.MBAS2; ! Virtual "half ATLAS Solenoid" only needed for the LHC MAD sequence file generation -MBCS2 : SOLENOID, L := l.MBCS2; ! Virtual "half CMS Solenoid" only needed for the LHC MAD sequence file generation -MBLS2 : SOLENOID, L := l.MBLS2; ! Virtual "half ALICE Solenoid (old L3 Solenoid)" only needed for the LHC MAD sequence file generation -//---------------------- TKICKER --------------------------------------------- -ADTKH : TKICKER, L := l.ADTKH; ! Transverse Damper Horizontal Kicker -ADTKV : TKICKER, L := l.ADTKV; ! Transverse Damper Vertical Kicker -BQKH : TKICKER, L := l.BQKH; ! Horizontal Stripline Kicker for PLL Measurement -BQKV : TKICKER, L := l.BQKV; ! Vertical Stripline Kicker for PLL Measurement -MGMWH : TKICKER, L := l.MGMWH; ! Warm Magnet for Gas Monitoring in IR4, Horizontal -MGMWH003 : TKICKER, L := l.MGMWH003; ! Warm Magnet for Gas Monitoring inside BGI in IR4, Horizontal, Correcting dipole, type IMHH-V, from ISR -MGMWV : TKICKER, L := l.MGMWV; ! Warm Magnet for Gas Monitoring in IR4, Vertical -MGMWV003 : TKICKER, L := l.MGMWV003; ! Warm Magnet for Gas Monitoring inside BGI in IR4, Vertical, Correcting dipole, type IMHH-V, from ISR -MKD : TKICKER, L := l.MKD; ! Ejection dump kicker -MKIMA192 : TKICKER, L := l.MKIMA192; ! Injection kicker RA23 -MKIMA193 : TKICKER, L := l.MKIMA193; ! Injection kicker RA87 -MKQA : TKICKER, L := l.MKQA; ! Kicker For Q And Aperture Measurement -MSDA : TKICKER, L := l.MSDA, Kmax := Kmax_MSDA, Kmin := Kmin_MSDA, Calib := Kmax_MSDA / Imax_MSDA; ! Ejection dump septum, Module A -MSDB : TKICKER, L := l.MSDB, Kmax := Kmax_MSDB, Kmin := Kmin_MSDB, Calib := Kmax_MSDB / Imax_MSDB; ! Ejection dump septum, Module B -MSDB2 : TKICKER, L := l.MSDB2, Kmax := Kmax_MSDB2, Kmin := Kmin_MSDB2, Calib := Kmax_MSDB2 / Imax_MSDB2; ! Virtual "half Ejection dump septum, Module B" only needed for the LHC MAD sequence file generation -MSDC : TKICKER, L := l.MSDC, Kmax := Kmax_MSDC, Kmin := Kmin_MSDC, Calib := Kmax_MSDC / Imax_MSDC; ! Ejection dump septum, Module C -MSIA : TKICKER, L := l.MSIA, Kmax := Kmax_MSIA, Kmin := Kmin_MSIA, Calib := Kmax_MSIA / Imax_MSIA; ! Magnet coil for Injection septum, Module A -MSIB : TKICKER, L := l.MSIB, Kmax := Kmax_MSIB, Kmin := Kmin_MSIB, Calib := Kmax_MSIB / Imax_MSIB; ! Magnet coil for Injection septum, Module B -MU : TKICKER, L := l.MU; ! Synchrotron Radiation Undulator Magnet in IP4 -//---------------------- VCORRECTOR --------------------------------------------- -MCBCV : VCORRECTOR, L := l.MCBCV, Kmax := Kmax_MCBCV, Kmin := Kmin_MCBCV, Calib := Kmax_MCBCV / Imax_MCBCV; ! Vertical Orbit Corrector inserted in MCBCA(B,C,D) -MCBV : VCORRECTOR, L := l.MCBV, Kmax := Kmax_MCBV, Kmin := Kmin_MCBV, Calib := Kmax_MCBV / Imax_MCBV; ! Arc Orbit Corrector in MSCBA(B,C,D), Verticall -MCBWV : VCORRECTOR, L := l.MCBWV, Kmax := Kmax_MCBWV, Kmin := Kmin_MCBWV, Calib := Kmax_MCBWV / Imax_MCBWV; ! Single Aperture Warm Orbit Verticall Corrector -MCBXV : VCORRECTOR, Lrad := l.MCBXV, Kmax := Kmax_MCBXV, Kmin := Kmin_MCBXV, Calib := Kmax_MCBXV / Imax_MCBXV; ! Verticall Single Aperture (70mm) Orbit Corrector in MCBXA or MCBXB -MCBYV : VCORRECTOR, L := l.MCBYV, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; ! Orbit Corrector in MCBYA(B) -//---------------------- VKICKER --------------------------------------------- -MBAW : VKICKER, L := l.MBAW, Kmax := Kmax_MBAW, Kmin := Kmin_MBAW, Calib := Kmax_MBAW / Imax_MBAW; ! Alice Spectrometer (Muon Dipole) -MBWMD : VKICKER, L := l.MBWMD, Kmax := Kmax_MBWMD, Kmin := Kmin_MBWMD, Calib := Kmax_MBWMD / Imax_MBWMD; ! Single Aperture Warm Dipole Module Compensating Alice Spectrometer -MBXWT : VKICKER, L := l.MBXWT, Kmax := Kmax_MBXWT, Kmin := Kmin_MBXWT, Calib := Kmax_MBXWT / Imax_MBXWT; ! Single aperture warm compensator for ALICE - -/************************************************************************************/ -/* LHC SEQUENCE */ -/************************************************************************************/ - -LHCB1 : SEQUENCE, refer = centre, L = LHCLENGTH; -IP1:OMK, at= pIP1+IP1OFS.B1*DS; - MBAS2.1R1:MBAS2, at= 1.5+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 51937884, from= IP1; - TAS.1R1:TAS, at= 19.95+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 102103, from= IP1; - BPMSW.1R1.B1:BPMSW002, at= 21.564+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 6080259, assembly_id= 6080224, from= IP1; - BPMSW.1R1.B1_DOROS:BPMSW002, at= 21.564+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 10429420, assembly_id= 6080224, from= IP1; - BPMWF.A1R1.B1:BPMWF, at= 21.697+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 6080267, assembly_id= 6080224, from= IP1; - MQXA.1R1:MQXA, at= 26.15+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282126, assembly_id= 102104, from= IP1; - MCBXH.1R1:MCBXH, at= 29.842+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282213, assembly_id= 102104, from= IP1; - MCBXV.1R1:MCBXV, at= 29.842+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282212, assembly_id= 102104, from= IP1; - BPMS.2R1.B1:BPMS_003, at= 31.529+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 47564239, assembly_id= 102105, from= IP1; - MQXB.A2R1:MQXB, at= 34.8+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 241890, assembly_id= 102105, from= IP1; - MCBXH.2R1:MCBXH, at= 38.019+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249450, assembly_id= 102105, from= IP1; - MCBXV.2R1:MCBXV, at= 38.019+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249451, assembly_id= 102105, from= IP1; - MQXB.B2R1:MQXB, at= 41.3+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 241892, assembly_id= 102105, from= IP1; - TASB.3R1:TASB, at= 45.342+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 241893, assembly_id= 102106, from= IP1; - MQSX.3R1:MQSX, at= 46.608+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282127, assembly_id= 102106, from= IP1; - MQXA.3R1:MQXA, at= 50.15+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 241895, assembly_id= 102106, from= IP1; - MCBXH.3R1:MCBXH, at= 53.814+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249456, assembly_id= 102106, from= IP1; - MCBXV.3R1:MCBXV, at= 53.814+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249457, assembly_id= 102106, from= IP1; - MCSX.3R1:MCSX, at= 53.814+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249458, assembly_id= 102106, from= IP1; - MCTX.3R1:MCTX, at= 53.814+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249459, assembly_id= 102106, from= IP1; - MCOSX.3R1:MCOSX, at= 54.297+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282237, assembly_id= 102106, from= IP1; - MCOX.3R1:MCOX, at= 54.297+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282236, assembly_id= 102106, from= IP1; - MCSSX.3R1:MCSSX, at= 54.297+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282235, assembly_id= 102106, from= IP1; - DFBXB.3R1:DFBXB, at= 56.427+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 104672, from= IP1; - BPMSY.4R1.B1:BPMSY002, at= 58.2545+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 47562514, assembly_id= 104595, from= IP1; - MBXW.A4R1:MBXW, at= 61.322+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134500, from= IP1; - MBXW.B4R1:MBXW, at= 65.588+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134501, from= IP1; - MBXW.C4R1:MBXW, at= 69.854+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134502, from= IP1; - MBXW.D4R1:MBXW, at= 74.12+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134503, from= IP1; - MBXW.E4R1:MBXW, at= 78.386+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134504, from= IP1; - MBXW.F4R1:MBXW, at= 82.652+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134505, from= IP1; - X1ZDC.B4R1:X1ZDC002, at= 141.16+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 2019588, assembly_id= 102108, from= IP1; - BRAND.4R1:BRAND, at= 141.476+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 55374060, assembly_id= 102108, from= IP1; - X1ZDC.A4R1:X1ZDC001, at= 141.71+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 2019586, assembly_id= 102108, from= IP1; - TANAR.4R1:TANAR, at= 142.754+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 102108, from= IP1; - TCL.4R1.B1:TCL, at= 150.03+(0-IP1OFS.B1)*DS, mech_sep= 0.1757, slot_id= 6755437, from= IP1; - BPMWB.4R1.B1:BPMWB, at= 151.0945+(0-IP1OFS.B1)*DS, mech_sep= 0.1780, slot_id= 181634, from= IP1; - MBRC.4R1.B1:MBRC, at= 157.9+(0-IP1OFS.B1)*DS, mech_sep= 0.1880, slot_id= 52819614, assembly_id= 102110, from= IP1; - MCBYV.A4R1.B1:MCBYV, at= 164.439+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249460, assembly_id= 102111, from= IP1; - MCBYH.4R1.B1:MCBYH, at= 165.735+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249462, assembly_id= 102111, from= IP1; - MCBYV.B4R1.B1:MCBYV, at= 167.031+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249464, assembly_id= 102111, from= IP1; - MQY.4R1.B1:MQY, at= 169.553+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2302956, assembly_id= 102111, from= IP1; - BPMYA.4R1.B1:BPMYA, at= 172.227+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241908, assembly_id= 102111, from= IP1; - TCL.5R1.B1:TCL, at= 184.357+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 102112, from= IP1; - MCBCH.5R1.B1:MCBCH, at= 193.448+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249466, assembly_id= 102113, from= IP1; - MQML.5R1.B1:MQML, at= 196.49+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2302964, assembly_id= 102113, from= IP1; - BPM.5R1.B1:BPM, at= 199.635+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377901, assembly_id= 102113, from= IP1; - XRPH.A6R1.B1:XRPH, at= 205.217+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 34158027, assembly_id= 34154641, from= IP1; - XRPH.B6R1.B1:XRPH, at= 217.302+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 34158029, assembly_id= 34154642, from= IP1; - BPMSA.A6R1.B1:BPMSA, at= 217.6105+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 34154643, from= IP1; - TCL.6R1.B1:TCL, at= 219.013+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 12962634, from= IP1; - MCBCV.6R1.B1:MCBCV, at= 225.348+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249468, assembly_id= 102114, from= IP1; - MQML.6R1.B1:MQML, at= 228.39+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303152, assembly_id= 102114, from= IP1; - BPMR.6R1.B1:BPMR, at= 231.535+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377903, assembly_id= 102114, from= IP1; - XRPV.A7R1.B1:XRPV, at= 237.398+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 389137, assembly_id= 825699, from= IP1; - BPMSX.7R1.B1:BPMSX004, at= 237.7505+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 826796, from= IP1; - XRPV.B7R1.B1:XRPV, at= 245.656+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 389138, assembly_id= 825700, from= IP1; - DFBAB.7R1.B1:DFBAB, at= 257.4465+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52996563, assembly_id= 104673, from= IP1; - BPM_A.7R1.B1:BPM_A, at= 259.259+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377907, assembly_id= 102115, from= IP1; - MQM.A7R1.B1:MQM, at= 261.704+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307759, assembly_id= 102115, from= IP1; - MQM.B7R1.B1:MQM, at= 265.471+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307774, assembly_id= 102115, from= IP1; - MCBCH.7R1.B1:MCBCH, at= 267.812+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378077, assembly_id= 102115, from= IP1; -S.DS.R1.B1:OMK, at= 268.904+(0-IP1OFS.B1)*DS, slot_id= 100932, from= IP1; - MCO.8R1.B1:MCO_UNPLUGGED, at= 269.248+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249472, assembly_id= 102116, from= IP1; - MCD.8R1.B1:MCD, at= 269.2495+(0-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249473, assembly_id= 102116, from= IP1; - MB.A8R1.B1:MB, at= 276.734+(.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820278, assembly_id= 102116, from= IP1; - MCS.A8R1.B1:MCS, at= 284.158+(1-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241927, assembly_id= 102116, from= IP1; - MB.B8R1.B1:MB, at= 292.394+(1.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820302, assembly_id= 102117, from= IP1; - MCS.B8R1.B1:MCS, at= 299.818+(2-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241930, assembly_id= 102117, from= IP1; - BPM.8R1.B1:BPM, at= 300.697+(2-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377910, assembly_id= 102118, from= IP1; - MQML.8R1.B1:MQML, at= 303.842+(2-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307610, assembly_id= 102118, from= IP1; - MCBCV.8R1.B1:MCBCV, at= 306.884+(2-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378080, assembly_id= 102118, from= IP1; - MCO.9R1.B1:MCO_UNPLUGGED, at= 308.313+(2-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249478, assembly_id= 102119, from= IP1; - MCD.9R1.B1:MCD, at= 308.3145+(2-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249479, assembly_id= 102119, from= IP1; - MB.A9R1.B1:MB, at= 315.799+(2.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820326, assembly_id= 102119, from= IP1; - MCS.A9R1.B1:MCS, at= 323.223+(3-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241939, assembly_id= 102119, from= IP1; - MB.B9R1.B1:MB, at= 331.459+(3.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820350, assembly_id= 102120, from= IP1; - MCS.B9R1.B1:MCS, at= 338.883+(4-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241942, assembly_id= 102120, from= IP1; - BPM.9R1.B1:BPM, at= 339.763+(4-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377916, assembly_id= 102121, from= IP1; - MQMC.9R1.B1:MQMC, at= 341.739+(4-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307793, assembly_id= 102121, from= IP1; - MQM.9R1.B1:MQM, at= 345.005+(4-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307740, assembly_id= 102121, from= IP1; - MCBCH.9R1.B1:MCBCH, at= 347.346+(4-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378087, assembly_id= 102121, from= IP1; - MCO.10R1.B1:MCO_UNPLUGGED, at= 348.778+(4-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249484, assembly_id= 102122, from= IP1; - MCD.10R1.B1:MCD, at= 348.7795+(4-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249485, assembly_id= 102122, from= IP1; - MB.A10R1.B1:MB, at= 356.264+(4.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820374, assembly_id= 102122, from= IP1; - MCS.A10R1.B1:MCS, at= 363.688+(5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241952, assembly_id= 102122, from= IP1; - MB.B10R1.B1:MB, at= 371.924+(5.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820398, assembly_id= 102123, from= IP1; - MCS.B10R1.B1:MCS, at= 379.348+(6-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241955, assembly_id= 102123, from= IP1; - BPM.10R1.B1:BPM, at= 380.227+(6-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377919, assembly_id= 102124, from= IP1; - MQML.10R1.B1:MQML, at= 383.372+(6-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307816, assembly_id= 102124, from= IP1; - MCBCV.10R1.B1:MCBCV, at= 386.414+(6-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378090, assembly_id= 102124, from= IP1; - MCO.11R1.B1:MCO_UNPLUGGED, at= 387.843+(6-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249490, assembly_id= 102125, from= IP1; - MCD.11R1.B1:MCD, at= 387.8445+(6-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249491, assembly_id= 102125, from= IP1; - MB.A11R1.B1:MB, at= 395.329+(6.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820422, assembly_id= 102125, from= IP1; - MCS.A11R1.B1:MCS, at= 402.753+(7-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241964, assembly_id= 102125, from= IP1; - MB.B11R1.B1:MB, at= 410.989+(7.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849390, assembly_id= 102126, from= IP1; - MCS.B11R1.B1:MCS, at= 418.413+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 357281, assembly_id= 102126, from= IP1; - LEHR.11R1.B1:LEHR, at= 425.67735+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52997922, assembly_id= 102127, from= IP1; - BPM.11R1.B1:BPM, at= 433.0087+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241969, assembly_id= 102128, from= IP1; -MQ.11R1.B1:MQ, at= 435.5557+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308664, assembly_id= 102128, from= IP1; - MQTLI.11R1.B1:MQTLI, at= 437.9247+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307353, assembly_id= 102128, from= IP1; - MS.11R1.B1:MS, at= 438.9367+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249494, assembly_id= 102128, from= IP1; - MCBH.11R1.B1:MCBH_UNPLUGGED, at= 439.5297+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249496, assembly_id= 102128, from= IP1; -S.ARC.12.B1:OMK, at= 440.2807+(8-IP1OFS.B1)*DS, slot_id= 100932, from= IP1; - MCO.A12R1.B1:MCO_UNPLUGGED, at= 440.6247+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249498, assembly_id= 102129, from= IP1; - MCD.A12R1.B1:MCD, at= 440.6262+(8-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249499, assembly_id= 102129, from= IP1; - MB.A12R1.B1:MB, at= 448.1107+(8.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820446, assembly_id= 102129, from= IP1; - MCS.A12R1.B1:MCS, at= 455.5347+(9-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241977, assembly_id= 102129, from= IP1; - MB.B12R1.B1:MB, at= 463.7707+(9.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820470, assembly_id= 102130, from= IP1; - MCS.B12R1.B1:MCS, at= 471.1947+(10-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241980, assembly_id= 102130, from= IP1; - MCO.B12R1.B1:MCO_UNPLUGGED, at= 471.9447+(10-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249502, assembly_id= 102131, from= IP1; - MCD.B12R1.B1:MCD, at= 471.9462+(10-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249503, assembly_id= 102131, from= IP1; - MB.C12R1.B1:MB, at= 479.4307+(10.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820494, assembly_id= 102131, from= IP1; - MCS.C12R1.B1:MCS, at= 486.8547+(11-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241985, assembly_id= 102131, from= IP1; - BPM.12R1.B1:BPM, at= 487.7337+(11-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241987, assembly_id= 102132, from= IP1; - MQT.12R1.B1:MQT, at= 488.4877+(11-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307699, assembly_id= 102132, from= IP1; -MQ.12R1.B1:MQ, at= 490.4957+(11-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308458, assembly_id= 102132, from= IP1; - MS.12R1.B1:MS, at= 492.3907+(11-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249506, assembly_id= 102132, from= IP1; - MCBV.12R1.B1:MCBV, at= 492.9837+(11-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249508, assembly_id= 102132, from= IP1; - MB.A13R1.B1:MB, at= 501.5607+(11.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820518, assembly_id= 102133, from= IP1; - MCS.A13R1.B1:MCS, at= 508.9847+(12-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241993, assembly_id= 102133, from= IP1; - MCO.13R1.B1:MCO_UNPLUGGED, at= 509.7347+(12-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249510, assembly_id= 102134, from= IP1; - MCD.13R1.B1:MCD, at= 509.7362+(12-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249511, assembly_id= 102134, from= IP1; - MB.B13R1.B1:MB, at= 517.2207+(12.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820542, assembly_id= 102134, from= IP1; - MCS.B13R1.B1:MCS, at= 524.6447+(13-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241998, assembly_id= 102134, from= IP1; - MB.C13R1.B1:MB, at= 532.8807+(13.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820566, assembly_id= 102135, from= IP1; - MCS.C13R1.B1:MCS, at= 540.3047+(14-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242001, assembly_id= 102135, from= IP1; - BPM.13R1.B1:BPM, at= 541.1837+(14-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242003, assembly_id= 102136, from= IP1; - MQT.13R1.B1:MQT, at= 541.9377+(14-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307492, assembly_id= 102136, from= IP1; -MQ.13R1.B1:MQ, at= 543.9457+(14-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308487, assembly_id= 102136, from= IP1; - MS.13R1.B1:MS, at= 545.8407+(14-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249514, assembly_id= 102136, from= IP1; - MCBH.13R1.B1:MCBH, at= 546.4337+(14-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249516, assembly_id= 102136, from= IP1; -E.DS.R1.B1:OMK, at= 547.1807+(14-IP1OFS.B1)*DS, slot_id= 100932, from= IP1; - MCO.A14R1.B1:MCO_UNPLUGGED, at= 547.5247+(14-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249518, assembly_id= 102137, from= IP1; - MCD.A14R1.B1:MCD, at= 547.5262+(14-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249519, assembly_id= 102137, from= IP1; - MB.A14R1.B1:MB, at= 555.0107+(14.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820590, assembly_id= 102137, from= IP1; - MCS.A14R1.B1:MCS, at= 562.4347+(15-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242011, assembly_id= 102137, from= IP1; - MB.B14R1.B1:MB, at= 570.6707+(15.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820614, assembly_id= 102138, from= IP1; - MCS.B14R1.B1:MCS, at= 578.0947+(16-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242014, assembly_id= 102138, from= IP1; - MCO.B14R1.B1:MCO_UNPLUGGED, at= 578.8447+(16-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249522, assembly_id= 102139, from= IP1; - MCD.B14R1.B1:MCD, at= 578.8462+(16-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249523, assembly_id= 102139, from= IP1; - MB.C14R1.B1:MB, at= 586.3307+(16.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820638, assembly_id= 102139, from= IP1; - MCS.C14R1.B1:MCS, at= 593.7547+(17-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242019, assembly_id= 102139, from= IP1; - BPM.14R1.B1:BPM, at= 594.6337+(17-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242021, assembly_id= 102140, from= IP1; - MQT.14R1.B1:MQT, at= 595.3877+(17-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307523, assembly_id= 102140, from= IP1; -MQ.14R1.B1:MQ, at= 597.3957+(17-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308517, assembly_id= 102140, from= IP1; - MS.14R1.B1:MS, at= 599.2907+(17-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249526, assembly_id= 102140, from= IP1; - MCBV.14R1.B1:MCBV, at= 599.8837+(17-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249528, assembly_id= 102140, from= IP1; - MB.A15R1.B1:MB, at= 608.4607+(17.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820662, assembly_id= 102141, from= IP1; - MCS.A15R1.B1:MCS, at= 615.8847+(18-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242027, assembly_id= 102141, from= IP1; - MCO.15R1.B1:MCO_UNPLUGGED, at= 616.6347+(18-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249530, assembly_id= 102142, from= IP1; - MCD.15R1.B1:MCD, at= 616.6362+(18-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249531, assembly_id= 102142, from= IP1; - MB.B15R1.B1:MB, at= 624.1207+(18.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820686, assembly_id= 102142, from= IP1; - MCS.B15R1.B1:MCS, at= 631.5447+(19-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242032, assembly_id= 102142, from= IP1; - MB.C15R1.B1:MB, at= 639.7807+(19.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820710, assembly_id= 102143, from= IP1; - MCS.C15R1.B1:MCS, at= 647.2047+(20-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242035, assembly_id= 102143, from= IP1; - BPM.15R1.B1:BPM, at= 648.0837+(20-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242037, assembly_id= 102144, from= IP1; - MQT.15R1.B1:MQT, at= 648.8377+(20-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307555, assembly_id= 102144, from= IP1; -MQ.15R1.B1:MQ, at= 650.8457+(20-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308547, assembly_id= 102144, from= IP1; - MS.15R1.B1:MS, at= 652.7407+(20-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249534, assembly_id= 102144, from= IP1; - MCBH.15R1.B1:MCBH, at= 653.3337+(20-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249536, assembly_id= 102144, from= IP1; - MCO.A16R1.B1:MCO_UNPLUGGED, at= 654.4247+(20-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249538, assembly_id= 102145, from= IP1; - MCD.A16R1.B1:MCD, at= 654.4262+(20-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249539, assembly_id= 102145, from= IP1; - MB.A16R1.B1:MB, at= 661.9107+(20.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820734, assembly_id= 102145, from= IP1; - MCS.A16R1.B1:MCS, at= 669.3347+(21-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242045, assembly_id= 102145, from= IP1; - MB.B16R1.B1:MB, at= 677.5707+(21.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820758, assembly_id= 102146, from= IP1; - MCS.B16R1.B1:MCS, at= 684.9947+(22-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242048, assembly_id= 102146, from= IP1; - MCO.B16R1.B1:MCO_UNPLUGGED, at= 685.7447+(22-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249542, assembly_id= 102147, from= IP1; - MCD.B16R1.B1:MCD, at= 685.7462+(22-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249543, assembly_id= 102147, from= IP1; - MB.C16R1.B1:MB, at= 693.2307+(22.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820782, assembly_id= 102147, from= IP1; - MCS.C16R1.B1:MCS, at= 700.6547+(23-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242053, assembly_id= 102147, from= IP1; - BPM.16R1.B1:BPM, at= 701.5337+(23-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242055, assembly_id= 102148, from= IP1; - MQT.16R1.B1:MQT, at= 702.2877+(23-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307585, assembly_id= 102148, from= IP1; -MQ.16R1.B1:MQ, at= 704.2957+(23-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308340, assembly_id= 102148, from= IP1; - MS.16R1.B1:MS, at= 706.1907+(23-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249546, assembly_id= 102148, from= IP1; - MCBV.16R1.B1:MCBV, at= 706.7837+(23-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249548, assembly_id= 102148, from= IP1; - MB.A17R1.B1:MB, at= 715.3607+(23.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820806, assembly_id= 102149, from= IP1; - MCS.A17R1.B1:MCS, at= 722.7847+(24-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242061, assembly_id= 102149, from= IP1; - MCO.17R1.B1:MCO_UNPLUGGED, at= 723.5347+(24-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249550, assembly_id= 102150, from= IP1; - MCD.17R1.B1:MCD, at= 723.5362+(24-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249551, assembly_id= 102150, from= IP1; - MB.B17R1.B1:MB, at= 731.0207+(24.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820830, assembly_id= 102150, from= IP1; - MCS.B17R1.B1:MCS, at= 738.4447+(25-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242066, assembly_id= 102150, from= IP1; - MB.C17R1.B1:MB, at= 746.6807+(25.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820854, assembly_id= 102151, from= IP1; - MCS.C17R1.B1:MCS, at= 754.1047+(26-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242069, assembly_id= 102151, from= IP1; - BPM.17R1.B1:BPM, at= 754.9837+(26-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242071, assembly_id= 102152, from= IP1; - MQT.17R1.B1:MQT, at= 755.7377+(26-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307379, assembly_id= 102152, from= IP1; -MQ.17R1.B1:MQ, at= 757.7457+(26-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308370, assembly_id= 102152, from= IP1; - MS.17R1.B1:MS, at= 759.6407+(26-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249554, assembly_id= 102152, from= IP1; - MCBH.17R1.B1:MCBH, at= 760.2337+(26-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249556, assembly_id= 102152, from= IP1; - MCO.A18R1.B1:MCO_UNPLUGGED, at= 761.3247+(26-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249558, assembly_id= 102153, from= IP1; - MCD.A18R1.B1:MCD, at= 761.3262+(26-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249559, assembly_id= 102153, from= IP1; - MB.A18R1.B1:MB, at= 768.8107+(26.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820878, assembly_id= 102153, from= IP1; - MCS.A18R1.B1:MCS, at= 776.2347+(27-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242079, assembly_id= 102153, from= IP1; - MB.B18R1.B1:MB, at= 784.4707+(27.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820902, assembly_id= 102154, from= IP1; - MCS.B18R1.B1:MCS, at= 791.8947+(28-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242082, assembly_id= 102154, from= IP1; - MCO.B18R1.B1:MCO_UNPLUGGED, at= 792.6447+(28-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249562, assembly_id= 102155, from= IP1; - MCD.B18R1.B1:MCD, at= 792.6462+(28-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249563, assembly_id= 102155, from= IP1; - MB.C18R1.B1:MB, at= 800.1307+(28.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820926, assembly_id= 102155, from= IP1; - MCS.C18R1.B1:MCS, at= 807.5547+(29-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242087, assembly_id= 102155, from= IP1; - BPM.18R1.B1:BPM, at= 808.4337+(29-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242089, assembly_id= 102156, from= IP1; - MQT.18R1.B1:MQT, at= 809.1877+(29-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307411, assembly_id= 102156, from= IP1; -MQ.18R1.B1:MQ, at= 811.1957+(29-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308400, assembly_id= 102156, from= IP1; - MS.18R1.B1:MS, at= 813.0907+(29-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249566, assembly_id= 102156, from= IP1; - MCBV.18R1.B1:MCBV, at= 813.6837+(29-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249568, assembly_id= 102156, from= IP1; - MB.A19R1.B1:MB, at= 822.2607+(29.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820950, assembly_id= 102157, from= IP1; - MCS.A19R1.B1:MCS, at= 829.6847+(30-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242095, assembly_id= 102157, from= IP1; - MCO.19R1.B1:MCO_UNPLUGGED, at= 830.4347+(30-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249570, assembly_id= 102158, from= IP1; - MCD.19R1.B1:MCD, at= 830.4362+(30-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249571, assembly_id= 102158, from= IP1; - MB.B19R1.B1:MB, at= 837.9207+(30.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820974, assembly_id= 102158, from= IP1; - MCS.B19R1.B1:MCS, at= 845.3447+(31-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242100, assembly_id= 102158, from= IP1; - MB.C19R1.B1:MB, at= 853.5807+(31.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820998, assembly_id= 102159, from= IP1; - MCS.C19R1.B1:MCS, at= 861.0047+(32-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242103, assembly_id= 102159, from= IP1; - BPM.19R1.B1:BPM, at= 861.8837+(32-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242105, assembly_id= 102160, from= IP1; - MQT.19R1.B1:MQT, at= 862.6377+(32-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307442, assembly_id= 102160, from= IP1; -MQ.19R1.B1:MQ, at= 864.6457+(32-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308432, assembly_id= 102160, from= IP1; - MS.19R1.B1:MS, at= 866.5407+(32-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249574, assembly_id= 102160, from= IP1; - MCBH.19R1.B1:MCBH, at= 867.1337+(32-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249576, assembly_id= 102160, from= IP1; - MCO.A20R1.B1:MCO_UNPLUGGED, at= 868.2247+(32-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249578, assembly_id= 102161, from= IP1; - MCD.A20R1.B1:MCD, at= 868.2262+(32-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249579, assembly_id= 102161, from= IP1; - MB.A20R1.B1:MB, at= 875.7107+(32.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821022, assembly_id= 102161, from= IP1; - MCS.A20R1.B1:MCS, at= 883.1347+(33-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242113, assembly_id= 102161, from= IP1; - MB.B20R1.B1:MB, at= 891.3707+(33.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821046, assembly_id= 102162, from= IP1; - MCS.B20R1.B1:MCS, at= 898.7947+(34-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242116, assembly_id= 102162, from= IP1; - MCO.B20R1.B1:MCO_UNPLUGGED, at= 899.5447+(34-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249582, assembly_id= 102163, from= IP1; - MCD.B20R1.B1:MCD, at= 899.5462+(34-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249583, assembly_id= 102163, from= IP1; - MB.C20R1.B1:MB, at= 907.0307+(34.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821070, assembly_id= 102163, from= IP1; - MCS.C20R1.B1:MCS, at= 914.4547+(35-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242121, assembly_id= 102163, from= IP1; - BPM.20R1.B1:BPM, at= 915.3337+(35-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242123, assembly_id= 102164, from= IP1; - MQT.20R1.B1:MQT, at= 916.0877+(35-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307472, assembly_id= 102164, from= IP1; -MQ.20R1.B1:MQ, at= 918.0957+(35-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308223, assembly_id= 102164, from= IP1; - MS.20R1.B1:MS, at= 919.9907+(35-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249586, assembly_id= 102164, from= IP1; - MCBV.20R1.B1:MCBV, at= 920.5837+(35-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249588, assembly_id= 102164, from= IP1; - MB.A21R1.B1:MB, at= 929.1607+(35.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821094, assembly_id= 102165, from= IP1; - MCS.A21R1.B1:MCS, at= 936.5847+(36-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242129, assembly_id= 102165, from= IP1; - MCO.21R1.B1:MCO_UNPLUGGED, at= 937.3347+(36-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249590, assembly_id= 102166, from= IP1; - MCD.21R1.B1:MCD, at= 937.3362+(36-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249591, assembly_id= 102166, from= IP1; - MB.B21R1.B1:MB, at= 944.8207+(36.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821118, assembly_id= 102166, from= IP1; - MCS.B21R1.B1:MCS, at= 952.2447+(37-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242134, assembly_id= 102166, from= IP1; - MB.C21R1.B1:MB, at= 960.4807+(37.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821142, assembly_id= 102167, from= IP1; - MCS.C21R1.B1:MCS, at= 967.9047+(38-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242137, assembly_id= 102167, from= IP1; - BPM.21R1.B1:BPM, at= 968.7837+(38-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242139, assembly_id= 102168, from= IP1; - MQT.21R1.B1:MQT, at= 969.5377+(38-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307269, assembly_id= 102168, from= IP1; -MQ.21R1.B1:MQ, at= 971.5457+(38-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308253, assembly_id= 102168, from= IP1; - MS.21R1.B1:MS, at= 973.4407+(38-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249594, assembly_id= 102168, from= IP1; - MCBH.21R1.B1:MCBH, at= 974.0337+(38-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249596, assembly_id= 102168, from= IP1; - MCO.A22R1.B1:MCO_UNPLUGGED, at= 975.1247+(38-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249598, assembly_id= 102169, from= IP1; - MCD.A22R1.B1:MCD, at= 975.1262+(38-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249599, assembly_id= 102169, from= IP1; - MB.A22R1.B1:MB, at= 982.6107+(38.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821166, assembly_id= 102169, from= IP1; - MCS.A22R1.B1:MCS, at= 990.0347+(39-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242147, assembly_id= 102169, from= IP1; - MB.B22R1.B1:MB, at= 998.2707+(39.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821190, assembly_id= 102170, from= IP1; - MCS.B22R1.B1:MCS, at= 1005.6947+(40-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242150, assembly_id= 102170, from= IP1; - MCO.B22R1.B1:MCO_UNPLUGGED, at= 1006.4447+(40-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249602, assembly_id= 102171, from= IP1; - MCD.B22R1.B1:MCD, at= 1006.4462+(40-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249603, assembly_id= 102171, from= IP1; - MB.C22R1.B1:MB, at= 1013.9307+(40.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821214, assembly_id= 102171, from= IP1; - MCS.C22R1.B1:MCS, at= 1021.3547+(41-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242155, assembly_id= 102171, from= IP1; - BPM.22R1.B1:BPM, at= 1022.2337+(41-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242157, assembly_id= 102172, from= IP1; - MO.22R1.B1:MO, at= 1022.9847+(41-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308813, assembly_id= 102172, from= IP1; -MQ.22R1.B1:MQ, at= 1024.9957+(41-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308285, assembly_id= 102172, from= IP1; - MS.22R1.B1:MS, at= 1026.8907+(41-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249606, assembly_id= 102172, from= IP1; - MCBV.22R1.B1:MCBV, at= 1027.4837+(41-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249608, assembly_id= 102172, from= IP1; - MB.A23R1.B1:MB, at= 1036.0607+(41.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821238, assembly_id= 102173, from= IP1; - MCS.A23R1.B1:MCS, at= 1043.4847+(42-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242163, assembly_id= 102173, from= IP1; - MCO.23R1.B1:MCO_UNPLUGGED, at= 1044.2347+(42-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249610, assembly_id= 102174, from= IP1; - MCD.23R1.B1:MCD, at= 1044.2362+(42-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249611, assembly_id= 102174, from= IP1; - MB.B23R1.B1:MB, at= 1051.7207+(42.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821262, assembly_id= 102174, from= IP1; - MCS.B23R1.B1:MCS, at= 1059.1447+(43-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242168, assembly_id= 102174, from= IP1; - MB.C23R1.B1:MB, at= 1067.3807+(43.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821286, assembly_id= 102175, from= IP1; - MCS.C23R1.B1:MCS, at= 1074.8047+(44-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242171, assembly_id= 102175, from= IP1; - BPM.23R1.B1:BPM, at= 1075.6837+(44-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242173, assembly_id= 102176, from= IP1; - MQS.23R1.B1:MQS, at= 1076.4377+(44-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307636, assembly_id= 102176, from= IP1; -MQ.23R1.B1:MQ, at= 1078.4457+(44-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308316, assembly_id= 102176, from= IP1; - MS.23R1.B1:MS, at= 1080.3407+(44-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249614, assembly_id= 102176, from= IP1; - MCBH.23R1.B1:MCBH, at= 1080.9337+(44-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249616, assembly_id= 102176, from= IP1; - MCO.A24R1.B1:MCO_UNPLUGGED, at= 1082.0247+(44-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249618, assembly_id= 102177, from= IP1; - MCD.A24R1.B1:MCD, at= 1082.0262+(44-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249619, assembly_id= 102177, from= IP1; - MB.A24R1.B1:MB, at= 1089.5107+(44.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821310, assembly_id= 102177, from= IP1; - MCS.A24R1.B1:MCS, at= 1096.9347+(45-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242181, assembly_id= 102177, from= IP1; - MB.B24R1.B1:MB, at= 1105.1707+(45.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821334, assembly_id= 102178, from= IP1; - MCS.B24R1.B1:MCS, at= 1112.5947+(46-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242184, assembly_id= 102178, from= IP1; - MCO.B24R1.B1:MCO_UNPLUGGED, at= 1113.3447+(46-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249622, assembly_id= 102179, from= IP1; - MCD.B24R1.B1:MCD, at= 1113.3462+(46-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249623, assembly_id= 102179, from= IP1; - MB.C24R1.B1:MB, at= 1120.8307+(46.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821358, assembly_id= 102179, from= IP1; - MCS.C24R1.B1:MCS, at= 1128.2547+(47-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242189, assembly_id= 102179, from= IP1; - BPM.24R1.B1:BPM, at= 1129.1337+(47-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242191, assembly_id= 102180, from= IP1; - MO.24R1.B1:MO, at= 1129.8847+(47-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308843, assembly_id= 102180, from= IP1; -MQ.24R1.B1:MQ, at= 1131.8957+(47-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308106, assembly_id= 102180, from= IP1; - MS.24R1.B1:MS, at= 1133.7907+(47-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249626, assembly_id= 102180, from= IP1; - MCBV.24R1.B1:MCBV, at= 1134.3837+(47-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249628, assembly_id= 102180, from= IP1; - MB.A25R1.B1:MB, at= 1142.9607+(47.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821382, assembly_id= 102181, from= IP1; - MCS.A25R1.B1:MCS, at= 1150.3847+(48-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242197, assembly_id= 102181, from= IP1; - MCO.25R1.B1:MCO_UNPLUGGED, at= 1151.1347+(48-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249630, assembly_id= 102182, from= IP1; - MCD.25R1.B1:MCD, at= 1151.1362+(48-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249631, assembly_id= 102182, from= IP1; - MB.B25R1.B1:MB, at= 1158.6207+(48.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821406, assembly_id= 102182, from= IP1; - MCS.B25R1.B1:MCS, at= 1166.0447+(49-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242202, assembly_id= 102182, from= IP1; - MB.C25R1.B1:MB, at= 1174.2807+(49.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821430, assembly_id= 102183, from= IP1; - MCS.C25R1.B1:MCS, at= 1181.7047+(50-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242205, assembly_id= 102183, from= IP1; - BPM.25R1.B1:BPM, at= 1182.5837+(50-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242207, assembly_id= 102184, from= IP1; - MO.25R1.B1:MO, at= 1183.3347+(50-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308875, assembly_id= 102184, from= IP1; -MQ.25R1.B1:MQ, at= 1185.3457+(50-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308138, assembly_id= 102184, from= IP1; - MS.25R1.B1:MS, at= 1187.2407+(50-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249634, assembly_id= 102184, from= IP1; - MCBH.25R1.B1:MCBH, at= 1187.8337+(50-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249636, assembly_id= 102184, from= IP1; - MCO.A26R1.B1:MCO_UNPLUGGED, at= 1188.9247+(50-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249638, assembly_id= 102185, from= IP1; - MCD.A26R1.B1:MCD, at= 1188.9262+(50-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249639, assembly_id= 102185, from= IP1; - MB.A26R1.B1:MB, at= 1196.4107+(50.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821454, assembly_id= 102185, from= IP1; - MCS.A26R1.B1:MCS, at= 1203.8347+(51-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242215, assembly_id= 102185, from= IP1; - MB.B26R1.B1:MB, at= 1212.0707+(51.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821478, assembly_id= 102186, from= IP1; - MCS.B26R1.B1:MCS, at= 1219.4947+(52-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242218, assembly_id= 102186, from= IP1; - MCO.B26R1.B1:MCO_UNPLUGGED, at= 1220.2447+(52-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249642, assembly_id= 102187, from= IP1; - MCD.B26R1.B1:MCD, at= 1220.2462+(52-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249643, assembly_id= 102187, from= IP1; - MB.C26R1.B1:MB, at= 1227.7307+(52.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821502, assembly_id= 102187, from= IP1; - MCS.C26R1.B1:MCS, at= 1235.1547+(53-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242223, assembly_id= 102187, from= IP1; - BPM.26R1.B1:BPM, at= 1236.0337+(53-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242225, assembly_id= 102188, from= IP1; - MO.26R1.B1:MO, at= 1236.7847+(53-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308907, assembly_id= 102188, from= IP1; -MQ.26R1.B1:MQ, at= 1238.7957+(53-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308169, assembly_id= 102188, from= IP1; - MS.26R1.B1:MS, at= 1240.6907+(53-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249646, assembly_id= 102188, from= IP1; - MCBV.26R1.B1:MCBV, at= 1241.2837+(53-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249648, assembly_id= 102188, from= IP1; - MB.A27R1.B1:MB, at= 1249.8607+(53.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821526, assembly_id= 102189, from= IP1; - MCS.A27R1.B1:MCS, at= 1257.2847+(54-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242231, assembly_id= 102189, from= IP1; - MCO.27R1.B1:MCO_UNPLUGGED, at= 1258.0347+(54-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249650, assembly_id= 102190, from= IP1; - MCD.27R1.B1:MCD, at= 1258.0362+(54-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249651, assembly_id= 102190, from= IP1; - MB.B27R1.B1:MB, at= 1265.5207+(54.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821550, assembly_id= 102190, from= IP1; - MCS.B27R1.B1:MCS, at= 1272.9447+(55-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242236, assembly_id= 102190, from= IP1; - MB.C27R1.B1:MB, at= 1281.1807+(55.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821574, assembly_id= 102191, from= IP1; - MCS.C27R1.B1:MCS, at= 1288.6047+(56-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242239, assembly_id= 102191, from= IP1; - BPM.27R1.B1:BPM, at= 1289.4837+(56-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242241, assembly_id= 102192, from= IP1; - MQS.27R1.B1:MQS, at= 1290.2377+(56-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307667, assembly_id= 102192, from= IP1; -MQ.27R1.B1:MQ, at= 1292.2457+(56-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308199, assembly_id= 102192, from= IP1; - MS.27R1.B1:MS, at= 1294.1407+(56-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249654, assembly_id= 102192, from= IP1; - MCBH.27R1.B1:MCBH, at= 1294.7337+(56-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249656, assembly_id= 102192, from= IP1; - MCO.A28R1.B1:MCO_UNPLUGGED, at= 1295.8247+(56-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249658, assembly_id= 102193, from= IP1; - MCD.A28R1.B1:MCD, at= 1295.8262+(56-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249659, assembly_id= 102193, from= IP1; - MB.A28R1.B1:MB, at= 1303.3107+(56.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821598, assembly_id= 102193, from= IP1; - MCS.A28R1.B1:MCS, at= 1310.7347+(57-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242249, assembly_id= 102193, from= IP1; - MB.B28R1.B1:MB, at= 1318.9707+(57.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821622, assembly_id= 102194, from= IP1; - MCS.B28R1.B1:MCS, at= 1326.3947+(58-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242252, assembly_id= 102194, from= IP1; - MCO.B28R1.B1:MCO_UNPLUGGED, at= 1327.1447+(58-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249662, assembly_id= 102195, from= IP1; - MCD.B28R1.B1:MCD, at= 1327.1462+(58-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249663, assembly_id= 102195, from= IP1; - MB.C28R1.B1:MB, at= 1334.6307+(58.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821646, assembly_id= 102195, from= IP1; - MCS.C28R1.B1:MCS, at= 1342.0547+(59-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242257, assembly_id= 102195, from= IP1; - BPM.28R1.B1:BPM, at= 1342.9337+(59-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242259, assembly_id= 102196, from= IP1; - MO.28R1.B1:MO, at= 1343.6847+(59-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308696, assembly_id= 102196, from= IP1; -MQ.28R1.B1:MQ, at= 1345.6957+(59-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307990, assembly_id= 102196, from= IP1; - MS.28R1.B1:MS, at= 1347.5907+(59-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249666, assembly_id= 102196, from= IP1; - MCBV.28R1.B1:MCBV, at= 1348.1837+(59-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249668, assembly_id= 102196, from= IP1; - MB.A29R1.B1:MB, at= 1356.7607+(59.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821670, assembly_id= 102197, from= IP1; - MCS.A29R1.B1:MCS, at= 1364.1847+(60-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242265, assembly_id= 102197, from= IP1; - MCO.29R1.B1:MCO_UNPLUGGED, at= 1364.9347+(60-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249670, assembly_id= 102198, from= IP1; - MCD.29R1.B1:MCD, at= 1364.9362+(60-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249671, assembly_id= 102198, from= IP1; - MB.B29R1.B1:MB, at= 1372.4207+(60.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821694, assembly_id= 102198, from= IP1; - MCS.B29R1.B1:MCS, at= 1379.8447+(61-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242270, assembly_id= 102198, from= IP1; - MB.C29R1.B1:MB, at= 1388.0807+(61.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821718, assembly_id= 102199, from= IP1; - MCS.C29R1.B1:MCS, at= 1395.5047+(62-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242273, assembly_id= 102199, from= IP1; - BPM.29R1.B1:BPM, at= 1396.3837+(62-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242275, assembly_id= 102200, from= IP1; - MO.29R1.B1:MO, at= 1397.1347+(62-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308728, assembly_id= 102200, from= IP1; -MQ.29R1.B1:MQ, at= 1399.1457+(62-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308021, assembly_id= 102200, from= IP1; - MSS.29R1.B1:MSS, at= 1401.0407+(62-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249674, assembly_id= 102200, from= IP1; - MCBH.29R1.B1:MCBH, at= 1401.6337+(62-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249676, assembly_id= 102200, from= IP1; - MCO.A30R1.B1:MCO_UNPLUGGED, at= 1402.7247+(62-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249678, assembly_id= 102201, from= IP1; - MCD.A30R1.B1:MCD, at= 1402.7262+(62-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249679, assembly_id= 102201, from= IP1; - MB.A30R1.B1:MB, at= 1410.2107+(62.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821742, assembly_id= 102201, from= IP1; - MCS.A30R1.B1:MCS, at= 1417.6347+(63-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242283, assembly_id= 102201, from= IP1; - MB.B30R1.B1:MB, at= 1425.8707+(63.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821766, assembly_id= 102202, from= IP1; - MCS.B30R1.B1:MCS, at= 1433.2947+(64-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242286, assembly_id= 102202, from= IP1; - MCO.B30R1.B1:MCO_UNPLUGGED, at= 1434.0447+(64-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249682, assembly_id= 102203, from= IP1; - MCD.B30R1.B1:MCD, at= 1434.0462+(64-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249683, assembly_id= 102203, from= IP1; - MB.C30R1.B1:MB, at= 1441.5307+(64.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821790, assembly_id= 102203, from= IP1; - MCS.C30R1.B1:MCS, at= 1448.9547+(65-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242291, assembly_id= 102203, from= IP1; - BPM.30R1.B1:BPM, at= 1449.8337+(65-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242293, assembly_id= 102204, from= IP1; - MO.30R1.B1:MO, at= 1450.5847+(65-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308759, assembly_id= 102204, from= IP1; -MQ.30R1.B1:MQ, at= 1452.5957+(65-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308051, assembly_id= 102204, from= IP1; - MS.30R1.B1:MS, at= 1454.4907+(65-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249686, assembly_id= 102204, from= IP1; - MCBV.30R1.B1:MCBV, at= 1455.0837+(65-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249688, assembly_id= 102204, from= IP1; - MB.A31R1.B1:MB, at= 1463.6607+(65.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821814, assembly_id= 102205, from= IP1; - MCS.A31R1.B1:MCS, at= 1471.0847+(66-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242299, assembly_id= 102205, from= IP1; - MCO.31R1.B1:MCO_UNPLUGGED, at= 1471.8347+(66-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249690, assembly_id= 102206, from= IP1; - MCD.31R1.B1:MCD, at= 1471.8362+(66-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249691, assembly_id= 102206, from= IP1; - MB.B31R1.B1:MB, at= 1479.3207+(66.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821838, assembly_id= 102206, from= IP1; - MCS.B31R1.B1:MCS, at= 1486.7447+(67-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242304, assembly_id= 102206, from= IP1; - MB.C31R1.B1:MB, at= 1494.9807+(67.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821862, assembly_id= 102207, from= IP1; - MCS.C31R1.B1:MCS, at= 1502.4047+(68-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242307, assembly_id= 102207, from= IP1; - BPM.31R1.B1:BPM, at= 1503.2837+(68-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242309, assembly_id= 102208, from= IP1; - MO.31R1.B1:MO, at= 1504.0347+(68-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308789, assembly_id= 102208, from= IP1; -MQ.31R1.B1:MQ, at= 1506.0457+(68-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308081, assembly_id= 102208, from= IP1; - MS.31R1.B1:MS, at= 1507.9407+(68-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249694, assembly_id= 102208, from= IP1; - MCBH.31R1.B1:MCBH, at= 1508.5337+(68-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249696, assembly_id= 102208, from= IP1; -S.CELL.12.B1:OMK, at= 1509.2807+(68-IP1OFS.B1)*DS, slot_id= 100932, from= IP1; - MCO.A32R1.B1:MCO_UNPLUGGED, at= 1509.6247+(68-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249698, assembly_id= 102209, from= IP1; - MCD.A32R1.B1:MCD, at= 1509.6262+(68-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249699, assembly_id= 102209, from= IP1; - MB.A32R1.B1:MB, at= 1517.1107+(68.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821886, assembly_id= 102209, from= IP1; - MCS.A32R1.B1:MCS, at= 1524.5347+(69-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242317, assembly_id= 102209, from= IP1; - MB.B32R1.B1:MB, at= 1532.7707+(69.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821910, assembly_id= 102210, from= IP1; - MCS.B32R1.B1:MCS, at= 1540.1947+(70-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242320, assembly_id= 102210, from= IP1; - MCO.B32R1.B1:MCO_UNPLUGGED, at= 1540.9447+(70-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249702, assembly_id= 102211, from= IP1; - MCD.B32R1.B1:MCD, at= 1540.9462+(70-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249703, assembly_id= 102211, from= IP1; - MB.C32R1.B1:MB, at= 1548.4307+(70.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821934, assembly_id= 102211, from= IP1; - MCS.C32R1.B1:MCS, at= 1555.8547+(71-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242325, assembly_id= 102211, from= IP1; - BPM.32R1.B1:BPM, at= 1556.7337+(71-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242327, assembly_id= 102212, from= IP1; - MO.32R1.B1:MO, at= 1557.4847+(71-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308581, assembly_id= 102212, from= IP1; -MQ.32R1.B1:MQ, at= 1559.4957+(71-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307873, assembly_id= 102212, from= IP1; - MS.32R1.B1:MS, at= 1561.3907+(71-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249706, assembly_id= 102212, from= IP1; - MCBV.32R1.B1:MCBV, at= 1561.9837+(71-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249708, assembly_id= 102212, from= IP1; - MB.A33R1.B1:MB, at= 1570.5607+(71.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821958, assembly_id= 102213, from= IP1; - MCS.A33R1.B1:MCS, at= 1577.9847+(72-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242333, assembly_id= 102213, from= IP1; - MCO.33R1.B1:MCO_UNPLUGGED, at= 1578.7347+(72-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249710, assembly_id= 102214, from= IP1; - MCD.33R1.B1:MCD, at= 1578.7362+(72-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249711, assembly_id= 102214, from= IP1; - MB.B33R1.B1:MB, at= 1586.2207+(72.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52821982, assembly_id= 102214, from= IP1; - MCS.B33R1.B1:MCS, at= 1593.6447+(73-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242338, assembly_id= 102214, from= IP1; - MB.C33R1.B1:MB, at= 1601.8807+(73.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822006, assembly_id= 102215, from= IP1; - MCS.C33R1.B1:MCS, at= 1609.3047+(74-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242341, assembly_id= 102215, from= IP1; - BPM.33R1.B1:BPM, at= 1610.1837+(74-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242343, assembly_id= 102216, from= IP1; - MO.33R1.B1:MO, at= 1610.9347+(74-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308612, assembly_id= 102216, from= IP1; -MQ.33R1.B1:MQ, at= 1612.9457+(74-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307902, assembly_id= 102216, from= IP1; - MSS.33R1.B1:MSS, at= 1614.8407+(74-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249714, assembly_id= 102216, from= IP1; - MCBH.33R1.B1:MCBH, at= 1615.4337+(74-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249716, assembly_id= 102216, from= IP1; -E.CELL.12.B1:OMK, at= 1616.1807+(74-IP1OFS.B1)*DS, slot_id= 100932, from= IP1; - MCO.A34R1.B1:MCO_UNPLUGGED, at= 1616.5247+(74-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249718, assembly_id= 102217, from= IP1; - MCD.A34R1.B1:MCD, at= 1616.5262+(74-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249719, assembly_id= 102217, from= IP1; - MB.A34R1.B1:MB, at= 1624.0107+(74.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822030, assembly_id= 102217, from= IP1; - MCS.A34R1.B1:MCS, at= 1631.4347+(75-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242351, assembly_id= 102217, from= IP1; - MB.B34R1.B1:MB, at= 1639.6707+(75.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822054, assembly_id= 102218, from= IP1; - MCS.B34R1.B1:MCS, at= 1647.0947+(76-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242354, assembly_id= 102218, from= IP1; - MCO.B34R1.B1:MCO_UNPLUGGED, at= 1647.8447+(76-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249722, assembly_id= 102219, from= IP1; - MCD.B34R1.B1:MCD, at= 1647.8462+(76-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249723, assembly_id= 102219, from= IP1; - MB.C34R1.B1:MB, at= 1655.3307+(76.5-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822078, assembly_id= 102219, from= IP1; - MCS.C34R1.B1:MCS, at= 1662.7547+(77-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242359, assembly_id= 102219, from= IP1; - BPM.34R1.B1:BPM, at= 1663.6337+(77-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242361, assembly_id= 102220, from= IP1; - MO.34R1.B1:MO, at= 1664.3847+(77-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308627, assembly_id= 102220, from= IP1; -MQ.34R1.B1:MQ, at= 1666.3957+(77-IP1OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307917, assembly_id= 102220, from= IP1; - MS.34L2.B1:MS, at= -1664.0697+(77-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249726, assembly_id= 102220, from= IP2; - MCBV.34L2.B1:MCBV, at= -1663.4767+(77-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249728, assembly_id= 102220, from= IP2; - MB.C34L2.B1:MB, at= -1654.8997+(77.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822102, assembly_id= 102221, from= IP2; - MCS.C34L2.B1:MCS, at= -1647.4757+(78-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242367, assembly_id= 102221, from= IP2; - MCO.34L2.B1:MCO_UNPLUGGED, at= -1646.7257+(78-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249730, assembly_id= 102222, from= IP2; - MCD.34L2.B1:MCD_UNPLUGGED, at= -1646.7242+(78-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249731, assembly_id= 102222, from= IP2; - MB.B34L2.B1:MB, at= -1639.2397+(78.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822126, assembly_id= 102222, from= IP2; - MCS.B34L2.B1:MCS, at= -1631.8157+(79-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242372, assembly_id= 102222, from= IP2; - MB.A34L2.B1:MB, at= -1623.5797+(79.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822150, assembly_id= 102223, from= IP2; - MCS.A34L2.B1:MCS, at= -1616.1557+(80-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242375, assembly_id= 102223, from= IP2; - BPM.33L2.B1:BPM, at= -1615.2767+(80-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242377, assembly_id= 102224, from= IP2; - MO.33L2.B1:MO, at= -1614.5257+(80-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308599, assembly_id= 102224, from= IP2; -MQ.33L2.B1:MQ, at= -1612.5147+(80-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307889, assembly_id= 102224, from= IP2; - MSS.33L2.B1:MSS, at= -1610.6197+(80-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249734, assembly_id= 102224, from= IP2; - MCBH.33L2.B1:MCBH, at= -1610.0267+(80-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249736, assembly_id= 102224, from= IP2; - MCO.B33L2.B1:MCO_UNPLUGGED, at= -1608.9357+(80-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249738, assembly_id= 102225, from= IP2; - MCD.B33L2.B1:MCD, at= -1608.9342+(80-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249739, assembly_id= 102225, from= IP2; - MB.C33L2.B1:MB, at= -1601.4497+(80.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822174, assembly_id= 102225, from= IP2; - MCS.C33L2.B1:MCS, at= -1594.0257+(81-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242385, assembly_id= 102225, from= IP2; - MB.B33L2.B1:MB, at= -1585.7897+(81.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822198, assembly_id= 102226, from= IP2; - MCS.B33L2.B1:MCS, at= -1578.3657+(82-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242388, assembly_id= 102226, from= IP2; - MCO.A33L2.B1:MCO_UNPLUGGED, at= -1577.6157+(82-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249742, assembly_id= 102227, from= IP2; - MCD.A33L2.B1:MCD, at= -1577.6142+(82-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249743, assembly_id= 102227, from= IP2; - MB.A33L2.B1:MB, at= -1570.1297+(82.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822222, assembly_id= 102227, from= IP2; - MCS.A33L2.B1:MCS, at= -1562.7057+(83-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242393, assembly_id= 102227, from= IP2; - BPM.32L2.B1:BPM, at= -1561.8267+(83-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242395, assembly_id= 102228, from= IP2; - MO.32L2.B1:MO, at= -1561.0757+(83-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308567, assembly_id= 102228, from= IP2; -MQ.32L2.B1:MQ, at= -1559.0647+(83-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307860, assembly_id= 102228, from= IP2; - MS.32L2.B1:MS, at= -1557.1697+(83-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249746, assembly_id= 102228, from= IP2; - MCBV.32L2.B1:MCBV, at= -1556.5767+(83-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249748, assembly_id= 102228, from= IP2; - MB.C32L2.B1:MB, at= -1547.9997+(83.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822246, assembly_id= 102229, from= IP2; - MCS.C32L2.B1:MCS, at= -1540.5757+(84-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242401, assembly_id= 102229, from= IP2; - MCO.32L2.B1:MCO_UNPLUGGED, at= -1539.8257+(84-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249750, assembly_id= 102230, from= IP2; - MCD.32L2.B1:MCD, at= -1539.8242+(84-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249751, assembly_id= 102230, from= IP2; - MB.B32L2.B1:MB, at= -1532.3397+(84.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822270, assembly_id= 102230, from= IP2; - MCS.B32L2.B1:MCS, at= -1524.9157+(85-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242406, assembly_id= 102230, from= IP2; - MB.A32L2.B1:MB, at= -1516.6797+(85.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822294, assembly_id= 102231, from= IP2; - MCS.A32L2.B1:MCS, at= -1509.2557+(86-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242409, assembly_id= 102231, from= IP2; - BPM.31L2.B1:BPM, at= -1508.3767+(86-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242411, assembly_id= 102232, from= IP2; - MO.31L2.B1:MO, at= -1507.6257+(86-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308776, assembly_id= 102232, from= IP2; -MQ.31L2.B1:MQ, at= -1505.6147+(86-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308068, assembly_id= 102232, from= IP2; - MS.31L2.B1:MS, at= -1503.7197+(86-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249754, assembly_id= 102232, from= IP2; - MCBH.31L2.B1:MCBH, at= -1503.1267+(86-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249756, assembly_id= 102232, from= IP2; - MCO.B31L2.B1:MCO_UNPLUGGED, at= -1502.0357+(86-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249758, assembly_id= 102233, from= IP2; - MCD.B31L2.B1:MCD, at= -1502.0342+(86-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249759, assembly_id= 102233, from= IP2; - MB.C31L2.B1:MB, at= -1494.5497+(86.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822318, assembly_id= 102233, from= IP2; - MCS.C31L2.B1:MCS, at= -1487.1257+(87-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242419, assembly_id= 102233, from= IP2; - MB.B31L2.B1:MB, at= -1478.8897+(87.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822342, assembly_id= 102234, from= IP2; - MCS.B31L2.B1:MCS, at= -1471.4657+(88-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242422, assembly_id= 102234, from= IP2; - MCO.A31L2.B1:MCO_UNPLUGGED, at= -1470.7157+(88-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249762, assembly_id= 102235, from= IP2; - MCD.A31L2.B1:MCD, at= -1470.7142+(88-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249763, assembly_id= 102235, from= IP2; - MB.A31L2.B1:MB, at= -1463.2297+(88.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822366, assembly_id= 102235, from= IP2; - MCS.A31L2.B1:MCS, at= -1455.8057+(89-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242427, assembly_id= 102235, from= IP2; - BPM.30L2.B1:BPM, at= -1454.9267+(89-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242429, assembly_id= 102236, from= IP2; - MO.30L2.B1:MO, at= -1454.1757+(89-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308746, assembly_id= 102236, from= IP2; -MQ.30L2.B1:MQ, at= -1452.1647+(89-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308038, assembly_id= 102236, from= IP2; - MS.30L2.B1:MS, at= -1450.2697+(89-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249766, assembly_id= 102236, from= IP2; - MCBV.30L2.B1:MCBV, at= -1449.6767+(89-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249768, assembly_id= 102236, from= IP2; - MB.C30L2.B1:MB, at= -1441.0997+(89.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822390, assembly_id= 102237, from= IP2; - MCS.C30L2.B1:MCS, at= -1433.6757+(90-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242435, assembly_id= 102237, from= IP2; - MCO.30L2.B1:MCO_UNPLUGGED, at= -1432.9257+(90-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249770, assembly_id= 102238, from= IP2; - MCD.30L2.B1:MCD, at= -1432.9242+(90-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249771, assembly_id= 102238, from= IP2; - MB.B30L2.B1:MB, at= -1425.4397+(90.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822414, assembly_id= 102238, from= IP2; - MCS.B30L2.B1:MCS, at= -1418.0157+(91-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242440, assembly_id= 102238, from= IP2; - MB.A30L2.B1:MB, at= -1409.7797+(91.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822438, assembly_id= 102239, from= IP2; - MCS.A30L2.B1:MCS, at= -1402.3557+(92-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242443, assembly_id= 102239, from= IP2; - BPM.29L2.B1:BPM, at= -1401.4767+(92-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242445, assembly_id= 102240, from= IP2; - MO.29L2.B1:MO, at= -1400.7257+(92-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308714, assembly_id= 102240, from= IP2; -MQ.29L2.B1:MQ, at= -1398.7147+(92-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308008, assembly_id= 102240, from= IP2; - MSS.29L2.B1:MSS, at= -1396.8197+(92-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249774, assembly_id= 102240, from= IP2; - MCBH.29L2.B1:MCBH, at= -1396.2267+(92-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249776, assembly_id= 102240, from= IP2; - MCO.B29L2.B1:MCO_UNPLUGGED, at= -1395.1357+(92-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249778, assembly_id= 102241, from= IP2; - MCD.B29L2.B1:MCD, at= -1395.1342+(92-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249779, assembly_id= 102241, from= IP2; - MB.C29L2.B1:MB, at= -1387.6497+(92.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822462, assembly_id= 102241, from= IP2; - MCS.C29L2.B1:MCS, at= -1380.2257+(93-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242453, assembly_id= 102241, from= IP2; - MB.B29L2.B1:MB, at= -1371.9897+(93.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822486, assembly_id= 102242, from= IP2; - MCS.B29L2.B1:MCS, at= -1364.5657+(94-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242456, assembly_id= 102242, from= IP2; - MCO.A29L2.B1:MCO_UNPLUGGED, at= -1363.8157+(94-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249782, assembly_id= 102243, from= IP2; - MCD.A29L2.B1:MCD, at= -1363.8142+(94-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249783, assembly_id= 102243, from= IP2; - MB.A29L2.B1:MB, at= -1356.3297+(94.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822510, assembly_id= 102243, from= IP2; - MCS.A29L2.B1:MCS, at= -1348.9057+(95-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242461, assembly_id= 102243, from= IP2; - BPM.28L2.B1:BPM, at= -1348.0267+(95-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242463, assembly_id= 102244, from= IP2; - MO.28L2.B1:MO, at= -1347.2757+(95-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308924, assembly_id= 102244, from= IP2; -MQ.28L2.B1:MQ, at= -1345.2647+(95-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307976, assembly_id= 102244, from= IP2; - MS.28L2.B1:MS, at= -1343.3697+(95-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249786, assembly_id= 102244, from= IP2; - MCBV.28L2.B1:MCBV, at= -1342.7767+(95-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249788, assembly_id= 102244, from= IP2; - MB.C28L2.B1:MB, at= -1334.1997+(95.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822534, assembly_id= 102245, from= IP2; - MCS.C28L2.B1:MCS, at= -1326.7757+(96-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242469, assembly_id= 102245, from= IP2; - MCO.28L2.B1:MCO_UNPLUGGED, at= -1326.0257+(96-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249790, assembly_id= 102246, from= IP2; - MCD.28L2.B1:MCD, at= -1326.0242+(96-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249791, assembly_id= 102246, from= IP2; - MB.B28L2.B1:MB, at= -1318.5397+(96.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822558, assembly_id= 102246, from= IP2; - MCS.B28L2.B1:MCS, at= -1311.1157+(97-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242474, assembly_id= 102246, from= IP2; - MB.A28L2.B1:MB, at= -1302.8797+(97.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822582, assembly_id= 102247, from= IP2; - MCS.A28L2.B1:MCS, at= -1295.4557+(98-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242477, assembly_id= 102247, from= IP2; - BPM.27L2.B1:BPM, at= -1294.5767+(98-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242479, assembly_id= 102248, from= IP2; - MQS.27L2.B1:MQS, at= -1293.8227+(98-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307653, assembly_id= 102248, from= IP2; -MQ.27L2.B1:MQ, at= -1291.8147+(98-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308186, assembly_id= 102248, from= IP2; - MS.27L2.B1:MS, at= -1289.9197+(98-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249794, assembly_id= 102248, from= IP2; - MCBH.27L2.B1:MCBH, at= -1289.3267+(98-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249796, assembly_id= 102248, from= IP2; - MCO.B27L2.B1:MCO_UNPLUGGED, at= -1288.2357+(98-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249798, assembly_id= 102249, from= IP2; - MCD.B27L2.B1:MCD, at= -1288.2342+(98-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249799, assembly_id= 102249, from= IP2; - MB.C27L2.B1:MB, at= -1280.7497+(98.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822606, assembly_id= 102249, from= IP2; - MCS.C27L2.B1:MCS, at= -1273.3257+(99-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242487, assembly_id= 102249, from= IP2; - MB.B27L2.B1:MB, at= -1265.0897+(99.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822630, assembly_id= 102250, from= IP2; - MCS.B27L2.B1:MCS, at= -1257.6657+(100-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242490, assembly_id= 102250, from= IP2; - MCO.A27L2.B1:MCO_UNPLUGGED, at= -1256.9157+(100-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249802, assembly_id= 102251, from= IP2; - MCD.A27L2.B1:MCD, at= -1256.9142+(100-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249803, assembly_id= 102251, from= IP2; - MB.A27L2.B1:MB, at= -1249.4297+(100.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822654, assembly_id= 102251, from= IP2; - MCS.A27L2.B1:MCS, at= -1242.0057+(101-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242495, assembly_id= 102251, from= IP2; - BPM.26L2.B1:BPM, at= -1241.1267+(101-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242497, assembly_id= 102252, from= IP2; - MO.26L2.B1:MO, at= -1240.3757+(101-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308893, assembly_id= 102252, from= IP2; -MQ.26L2.B1:MQ, at= -1238.3647+(101-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308156, assembly_id= 102252, from= IP2; - MS.26L2.B1:MS, at= -1236.4697+(101-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249806, assembly_id= 102252, from= IP2; - MCBV.26L2.B1:MCBV, at= -1235.8767+(101-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249808, assembly_id= 102252, from= IP2; - MB.C26L2.B1:MB, at= -1227.2997+(101.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822678, assembly_id= 102253, from= IP2; - MCS.C26L2.B1:MCS, at= -1219.8757+(102-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242503, assembly_id= 102253, from= IP2; - MCO.26L2.B1:MCO_UNPLUGGED, at= -1219.1257+(102-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249810, assembly_id= 102254, from= IP2; - MCD.26L2.B1:MCD, at= -1219.1242+(102-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249811, assembly_id= 102254, from= IP2; - MB.B26L2.B1:MB, at= -1211.6397+(102.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822702, assembly_id= 102254, from= IP2; - MCS.B26L2.B1:MCS, at= -1204.2157+(103-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242508, assembly_id= 102254, from= IP2; - MB.A26L2.B1:MB, at= -1195.9797+(103.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822726, assembly_id= 102255, from= IP2; - MCS.A26L2.B1:MCS, at= -1188.5557+(104-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242511, assembly_id= 102255, from= IP2; - BPM.25L2.B1:BPM, at= -1187.6767+(104-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242513, assembly_id= 102256, from= IP2; - MO.25L2.B1:MO, at= -1186.9257+(104-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308861, assembly_id= 102256, from= IP2; -MQ.25L2.B1:MQ, at= -1184.9147+(104-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308124, assembly_id= 102256, from= IP2; - MS.25L2.B1:MS, at= -1183.0197+(104-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249814, assembly_id= 102256, from= IP2; - MCBH.25L2.B1:MCBH, at= -1182.4267+(104-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249816, assembly_id= 102256, from= IP2; - MCO.B25L2.B1:MCO_UNPLUGGED, at= -1181.3357+(104-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249818, assembly_id= 102257, from= IP2; - MCD.B25L2.B1:MCD, at= -1181.3342+(104-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249819, assembly_id= 102257, from= IP2; - MB.C25L2.B1:MB, at= -1173.8497+(104.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822750, assembly_id= 102257, from= IP2; - MCS.C25L2.B1:MCS, at= -1166.4257+(105-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242521, assembly_id= 102257, from= IP2; - MB.B25L2.B1:MB, at= -1158.1897+(105.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822774, assembly_id= 102258, from= IP2; - MCS.B25L2.B1:MCS, at= -1150.7657+(106-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242524, assembly_id= 102258, from= IP2; - MCO.A25L2.B1:MCO_UNPLUGGED, at= -1150.0157+(106-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249822, assembly_id= 102259, from= IP2; - MCD.A25L2.B1:MCD, at= -1150.0142+(106-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249823, assembly_id= 102259, from= IP2; - MB.A25L2.B1:MB, at= -1142.5297+(106.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822798, assembly_id= 102259, from= IP2; - MCS.A25L2.B1:MCS, at= -1135.1057+(107-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242529, assembly_id= 102259, from= IP2; - BPM.24L2.B1:BPM, at= -1134.2267+(107-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242531, assembly_id= 102260, from= IP2; - MO.24L2.B1:MO, at= -1133.4757+(107-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308830, assembly_id= 102260, from= IP2; -MQ.24L2.B1:MQ, at= -1131.4647+(107-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308092, assembly_id= 102260, from= IP2; - MS.24L2.B1:MS, at= -1129.5697+(107-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249826, assembly_id= 102260, from= IP2; - MCBV.24L2.B1:MCBV, at= -1128.9767+(107-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249828, assembly_id= 102260, from= IP2; - MB.C24L2.B1:MB, at= -1120.3997+(107.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822822, assembly_id= 102261, from= IP2; - MCS.C24L2.B1:MCS, at= -1112.9757+(108-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242537, assembly_id= 102261, from= IP2; - MCO.24L2.B1:MCO_UNPLUGGED, at= -1112.2257+(108-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249830, assembly_id= 102262, from= IP2; - MCD.24L2.B1:MCD, at= -1112.2242+(108-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249831, assembly_id= 102262, from= IP2; - MB.B24L2.B1:MB, at= -1104.7397+(108.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822846, assembly_id= 102262, from= IP2; - MCS.B24L2.B1:MCS, at= -1097.3157+(109-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242542, assembly_id= 102262, from= IP2; - MB.A24L2.B1:MB, at= -1089.0797+(109.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822870, assembly_id= 102263, from= IP2; - MCS.A24L2.B1:MCS, at= -1081.6557+(110-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242545, assembly_id= 102263, from= IP2; - BPM.23L2.B1:BPM, at= -1080.7767+(110-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242547, assembly_id= 102264, from= IP2; - MQS.23L2.B1:MQS, at= -1080.0227+(110-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307623, assembly_id= 102264, from= IP2; -MQ.23L2.B1:MQ, at= -1078.0147+(110-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308303, assembly_id= 102264, from= IP2; - MS.23L2.B1:MS, at= -1076.1197+(110-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249834, assembly_id= 102264, from= IP2; - MCBH.23L2.B1:MCBH, at= -1075.5267+(110-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249836, assembly_id= 102264, from= IP2; - MCO.B23L2.B1:MCO_UNPLUGGED, at= -1074.4357+(110-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249838, assembly_id= 102265, from= IP2; - MCD.B23L2.B1:MCD, at= -1074.4342+(110-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249839, assembly_id= 102265, from= IP2; - MB.C23L2.B1:MB, at= -1066.9497+(110.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822894, assembly_id= 102265, from= IP2; - MCS.C23L2.B1:MCS, at= -1059.5257+(111-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242555, assembly_id= 102265, from= IP2; - MB.B23L2.B1:MB, at= -1051.2897+(111.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822918, assembly_id= 102266, from= IP2; - MCS.B23L2.B1:MCS, at= -1043.8657+(112-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242558, assembly_id= 102266, from= IP2; - MCO.A23L2.B1:MCO_UNPLUGGED, at= -1043.1157+(112-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249842, assembly_id= 102267, from= IP2; - MCD.A23L2.B1:MCD, at= -1043.1142+(112-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249843, assembly_id= 102267, from= IP2; - MB.A23L2.B1:MB, at= -1035.6297+(112.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822942, assembly_id= 102267, from= IP2; - MCS.A23L2.B1:MCS, at= -1028.2057+(113-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242563, assembly_id= 102267, from= IP2; - BPM.22L2.B1:BPM, at= -1027.3267+(113-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242565, assembly_id= 102268, from= IP2; - MO.22L2.B1:MO, at= -1026.5757+(113-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2309037, assembly_id= 102268, from= IP2; -MQ.22L2.B1:MQ, at= -1024.5647+(113-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308271, assembly_id= 102268, from= IP2; - MS.22L2.B1:MS, at= -1022.6697+(113-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249846, assembly_id= 102268, from= IP2; - MCBV.22L2.B1:MCBV, at= -1022.0767+(113-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249848, assembly_id= 102268, from= IP2; - MB.C22L2.B1:MB, at= -1013.4997+(113.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822966, assembly_id= 102269, from= IP2; - MCS.C22L2.B1:MCS, at= -1006.0757+(114-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242571, assembly_id= 102269, from= IP2; - MCO.22L2.B1:MCO_UNPLUGGED, at= -1005.3257+(114-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249850, assembly_id= 102270, from= IP2; - MCD.22L2.B1:MCD, at= -1005.3242+(114-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249851, assembly_id= 102270, from= IP2; - MB.B22L2.B1:MB, at= -997.8397+(114.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52822990, assembly_id= 102270, from= IP2; - MCS.B22L2.B1:MCS, at= -990.4157+(115-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242576, assembly_id= 102270, from= IP2; - MB.A22L2.B1:MB, at= -982.1797+(115.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823014, assembly_id= 102271, from= IP2; - MCS.A22L2.B1:MCS, at= -974.7557+(116-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242579, assembly_id= 102271, from= IP2; - BPM.21L2.B1:BPM, at= -973.8767+(116-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242581, assembly_id= 102272, from= IP2; - MQT.21L2.B1:MQT, at= -973.1227+(116-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307488, assembly_id= 102272, from= IP2; -MQ.21L2.B1:MQ, at= -971.1147+(116-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308240, assembly_id= 102272, from= IP2; - MS.21L2.B1:MS, at= -969.2197+(116-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249854, assembly_id= 102272, from= IP2; - MCBH.21L2.B1:MCBH, at= -968.6267+(116-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249856, assembly_id= 102272, from= IP2; - MCO.B21L2.B1:MCO_UNPLUGGED, at= -967.5357+(116-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249858, assembly_id= 102273, from= IP2; - MCD.B21L2.B1:MCD, at= -967.5342+(116-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249859, assembly_id= 102273, from= IP2; - MB.C21L2.B1:MB, at= -960.0497+(116.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823038, assembly_id= 102273, from= IP2; - MCS.C21L2.B1:MCS, at= -952.6257+(117-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242589, assembly_id= 102273, from= IP2; - MB.B21L2.B1:MB, at= -944.3897+(117.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823062, assembly_id= 102274, from= IP2; - MCS.B21L2.B1:MCS, at= -936.9657+(118-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242592, assembly_id= 102274, from= IP2; - MCO.A21L2.B1:MCO_UNPLUGGED, at= -936.2157+(118-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249862, assembly_id= 102275, from= IP2; - MCD.A21L2.B1:MCD, at= -936.2142+(118-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249863, assembly_id= 102275, from= IP2; - MB.A21L2.B1:MB, at= -928.7297+(118.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823086, assembly_id= 102275, from= IP2; - MCS.A21L2.B1:MCS, at= -921.3057+(119-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242597, assembly_id= 102275, from= IP2; - BPM.20L2.B1:BPM, at= -920.4267+(119-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242599, assembly_id= 102276, from= IP2; - MQT.20L2.B1:MQT, at= -919.6727+(119-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348441, assembly_id= 102276, from= IP2; -MQ.20L2.B1:MQ, at= -917.6647+(119-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308210, assembly_id= 102276, from= IP2; - MS.20L2.B1:MS, at= -915.7697+(119-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249866, assembly_id= 102276, from= IP2; - MCBV.20L2.B1:MCBV, at= -915.1767+(119-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249868, assembly_id= 102276, from= IP2; - MB.C20L2.B1:MB, at= -906.5997+(119.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823110, assembly_id= 102277, from= IP2; - MCS.C20L2.B1:MCS, at= -899.1757+(120-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242605, assembly_id= 102277, from= IP2; - MCO.20L2.B1:MCO_UNPLUGGED, at= -898.4257+(120-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249870, assembly_id= 102278, from= IP2; - MCD.20L2.B1:MCD, at= -898.4242+(120-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249871, assembly_id= 102278, from= IP2; - MB.B20L2.B1:MB, at= -890.9397+(120.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823134, assembly_id= 102278, from= IP2; - MCS.B20L2.B1:MCS, at= -883.5157+(121-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242610, assembly_id= 102278, from= IP2; - MB.A20L2.B1:MB, at= -875.2797+(121.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823158, assembly_id= 102279, from= IP2; - MCS.A20L2.B1:MCS, at= -867.8557+(122-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242613, assembly_id= 102279, from= IP2; - BPM.19L2.B1:BPM, at= -866.9767+(122-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242615, assembly_id= 102280, from= IP2; - MQT.19L2.B1:MQT, at= -866.2227+(122-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307429, assembly_id= 102280, from= IP2; -MQ.19L2.B1:MQ, at= -864.2147+(122-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308418, assembly_id= 102280, from= IP2; - MS.19L2.B1:MS, at= -862.3197+(122-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249874, assembly_id= 102280, from= IP2; - MCBH.19L2.B1:MCBH, at= -861.7267+(122-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249876, assembly_id= 102280, from= IP2; - MCO.B19L2.B1:MCO_UNPLUGGED, at= -860.6357+(122-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249878, assembly_id= 102281, from= IP2; - MCD.B19L2.B1:MCD, at= -860.6342+(122-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249879, assembly_id= 102281, from= IP2; - MB.C19L2.B1:MB, at= -853.1497+(122.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823182, assembly_id= 102281, from= IP2; - MCS.C19L2.B1:MCS, at= -845.7257+(123-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242623, assembly_id= 102281, from= IP2; - MB.B19L2.B1:MB, at= -837.4897+(123.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823206, assembly_id= 102282, from= IP2; - MCS.B19L2.B1:MCS, at= -830.0657+(124-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242626, assembly_id= 102282, from= IP2; - MCO.A19L2.B1:MCO_UNPLUGGED, at= -829.3157+(124-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249882, assembly_id= 102283, from= IP2; - MCD.A19L2.B1:MCD, at= -829.3142+(124-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249883, assembly_id= 102283, from= IP2; - MB.A19L2.B1:MB, at= -821.8297+(124.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823230, assembly_id= 102283, from= IP2; - MCS.A19L2.B1:MCS, at= -814.4057+(125-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242631, assembly_id= 102283, from= IP2; - BPM.18L2.B1:BPM, at= -813.5267+(125-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242633, assembly_id= 102284, from= IP2; - MQT.18L2.B1:MQT, at= -812.7727+(125-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307397, assembly_id= 102284, from= IP2; -MQ.18L2.B1:MQ, at= -810.7647+(125-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308387, assembly_id= 102284, from= IP2; - MS.18L2.B1:MS, at= -808.8697+(125-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249886, assembly_id= 102284, from= IP2; - MCBV.18L2.B1:MCBV, at= -808.2767+(125-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249888, assembly_id= 102284, from= IP2; - MB.C18L2.B1:MB, at= -799.6997+(125.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823254, assembly_id= 102285, from= IP2; - MCS.C18L2.B1:MCS, at= -792.2757+(126-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242639, assembly_id= 102285, from= IP2; - MCO.18L2.B1:MCO_UNPLUGGED, at= -791.5257+(126-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249890, assembly_id= 102286, from= IP2; - MCD.18L2.B1:MCD, at= -791.5242+(126-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249891, assembly_id= 102286, from= IP2; - MB.B18L2.B1:MB, at= -784.0397+(126.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823278, assembly_id= 102286, from= IP2; - MCS.B18L2.B1:MCS, at= -776.6157+(127-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242644, assembly_id= 102286, from= IP2; - MB.A18L2.B1:MB, at= -768.3797+(127.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823302, assembly_id= 102287, from= IP2; - MCS.A18L2.B1:MCS, at= -760.9557+(128-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242647, assembly_id= 102287, from= IP2; - BPM.17L2.B1:BPM, at= -760.0767+(128-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242649, assembly_id= 102288, from= IP2; - MQT.17L2.B1:MQT, at= -759.3227+(128-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307602, assembly_id= 102288, from= IP2; -MQ.17L2.B1:MQ, at= -757.3147+(128-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308357, assembly_id= 102288, from= IP2; - MS.17L2.B1:MS, at= -755.4197+(128-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249894, assembly_id= 102288, from= IP2; - MCBH.17L2.B1:MCBH, at= -754.8267+(128-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249896, assembly_id= 102288, from= IP2; - MCO.B17L2.B1:MCO_UNPLUGGED, at= -753.7357+(128-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249898, assembly_id= 102289, from= IP2; - MCD.B17L2.B1:MCD, at= -753.7342+(128-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249899, assembly_id= 102289, from= IP2; - MB.C17L2.B1:MB, at= -746.2497+(128.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823326, assembly_id= 102289, from= IP2; - MCS.C17L2.B1:MCS, at= -738.8257+(129-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242657, assembly_id= 102289, from= IP2; - MB.B17L2.B1:MB, at= -730.5897+(129.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823350, assembly_id= 102290, from= IP2; - MCS.B17L2.B1:MCS, at= -723.1657+(130-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242660, assembly_id= 102290, from= IP2; - MCO.A17L2.B1:MCO_UNPLUGGED, at= -722.4157+(130-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249902, assembly_id= 102291, from= IP2; - MCD.A17L2.B1:MCD, at= -722.4142+(130-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249903, assembly_id= 102291, from= IP2; - MB.A17L2.B1:MB, at= -714.9297+(130.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823374, assembly_id= 102291, from= IP2; - MCS.A17L2.B1:MCS, at= -707.5057+(131-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242665, assembly_id= 102291, from= IP2; - BPM.16L2.B1:BPM, at= -706.6267+(131-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242667, assembly_id= 102292, from= IP2; - MQT.16L2.B1:MQT, at= -705.8727+(131-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307572, assembly_id= 102292, from= IP2; -MQ.16L2.B1:MQ, at= -703.8647+(131-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308327, assembly_id= 102292, from= IP2; - MS.16L2.B1:MS, at= -701.9697+(131-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249906, assembly_id= 102292, from= IP2; - MCBV.16L2.B1:MCBV, at= -701.3767+(131-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249908, assembly_id= 102292, from= IP2; - MB.C16L2.B1:MB, at= -692.7997+(131.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823398, assembly_id= 102293, from= IP2; - MCS.C16L2.B1:MCS, at= -685.3757+(132-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242673, assembly_id= 102293, from= IP2; - MCO.16L2.B1:MCO_UNPLUGGED, at= -684.6257+(132-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249910, assembly_id= 102294, from= IP2; - MCD.16L2.B1:MCD, at= -684.6242+(132-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249911, assembly_id= 102294, from= IP2; - MB.B16L2.B1:MB, at= -677.1397+(132.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823422, assembly_id= 102294, from= IP2; - MCS.B16L2.B1:MCS, at= -669.7157+(133-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242678, assembly_id= 102294, from= IP2; - MB.A16L2.B1:MB, at= -661.4797+(133.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823446, assembly_id= 102295, from= IP2; - MCS.A16L2.B1:MCS, at= -654.0557+(134-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242681, assembly_id= 102295, from= IP2; - BPM.15L2.B1:BPM, at= -653.1767+(134-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242683, assembly_id= 102296, from= IP2; - MQT.15L2.B1:MQT, at= -652.4227+(134-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307541, assembly_id= 102296, from= IP2; -MQ.15L2.B1:MQ, at= -650.4147+(134-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308534, assembly_id= 102296, from= IP2; - MS.15L2.B1:MS, at= -648.5197+(134-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249914, assembly_id= 102296, from= IP2; - MCBH.15L2.B1:MCBH, at= -647.9267+(134-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249916, assembly_id= 102296, from= IP2; - MCO.B15L2.B1:MCO_UNPLUGGED, at= -646.8357+(134-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249918, assembly_id= 102297, from= IP2; - MCD.B15L2.B1:MCD, at= -646.8342+(134-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249919, assembly_id= 102297, from= IP2; - MB.C15L2.B1:MB, at= -639.3497+(134.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823470, assembly_id= 102297, from= IP2; - MCS.C15L2.B1:MCS, at= -631.9257+(135-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242691, assembly_id= 102297, from= IP2; - MB.B15L2.B1:MB, at= -623.6897+(135.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823494, assembly_id= 102298, from= IP2; - MCS.B15L2.B1:MCS, at= -616.2657+(136-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242694, assembly_id= 102298, from= IP2; - MCO.A15L2.B1:MCO_UNPLUGGED, at= -615.5157+(136-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249922, assembly_id= 102299, from= IP2; - MCD.A15L2.B1:MCD, at= -615.5142+(136-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249923, assembly_id= 102299, from= IP2; - MB.A15L2.B1:MB, at= -608.0297+(136.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823518, assembly_id= 102299, from= IP2; - MCS.A15L2.B1:MCS, at= -600.6057+(137-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242699, assembly_id= 102299, from= IP2; - BPM.14L2.B1:BPM, at= -599.7267+(137-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242701, assembly_id= 102300, from= IP2; - MQT.14L2.B1:MQT, at= -598.9727+(137-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307509, assembly_id= 102300, from= IP2; -MQ.14L2.B1:MQ, at= -596.9647+(137-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308504, assembly_id= 102300, from= IP2; - MS.14L2.B1:MS, at= -595.0697+(137-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249926, assembly_id= 102300, from= IP2; - MCBV.14L2.B1:MCBV, at= -594.4767+(137-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249928, assembly_id= 102300, from= IP2; - MB.C14L2.B1:MB, at= -585.8997+(137.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823542, assembly_id= 102301, from= IP2; - MCS.C14L2.B1:MCS, at= -578.4757+(138-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242707, assembly_id= 102301, from= IP2; - MCO.14L2.B1:MCO_UNPLUGGED, at= -577.7257+(138-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249930, assembly_id= 102302, from= IP2; - MCD.14L2.B1:MCD, at= -577.7242+(138-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249931, assembly_id= 102302, from= IP2; - MB.B14L2.B1:MB, at= -570.2397+(138.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823566, assembly_id= 102302, from= IP2; - MCS.B14L2.B1:MCS, at= -562.8157+(139-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242712, assembly_id= 102302, from= IP2; - MB.A14L2.B1:MB, at= -554.5797+(139.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823590, assembly_id= 102303, from= IP2; - MCS.A14L2.B1:MCS, at= -547.1557+(140-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242715, assembly_id= 102303, from= IP2; -S.DS.L2.B1:OMK, at= -546.7497+(140-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - BPM.13L2.B1:BPM, at= -546.2767+(140-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242717, assembly_id= 102304, from= IP2; - MQT.13L2.B1:MQT, at= -545.5227+(140-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307717, assembly_id= 102304, from= IP2; -MQ.13L2.B1:MQ, at= -543.5147+(140-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308474, assembly_id= 102304, from= IP2; - MS.13L2.B1:MS, at= -541.6197+(140-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249934, assembly_id= 102304, from= IP2; - MCBH.13L2.B1:MCBH, at= -541.0267+(140-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249936, assembly_id= 102304, from= IP2; - MCO.B13L2.B1:MCO_UNPLUGGED, at= -539.9357+(140-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249938, assembly_id= 102305, from= IP2; - MCD.B13L2.B1:MCD, at= -539.9342+(140-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249939, assembly_id= 102305, from= IP2; - MB.C13L2.B1:MB, at= -532.4497+(140.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823614, assembly_id= 102305, from= IP2; - MCS.C13L2.B1:MCS, at= -525.0257+(141-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242725, assembly_id= 102305, from= IP2; - MB.B13L2.B1:MB, at= -516.7897+(141.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823638, assembly_id= 102306, from= IP2; - MCS.B13L2.B1:MCS, at= -509.3657+(142-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242728, assembly_id= 102306, from= IP2; - MCO.A13L2.B1:MCO_UNPLUGGED, at= -508.6157+(142-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249942, assembly_id= 102307, from= IP2; - MCD.A13L2.B1:MCD, at= -508.6142+(142-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249943, assembly_id= 102307, from= IP2; - MB.A13L2.B1:MB, at= -501.1297+(142.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823662, assembly_id= 102307, from= IP2; - MCS.A13L2.B1:MCS, at= -493.7057+(143-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242733, assembly_id= 102307, from= IP2; - BPM.12L2.B1:BPM, at= -492.8267+(143-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242735, assembly_id= 102308, from= IP2; - MQT.12L2.B1:MQT, at= -492.0727+(143-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307685, assembly_id= 102308, from= IP2; -MQ.12L2.B1:MQ, at= -490.0647+(143-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308681, assembly_id= 102308, from= IP2; - MS.12L2.B1:MS, at= -488.1697+(143-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249946, assembly_id= 102308, from= IP2; - MCBV.12L2.B1:MCBV, at= -487.5767+(143-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249948, assembly_id= 102308, from= IP2; - MB.C12L2.B1:MB, at= -478.9997+(143.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823686, assembly_id= 102309, from= IP2; - MCS.C12L2.B1:MCS, at= -471.5757+(144-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242741, assembly_id= 102309, from= IP2; - MCO.12L2.B1:MCO_UNPLUGGED, at= -470.8257+(144-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249950, assembly_id= 102310, from= IP2; - MCD.12L2.B1:MCD, at= -470.8242+(144-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249951, assembly_id= 102310, from= IP2; - MB.B12L2.B1:MB, at= -463.3397+(144.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823710, assembly_id= 102310, from= IP2; - MCS.B12L2.B1:MCS, at= -455.9157+(145-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242746, assembly_id= 102310, from= IP2; - MB.A12L2.B1:MB, at= -447.6797+(145.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823734, assembly_id= 102311, from= IP2; - MCS.A12L2.B1:MCS, at= -440.2557+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242749, assembly_id= 102311, from= IP2; -E.ARC.12.B1:OMK, at= -439.8497+(146-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - BPM.11L2.B1:BPM, at= -439.3767+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242751, assembly_id= 102312, from= IP2; -MQ.11L2.B1:MQ, at= -436.8297+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308651, assembly_id= 102312, from= IP2; - MQTLI.11L2.B1:MQTLI, at= -434.4607+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348437, assembly_id= 102312, from= IP2; - MS.11L2.B1:MS, at= -433.4487+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249954, assembly_id= 102312, from= IP2; - MCBH.11L2.B1:MCBH, at= -432.8557+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249956, assembly_id= 102312, from= IP2; - LEPRB.11L2.B1:LEPRB, at= -429.450025+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52998162, assembly_id= 43344242, from= IP2; - LENRA.11L2.B1:LENRA, at= -425.71735+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52998018, assembly_id= 43347335, from= IP2; - LEPRA.11L2.B1:LEPRA, at= -421.984675+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52998138, assembly_id= 43347323, from= IP2; - MCO.11L2.B1:MCO_UNPLUGGED, at= -418.986+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249958, assembly_id= 102314, from= IP2; - MCD.11L2.B1:MCD, at= -418.9845+(146-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249959, assembly_id= 102314, from= IP2; - MB.B11L2.B1:MB, at= -411.5+(146.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823758, assembly_id= 102314, from= IP2; - MCS.B11L2.B1:MCS, at= -404.076+(147-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242759, assembly_id= 102314, from= IP2; - MB.A11L2.B1:MB, at= -395.84+(147.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849414, assembly_id= 102315, from= IP2; - MCS.A11L2.B1:MCS, at= -388.416+(148-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 357284, assembly_id= 102315, from= IP2; - BPM.10L2.B1:BPM, at= -387.537+(148-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377924, assembly_id= 102316, from= IP2; - MQML.10L2.B1:MQML, at= -384.392+(148-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307806, assembly_id= 102316, from= IP2; - MCBCV.10L2.B1:MCBCV, at= -381.35+(148-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378094, assembly_id= 102316, from= IP2; - MCO.10L2.B1:MCO_UNPLUGGED, at= -379.921+(148-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249964, assembly_id= 102317, from= IP2; - MCD.10L2.B1:MCD, at= -379.9195+(148-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249965, assembly_id= 102317, from= IP2; - MB.B10L2.B1:MB, at= -372.435+(148.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823782, assembly_id= 102317, from= IP2; - MCS.B10L2.B1:MCS, at= -365.011+(149-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242771, assembly_id= 102317, from= IP2; - MB.A10L2.B1:MB, at= -356.775+(149.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823806, assembly_id= 102318, from= IP2; - MCS.A10L2.B1:MCS, at= -349.351+(150-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242774, assembly_id= 102318, from= IP2; - BPM.9L2.B1:BPM, at= -348.471+(150-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377928, assembly_id= 102319, from= IP2; - MQMC.9L2.B1:MQMC, at= -346.495+(150-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307783, assembly_id= 102319, from= IP2; - MQM.9L2.B1:MQM, at= -343.229+(150-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307731, assembly_id= 102319, from= IP2; - MCBCH.9L2.B1:MCBCH, at= -340.888+(150-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378101, assembly_id= 102319, from= IP2; - MCO.9L2.B1:MCO_UNPLUGGED, at= -339.456+(150-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249970, assembly_id= 102320, from= IP2; - MCD.9L2.B1:MCD, at= -339.4545+(150-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249971, assembly_id= 102320, from= IP2; - MB.B9L2.B1:MB, at= -331.97+(150.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823830, assembly_id= 102320, from= IP2; - MCS.B9L2.B1:MCS, at= -324.546+(151-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242784, assembly_id= 102320, from= IP2; - MB.A9L2.B1:MB, at= -316.31+(151.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823854, assembly_id= 102321, from= IP2; - MCS.A9L2.B1:MCS, at= -308.886+(152-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242787, assembly_id= 102321, from= IP2; - BPM.8L2.B1:BPM, at= -308.007+(152-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377934, assembly_id= 102322, from= IP2; - MQML.8L2.B1:MQML, at= -304.862+(152-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307838, assembly_id= 102322, from= IP2; - MCBCV.8L2.B1:MCBCV, at= -301.82+(152-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378104, assembly_id= 102322, from= IP2; - MCO.8L2.B1:MCO_UNPLUGGED, at= -300.391+(152-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249976, assembly_id= 102323, from= IP2; - MCD.8L2.B1:MCD, at= -300.3895+(152-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249977, assembly_id= 102323, from= IP2; - MB.B8L2.B1:MB, at= -292.905+(152.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52823878, assembly_id= 102323, from= IP2; - MCS.B8L2.B1:MCS, at= -285.481+(153-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242796, assembly_id= 102323, from= IP2; - MB.A8L2.B1:MB, at= -277.245+(153.5-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849438, assembly_id= 102324, from= IP2; - MCS.A8L2.B1:MCS, at= -269.821+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 357287, assembly_id= 102324, from= IP2; -E.DS.L2.B1:OMK, at= -269.415+(154-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - BPM.7L2.B1:BPM, at= -268.94+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242801, assembly_id= 102325, from= IP2; - MQM.B7L2.B1:MQM, at= -266.495+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307768, assembly_id= 102325, from= IP2; - MQM.A7L2.B1:MQM, at= -262.728+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307753, assembly_id= 102325, from= IP2; - MCBCH.7L2.B1:MCBCH, at= -260.387+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249981, assembly_id= 102325, from= IP2; - DFBAC.7L2.B1:DFBAC, at= -258.2075+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52996587, assembly_id= 104674, from= IP2; - MCBCV.6L2.B1:MCBCV, at= -246.79+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249982, assembly_id= 102326, from= IP2; - MQML.6L2.B1:MQML, at= -243.748+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307828, assembly_id= 102326, from= IP2; - MQM.6L2.B1:MQM, at= -239.281+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307955, assembly_id= 102326, from= IP2; - BPMR.6L2.B1:BPMR, at= -236.834+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242809, assembly_id= 102326, from= IP2; - MSIB.C6L2.B1:MSIB, at= -212.723+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849950, assembly_id= 134506, from= IP2; - MSIB.B6L2.B1:MSIB, at= -208.273+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849976, assembly_id= 134507, from= IP2; - MSIB.A6L2.B1:MSIB, at= -203.823+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52850002, assembly_id= 134508, from= IP2; - MSIA.B6L2.B1:MSIA, at= -199.373+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849846, assembly_id= 134509, from= IP2; - MSIA.A6L2.B1:MSIA, at= -194.923+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849872, assembly_id= 134510, from= IP2; -MSIA.EXIT.B1:OMK, at= -192.923+(154-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - BTVSS.6L2.B1:BTVSS075, at= -192.173+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 181614, from= IP2; - MCBYH.B5L2.B1:MCBYH, at= -175.75+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249984, assembly_id= 102328, from= IP2; - MCBYV.5L2.B1:MCBYV, at= -174.604+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249986, assembly_id= 102328, from= IP2; - MCBYH.A5L2.B1:MCBYH, at= -173.457+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249988, assembly_id= 102328, from= IP2; - MQY.B5L2.B1:MQY, at= -171.11+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2302969, assembly_id= 102328, from= IP2; - MQY.A5L2.B1:MQY, at= -167.329+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2302968, assembly_id= 102328, from= IP2; - BPMYB.5L2.B1:BPMYB, at= -164.635+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242816, assembly_id= 102328, from= IP2; - BTVSI.C5L2.B1:BTVSI088, at= -163.269+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 181615, from= IP2; - MKI.D5L2.B1:MKIMA192, at= -160.296+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378207, from= IP2; - MKI.C5L2.B1:MKIMA192, at= -156.332+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378208, from= IP2; - MKI.B5L2.B1:MKIMA192, at= -152.368+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378209, from= IP2; - MKI.A5L2.B1:MKIMA192, at= -148.404+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378210, from= IP2; - BPTX.5L2.B1:BPTX, at= -146.1615+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 104665, from= IP2; - BTVSI.A5L2.B1:BTVSI088, at= -145.431+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 181616, from= IP2; - BPMYB.4L2.B1:BPMYB, at= -144.065+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 242818, assembly_id= 102330, from= IP2; -LHCINJ.B1:OMK, at= -143.071+(154-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - MQY.B4L2.B1:MQY, at= -141.371+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2302979, assembly_id= 102330, from= IP2; - MQY.A4L2.B1:MQY, at= -137.59+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2302978, assembly_id= 102330, from= IP2; - MCBYV.B4L2.B1:MCBYV, at= -135.243+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249991, assembly_id= 102330, from= IP2; - MCBYH.4L2.B1:MCBYH, at= -134.096+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249993, assembly_id= 102330, from= IP2; - MCBYV.A4L2.B1:MCBYV, at= -132.95+(154-IP2OFS.B1)*DS, mech_sep= 0.1940, slot_id= 249995, assembly_id= 102330, from= IP2; - MBRC.4L2.B1:MBRC, at= -126.403+(154-IP2OFS.B1)*DS, mech_sep= 0.1880, slot_id= 52819636, assembly_id= 102331, from= IP2; - BPMWI.4L2.B1:BPMWI, at= -119.5975+(154-IP2OFS.B1)*DS, mech_sep= 0.1740, slot_id= 104597, from= IP2; - BPTUH.A4L2.B1:BPTUH, at= -119.128+(154-IP2OFS.B1)*DS, mech_sep= 0.1720, slot_id= 10402842, assembly_id= 377594, from= IP2; - TCTPH.4L2.B1:TCTPH, at= -118.533+(154-IP2OFS.B1)*DS, mech_sep= 0.1699, slot_id= 377594, from= IP2; - BPTDH.A4L2.B1:BPTDH, at= -117.938+(154-IP2OFS.B1)*DS, mech_sep= 0.1720, slot_id= 10429552, assembly_id= 377594, from= IP2; - BPTUV.A4L2.B1:BPTUV, at= -117.128+(154-IP2OFS.B1)*DS, mech_sep= 0.1660, slot_id= 10402670, assembly_id= 5619143, from= IP2; - TCTPV.4L2.B1:TCTPV, at= -116.533+(154-IP2OFS.B1)*DS, mech_sep= 0.1637, slot_id= 5619143, from= IP2; - BPTDV.A4L2.B1:BPTDV, at= -115.938+(154-IP2OFS.B1)*DS, mech_sep= 0.1660, slot_id= 10402672, assembly_id= 5619143, from= IP2; - X2ZDC.4L2:X2ZDC001, at= -113.3245+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 102332, from= IP2; - BRANC.4L2:BRANC, at= -111.5104+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 55373880, from= IP2; - BTVST.A4L2:BTVST065, at= -85.433+(154-IP2OFS.B1)*DS, mech_sep= -0.0800, slot_id= 181617, from= IP2; - TDISA.A4L2.B1:TDISA, at= -82.743+(154-IP2OFS.B1)*DS, mech_sep= 0.0740, slot_id= 47535641, assembly_id= 47535223, from= IP2; - TDISB.A4L2.B1:TDISB, at= -81.163+(154-IP2OFS.B1)*DS, mech_sep= 0.0740, slot_id= 47535649, assembly_id= 47535223, from= IP2; - TDISC.A4L2.B1:TDISC, at= -79.583+(154-IP2OFS.B1)*DS, mech_sep= 0.0740, slot_id= 47535653, assembly_id= 47535223, from= IP2; - TCDD.4L2:TCDD, at= -71.228+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 102334, from= IP2; - BPMSX.4L2.B1:BPMSX003, at= -69.5005+(154-IP2OFS.B1)*DS, mech_sep= 0.0194, slot_id= 43068873, assembly_id= 104598, from= IP2; - MBX.4L2:MBX, at= -63.108+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242833, assembly_id= 102335, from= IP2; - DFBXC.3L2:DFBXC, at= -56.3085+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 104675, from= IP2; - MCOSX.3L2:MCOSX_UNPLUGGED, at= -54.297+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 282240, assembly_id= 102336, from= IP2; - MCOX.3L2:MCOX_UNPLUGGED, at= -54.297+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 282239, assembly_id= 102336, from= IP2; - MCSSX.3L2:MCSSX_UNPLUGGED, at= -54.297+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 282238, assembly_id= 102336, from= IP2; - MCBXH.3L2:MCBXH, at= -53.814+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 249996, assembly_id= 102336, from= IP2; - MCBXV.3L2:MCBXV, at= -53.814+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 249997, assembly_id= 102336, from= IP2; - MCSX.3L2:MCSX, at= -53.814+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 249998, assembly_id= 102336, from= IP2; - MCTX.3L2:MCTX, at= -53.814+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 249999, assembly_id= 102336, from= IP2; - MQXA.3L2:MQXA, at= -50.15+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242835, assembly_id= 102336, from= IP2; - MQSX.3L2:MQSX, at= -46.608+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 282128, assembly_id= 102336, from= IP2; - MQXB.B2L2:MQXB, at= -41.3+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242837, assembly_id= 102337, from= IP2; - MCBXH.2L2:MCBXH, at= -38.019+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250004, assembly_id= 102337, from= IP2; - MCBXV.2L2:MCBXV, at= -38.019+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250005, assembly_id= 102337, from= IP2; - MQXB.A2L2:MQXB, at= -34.8+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242839, assembly_id= 102337, from= IP2; - BPMS.2L2.B1:BPMS_003, at= -31.529+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 43068881, assembly_id= 102337, from= IP2; - MCBXH.1L2:MCBXH_UNPLUGGED, at= -29.842+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250006, assembly_id= 102338, from= IP2; - MCBXV.1L2:MCBXV, at= -29.842+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250007, assembly_id= 102338, from= IP2; - MQXA.1L2:MQXA, at= -26.15+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242842, assembly_id= 102338, from= IP2; - BPMSW.1L2.B1:BPMSW002, at= -21.595+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 10428876, assembly_id= 104599, from= IP2; - BPMSW.1L2.B1_DOROS:BPMSW002, at= -21.595+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 12907563, assembly_id= 104599, from= IP2; - MBXWT.1L2:MBXWT, at= -20.49+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 103994, from= IP2; - MBWMD.1L2:MBWMD, at= -10.75+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242845, from= IP2; - MBLS2.1L2:MBLS2, at= -3.025+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 52895785, assembly_id= 2212849, from= IP2; -IP2:OMK, at= pIP2+IP2OFS.B1*DS; - MBLS2.1R2:MBLS2, at= 3.025+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 52895804, assembly_id= 2212849, from= IP2; - MBAW.1R2:MBAW, at= 9.75+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 104000, from= IP2; - MBXWT.1R2:MBXWT, at= 20.49+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 103996, from= IP2; - BPMSW.1R2.B1:BPMSW002, at= 21.595+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 10428862, assembly_id= 104600, from= IP2; - BPMSW.1R2.B1_DOROS:BPMSW002, at= 21.595+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 12907555, assembly_id= 104600, from= IP2; - MQXA.1R2:MQXA, at= 26.15+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242848, assembly_id= 102339, from= IP2; - MCBXH.1R2:MCBXH, at= 29.842+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250008, assembly_id= 102339, from= IP2; - MCBXV.1R2:MCBXV, at= 29.842+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250009, assembly_id= 102339, from= IP2; - BPMS.2R2.B1:BPMS_003, at= 31.529+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 43068877, assembly_id= 102340, from= IP2; - MQXB.A2R2:MQXB, at= 34.8+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242851, assembly_id= 102340, from= IP2; - MCBXH.2R2:MCBXH, at= 38.019+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250010, assembly_id= 102340, from= IP2; - MCBXV.2R2:MCBXV, at= 38.019+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250011, assembly_id= 102340, from= IP2; - MQXB.B2R2:MQXB, at= 41.3+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242853, assembly_id= 102340, from= IP2; - MQSX.3R2:MQSX, at= 46.608+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 282129, assembly_id= 102341, from= IP2; - MQXA.3R2:MQXA, at= 50.15+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242855, assembly_id= 102341, from= IP2; - MCBXH.3R2:MCBXH, at= 53.814+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250016, assembly_id= 102341, from= IP2; - MCBXV.3R2:MCBXV, at= 53.814+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250017, assembly_id= 102341, from= IP2; - MCSX.3R2:MCSX, at= 53.814+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250018, assembly_id= 102341, from= IP2; - MCTX.3R2:MCTX, at= 53.814+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 250019, assembly_id= 102341, from= IP2; - MCOSX.3R2:MCOSX, at= 54.297+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 282243, assembly_id= 102341, from= IP2; - MCOX.3R2:MCOX, at= 54.297+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 282242, assembly_id= 102341, from= IP2; - MCSSX.3R2:MCSSX, at= 54.297+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 282241, assembly_id= 102341, from= IP2; - DFBXD.3R2:DFBXD, at= 56.3085+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 104676, from= IP2; - MBX.4R2:MBX, at= 63.108+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 242857, assembly_id= 102342, from= IP2; - BPMSX.4R2.B1:BPMSX003, at= 69.3805+(154-IP2OFS.B1)*DS, mech_sep= -0.0194, slot_id= 43068875, assembly_id= 104601, from= IP2; - TCLIA.4R2:TCLIA, at= 71.548+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 357146, from= IP2; - BRANC.4R2:BRANC, at= 111.609+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 55373933, from= IP2; - X2ZDC.4R2:X2ZDC002, at= 113.3245+(154-IP2OFS.B1)*DS, mech_sep= 0, slot_id= 102343, from= IP2; - BPMWB.4R2.B1:BPMWB, at= 119.6735+(154-IP2OFS.B1)*DS, mech_sep= -0.1740, slot_id= 104602, from= IP2; - MBRC.4R2.B1:MBRC, at= 126.403+(154-IP2OFS.B1)*DS, mech_sep= -0.1880, slot_id= 52819660, assembly_id= 102344, from= IP2; - MCBYH.A4R2.B1:MCBYH, at= 132.95+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250021, assembly_id= 102345, from= IP2; - MCBYV.4R2.B1:MCBYV, at= 134.096+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250023, assembly_id= 102345, from= IP2; - MCBYH.B4R2.B1:MCBYH, at= 135.243+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250025, assembly_id= 102345, from= IP2; - MQY.A4R2.B1:MQY, at= 137.59+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303165, assembly_id= 102345, from= IP2; - MQY.B4R2.B1:MQY, at= 141.371+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303164, assembly_id= 102345, from= IP2; - BPMYB.4R2.B1:BPMYB, at= 144.065+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242870, assembly_id= 102345, from= IP2; - MCBCV.A5R2.B1:MCBCV, at= 162.689+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 298305, assembly_id= 102346, from= IP2; - MCBCH.5R2.B1:MCBCH, at= 163.836+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 298308, assembly_id= 102346, from= IP2; - MCBCV.B5R2.B1:MCBCV, at= 164.982+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 298309, assembly_id= 102346, from= IP2; - MQM.A5R2.B1:MQM, at= 167.329+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303033, assembly_id= 102346, from= IP2; - MQM.B5R2.B1:MQM, at= 171.11+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303032, assembly_id= 102346, from= IP2; - BPMR.5R2.B1:BPMR, at= 173.599+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242877, assembly_id= 102346, from= IP2; - TCLIB.6R2.B1:TCLIB, at= 227.654+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 102347, from= IP2; - TCLIM.6R2.B1:TCLIM, at= 234.399+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52998848, assembly_id= 357147, from= IP2; - MCBCH.6R2.B1:MCBCH, at= 236.939+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250033, assembly_id= 102348, from= IP2; - MQML.6R2.B1:MQML, at= 239.981+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307832, assembly_id= 102348, from= IP2; - MQM.6R2.B1:MQM, at= 244.448+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307959, assembly_id= 102348, from= IP2; - BPM.6R2.B1:BPM, at= 246.895+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 298152, assembly_id= 102348, from= IP2; - DFBAD.7R2.B1:DFBAD, at= 257.9575+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52996611, assembly_id= 104677, from= IP2; - BPM_A.7R2.B1:BPM_A, at= 259.77+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 377941, assembly_id= 102350, from= IP2; - MQM.A7R2.B1:MQM, at= 262.215+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307761, assembly_id= 102350, from= IP2; - MQM.B7R2.B1:MQM, at= 265.982+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307776, assembly_id= 102350, from= IP2; - MCBCV.7R2.B1:MCBCV, at= 268.323+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250034, assembly_id= 102350, from= IP2; -S.DS.R2.B1:OMK, at= 269.415+(154-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - MCO.8R2.B1:MCO, at= 269.759+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250038, assembly_id= 102351, from= IP2; - MCD.8R2.B1:MCD, at= 269.7605+(154-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250039, assembly_id= 102351, from= IP2; - MB.A8R2.B1:MB, at= 277.245+(153.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52823902, assembly_id= 102351, from= IP2; - MCS.A8R2.B1:MCS, at= 284.669+(153-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242894, assembly_id= 102351, from= IP2; - MB.B8R2.B1:MB, at= 292.905+(152.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52823926, assembly_id= 102352, from= IP2; - MCS.B8R2.B1:MCS, at= 300.329+(152-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242897, assembly_id= 102352, from= IP2; - BPM.8R2.B1:BPM, at= 301.208+(152-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242899, assembly_id= 102353, from= IP2; - MQML.8R2.B1:MQML, at= 304.353+(152-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348448, assembly_id= 102353, from= IP2; - MCBCH.8R2.B1:MCBCH, at= 307.395+(152-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250040, assembly_id= 102353, from= IP2; - MCO.9R2.B1:MCO, at= 308.824+(152-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250044, assembly_id= 102354, from= IP2; - MCD.9R2.B1:MCD, at= 308.8255+(152-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250045, assembly_id= 102354, from= IP2; - MB.A9R2.B1:MB, at= 316.31+(151.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52823950, assembly_id= 102354, from= IP2; - MCS.A9R2.B1:MCS, at= 323.734+(151-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242906, assembly_id= 102354, from= IP2; - MB.B9R2.B1:MB, at= 331.97+(150.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52823974, assembly_id= 102355, from= IP2; - MCS.B9R2.B1:MCS, at= 339.394+(150-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242909, assembly_id= 102355, from= IP2; - BPM.9R2.B1:BPM, at= 340.274+(150-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242911, assembly_id= 102356, from= IP2; - MQMC.9R2.B1:MQMC, at= 342.25+(150-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307794, assembly_id= 102356, from= IP2; - MQM.9R2.B1:MQM, at= 345.516+(150-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307742, assembly_id= 102356, from= IP2; - MCBCV.9R2.B1:MCBCV, at= 347.857+(150-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250046, assembly_id= 102356, from= IP2; - MCO.10R2.B1:MCO, at= 349.289+(150-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250050, assembly_id= 102357, from= IP2; - MCD.10R2.B1:MCD, at= 349.2905+(150-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250051, assembly_id= 102357, from= IP2; - MB.A10R2.B1:MB, at= 356.775+(149.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52823998, assembly_id= 102357, from= IP2; - MCS.A10R2.B1:MCS, at= 364.199+(149-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242919, assembly_id= 102357, from= IP2; - MB.B10R2.B1:MB, at= 372.435+(148.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824022, assembly_id= 102358, from= IP2; - MCS.B10R2.B1:MCS, at= 379.859+(148-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242922, assembly_id= 102358, from= IP2; - BPM.10R2.B1:BPM, at= 380.738+(148-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242924, assembly_id= 102359, from= IP2; - MQML.10R2.B1:MQML, at= 383.883+(148-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307818, assembly_id= 102359, from= IP2; - MCBCH.10R2.B1:MCBCH, at= 386.925+(148-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250052, assembly_id= 102359, from= IP2; - MCO.11R2.B1:MCO, at= 388.354+(148-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250056, assembly_id= 102360, from= IP2; - MCD.11R2.B1:MCD, at= 388.3555+(148-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250057, assembly_id= 102360, from= IP2; - MB.A11R2.B1:MB, at= 395.84+(147.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824046, assembly_id= 102360, from= IP2; - MCS.A11R2.B1:MCS, at= 403.264+(147-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242931, assembly_id= 102360, from= IP2; - MB.B11R2.B1:MB, at= 411.5+(146.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849462, assembly_id= 102361, from= IP2; - MCS.B11R2.B1:MCS, at= 418.924+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357296, assembly_id= 102361, from= IP2; - LEPLA.11R2.B1:LEPLA, at= 421.984675+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52998090, assembly_id= 52433772, from= IP2; - BPTUH.A11R2.B1:BPTUH, at= 425.36435+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52697708, assembly_id= 52433988, from= IP2; - TCLD.A11R2.B1:TCLD, at= 425.71735+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52506153, assembly_id= 52433988, from= IP2; - BPTDH.A11R2.B1:BPTDH, at= 426.07035+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52697718, assembly_id= 52433988, from= IP2; - LEPLB.11R2.B1:LEPLB, at= 429.450025+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52998114, assembly_id= 52433791, from= IP2; - BPM.11R2.B1:BPM, at= 432.5777+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242936, assembly_id= 102363, from= IP2; -MQ.11R2.B1:MQ, at= 435.1247+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308666, assembly_id= 102363, from= IP2; - MQTLI.11R2.B1:MQTLI, at= 437.4937+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307354, assembly_id= 102363, from= IP2; - MS.11R2.B1:MS, at= 438.5057+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250059, assembly_id= 102363, from= IP2; - MCBV.11R2.B1:MCBV, at= 439.0987+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250061, assembly_id= 102363, from= IP2; -S.ARC.23.B1:OMK, at= 439.8497+(146-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - MCO.A12R2.B1:MCO, at= 440.1937+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250064, assembly_id= 102364, from= IP2; - MCD.A12R2.B1:MCD, at= 440.1952+(146-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250065, assembly_id= 102364, from= IP2; - MB.A12R2.B1:MB, at= 447.6797+(145.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824070, assembly_id= 102364, from= IP2; - MCS.A12R2.B1:MCS, at= 455.1037+(145-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242944, assembly_id= 102364, from= IP2; - MB.B12R2.B1:MB, at= 463.3397+(144.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824094, assembly_id= 102365, from= IP2; - MCS.B12R2.B1:MCS, at= 470.7637+(144-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242947, assembly_id= 102365, from= IP2; - MCO.B12R2.B1:MCO, at= 471.5137+(144-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250068, assembly_id= 102366, from= IP2; - MCD.B12R2.B1:MCD, at= 471.5152+(144-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250069, assembly_id= 102366, from= IP2; - MB.C12R2.B1:MB, at= 478.9997+(143.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824118, assembly_id= 102366, from= IP2; - MCS.C12R2.B1:MCS, at= 486.4237+(143-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242952, assembly_id= 102366, from= IP2; - BPM.12R2.B1:BPM, at= 487.3027+(143-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242954, assembly_id= 102367, from= IP2; - MQT.12R2.B1:MQT, at= 488.0567+(143-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307701, assembly_id= 102367, from= IP2; -MQ.12R2.B1:MQ, at= 490.0647+(143-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308460, assembly_id= 102367, from= IP2; - MS.12R2.B1:MS, at= 491.9597+(143-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250071, assembly_id= 102367, from= IP2; - MCBH.12R2.B1:MCBH, at= 492.5527+(143-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250073, assembly_id= 102367, from= IP2; - MB.A13R2.B1:MB, at= 501.1297+(142.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824142, assembly_id= 102368, from= IP2; - MCS.A13R2.B1:MCS, at= 508.5537+(142-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242960, assembly_id= 102368, from= IP2; - MCO.13R2.B1:MCO, at= 509.3037+(142-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250076, assembly_id= 102369, from= IP2; - MCD.13R2.B1:MCD, at= 509.3052+(142-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250077, assembly_id= 102369, from= IP2; - MB.B13R2.B1:MB, at= 516.7897+(141.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824166, assembly_id= 102369, from= IP2; - MCS.B13R2.B1:MCS, at= 524.2137+(141-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242965, assembly_id= 102369, from= IP2; - MB.C13R2.B1:MB, at= 532.4497+(140.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824190, assembly_id= 102370, from= IP2; - MCS.C13R2.B1:MCS, at= 539.8737+(140-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242968, assembly_id= 102370, from= IP2; - BPM.13R2.B1:BPM, at= 540.7527+(140-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242970, assembly_id= 102371, from= IP2; - MQT.13R2.B1:MQT, at= 541.5067+(140-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307494, assembly_id= 102371, from= IP2; -MQ.13R2.B1:MQ, at= 543.5147+(140-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308489, assembly_id= 102371, from= IP2; - MS.13R2.B1:MS, at= 545.4097+(140-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250079, assembly_id= 102371, from= IP2; - MCBV.13R2.B1:MCBV, at= 546.0027+(140-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250081, assembly_id= 102371, from= IP2; -E.DS.R2.B1:OMK, at= 546.7497+(140-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - MCO.A14R2.B1:MCO, at= 547.0937+(140-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250084, assembly_id= 102372, from= IP2; - MCD.A14R2.B1:MCD, at= 547.0952+(140-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250085, assembly_id= 102372, from= IP2; - MB.A14R2.B1:MB, at= 554.5797+(139.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824214, assembly_id= 102372, from= IP2; - MCS.A14R2.B1:MCS, at= 562.0037+(139-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242978, assembly_id= 102372, from= IP2; - MB.B14R2.B1:MB, at= 570.2397+(138.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824238, assembly_id= 102373, from= IP2; - MCS.B14R2.B1:MCS, at= 577.6637+(138-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242981, assembly_id= 102373, from= IP2; - MCO.B14R2.B1:MCO, at= 578.4137+(138-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250088, assembly_id= 102374, from= IP2; - MCD.B14R2.B1:MCD, at= 578.4152+(138-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250089, assembly_id= 102374, from= IP2; - MB.C14R2.B1:MB, at= 585.8997+(137.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824262, assembly_id= 102374, from= IP2; - MCS.C14R2.B1:MCS, at= 593.3237+(137-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242986, assembly_id= 102374, from= IP2; - BPM.14R2.B1:BPM, at= 594.2027+(137-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242988, assembly_id= 102375, from= IP2; - MQT.14R2.B1:MQT, at= 594.9567+(137-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307525, assembly_id= 102375, from= IP2; -MQ.14R2.B1:MQ, at= 596.9647+(137-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308519, assembly_id= 102375, from= IP2; - MS.14R2.B1:MS, at= 598.8597+(137-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250091, assembly_id= 102375, from= IP2; - MCBH.14R2.B1:MCBH, at= 599.4527+(137-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250093, assembly_id= 102375, from= IP2; - MB.A15R2.B1:MB, at= 608.0297+(136.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824286, assembly_id= 102376, from= IP2; - MCS.A15R2.B1:MCS, at= 615.4537+(136-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242994, assembly_id= 102376, from= IP2; - MCO.15R2.B1:MCO, at= 616.2037+(136-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250096, assembly_id= 102377, from= IP2; - MCD.15R2.B1:MCD, at= 616.2052+(136-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250097, assembly_id= 102377, from= IP2; - MB.B15R2.B1:MB, at= 623.6897+(135.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824310, assembly_id= 102377, from= IP2; - MCS.B15R2.B1:MCS, at= 631.1137+(135-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 242999, assembly_id= 102377, from= IP2; - MB.C15R2.B1:MB, at= 639.3497+(134.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824334, assembly_id= 102378, from= IP2; - MCS.C15R2.B1:MCS, at= 646.7737+(134-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243002, assembly_id= 102378, from= IP2; - BPM.15R2.B1:BPM, at= 647.6527+(134-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243004, assembly_id= 102379, from= IP2; - MQT.15R2.B1:MQT, at= 648.4067+(134-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307557, assembly_id= 102379, from= IP2; -MQ.15R2.B1:MQ, at= 650.4147+(134-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308549, assembly_id= 102379, from= IP2; - MS.15R2.B1:MS, at= 652.3097+(134-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250099, assembly_id= 102379, from= IP2; - MCBV.15R2.B1:MCBV, at= 652.9027+(134-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250101, assembly_id= 102379, from= IP2; - MCO.A16R2.B1:MCO, at= 653.9937+(134-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250104, assembly_id= 102380, from= IP2; - MCD.A16R2.B1:MCD, at= 653.9952+(134-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250105, assembly_id= 102380, from= IP2; - MB.A16R2.B1:MB, at= 661.4797+(133.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824358, assembly_id= 102380, from= IP2; - MCS.A16R2.B1:MCS, at= 668.9037+(133-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243012, assembly_id= 102380, from= IP2; - MB.B16R2.B1:MB, at= 677.1397+(132.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824382, assembly_id= 102381, from= IP2; - MCS.B16R2.B1:MCS, at= 684.5637+(132-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243015, assembly_id= 102381, from= IP2; - MCO.B16R2.B1:MCO, at= 685.3137+(132-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250108, assembly_id= 102382, from= IP2; - MCD.B16R2.B1:MCD, at= 685.3152+(132-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250109, assembly_id= 102382, from= IP2; - MB.C16R2.B1:MB, at= 692.7997+(131.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824406, assembly_id= 102382, from= IP2; - MCS.C16R2.B1:MCS, at= 700.2237+(131-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243020, assembly_id= 102382, from= IP2; - BPM.16R2.B1:BPM, at= 701.1027+(131-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243022, assembly_id= 102383, from= IP2; - MQT.16R2.B1:MQT, at= 701.8567+(131-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307587, assembly_id= 102383, from= IP2; -MQ.16R2.B1:MQ, at= 703.8647+(131-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308342, assembly_id= 102383, from= IP2; - MS.16R2.B1:MS, at= 705.7597+(131-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250111, assembly_id= 102383, from= IP2; - MCBH.16R2.B1:MCBH, at= 706.3527+(131-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250113, assembly_id= 102383, from= IP2; - MB.A17R2.B1:MB, at= 714.9297+(130.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824430, assembly_id= 102384, from= IP2; - MCS.A17R2.B1:MCS, at= 722.3537+(130-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243028, assembly_id= 102384, from= IP2; - MCO.17R2.B1:MCO, at= 723.1037+(130-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250116, assembly_id= 102385, from= IP2; - MCD.17R2.B1:MCD, at= 723.1052+(130-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250117, assembly_id= 102385, from= IP2; - MB.B17R2.B1:MB, at= 730.5897+(129.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824454, assembly_id= 102385, from= IP2; - MCS.B17R2.B1:MCS, at= 738.0137+(129-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243033, assembly_id= 102385, from= IP2; - MB.C17R2.B1:MB, at= 746.2497+(128.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824478, assembly_id= 102386, from= IP2; - MCS.C17R2.B1:MCS, at= 753.6737+(128-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243036, assembly_id= 102386, from= IP2; - BPM.17R2.B1:BPM, at= 754.5527+(128-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243038, assembly_id= 102387, from= IP2; - MQT.17R2.B1:MQT, at= 755.3067+(128-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307381, assembly_id= 102387, from= IP2; -MQ.17R2.B1:MQ, at= 757.3147+(128-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308372, assembly_id= 102387, from= IP2; - MS.17R2.B1:MS, at= 759.2097+(128-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250119, assembly_id= 102387, from= IP2; - MCBV.17R2.B1:MCBV, at= 759.8027+(128-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250121, assembly_id= 102387, from= IP2; - MCO.A18R2.B1:MCO, at= 760.8937+(128-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250124, assembly_id= 102388, from= IP2; - MCD.A18R2.B1:MCD, at= 760.8952+(128-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250125, assembly_id= 102388, from= IP2; - MB.A18R2.B1:MB, at= 768.3797+(127.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824502, assembly_id= 102388, from= IP2; - MCS.A18R2.B1:MCS, at= 775.8037+(127-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243046, assembly_id= 102388, from= IP2; - MB.B18R2.B1:MB, at= 784.0397+(126.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824526, assembly_id= 102389, from= IP2; - MCS.B18R2.B1:MCS, at= 791.4637+(126-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243049, assembly_id= 102389, from= IP2; - MCO.B18R2.B1:MCO, at= 792.2137+(126-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250128, assembly_id= 102390, from= IP2; - MCD.B18R2.B1:MCD, at= 792.2152+(126-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250129, assembly_id= 102390, from= IP2; - MB.C18R2.B1:MB, at= 799.6997+(125.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824550, assembly_id= 102390, from= IP2; - MCS.C18R2.B1:MCS, at= 807.1237+(125-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243054, assembly_id= 102390, from= IP2; - BPM.18R2.B1:BPM, at= 808.0027+(125-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243056, assembly_id= 102391, from= IP2; - MQT.18R2.B1:MQT, at= 808.7567+(125-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307413, assembly_id= 102391, from= IP2; -MQ.18R2.B1:MQ, at= 810.7647+(125-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308402, assembly_id= 102391, from= IP2; - MS.18R2.B1:MS, at= 812.6597+(125-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250131, assembly_id= 102391, from= IP2; - MCBH.18R2.B1:MCBH, at= 813.2527+(125-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250133, assembly_id= 102391, from= IP2; - MB.A19R2.B1:MB, at= 821.8297+(124.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824574, assembly_id= 102392, from= IP2; - MCS.A19R2.B1:MCS, at= 829.2537+(124-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243062, assembly_id= 102392, from= IP2; - MCO.19R2.B1:MCO, at= 830.0037+(124-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250136, assembly_id= 102393, from= IP2; - MCD.19R2.B1:MCD, at= 830.0052+(124-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250137, assembly_id= 102393, from= IP2; - MB.B19R2.B1:MB, at= 837.4897+(123.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824598, assembly_id= 102393, from= IP2; - MCS.B19R2.B1:MCS, at= 844.9137+(123-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243067, assembly_id= 102393, from= IP2; - MB.C19R2.B1:MB, at= 853.1497+(122.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824622, assembly_id= 102394, from= IP2; - MCS.C19R2.B1:MCS, at= 860.5737+(122-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243070, assembly_id= 102394, from= IP2; - BPM.19R2.B1:BPM, at= 861.4527+(122-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243072, assembly_id= 102395, from= IP2; - MQT.19R2.B1:MQT, at= 862.2067+(122-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307444, assembly_id= 102395, from= IP2; -MQ.19R2.B1:MQ, at= 864.2147+(122-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308434, assembly_id= 102395, from= IP2; - MS.19R2.B1:MS, at= 866.1097+(122-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250139, assembly_id= 102395, from= IP2; - MCBV.19R2.B1:MCBV, at= 866.7027+(122-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250141, assembly_id= 102395, from= IP2; - MCO.A20R2.B1:MCO, at= 867.7937+(122-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250144, assembly_id= 102396, from= IP2; - MCD.A20R2.B1:MCD, at= 867.7952+(122-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250145, assembly_id= 102396, from= IP2; - MB.A20R2.B1:MB, at= 875.2797+(121.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824646, assembly_id= 102396, from= IP2; - MCS.A20R2.B1:MCS, at= 882.7037+(121-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243080, assembly_id= 102396, from= IP2; - MB.B20R2.B1:MB, at= 890.9397+(120.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824670, assembly_id= 102397, from= IP2; - MCS.B20R2.B1:MCS, at= 898.3637+(120-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243083, assembly_id= 102397, from= IP2; - MCO.B20R2.B1:MCO, at= 899.1137+(120-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250148, assembly_id= 102398, from= IP2; - MCD.B20R2.B1:MCD, at= 899.1152+(120-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250149, assembly_id= 102398, from= IP2; - MB.C20R2.B1:MB, at= 906.5997+(119.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824694, assembly_id= 102398, from= IP2; - MCS.C20R2.B1:MCS, at= 914.0237+(119-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243088, assembly_id= 102398, from= IP2; - BPM.20R2.B1:BPM, at= 914.9027+(119-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243090, assembly_id= 102399, from= IP2; - MQT.20R2.B1:MQT, at= 915.6567+(119-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307473, assembly_id= 102399, from= IP2; -MQ.20R2.B1:MQ, at= 917.6647+(119-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308225, assembly_id= 102399, from= IP2; - MS.20R2.B1:MS, at= 919.5597+(119-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250151, assembly_id= 102399, from= IP2; - MCBH.20R2.B1:MCBH, at= 920.1527+(119-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250153, assembly_id= 102399, from= IP2; - MB.A21R2.B1:MB, at= 928.7297+(118.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824718, assembly_id= 102400, from= IP2; - MCS.A21R2.B1:MCS, at= 936.1537+(118-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243096, assembly_id= 102400, from= IP2; - MCO.21R2.B1:MCO, at= 936.9037+(118-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250156, assembly_id= 102401, from= IP2; - MCD.21R2.B1:MCD, at= 936.9052+(118-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250157, assembly_id= 102401, from= IP2; - MB.B21R2.B1:MB, at= 944.3897+(117.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824742, assembly_id= 102401, from= IP2; - MCS.B21R2.B1:MCS, at= 951.8137+(117-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243101, assembly_id= 102401, from= IP2; - MB.C21R2.B1:MB, at= 960.0497+(116.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824766, assembly_id= 102402, from= IP2; - MCS.C21R2.B1:MCS, at= 967.4737+(116-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243104, assembly_id= 102402, from= IP2; - BPM.21R2.B1:BPM, at= 968.3527+(116-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243106, assembly_id= 102403, from= IP2; - MQT.21R2.B1:MQT, at= 969.1067+(116-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307271, assembly_id= 102403, from= IP2; -MQ.21R2.B1:MQ, at= 971.1147+(116-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308255, assembly_id= 102403, from= IP2; - MS.21R2.B1:MS, at= 973.0097+(116-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250159, assembly_id= 102403, from= IP2; - MCBV.21R2.B1:MCBV, at= 973.6027+(116-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250161, assembly_id= 102403, from= IP2; - MCO.A22R2.B1:MCO, at= 974.6937+(116-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250164, assembly_id= 102404, from= IP2; - MCD.A22R2.B1:MCD, at= 974.6952+(116-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250165, assembly_id= 102404, from= IP2; - MB.A22R2.B1:MB, at= 982.1797+(115.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824790, assembly_id= 102404, from= IP2; - MCS.A22R2.B1:MCS, at= 989.6037+(115-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243114, assembly_id= 102404, from= IP2; - MB.B22R2.B1:MB, at= 997.8397+(114.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824814, assembly_id= 102405, from= IP2; - MCS.B22R2.B1:MCS, at= 1005.2637+(114-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243117, assembly_id= 102405, from= IP2; - MCO.B22R2.B1:MCO, at= 1006.0137+(114-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250168, assembly_id= 102406, from= IP2; - MCD.B22R2.B1:MCD, at= 1006.0152+(114-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250169, assembly_id= 102406, from= IP2; - MB.C22R2.B1:MB, at= 1013.4997+(113.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824838, assembly_id= 102406, from= IP2; - MCS.C22R2.B1:MCS, at= 1020.9237+(113-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243122, assembly_id= 102406, from= IP2; - BPM.22R2.B1:BPM, at= 1021.8027+(113-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243124, assembly_id= 102407, from= IP2; - MO.22R2.B1:MO, at= 1022.5537+(113-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308815, assembly_id= 102407, from= IP2; -MQ.22R2.B1:MQ, at= 1024.5647+(113-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308287, assembly_id= 102407, from= IP2; - MS.22R2.B1:MS, at= 1026.4597+(113-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250171, assembly_id= 102407, from= IP2; - MCBH.22R2.B1:MCBH, at= 1027.0527+(113-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250173, assembly_id= 102407, from= IP2; - MB.A23R2.B1:MB, at= 1035.6297+(112.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824862, assembly_id= 102408, from= IP2; - MCS.A23R2.B1:MCS, at= 1043.0537+(112-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243130, assembly_id= 102408, from= IP2; - MCO.23R2.B1:MCO, at= 1043.8037+(112-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250176, assembly_id= 102409, from= IP2; - MCD.23R2.B1:MCD, at= 1043.8052+(112-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250177, assembly_id= 102409, from= IP2; - MB.B23R2.B1:MB, at= 1051.2897+(111.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824886, assembly_id= 102409, from= IP2; - MCS.B23R2.B1:MCS, at= 1058.7137+(111-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243135, assembly_id= 102409, from= IP2; - MB.C23R2.B1:MB, at= 1066.9497+(110.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824910, assembly_id= 102410, from= IP2; - MCS.C23R2.B1:MCS, at= 1074.3737+(110-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243138, assembly_id= 102410, from= IP2; - BPM.23R2.B1:BPM, at= 1075.2527+(110-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266501, assembly_id= 102411, from= IP2; - MQS.23R2.B1:MQS, at= 1076.0067+(110-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307638, assembly_id= 102411, from= IP2; -MQ.23R2.B1:MQ, at= 1078.0147+(110-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308318, assembly_id= 102411, from= IP2; - MS.23R2.B1:MS, at= 1079.9097+(110-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250179, assembly_id= 102411, from= IP2; - MCBV.23R2.B1:MCBV, at= 1080.5027+(110-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250181, assembly_id= 102411, from= IP2; - MCO.A24R2.B1:MCO, at= 1081.5937+(110-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250184, assembly_id= 102412, from= IP2; - MCD.A24R2.B1:MCD, at= 1081.5952+(110-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250185, assembly_id= 102412, from= IP2; - MB.A24R2.B1:MB, at= 1089.0797+(109.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824934, assembly_id= 102412, from= IP2; - MCS.A24R2.B1:MCS, at= 1096.5037+(109-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243146, assembly_id= 102412, from= IP2; - MB.B24R2.B1:MB, at= 1104.7397+(108.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824958, assembly_id= 102413, from= IP2; - MCS.B24R2.B1:MCS, at= 1112.1637+(108-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243149, assembly_id= 102413, from= IP2; - MCO.B24R2.B1:MCO, at= 1112.9137+(108-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250188, assembly_id= 102414, from= IP2; - MCD.B24R2.B1:MCD, at= 1112.9152+(108-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250189, assembly_id= 102414, from= IP2; - MB.C24R2.B1:MB, at= 1120.3997+(107.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52824982, assembly_id= 102414, from= IP2; - MCS.C24R2.B1:MCS, at= 1127.8237+(107-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243154, assembly_id= 102414, from= IP2; - BPM.24R2.B1:BPM, at= 1128.7027+(107-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243156, assembly_id= 102415, from= IP2; - MO.24R2.B1:MO, at= 1129.4537+(107-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308845, assembly_id= 102415, from= IP2; -MQ.24R2.B1:MQ, at= 1131.4647+(107-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308108, assembly_id= 102415, from= IP2; - MS.24R2.B1:MS, at= 1133.3597+(107-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250191, assembly_id= 102415, from= IP2; - MCBH.24R2.B1:MCBH, at= 1133.9527+(107-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250193, assembly_id= 102415, from= IP2; - MB.A25R2.B1:MB, at= 1142.5297+(106.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825006, assembly_id= 102416, from= IP2; - MCS.A25R2.B1:MCS, at= 1149.9537+(106-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243162, assembly_id= 102416, from= IP2; - MCO.25R2.B1:MCO, at= 1150.7037+(106-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250196, assembly_id= 102417, from= IP2; - MCD.25R2.B1:MCD, at= 1150.7052+(106-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250197, assembly_id= 102417, from= IP2; - MB.B25R2.B1:MB, at= 1158.1897+(105.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825030, assembly_id= 102417, from= IP2; - MCS.B25R2.B1:MCS, at= 1165.6137+(105-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243167, assembly_id= 102417, from= IP2; - MB.C25R2.B1:MB, at= 1173.8497+(104.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825054, assembly_id= 102418, from= IP2; - MCS.C25R2.B1:MCS, at= 1181.2737+(104-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243170, assembly_id= 102418, from= IP2; - BPM.25R2.B1:BPM, at= 1182.1527+(104-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243172, assembly_id= 102419, from= IP2; - MO.25R2.B1:MO, at= 1182.9037+(104-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308877, assembly_id= 102419, from= IP2; -MQ.25R2.B1:MQ, at= 1184.9147+(104-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308140, assembly_id= 102419, from= IP2; - MS.25R2.B1:MS, at= 1186.8097+(104-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250199, assembly_id= 102419, from= IP2; - MCBV.25R2.B1:MCBV, at= 1187.4027+(104-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250201, assembly_id= 102419, from= IP2; - MCO.A26R2.B1:MCO, at= 1188.4937+(104-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250204, assembly_id= 102420, from= IP2; - MCD.A26R2.B1:MCD, at= 1188.4952+(104-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250205, assembly_id= 102420, from= IP2; - MB.A26R2.B1:MB, at= 1195.9797+(103.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825078, assembly_id= 102420, from= IP2; - MCS.A26R2.B1:MCS, at= 1203.4037+(103-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243180, assembly_id= 102420, from= IP2; - MB.B26R2.B1:MB, at= 1211.6397+(102.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825102, assembly_id= 102421, from= IP2; - MCS.B26R2.B1:MCS, at= 1219.0637+(102-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243183, assembly_id= 102421, from= IP2; - MCO.B26R2.B1:MCO, at= 1219.8137+(102-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250208, assembly_id= 102422, from= IP2; - MCD.B26R2.B1:MCD, at= 1219.8152+(102-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250209, assembly_id= 102422, from= IP2; - MB.C26R2.B1:MB, at= 1227.2997+(101.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825126, assembly_id= 102422, from= IP2; - MCS.C26R2.B1:MCS, at= 1234.7237+(101-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243188, assembly_id= 102422, from= IP2; - BPM.26R2.B1:BPM, at= 1235.6027+(101-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243190, assembly_id= 102423, from= IP2; - MO.26R2.B1:MO, at= 1236.3537+(101-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308909, assembly_id= 102423, from= IP2; -MQ.26R2.B1:MQ, at= 1238.3647+(101-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308171, assembly_id= 102423, from= IP2; - MS.26R2.B1:MS, at= 1240.2597+(101-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250211, assembly_id= 102423, from= IP2; - MCBH.26R2.B1:MCBH, at= 1240.8527+(101-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250213, assembly_id= 102423, from= IP2; - MB.A27R2.B1:MB, at= 1249.4297+(100.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825150, assembly_id= 102424, from= IP2; - MCS.A27R2.B1:MCS, at= 1256.8537+(100-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243196, assembly_id= 102424, from= IP2; - MCO.27R2.B1:MCO, at= 1257.6037+(100-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250216, assembly_id= 102425, from= IP2; - MCD.27R2.B1:MCD, at= 1257.6052+(100-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250217, assembly_id= 102425, from= IP2; - MB.B27R2.B1:MB, at= 1265.0897+(99.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825174, assembly_id= 102425, from= IP2; - MCS.B27R2.B1:MCS, at= 1272.5137+(99-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243201, assembly_id= 102425, from= IP2; - MB.C27R2.B1:MB, at= 1280.7497+(98.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825198, assembly_id= 102426, from= IP2; - MCS.C27R2.B1:MCS, at= 1288.1737+(98-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243204, assembly_id= 102426, from= IP2; - BPM.27R2.B1:BPM, at= 1289.0527+(98-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266503, assembly_id= 102427, from= IP2; - MQS.27R2.B1:MQS, at= 1289.8067+(98-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307669, assembly_id= 102427, from= IP2; -MQ.27R2.B1:MQ, at= 1291.8147+(98-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308201, assembly_id= 102427, from= IP2; - MS.27R2.B1:MS, at= 1293.7097+(98-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250219, assembly_id= 102427, from= IP2; - MCBV.27R2.B1:MCBV, at= 1294.3027+(98-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250221, assembly_id= 102427, from= IP2; - MCO.A28R2.B1:MCO, at= 1295.3937+(98-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250224, assembly_id= 102428, from= IP2; - MCD.A28R2.B1:MCD, at= 1295.3952+(98-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250225, assembly_id= 102428, from= IP2; - MB.A28R2.B1:MB, at= 1302.8797+(97.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825222, assembly_id= 102428, from= IP2; - MCS.A28R2.B1:MCS, at= 1310.3037+(97-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243212, assembly_id= 102428, from= IP2; - MB.B28R2.B1:MB, at= 1318.5397+(96.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825246, assembly_id= 102429, from= IP2; - MCS.B28R2.B1:MCS, at= 1325.9637+(96-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243215, assembly_id= 102429, from= IP2; - MCO.B28R2.B1:MCO, at= 1326.7137+(96-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250228, assembly_id= 102430, from= IP2; - MCD.B28R2.B1:MCD, at= 1326.7152+(96-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250229, assembly_id= 102430, from= IP2; - MB.C28R2.B1:MB, at= 1334.1997+(95.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825270, assembly_id= 102430, from= IP2; - MCS.C28R2.B1:MCS, at= 1341.6237+(95-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243220, assembly_id= 102430, from= IP2; - BPM.28R2.B1:BPM, at= 1342.5027+(95-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243222, assembly_id= 102431, from= IP2; - MO.28R2.B1:MO, at= 1343.2537+(95-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308698, assembly_id= 102431, from= IP2; -MQ.28R2.B1:MQ, at= 1345.2647+(95-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307992, assembly_id= 102431, from= IP2; - MS.28R2.B1:MS, at= 1347.1597+(95-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250231, assembly_id= 102431, from= IP2; - MCBH.28R2.B1:MCBH, at= 1347.7527+(95-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250233, assembly_id= 102431, from= IP2; - MB.A29R2.B1:MB, at= 1356.3297+(94.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825294, assembly_id= 102432, from= IP2; - MCS.A29R2.B1:MCS, at= 1363.7537+(94-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243228, assembly_id= 102432, from= IP2; - MCO.29R2.B1:MCO, at= 1364.5037+(94-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250236, assembly_id= 102433, from= IP2; - MCD.29R2.B1:MCD, at= 1364.5052+(94-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250237, assembly_id= 102433, from= IP2; - MB.B29R2.B1:MB, at= 1371.9897+(93.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825318, assembly_id= 102433, from= IP2; - MCS.B29R2.B1:MCS, at= 1379.4137+(93-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243233, assembly_id= 102433, from= IP2; - MB.C29R2.B1:MB, at= 1387.6497+(92.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825342, assembly_id= 102434, from= IP2; - MCS.C29R2.B1:MCS, at= 1395.0737+(92-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243236, assembly_id= 102434, from= IP2; - BPM.29R2.B1:BPM, at= 1395.9527+(92-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243238, assembly_id= 102435, from= IP2; - MO.29R2.B1:MO, at= 1396.7037+(92-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308730, assembly_id= 102435, from= IP2; -MQ.29R2.B1:MQ, at= 1398.7147+(92-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308023, assembly_id= 102435, from= IP2; - MS.29R2.B1:MS, at= 1400.6097+(92-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250239, assembly_id= 102435, from= IP2; - MCBV.29R2.B1:MCBV, at= 1401.2027+(92-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250241, assembly_id= 102435, from= IP2; - MCO.A30R2.B1:MCO, at= 1402.2937+(92-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250244, assembly_id= 102436, from= IP2; - MCD.A30R2.B1:MCD, at= 1402.2952+(92-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250245, assembly_id= 102436, from= IP2; - MB.A30R2.B1:MB, at= 1409.7797+(91.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825366, assembly_id= 102436, from= IP2; - MCS.A30R2.B1:MCS, at= 1417.2037+(91-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243246, assembly_id= 102436, from= IP2; - MB.B30R2.B1:MB, at= 1425.4397+(90.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825390, assembly_id= 102437, from= IP2; - MCS.B30R2.B1:MCS, at= 1432.8637+(90-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243249, assembly_id= 102437, from= IP2; - MCO.B30R2.B1:MCO, at= 1433.6137+(90-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250248, assembly_id= 102438, from= IP2; - MCD.B30R2.B1:MCD, at= 1433.6152+(90-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250249, assembly_id= 102438, from= IP2; - MB.C30R2.B1:MB, at= 1441.0997+(89.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825414, assembly_id= 102438, from= IP2; - MCS.C30R2.B1:MCS, at= 1448.5237+(89-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243254, assembly_id= 102438, from= IP2; - BPM.30R2.B1:BPM, at= 1449.4027+(89-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243256, assembly_id= 102439, from= IP2; - MO.30R2.B1:MO, at= 1450.1537+(89-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308761, assembly_id= 102439, from= IP2; -MQ.30R2.B1:MQ, at= 1452.1647+(89-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308053, assembly_id= 102439, from= IP2; - MSS.30R2.B1:MSS, at= 1454.0597+(89-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250251, assembly_id= 102439, from= IP2; - MCBH.30R2.B1:MCBH, at= 1454.6527+(89-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250253, assembly_id= 102439, from= IP2; - MB.A31R2.B1:MB, at= 1463.2297+(88.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825438, assembly_id= 102440, from= IP2; - MCS.A31R2.B1:MCS, at= 1470.6537+(88-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243262, assembly_id= 102440, from= IP2; - MCO.31R2.B1:MCO, at= 1471.4037+(88-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250256, assembly_id= 102441, from= IP2; - MCD.31R2.B1:MCD, at= 1471.4052+(88-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250257, assembly_id= 102441, from= IP2; - MB.B31R2.B1:MB, at= 1478.8897+(87.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825462, assembly_id= 102441, from= IP2; - MCS.B31R2.B1:MCS, at= 1486.3137+(87-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243267, assembly_id= 102441, from= IP2; - MB.C31R2.B1:MB, at= 1494.5497+(86.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825486, assembly_id= 102442, from= IP2; - MCS.C31R2.B1:MCS, at= 1501.9737+(86-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243270, assembly_id= 102442, from= IP2; - BPM.31R2.B1:BPM, at= 1502.8527+(86-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243272, assembly_id= 102443, from= IP2; - MO.31R2.B1:MO, at= 1503.6037+(86-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308791, assembly_id= 102443, from= IP2; -MQ.31R2.B1:MQ, at= 1505.6147+(86-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308083, assembly_id= 102443, from= IP2; - MS.31R2.B1:MS, at= 1507.5097+(86-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250259, assembly_id= 102443, from= IP2; - MCBV.31R2.B1:MCBV, at= 1508.1027+(86-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250261, assembly_id= 102443, from= IP2; -S.CELL.23.B1:OMK, at= 1508.8497+(86-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - MCO.A32R2.B1:MCO, at= 1509.1937+(86-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250264, assembly_id= 102444, from= IP2; - MCD.A32R2.B1:MCD, at= 1509.1952+(86-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250265, assembly_id= 102444, from= IP2; - MB.A32R2.B1:MB, at= 1516.6797+(85.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825510, assembly_id= 102444, from= IP2; - MCS.A32R2.B1:MCS, at= 1524.1037+(85-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243280, assembly_id= 102444, from= IP2; - MB.B32R2.B1:MB, at= 1532.3397+(84.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825534, assembly_id= 102445, from= IP2; - MCS.B32R2.B1:MCS, at= 1539.7637+(84-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243283, assembly_id= 102445, from= IP2; - MCO.B32R2.B1:MCO, at= 1540.5137+(84-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250268, assembly_id= 102446, from= IP2; - MCD.B32R2.B1:MCD, at= 1540.5152+(84-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250269, assembly_id= 102446, from= IP2; - MB.C32R2.B1:MB, at= 1547.9997+(83.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825558, assembly_id= 102446, from= IP2; - MCS.C32R2.B1:MCS, at= 1555.4237+(83-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243288, assembly_id= 102446, from= IP2; - BPM.32R2.B1:BPM, at= 1556.3027+(83-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243290, assembly_id= 102447, from= IP2; - MO.32R2.B1:MO, at= 1557.0537+(83-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308583, assembly_id= 102447, from= IP2; -MQ.32R2.B1:MQ, at= 1559.0647+(83-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348458, assembly_id= 102447, from= IP2; - MS.32R2.B1:MS, at= 1560.9597+(83-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250271, assembly_id= 102447, from= IP2; - MCBH.32R2.B1:MCBH, at= 1561.5527+(83-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250273, assembly_id= 102447, from= IP2; - MB.A33R2.B1:MB, at= 1570.1297+(82.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825582, assembly_id= 102448, from= IP2; - MCS.A33R2.B1:MCS, at= 1577.5537+(82-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243296, assembly_id= 102448, from= IP2; - MCO.33R2.B1:MCO, at= 1578.3037+(82-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250276, assembly_id= 102449, from= IP2; - MCD.33R2.B1:MCD, at= 1578.3052+(82-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250277, assembly_id= 102449, from= IP2; - MB.B33R2.B1:MB, at= 1585.7897+(81.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825606, assembly_id= 102449, from= IP2; - MCS.B33R2.B1:MCS, at= 1593.2137+(81-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243301, assembly_id= 102449, from= IP2; - MB.C33R2.B1:MB, at= 1601.4497+(80.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825630, assembly_id= 102450, from= IP2; - MCS.C33R2.B1:MCS, at= 1608.8737+(80-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243304, assembly_id= 102450, from= IP2; - BPM.33R2.B1:BPM, at= 1609.7527+(80-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243306, assembly_id= 102451, from= IP2; - MO.33R2.B1:MO, at= 1610.5037+(80-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308614, assembly_id= 102451, from= IP2; -MQ.33R2.B1:MQ, at= 1612.5147+(80-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307904, assembly_id= 102451, from= IP2; - MS.33R2.B1:MS, at= 1614.4097+(80-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250279, assembly_id= 102451, from= IP2; - MCBV.33R2.B1:MCBV, at= 1615.0027+(80-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250281, assembly_id= 102451, from= IP2; -E.CELL.23.B1:OMK, at= 1615.7497+(80-IP2OFS.B1)*DS, slot_id= 100932, from= IP2; - MCO.A34R2.B1:MCO, at= 1616.0937+(80-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250284, assembly_id= 102452, from= IP2; - MCD.A34R2.B1:MCD, at= 1616.0952+(80-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250285, assembly_id= 102452, from= IP2; - MB.A34R2.B1:MB, at= 1623.5797+(79.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825654, assembly_id= 102452, from= IP2; - MCS.A34R2.B1:MCS, at= 1631.0037+(79-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243314, assembly_id= 102452, from= IP2; - MB.B34R2.B1:MB, at= 1639.2397+(78.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825678, assembly_id= 102453, from= IP2; - MCS.B34R2.B1:MCS, at= 1646.6637+(78-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243317, assembly_id= 102453, from= IP2; - MCO.B34R2.B1:MCO, at= 1647.4137+(78-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250288, assembly_id= 102454, from= IP2; - MCD.B34R2.B1:MCD, at= 1647.4152+(78-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250289, assembly_id= 102454, from= IP2; - MB.C34R2.B1:MB, at= 1654.8997+(77.5-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825702, assembly_id= 102454, from= IP2; - MCS.C34R2.B1:MCS, at= 1662.3237+(77-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243322, assembly_id= 102454, from= IP2; - BPM.34R2.B1:BPM, at= 1663.2027+(77-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243324, assembly_id= 102455, from= IP2; - MO.34R2.B1:MO, at= 1663.9537+(77-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308629, assembly_id= 102455, from= IP2; -MQ.34R2.B1:MQ, at= 1665.9647+(77-IP2OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307919, assembly_id= 102455, from= IP2; - MSS.34L3.B1:MSS, at= -1664.5007+(77-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250291, assembly_id= 102455, from= IP3; - MCBH.34L3.B1:MCBH, at= -1663.9077+(77-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250293, assembly_id= 102455, from= IP3; - MB.C34L3.B1:MB, at= -1655.3307+(76.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825726, assembly_id= 102456, from= IP3; - MCS.C34L3.B1:MCS, at= -1647.9067+(76-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243330, assembly_id= 102456, from= IP3; - MCO.34L3.B1:MCO, at= -1647.1567+(76-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250296, assembly_id= 102457, from= IP3; - MCD.34L3.B1:MCD, at= -1647.1552+(76-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250297, assembly_id= 102457, from= IP3; - MB.B34L3.B1:MB, at= -1639.6707+(75.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825750, assembly_id= 102457, from= IP3; - MCS.B34L3.B1:MCS, at= -1632.2467+(75-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243335, assembly_id= 102457, from= IP3; - MB.A34L3.B1:MB, at= -1624.0107+(74.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825774, assembly_id= 102458, from= IP3; - MCS.A34L3.B1:MCS, at= -1616.5867+(74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243338, assembly_id= 102458, from= IP3; - BPM.33L3.B1:BPM, at= -1615.7077+(74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243340, assembly_id= 102459, from= IP3; - MO.33L3.B1:MO, at= -1614.9567+(74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308601, assembly_id= 102459, from= IP3; -MQ.33L3.B1:MQ, at= -1612.9457+(74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307891, assembly_id= 102459, from= IP3; - MS.33L3.B1:MS, at= -1611.0507+(74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250299, assembly_id= 102459, from= IP3; - MCBV.33L3.B1:MCBV, at= -1610.4577+(74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250301, assembly_id= 102459, from= IP3; - MCO.B33L3.B1:MCO, at= -1609.3667+(74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250304, assembly_id= 102460, from= IP3; - MCD.B33L3.B1:MCD, at= -1609.3652+(74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250305, assembly_id= 102460, from= IP3; - MB.C33L3.B1:MB, at= -1601.8807+(73.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825798, assembly_id= 102460, from= IP3; - MCS.C33L3.B1:MCS, at= -1594.4567+(73-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243348, assembly_id= 102460, from= IP3; - MB.B33L3.B1:MB, at= -1586.2207+(72.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825822, assembly_id= 102461, from= IP3; - MCS.B33L3.B1:MCS, at= -1578.7967+(72-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243351, assembly_id= 102461, from= IP3; - MCO.A33L3.B1:MCO, at= -1578.0467+(72-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250308, assembly_id= 102462, from= IP3; - MCD.A33L3.B1:MCD, at= -1578.0452+(72-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250309, assembly_id= 102462, from= IP3; - MB.A33L3.B1:MB, at= -1570.5607+(71.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825846, assembly_id= 102462, from= IP3; - MCS.A33L3.B1:MCS, at= -1563.1367+(71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243356, assembly_id= 102462, from= IP3; - BPM.32L3.B1:BPM, at= -1562.2577+(71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243358, assembly_id= 102463, from= IP3; - MO.32L3.B1:MO, at= -1561.5067+(71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308569, assembly_id= 102463, from= IP3; -MQ.32L3.B1:MQ, at= -1559.4957+(71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348457, assembly_id= 102463, from= IP3; - MSS.32L3.B1:MSS, at= -1557.6007+(71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250311, assembly_id= 102463, from= IP3; - MCBH.32L3.B1:MCBH, at= -1557.0077+(71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250313, assembly_id= 102463, from= IP3; - MB.C32L3.B1:MB, at= -1548.4307+(70.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825870, assembly_id= 102464, from= IP3; - MCS.C32L3.B1:MCS, at= -1541.0067+(70-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243364, assembly_id= 102464, from= IP3; - MCO.32L3.B1:MCO, at= -1540.2567+(70-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250316, assembly_id= 102465, from= IP3; - MCD.32L3.B1:MCD, at= -1540.2552+(70-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250317, assembly_id= 102465, from= IP3; - MB.B32L3.B1:MB, at= -1532.7707+(69.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825894, assembly_id= 102465, from= IP3; - MCS.B32L3.B1:MCS, at= -1525.3467+(69-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243369, assembly_id= 102465, from= IP3; - MB.A32L3.B1:MB, at= -1517.1107+(68.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825918, assembly_id= 102466, from= IP3; - MCS.A32L3.B1:MCS, at= -1509.6867+(68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243372, assembly_id= 102466, from= IP3; - BPM.31L3.B1:BPM, at= -1508.8077+(68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243374, assembly_id= 102467, from= IP3; - MO.31L3.B1:MO, at= -1508.0567+(68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308778, assembly_id= 102467, from= IP3; -MQ.31L3.B1:MQ, at= -1506.0457+(68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308070, assembly_id= 102467, from= IP3; - MS.31L3.B1:MS, at= -1504.1507+(68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250319, assembly_id= 102467, from= IP3; - MCBV.31L3.B1:MCBV, at= -1503.5577+(68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250321, assembly_id= 102467, from= IP3; - MCO.B31L3.B1:MCO, at= -1502.4667+(68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250324, assembly_id= 102468, from= IP3; - MCD.B31L3.B1:MCD, at= -1502.4652+(68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250325, assembly_id= 102468, from= IP3; - MB.C31L3.B1:MB, at= -1494.9807+(67.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825942, assembly_id= 102468, from= IP3; - MCS.C31L3.B1:MCS, at= -1487.5567+(67-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243382, assembly_id= 102468, from= IP3; - MB.B31L3.B1:MB, at= -1479.3207+(66.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825966, assembly_id= 102469, from= IP3; - MCS.B31L3.B1:MCS, at= -1471.8967+(66-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243385, assembly_id= 102469, from= IP3; - MCO.A31L3.B1:MCO, at= -1471.1467+(66-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250328, assembly_id= 102470, from= IP3; - MCD.A31L3.B1:MCD, at= -1471.1452+(66-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250329, assembly_id= 102470, from= IP3; - MB.A31L3.B1:MB, at= -1463.6607+(65.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52825990, assembly_id= 102470, from= IP3; - MCS.A31L3.B1:MCS, at= -1456.2367+(65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243390, assembly_id= 102470, from= IP3; - BPM.30L3.B1:BPM, at= -1455.3577+(65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243392, assembly_id= 102471, from= IP3; - MO.30L3.B1:MO, at= -1454.6067+(65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308748, assembly_id= 102471, from= IP3; -MQ.30L3.B1:MQ, at= -1452.5957+(65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308040, assembly_id= 102471, from= IP3; - MS.30L3.B1:MS, at= -1450.7007+(65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250331, assembly_id= 102471, from= IP3; - MCBH.30L3.B1:MCBH, at= -1450.1077+(65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250333, assembly_id= 102471, from= IP3; - MB.C30L3.B1:MB, at= -1441.5307+(64.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826014, assembly_id= 102472, from= IP3; - MCS.C30L3.B1:MCS, at= -1434.1067+(64-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243398, assembly_id= 102472, from= IP3; - MCO.30L3.B1:MCO, at= -1433.3567+(64-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250336, assembly_id= 102473, from= IP3; - MCD.30L3.B1:MCD, at= -1433.3552+(64-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250337, assembly_id= 102473, from= IP3; - MB.B30L3.B1:MB, at= -1425.8707+(63.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826038, assembly_id= 102473, from= IP3; - MCS.B30L3.B1:MCS, at= -1418.4467+(63-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243403, assembly_id= 102473, from= IP3; - MB.A30L3.B1:MB, at= -1410.2107+(62.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826062, assembly_id= 102474, from= IP3; - MCS.A30L3.B1:MCS, at= -1402.7867+(62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243406, assembly_id= 102474, from= IP3; - BPM.29L3.B1:BPM, at= -1401.9077+(62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243408, assembly_id= 102475, from= IP3; - MO.29L3.B1:MO, at= -1401.1567+(62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308716, assembly_id= 102475, from= IP3; -MQ.29L3.B1:MQ, at= -1399.1457+(62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308010, assembly_id= 102475, from= IP3; - MS.29L3.B1:MS, at= -1397.2507+(62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250339, assembly_id= 102475, from= IP3; - MCBV.29L3.B1:MCBV, at= -1396.6577+(62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250341, assembly_id= 102475, from= IP3; - MCO.B29L3.B1:MCO, at= -1395.5667+(62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250344, assembly_id= 102476, from= IP3; - MCD.B29L3.B1:MCD, at= -1395.5652+(62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250345, assembly_id= 102476, from= IP3; - MB.C29L3.B1:MB, at= -1388.0807+(61.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826086, assembly_id= 102476, from= IP3; - MCS.C29L3.B1:MCS, at= -1380.6567+(61-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243416, assembly_id= 102476, from= IP3; - MB.B29L3.B1:MB, at= -1372.4207+(60.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826110, assembly_id= 102477, from= IP3; - MCS.B29L3.B1:MCS, at= -1364.9967+(60-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243419, assembly_id= 102477, from= IP3; - MCO.A29L3.B1:MCO, at= -1364.2467+(60-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250348, assembly_id= 102478, from= IP3; - MCD.A29L3.B1:MCD, at= -1364.2452+(60-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250349, assembly_id= 102478, from= IP3; - MB.A29L3.B1:MB, at= -1356.7607+(59.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826134, assembly_id= 102478, from= IP3; - MCS.A29L3.B1:MCS, at= -1349.3367+(59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243424, assembly_id= 102478, from= IP3; - BPM.28L3.B1:BPM, at= -1348.4577+(59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243426, assembly_id= 102479, from= IP3; - MO.28L3.B1:MO, at= -1347.7067+(59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308685, assembly_id= 102479, from= IP3; -MQ.28L3.B1:MQ, at= -1345.6957+(59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307978, assembly_id= 102479, from= IP3; - MSS.28L3.B1:MSS, at= -1343.8007+(59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250351, assembly_id= 102479, from= IP3; - MCBH.28L3.B1:MCBH, at= -1343.2077+(59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250353, assembly_id= 102479, from= IP3; - MB.C28L3.B1:MB, at= -1334.6307+(58.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826158, assembly_id= 102480, from= IP3; - MCS.C28L3.B1:MCS, at= -1327.2067+(58-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243432, assembly_id= 102480, from= IP3; - MCO.28L3.B1:MCO, at= -1326.4567+(58-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250356, assembly_id= 102481, from= IP3; - MCD.28L3.B1:MCD, at= -1326.4552+(58-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250357, assembly_id= 102481, from= IP3; - MB.B28L3.B1:MB, at= -1318.9707+(57.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826182, assembly_id= 102481, from= IP3; - MCS.B28L3.B1:MCS, at= -1311.5467+(57-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243437, assembly_id= 102481, from= IP3; - MB.A28L3.B1:MB, at= -1303.3107+(56.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826206, assembly_id= 102482, from= IP3; - MCS.A28L3.B1:MCS, at= -1295.8867+(56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243440, assembly_id= 102482, from= IP3; - BPM.27L3.B1:BPM, at= -1295.0077+(56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266505, assembly_id= 102483, from= IP3; - MQS.27L3.B1:MQS, at= -1294.2537+(56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307655, assembly_id= 102483, from= IP3; -MQ.27L3.B1:MQ, at= -1292.2457+(56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308188, assembly_id= 102483, from= IP3; - MS.27L3.B1:MS, at= -1290.3507+(56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250359, assembly_id= 102483, from= IP3; - MCBV.27L3.B1:MCBV, at= -1289.7577+(56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250361, assembly_id= 102483, from= IP3; - MCO.B27L3.B1:MCO, at= -1288.6667+(56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250364, assembly_id= 102484, from= IP3; - MCD.B27L3.B1:MCD, at= -1288.6652+(56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250365, assembly_id= 102484, from= IP3; - MB.C27L3.B1:MB, at= -1281.1807+(55.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826230, assembly_id= 102484, from= IP3; - MCS.C27L3.B1:MCS, at= -1273.7567+(55-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243448, assembly_id= 102484, from= IP3; - MB.B27L3.B1:MB, at= -1265.5207+(54.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826254, assembly_id= 102485, from= IP3; - MCS.B27L3.B1:MCS, at= -1258.0967+(54-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243451, assembly_id= 102485, from= IP3; - MCO.A27L3.B1:MCO, at= -1257.3467+(54-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250368, assembly_id= 102486, from= IP3; - MCD.A27L3.B1:MCD, at= -1257.3452+(54-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250369, assembly_id= 102486, from= IP3; - MB.A27L3.B1:MB, at= -1249.8607+(53.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826278, assembly_id= 102486, from= IP3; - MCS.A27L3.B1:MCS, at= -1242.4367+(53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243456, assembly_id= 102486, from= IP3; - BPM.26L3.B1:BPM, at= -1241.5577+(53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243458, assembly_id= 102487, from= IP3; - MO.26L3.B1:MO, at= -1240.8067+(53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308895, assembly_id= 102487, from= IP3; -MQ.26L3.B1:MQ, at= -1238.7957+(53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308158, assembly_id= 102487, from= IP3; - MS.26L3.B1:MS, at= -1236.9007+(53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250371, assembly_id= 102487, from= IP3; - MCBH.26L3.B1:MCBH, at= -1236.3077+(53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250373, assembly_id= 102487, from= IP3; - MB.C26L3.B1:MB, at= -1227.7307+(52.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826302, assembly_id= 102488, from= IP3; - MCS.C26L3.B1:MCS, at= -1220.3067+(52-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243464, assembly_id= 102488, from= IP3; - MCO.26L3.B1:MCO, at= -1219.5567+(52-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250376, assembly_id= 102489, from= IP3; - MCD.26L3.B1:MCD, at= -1219.5552+(52-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250377, assembly_id= 102489, from= IP3; - MB.B26L3.B1:MB, at= -1212.0707+(51.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826326, assembly_id= 102489, from= IP3; - MCS.B26L3.B1:MCS, at= -1204.6467+(51-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243469, assembly_id= 102489, from= IP3; - MB.A26L3.B1:MB, at= -1196.4107+(50.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826350, assembly_id= 102490, from= IP3; - MCS.A26L3.B1:MCS, at= -1188.9867+(50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243472, assembly_id= 102490, from= IP3; - BPM.25L3.B1:BPM, at= -1188.1077+(50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243474, assembly_id= 102491, from= IP3; - MO.25L3.B1:MO, at= -1187.3567+(50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308863, assembly_id= 102491, from= IP3; -MQ.25L3.B1:MQ, at= -1185.3457+(50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308126, assembly_id= 102491, from= IP3; - MS.25L3.B1:MS, at= -1183.4507+(50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250379, assembly_id= 102491, from= IP3; - MCBV.25L3.B1:MCBV, at= -1182.8577+(50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250381, assembly_id= 102491, from= IP3; - MCO.B25L3.B1:MCO, at= -1181.7667+(50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250384, assembly_id= 102492, from= IP3; - MCD.B25L3.B1:MCD, at= -1181.7652+(50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250385, assembly_id= 102492, from= IP3; - MB.C25L3.B1:MB, at= -1174.2807+(49.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826374, assembly_id= 102492, from= IP3; - MCS.C25L3.B1:MCS, at= -1166.8567+(49-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243482, assembly_id= 102492, from= IP3; - MB.B25L3.B1:MB, at= -1158.6207+(48.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826398, assembly_id= 102493, from= IP3; - MCS.B25L3.B1:MCS, at= -1151.1967+(48-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243485, assembly_id= 102493, from= IP3; - MCO.A25L3.B1:MCO, at= -1150.4467+(48-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250388, assembly_id= 102494, from= IP3; - MCD.A25L3.B1:MCD, at= -1150.4452+(48-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250389, assembly_id= 102494, from= IP3; - MB.A25L3.B1:MB, at= -1142.9607+(47.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826422, assembly_id= 102494, from= IP3; - MCS.A25L3.B1:MCS, at= -1135.5367+(47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243490, assembly_id= 102494, from= IP3; - BPM.24L3.B1:BPM, at= -1134.6577+(47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243492, assembly_id= 102495, from= IP3; - MO.24L3.B1:MO, at= -1133.9067+(47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308832, assembly_id= 102495, from= IP3; -MQ.24L3.B1:MQ, at= -1131.8957+(47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308094, assembly_id= 102495, from= IP3; - MS.24L3.B1:MS, at= -1130.0007+(47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250391, assembly_id= 102495, from= IP3; - MCBH.24L3.B1:MCBH, at= -1129.4077+(47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250393, assembly_id= 102495, from= IP3; - MB.C24L3.B1:MB, at= -1120.8307+(46.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826446, assembly_id= 102496, from= IP3; - MCS.C24L3.B1:MCS, at= -1113.4067+(46-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243498, assembly_id= 102496, from= IP3; - MCO.24L3.B1:MCO, at= -1112.6567+(46-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250396, assembly_id= 102497, from= IP3; - MCD.24L3.B1:MCD, at= -1112.6552+(46-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250397, assembly_id= 102497, from= IP3; - MB.B24L3.B1:MB, at= -1105.1707+(45.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826470, assembly_id= 102497, from= IP3; - MCS.B24L3.B1:MCS, at= -1097.7467+(45-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243503, assembly_id= 102497, from= IP3; - MB.A24L3.B1:MB, at= -1089.5107+(44.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826494, assembly_id= 102498, from= IP3; - MCS.A24L3.B1:MCS, at= -1082.0867+(44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243506, assembly_id= 102498, from= IP3; - BPM.23L3.B1:BPM, at= -1081.2077+(44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266507, assembly_id= 102499, from= IP3; - MQS.23L3.B1:MQS, at= -1080.4537+(44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348449, assembly_id= 102499, from= IP3; -MQ.23L3.B1:MQ, at= -1078.4457+(44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308305, assembly_id= 102499, from= IP3; - MS.23L3.B1:MS, at= -1076.5507+(44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250399, assembly_id= 102499, from= IP3; - MCBV.23L3.B1:MCBV, at= -1075.9577+(44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250401, assembly_id= 102499, from= IP3; - MCO.B23L3.B1:MCO, at= -1074.8667+(44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250404, assembly_id= 102500, from= IP3; - MCD.B23L3.B1:MCD, at= -1074.8652+(44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250405, assembly_id= 102500, from= IP3; - MB.C23L3.B1:MB, at= -1067.3807+(43.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826518, assembly_id= 102500, from= IP3; - MCS.C23L3.B1:MCS, at= -1059.9567+(43-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243514, assembly_id= 102500, from= IP3; - MB.B23L3.B1:MB, at= -1051.7207+(42.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826542, assembly_id= 102501, from= IP3; - MCS.B23L3.B1:MCS, at= -1044.2967+(42-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243517, assembly_id= 102501, from= IP3; - MCO.A23L3.B1:MCO, at= -1043.5467+(42-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250408, assembly_id= 102502, from= IP3; - MCD.A23L3.B1:MCD, at= -1043.5452+(42-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250409, assembly_id= 102502, from= IP3; - MB.A23L3.B1:MB, at= -1036.0607+(41.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826566, assembly_id= 102502, from= IP3; - MCS.A23L3.B1:MCS, at= -1028.6367+(41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243522, assembly_id= 102502, from= IP3; - BPM.22L3.B1:BPM, at= -1027.7577+(41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243524, assembly_id= 102503, from= IP3; - MO.22L3.B1:MO, at= -1027.0067+(41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2309039, assembly_id= 102503, from= IP3; -MQ.22L3.B1:MQ, at= -1024.9957+(41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308273, assembly_id= 102503, from= IP3; - MS.22L3.B1:MS, at= -1023.1007+(41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250411, assembly_id= 102503, from= IP3; - MCBH.22L3.B1:MCBH, at= -1022.5077+(41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250413, assembly_id= 102503, from= IP3; - MB.C22L3.B1:MB, at= -1013.9307+(40.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826590, assembly_id= 102504, from= IP3; - MCS.C22L3.B1:MCS, at= -1006.5067+(40-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243530, assembly_id= 102504, from= IP3; - MCO.22L3.B1:MCO, at= -1005.7567+(40-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250416, assembly_id= 102505, from= IP3; - MCD.22L3.B1:MCD, at= -1005.7552+(40-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250417, assembly_id= 102505, from= IP3; - MB.B22L3.B1:MB, at= -998.2707+(39.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826614, assembly_id= 102505, from= IP3; - MCS.B22L3.B1:MCS, at= -990.8467+(39-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243535, assembly_id= 102505, from= IP3; - MB.A22L3.B1:MB, at= -982.6107+(38.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826638, assembly_id= 102506, from= IP3; - MCS.A22L3.B1:MCS, at= -975.1867+(38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243538, assembly_id= 102506, from= IP3; - BPM.21L3.B1:BPM, at= -974.3077+(38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243540, assembly_id= 102507, from= IP3; - MQT.21L3.B1:MQT, at= -973.5537+(38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307490, assembly_id= 102507, from= IP3; -MQ.21L3.B1:MQ, at= -971.5457+(38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308242, assembly_id= 102507, from= IP3; - MS.21L3.B1:MS, at= -969.6507+(38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250419, assembly_id= 102507, from= IP3; - MCBV.21L3.B1:MCBV, at= -969.0577+(38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250421, assembly_id= 102507, from= IP3; - MCO.B21L3.B1:MCO, at= -967.9667+(38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250424, assembly_id= 102508, from= IP3; - MCD.B21L3.B1:MCD, at= -967.9652+(38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250425, assembly_id= 102508, from= IP3; - MB.C21L3.B1:MB, at= -960.4807+(37.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826662, assembly_id= 102508, from= IP3; - MCS.C21L3.B1:MCS, at= -953.0567+(37-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243548, assembly_id= 102508, from= IP3; - MB.B21L3.B1:MB, at= -944.8207+(36.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826686, assembly_id= 102509, from= IP3; - MCS.B21L3.B1:MCS, at= -937.3967+(36-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243551, assembly_id= 102509, from= IP3; - MCO.A21L3.B1:MCO, at= -936.6467+(36-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250428, assembly_id= 102510, from= IP3; - MCD.A21L3.B1:MCD, at= -936.6452+(36-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250429, assembly_id= 102510, from= IP3; - MB.A21L3.B1:MB, at= -929.1607+(35.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826710, assembly_id= 102510, from= IP3; - MCS.A21L3.B1:MCS, at= -921.7367+(35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243556, assembly_id= 102510, from= IP3; - BPM.20L3.B1:BPM, at= -920.8577+(35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243558, assembly_id= 102511, from= IP3; - MQT.20L3.B1:MQT, at= -920.1037+(35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307460, assembly_id= 102511, from= IP3; -MQ.20L3.B1:MQ, at= -918.0957+(35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308212, assembly_id= 102511, from= IP3; - MS.20L3.B1:MS, at= -916.2007+(35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250431, assembly_id= 102511, from= IP3; - MCBH.20L3.B1:MCBH, at= -915.6077+(35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250433, assembly_id= 102511, from= IP3; - MB.C20L3.B1:MB, at= -907.0307+(34.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826734, assembly_id= 102512, from= IP3; - MCS.C20L3.B1:MCS, at= -899.6067+(34-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243564, assembly_id= 102512, from= IP3; - MCO.20L3.B1:MCO, at= -898.8567+(34-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250436, assembly_id= 102513, from= IP3; - MCD.20L3.B1:MCD, at= -898.8552+(34-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250437, assembly_id= 102513, from= IP3; - MB.B20L3.B1:MB, at= -891.3707+(33.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826758, assembly_id= 102513, from= IP3; - MCS.B20L3.B1:MCS, at= -883.9467+(33-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243569, assembly_id= 102513, from= IP3; - MB.A20L3.B1:MB, at= -875.7107+(32.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826782, assembly_id= 102514, from= IP3; - MCS.A20L3.B1:MCS, at= -868.2867+(32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243572, assembly_id= 102514, from= IP3; - BPM.19L3.B1:BPM, at= -867.4077+(32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243574, assembly_id= 102515, from= IP3; - MQT.19L3.B1:MQT, at= -866.6537+(32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307431, assembly_id= 102515, from= IP3; -MQ.19L3.B1:MQ, at= -864.6457+(32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308420, assembly_id= 102515, from= IP3; - MS.19L3.B1:MS, at= -862.7507+(32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250439, assembly_id= 102515, from= IP3; - MCBV.19L3.B1:MCBV, at= -862.1577+(32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250441, assembly_id= 102515, from= IP3; - MCO.B19L3.B1:MCO, at= -861.0667+(32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250444, assembly_id= 102516, from= IP3; - MCD.B19L3.B1:MCD, at= -861.0652+(32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250445, assembly_id= 102516, from= IP3; - MB.C19L3.B1:MB, at= -853.5807+(31.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826806, assembly_id= 102516, from= IP3; - MCS.C19L3.B1:MCS, at= -846.1567+(31-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243582, assembly_id= 102516, from= IP3; - MB.B19L3.B1:MB, at= -837.9207+(30.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826830, assembly_id= 102517, from= IP3; - MCS.B19L3.B1:MCS, at= -830.4967+(30-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243585, assembly_id= 102517, from= IP3; - MCO.A19L3.B1:MCO, at= -829.7467+(30-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250448, assembly_id= 102518, from= IP3; - MCD.A19L3.B1:MCD, at= -829.7452+(30-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250449, assembly_id= 102518, from= IP3; - MB.A19L3.B1:MB, at= -822.2607+(29.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826854, assembly_id= 102518, from= IP3; - MCS.A19L3.B1:MCS, at= -814.8367+(29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243590, assembly_id= 102518, from= IP3; - BPM.18L3.B1:BPM, at= -813.9577+(29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243592, assembly_id= 102519, from= IP3; - MQT.18L3.B1:MQT, at= -813.2037+(29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307399, assembly_id= 102519, from= IP3; -MQ.18L3.B1:MQ, at= -811.1957+(29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308389, assembly_id= 102519, from= IP3; - MS.18L3.B1:MS, at= -809.3007+(29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250451, assembly_id= 102519, from= IP3; - MCBH.18L3.B1:MCBH, at= -808.7077+(29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250453, assembly_id= 102519, from= IP3; - MB.C18L3.B1:MB, at= -800.1307+(28.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826878, assembly_id= 102520, from= IP3; - MCS.C18L3.B1:MCS, at= -792.7067+(28-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243598, assembly_id= 102520, from= IP3; - MCO.18L3.B1:MCO, at= -791.9567+(28-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250456, assembly_id= 102521, from= IP3; - MCD.18L3.B1:MCD, at= -791.9552+(28-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250457, assembly_id= 102521, from= IP3; - MB.B18L3.B1:MB, at= -784.4707+(27.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826902, assembly_id= 102521, from= IP3; - MCS.B18L3.B1:MCS, at= -777.0467+(27-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243603, assembly_id= 102521, from= IP3; - MB.A18L3.B1:MB, at= -768.8107+(26.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826926, assembly_id= 102522, from= IP3; - MCS.A18L3.B1:MCS, at= -761.3867+(26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243606, assembly_id= 102522, from= IP3; - BPM.17L3.B1:BPM, at= -760.5077+(26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243608, assembly_id= 102523, from= IP3; - MQT.17L3.B1:MQT, at= -759.7537+(26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307604, assembly_id= 102523, from= IP3; -MQ.17L3.B1:MQ, at= -757.7457+(26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308359, assembly_id= 102523, from= IP3; - MS.17L3.B1:MS, at= -755.8507+(26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250459, assembly_id= 102523, from= IP3; - MCBV.17L3.B1:MCBV, at= -755.2577+(26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250461, assembly_id= 102523, from= IP3; - MCO.B17L3.B1:MCO, at= -754.1667+(26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250464, assembly_id= 102524, from= IP3; - MCD.B17L3.B1:MCD, at= -754.1652+(26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250465, assembly_id= 102524, from= IP3; - MB.C17L3.B1:MB, at= -746.6807+(25.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826950, assembly_id= 102524, from= IP3; - MCS.C17L3.B1:MCS, at= -739.2567+(25-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243616, assembly_id= 102524, from= IP3; - MB.B17L3.B1:MB, at= -731.0207+(24.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826974, assembly_id= 102525, from= IP3; - MCS.B17L3.B1:MCS, at= -723.5967+(24-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243619, assembly_id= 102525, from= IP3; - MCO.A17L3.B1:MCO, at= -722.8467+(24-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250468, assembly_id= 102526, from= IP3; - MCD.A17L3.B1:MCD, at= -722.8452+(24-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250469, assembly_id= 102526, from= IP3; - MB.A17L3.B1:MB, at= -715.3607+(23.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52826998, assembly_id= 102526, from= IP3; - MCS.A17L3.B1:MCS, at= -707.9367+(23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243624, assembly_id= 102526, from= IP3; - BPM.16L3.B1:BPM, at= -707.0577+(23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243626, assembly_id= 102527, from= IP3; - MQT.16L3.B1:MQT, at= -706.3037+(23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307574, assembly_id= 102527, from= IP3; -MQ.16L3.B1:MQ, at= -704.2957+(23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308329, assembly_id= 102527, from= IP3; - MS.16L3.B1:MS, at= -702.4007+(23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250471, assembly_id= 102527, from= IP3; - MCBH.16L3.B1:MCBH, at= -701.8077+(23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250473, assembly_id= 102527, from= IP3; - MB.C16L3.B1:MB, at= -693.2307+(22.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827022, assembly_id= 102528, from= IP3; - MCS.C16L3.B1:MCS, at= -685.8067+(22-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243632, assembly_id= 102528, from= IP3; - MCO.16L3.B1:MCO, at= -685.0567+(22-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250476, assembly_id= 102529, from= IP3; - MCD.16L3.B1:MCD, at= -685.0552+(22-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250477, assembly_id= 102529, from= IP3; - MB.B16L3.B1:MB, at= -677.5707+(21.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827046, assembly_id= 102529, from= IP3; - MCS.B16L3.B1:MCS, at= -670.1467+(21-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243637, assembly_id= 102529, from= IP3; - MB.A16L3.B1:MB, at= -661.9107+(20.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827070, assembly_id= 102530, from= IP3; - MCS.A16L3.B1:MCS, at= -654.4867+(20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243640, assembly_id= 102530, from= IP3; - BPM.15L3.B1:BPM, at= -653.6077+(20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243642, assembly_id= 102531, from= IP3; - MQT.15L3.B1:MQT, at= -652.8537+(20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307543, assembly_id= 102531, from= IP3; -MQ.15L3.B1:MQ, at= -650.8457+(20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308536, assembly_id= 102531, from= IP3; - MS.15L3.B1:MS, at= -648.9507+(20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250479, assembly_id= 102531, from= IP3; - MCBV.15L3.B1:MCBV, at= -648.3577+(20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250481, assembly_id= 102531, from= IP3; - MCO.B15L3.B1:MCO, at= -647.2667+(20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250484, assembly_id= 102532, from= IP3; - MCD.B15L3.B1:MCD, at= -647.2652+(20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250485, assembly_id= 102532, from= IP3; - MB.C15L3.B1:MB, at= -639.7807+(19.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827094, assembly_id= 102532, from= IP3; - MCS.C15L3.B1:MCS, at= -632.3567+(19-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243650, assembly_id= 102532, from= IP3; - MB.B15L3.B1:MB, at= -624.1207+(18.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827118, assembly_id= 102533, from= IP3; - MCS.B15L3.B1:MCS, at= -616.6967+(18-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243653, assembly_id= 102533, from= IP3; - MCO.A15L3.B1:MCO, at= -615.9467+(18-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250488, assembly_id= 102534, from= IP3; - MCD.A15L3.B1:MCD, at= -615.9452+(18-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250489, assembly_id= 102534, from= IP3; - MB.A15L3.B1:MB, at= -608.4607+(17.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827142, assembly_id= 102534, from= IP3; - MCS.A15L3.B1:MCS, at= -601.0367+(17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243658, assembly_id= 102534, from= IP3; - BPM.14L3.B1:BPM, at= -600.1577+(17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243660, assembly_id= 102535, from= IP3; - MQT.14L3.B1:MQT, at= -599.4037+(17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307511, assembly_id= 102535, from= IP3; -MQ.14L3.B1:MQ, at= -597.3957+(17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308506, assembly_id= 102535, from= IP3; - MS.14L3.B1:MS, at= -595.5007+(17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250491, assembly_id= 102535, from= IP3; - MCBH.14L3.B1:MCBH, at= -594.9077+(17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250493, assembly_id= 102535, from= IP3; - MB.C14L3.B1:MB, at= -586.3307+(16.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827166, assembly_id= 102536, from= IP3; - MCS.C14L3.B1:MCS, at= -578.9067+(16-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243666, assembly_id= 102536, from= IP3; - MCO.14L3.B1:MCO, at= -578.1567+(16-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250496, assembly_id= 102537, from= IP3; - MCD.14L3.B1:MCD, at= -578.1552+(16-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250497, assembly_id= 102537, from= IP3; - MB.B14L3.B1:MB, at= -570.6707+(15.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827190, assembly_id= 102537, from= IP3; - MCS.B14L3.B1:MCS, at= -563.2467+(15-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243671, assembly_id= 102537, from= IP3; - MB.A14L3.B1:MB, at= -555.0107+(14.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827214, assembly_id= 102538, from= IP3; - MCS.A14L3.B1:MCS, at= -547.5867+(14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243674, assembly_id= 102538, from= IP3; -S.DS.L3.B1:OMK, at= -547.1807+(14-IP3OFS.B1)*DS, slot_id= 100932, from= IP3; - BPM.13L3.B1:BPM, at= -546.7077+(14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243676, assembly_id= 102539, from= IP3; - MQT.13L3.B1:MQT, at= -545.9537+(14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307719, assembly_id= 102539, from= IP3; -MQ.13L3.B1:MQ, at= -543.9457+(14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308476, assembly_id= 102539, from= IP3; - MS.13L3.B1:MS, at= -542.0507+(14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250499, assembly_id= 102539, from= IP3; - MCBV.13L3.B1:MCBV, at= -541.4577+(14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250501, assembly_id= 102539, from= IP3; - MCO.B13L3.B1:MCO, at= -540.3667+(14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250504, assembly_id= 102540, from= IP3; - MCD.B13L3.B1:MCD, at= -540.3652+(14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250505, assembly_id= 102540, from= IP3; - MB.C13L3.B1:MB, at= -532.8807+(13.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827238, assembly_id= 102540, from= IP3; - MCS.C13L3.B1:MCS, at= -525.4567+(13-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243684, assembly_id= 102540, from= IP3; - MB.B13L3.B1:MB, at= -517.2207+(12.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827262, assembly_id= 102541, from= IP3; - MCS.B13L3.B1:MCS, at= -509.7967+(12-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243687, assembly_id= 102541, from= IP3; - MCO.A13L3.B1:MCO, at= -509.0467+(12-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250508, assembly_id= 102542, from= IP3; - MCD.A13L3.B1:MCD, at= -509.0452+(12-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250509, assembly_id= 102542, from= IP3; - MB.A13L3.B1:MB, at= -501.5607+(11.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827286, assembly_id= 102542, from= IP3; - MCS.A13L3.B1:MCS, at= -494.1367+(11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243692, assembly_id= 102542, from= IP3; - BPM.12L3.B1:BPM, at= -493.2577+(11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243694, assembly_id= 102543, from= IP3; - MQT.12L3.B1:MQT, at= -492.5037+(11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307687, assembly_id= 102543, from= IP3; -MQ.12L3.B1:MQ, at= -490.4957+(11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308683, assembly_id= 102543, from= IP3; - MS.12L3.B1:MS, at= -488.6007+(11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250511, assembly_id= 102543, from= IP3; - MCBH.12L3.B1:MCBH, at= -488.0077+(11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250513, assembly_id= 102543, from= IP3; - MB.C12L3.B1:MB, at= -479.4307+(10.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827310, assembly_id= 102544, from= IP3; - MCS.C12L3.B1:MCS, at= -472.0067+(10-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243700, assembly_id= 102544, from= IP3; - MCO.12L3.B1:MCO, at= -471.2567+(10-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250516, assembly_id= 102545, from= IP3; - MCD.12L3.B1:MCD, at= -471.2552+(10-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250517, assembly_id= 102545, from= IP3; - MB.B12L3.B1:MB, at= -463.7707+(9.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827334, assembly_id= 102545, from= IP3; - MCS.B12L3.B1:MCS, at= -456.3467+(9-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243705, assembly_id= 102545, from= IP3; - MB.A12L3.B1:MB, at= -448.1107+(8.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827358, assembly_id= 102546, from= IP3; - MCS.A12L3.B1:MCS, at= -440.6867+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243708, assembly_id= 102546, from= IP3; -E.ARC.23.B1:OMK, at= -440.2807+(8-IP3OFS.B1)*DS, slot_id= 100932, from= IP3; - BPM.11L3.B1:BPM, at= -439.8077+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243710, assembly_id= 102547, from= IP3; -MQ.11L3.B1:MQ, at= -437.2607+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308653, assembly_id= 102547, from= IP3; - MQTLI.11L3.B1:MQTLI, at= -434.8917+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307341, assembly_id= 102547, from= IP3; - MS.11L3.B1:MS, at= -433.8797+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250519, assembly_id= 102547, from= IP3; - MCBV.11L3.B1:MCBV, at= -433.2867+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250521, assembly_id= 102547, from= IP3; - LEFL.11L3.B1:LEFL, at= -425.67735+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52997826, assembly_id= 102548, from= IP3; - MCO.11L3.B1:MCO, at= -418.475+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250524, assembly_id= 102549, from= IP3; - MCD.11L3.B1:MCD, at= -418.4735+(8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250525, assembly_id= 102549, from= IP3; - MB.B11L3.B1:MB, at= -410.989+(7.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827382, assembly_id= 102549, from= IP3; - MCS.B11L3.B1:MCS, at= -403.565+(7-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243718, assembly_id= 102549, from= IP3; - MB.A11L3.B1:MB, at= -395.329+(6.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827406, assembly_id= 102550, from= IP3; - MCS.A11L3.B1:MCS, at= -387.905+(6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243721, assembly_id= 102550, from= IP3; - BPM.10L3.B1:BPM, at= -387.026+(6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243723, assembly_id= 102551, from= IP3; -MQ.10L3.B1:MQ, at= -384.479+(6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308642, assembly_id= 102551, from= IP3; - MQTLI.10L3.B1:MQTLI, at= -382.11+(6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307330, assembly_id= 102551, from= IP3; - MCBCH.10L3.B1:MCBCH, at= -380.82+(6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250527, assembly_id= 102551, from= IP3; - MCO.10L3.B1:MCO, at= -379.41+(6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250530, assembly_id= 102552, from= IP3; - MCD.10L3.B1:MCD, at= -379.4085+(6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250531, assembly_id= 102552, from= IP3; - MB.B10L3.B1:MB, at= -371.924+(5.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827430, assembly_id= 102552, from= IP3; - MCS.B10L3.B1:MCS, at= -364.5+(5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243731, assembly_id= 102552, from= IP3; - MB.A10L3.B1:MB, at= -356.264+(4.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827454, assembly_id= 102553, from= IP3; - MCS.A10L3.B1:MCS, at= -348.84+(4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243734, assembly_id= 102553, from= IP3; - BPM.9L3.B1:BPM, at= -347.96+(4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243736, assembly_id= 102554, from= IP3; -MQ.9L3.B1:MQ, at= -345.413+(4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307947, assembly_id= 102554, from= IP3; - MQTLI.B9L3.B1:MQTLI, at= -343.044+(4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307157, assembly_id= 102554, from= IP3; - MQTLI.A9L3.B1:MQTLI, at= -341.589+(4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307150, assembly_id= 102554, from= IP3; - MCBCV.9L3.B1:MCBCV, at= -340.299+(4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250533, assembly_id= 102554, from= IP3; - MCO.9L3.B1:MCO, at= -338.945+(4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250536, assembly_id= 102555, from= IP3; - MCD.9L3.B1:MCD, at= -338.9435+(4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250537, assembly_id= 102555, from= IP3; - MB.B9L3.B1:MB, at= -331.459+(3.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827478, assembly_id= 102555, from= IP3; - MCS.B9L3.B1:MCS, at= -324.035+(3-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243745, assembly_id= 102555, from= IP3; - MB.A9L3.B1:MB, at= -315.799+(2.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827502, assembly_id= 102556, from= IP3; - MCS.A9L3.B1:MCS, at= -308.375+(2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243748, assembly_id= 102556, from= IP3; - BPM.8L3.B1:BPM, at= -307.496+(2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243750, assembly_id= 102557, from= IP3; -MQ.8L3.B1:MQ, at= -304.949+(2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307940, assembly_id= 102557, from= IP3; - MQTLI.8L3.B1:MQTLI, at= -302.58+(2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307142, assembly_id= 102557, from= IP3; - MCBCH.8L3.B1:MCBCH, at= -301.29+(2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250539, assembly_id= 102557, from= IP3; - MCO.8L3.B1:MCO, at= -299.88+(2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250542, assembly_id= 102558, from= IP3; - MCD.8L3.B1:MCD, at= -299.8785+(2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250543, assembly_id= 102558, from= IP3; - MB.B8L3.B1:MB, at= -292.394+(1.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827526, assembly_id= 102558, from= IP3; - MCS.B8L3.B1:MCS, at= -284.97+(1-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243758, assembly_id= 102558, from= IP3; - MB.A8L3.B1:MB, at= -276.734+(.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849486, assembly_id= 102559, from= IP3; - MCS.A8L3.B1:MCS, at= -269.31+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357299, assembly_id= 102559, from= IP3; -E.DS.L3.B1:OMK, at= -268.904+(0-IP3OFS.B1)*DS, slot_id= 100932, from= IP3; - BPM.7L3.B1:BPM, at= -268.431+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243763, assembly_id= 102560, from= IP3; -MQ.7L3.B1:MQ, at= -265.884+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307932, assembly_id= 102560, from= IP3; - MQTLI.7L3.B1:MQTLI, at= -263.515+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307368, assembly_id= 102560, from= IP3; - MCBCV.7L3.B1:MCBCV, at= -262.225+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250545, assembly_id= 102560, from= IP3; - DFBAE.7L3.B1:DFBAE, at= -260.0715+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52996635, assembly_id= 104678, from= IP3; - BTVM.7L3.B1:BTVM, at= -220.116+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 181618, from= IP3; - MCBCH.6L3.B1:MCBCH, at= -205.73+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250547, assembly_id= 102561, from= IP3; - MQTLH.F6L3.B1:MQTLH, at= -204.439+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307323, assembly_id= 102561, from= IP3; - MQTLH.E6L3.B1:MQTLH, at= -202.983+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307315, assembly_id= 102561, from= IP3; - MQTLH.D6L3.B1:MQTLH, at= -201.527+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307308, assembly_id= 102561, from= IP3; - MQTLH.C6L3.B1:MQTLH, at= -200.072+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307300, assembly_id= 102561, from= IP3; - MQTLH.B6L3.B1:MQTLH, at= -198.617+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307293, assembly_id= 102561, from= IP3; - MQTLH.A6L3.B1:MQTLH, at= -197.162+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307285, assembly_id= 102561, from= IP3; - BPM.6L3.B1:BPM, at= -195.792+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 377943, assembly_id= 102561, from= IP3; - MBW.F6L3.B1:MBW, at= -191.466+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52819798, from= IP3; - MBW.E6L3.B1:MBW, at= -187.231+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52819822, from= IP3; - MBW.D6L3.B1:MBW, at= -182.996+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52819846, from= IP3; - TCP.6L3.B1:TCP, at= -177.0495+(0-IP3OFS.B1)*DS, mech_sep= -0.2056, slot_id= 102563, from= IP3; - TCAPA.6L3.B1:TCAPA020, at= -168.173+(0-IP3OFS.B1)*DS, mech_sep= -0.2156, slot_id= 691018, from= IP3; - MBW.C6L3.B1:MBW, at= -164.973+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 52819870, from= IP3; - MBW.B6L3.B1:MBW, at= -160.738+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 52819894, from= IP3; - MBW.A6L3.B1:MBW, at= -156.503+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 52819918, from= IP3; - BPMWG.A5L3.B1:BPMWG, at= -154.0875+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 6703842, from= IP3; - TCAPD.5L3.B1:TCAPD, at= -153.058+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 6703861, from= IP3; - MQWA.E5L3.B1:MQWA, at= -150.548+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241745, from= IP3; - MQWA.D5L3.B1:MQWA, at= -146.748+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241746, from= IP3; - TCSG.5L3.B1:TCSG, at= -143.728+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 297854, from= IP3; - MQWA.C5L3.B1:MQWA, at= -138.708+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241747, from= IP3; - MQWB.5L3.B1:MQWB, at= -134.908+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241744, from= IP3; - MQWA.B5L3.B1:MQWA, at= -131.108+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241748, from= IP3; - MQWA.A5L3.B1:MQWA, at= -127.308+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241749, from= IP3; - BPMW.5L3.B1:BPMW_015, at= -125.1175+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 297848, from= IP3; - MCBWV.5L3.B1:MCBWV, at= -121.323+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 297846, from= IP3; - BPMWE.4L3.B1:BPMWE003, at= -49.9895+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 297872, from= IP3; - MQWA.E4L3.B1:MQWA, at= -47.875+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241751, from= IP3; - MQWA.D4L3.B1:MQWA, at= -39.835+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241752, from= IP3; - MQWA.C4L3.B1:MQWA, at= -36.035+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241753, from= IP3; - MQWB.4L3.B1:MQWB, at= -32.235+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241750, from= IP3; - MQWA.B4L3.B1:MQWA, at= -28.435+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241754, from= IP3; - MQWA.A4L3.B1:MQWA, at= -24.635+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241755, from= IP3; - BPMW.4L3.B1:BPMW_010, at= -22.4445+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 297862, from= IP3; - MCBWH.4L3.B1:MCBWH, at= -18.7+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 297859, from= IP3; -IP3:OMK, at= pIP3+IP3OFS.B1*DS; - MCBWV.4R3.B1:MCBWV, at= 21.03+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 134540, from= IP3; - BPMW.4R3.B1:BPMW_014, at= 22.5205+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 134740, from= IP3; - MQWA.A4R3.B1:MQWA, at= 24.635+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241757, from= IP3; - MQWA.B4R3.B1:MQWA, at= 28.435+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241758, from= IP3; - MQWB.4R3.B1:MQWB, at= 32.235+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241756, from= IP3; - MQWA.C4R3.B1:MQWA, at= 36.035+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241759, from= IP3; - MQWA.D4R3.B1:MQWA, at= 39.835+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241760, from= IP3; - TCSG.4R3.B1:TCSG, at= 42.855+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 114804, from= IP3; - MQWA.E4R3.B1:MQWA, at= 47.875+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241761, from= IP3; - BPMWE.4R3.B1:BPMWE007, at= 50.0655+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 134741, from= IP3; - TCSG.A5R3.B1:TCSG, at= 54.2+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 102571, from= IP3; - TCSG.B5R3.B1:TCSG, at= 60.02+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 102573, from= IP3; - TCLA.A5R3.B1:TCLA, at= 90.5+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 479337, from= IP3; - TCLA.B5R3.B1:TCLA, at= 92.5+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 479338, from= IP3; - MCBWH.5R3.B1:MCBWH, at= 123.653+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 134548, from= IP3; - BPMW.5R3.B1:BPMW_013, at= 125.1935+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 134743, from= IP3; - MQWA.A5R3.B1:MQWA, at= 127.308+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241763, from= IP3; - MQWA.B5R3.B1:MQWA, at= 131.108+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241764, from= IP3; - MQWB.5R3.B1:MQWB, at= 134.908+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241762, from= IP3; - MQWA.C5R3.B1:MQWA, at= 138.708+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241765, from= IP3; - MQWA.D5R3.B1:MQWA, at= 146.748+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241766, from= IP3; - MQWA.E5R3.B1:MQWA, at= 150.548+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 241767, from= IP3; - BPMWJ.A5R3.B1:BPMWJ, at= 153.9115+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 6703880, from= IP3; - MBW.A6R3.B1:MBW, at= 156.351+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 52819942, from= IP3; - MBW.B6R3.B1:MBW, at= 160.586+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 52819966, from= IP3; - MBW.C6R3.B1:MBW, at= 164.821+(0-IP3OFS.B1)*DS, mech_sep= -0.2240, slot_id= 52819990, from= IP3; - TCLA.6R3.B1:TCLA, at= 179.0495+(0-IP3OFS.B1)*DS, mech_sep= -0.2028, slot_id= 479340, from= IP3; - MBW.D6R3.B1:MBW, at= 182.844+(0-IP3OFS.B1)*DS, mech_sep= -0.1986, slot_id= 52820014, from= IP3; - MBW.E6R3.B1:MBW, at= 187.079+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52820038, from= IP3; - MBW.F6R3.B1:MBW, at= 191.314+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52820062, from= IP3; - BPMWC.6R3.B1:BPMWC, at= 193.7295+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 104603, from= IP3; - MCBCV.6R3.B1:MCBCV, at= 195.87+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250549, assembly_id= 102578, from= IP3; - MQTLH.A6R3.B1:MQTLH, at= 197.161+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307289, assembly_id= 102578, from= IP3; - MQTLH.B6R3.B1:MQTLH, at= 198.617+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307297, assembly_id= 102578, from= IP3; - MQTLH.C6R3.B1:MQTLH, at= 200.073+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307304, assembly_id= 102578, from= IP3; - MQTLH.D6R3.B1:MQTLH, at= 201.528+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348435, assembly_id= 102578, from= IP3; - MQTLH.E6R3.B1:MQTLH, at= 202.983+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307319, assembly_id= 102578, from= IP3; - MQTLH.F6R3.B1:MQTLH, at= 204.438+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307326, assembly_id= 102578, from= IP3; - BPMR.6R3.B1:BPMR, at= 205.808+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 377945, assembly_id= 102578, from= IP3; - TCLA.7R3.B1:TCLA, at= 250.455+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 479341, from= IP3; - DFBAF.7R3.B1:DFBAF, at= 259.8215+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52996659, assembly_id= 104679, from= IP3; - BPM_A.7R3.B1:BPM_A, at= 261.632+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 377948, assembly_id= 102579, from= IP3; -MQ.7R3.B1:MQ, at= 264.179+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307936, assembly_id= 102579, from= IP3; - MQTLI.7R3.B1:MQTLI, at= 266.548+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307372, assembly_id= 102579, from= IP3; - MCBCH.7R3.B1:MCBCH, at= 267.838+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250551, assembly_id= 102579, from= IP3; -S.DS.R3.B1:OMK, at= 268.904+(0-IP3OFS.B1)*DS, slot_id= 100932, from= IP3; - MCO.8R3.B1:MCO, at= 269.248+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250554, assembly_id= 102580, from= IP3; - MCD.8R3.B1:MCD, at= 269.2495+(0-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250555, assembly_id= 102580, from= IP3; - MB.A8R3.B1:MB, at= 276.734+(-.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827550, assembly_id= 102580, from= IP3; - MCS.A8R3.B1:MCS, at= 284.158+(-1-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243824, assembly_id= 102580, from= IP3; - MB.B8R3.B1:MB, at= 292.394+(-1.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827574, assembly_id= 102581, from= IP3; - MCS.B8R3.B1:MCS, at= 299.818+(-2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243827, assembly_id= 102581, from= IP3; - BPM.8R3.B1:BPM, at= 300.697+(-2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243829, assembly_id= 102582, from= IP3; -MQ.8R3.B1:MQ, at= 303.244+(-2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307943, assembly_id= 102582, from= IP3; - MQTLI.8R3.B1:MQTLI, at= 305.613+(-2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307146, assembly_id= 102582, from= IP3; - MCBCV.8R3.B1:MCBCV, at= 306.903+(-2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250557, assembly_id= 102582, from= IP3; - MCO.9R3.B1:MCO, at= 308.313+(-2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250560, assembly_id= 102583, from= IP3; - MCD.9R3.B1:MCD, at= 308.3145+(-2-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250561, assembly_id= 102583, from= IP3; - MB.A9R3.B1:MB, at= 315.799+(-2.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827598, assembly_id= 102583, from= IP3; - MCS.A9R3.B1:MCS, at= 323.223+(-3-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243837, assembly_id= 102583, from= IP3; - MB.B9R3.B1:MB, at= 331.459+(-3.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827622, assembly_id= 102584, from= IP3; - MCS.B9R3.B1:MCS, at= 338.883+(-4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243840, assembly_id= 102584, from= IP3; - BPM.9R3.B1:BPM, at= 339.763+(-4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243842, assembly_id= 102585, from= IP3; -MQ.9R3.B1:MQ, at= 342.31+(-4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307951, assembly_id= 102585, from= IP3; - MQTLI.A9R3.B1:MQTLI, at= 344.679+(-4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307154, assembly_id= 102585, from= IP3; - MQTLI.B9R3.B1:MQTLI, at= 346.134+(-4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307161, assembly_id= 102585, from= IP3; - MCBCH.9R3.B1:MCBCH, at= 347.424+(-4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250563, assembly_id= 102585, from= IP3; - MCO.10R3.B1:MCO, at= 348.778+(-4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250566, assembly_id= 102586, from= IP3; - MCD.10R3.B1:MCD, at= 348.7795+(-4-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250567, assembly_id= 102586, from= IP3; - MB.A10R3.B1:MB, at= 356.264+(-4.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827646, assembly_id= 102586, from= IP3; - MCS.A10R3.B1:MCS, at= 363.688+(-5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243851, assembly_id= 102586, from= IP3; - MB.B10R3.B1:MB, at= 371.924+(-5.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827670, assembly_id= 102587, from= IP3; - MCS.B10R3.B1:MCS, at= 379.348+(-6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243854, assembly_id= 102587, from= IP3; - BPM.10R3.B1:BPM, at= 380.227+(-6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243856, assembly_id= 102588, from= IP3; -MQ.10R3.B1:MQ, at= 382.774+(-6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308646, assembly_id= 102588, from= IP3; - MQTLI.10R3.B1:MQTLI, at= 385.143+(-6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307334, assembly_id= 102588, from= IP3; - MCBCV.10R3.B1:MCBCV, at= 386.433+(-6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250569, assembly_id= 102588, from= IP3; - MCO.11R3.B1:MCO, at= 387.843+(-6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250572, assembly_id= 102589, from= IP3; - MCD.11R3.B1:MCD, at= 387.8445+(-6-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250573, assembly_id= 102589, from= IP3; - MB.A11R3.B1:MB, at= 395.329+(-6.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827694, assembly_id= 102589, from= IP3; - MCS.A11R3.B1:MCS, at= 402.753+(-7-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243864, assembly_id= 102589, from= IP3; - MB.B11R3.B1:MB, at= 410.989+(-7.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849510, assembly_id= 102590, from= IP3; - MCS.B11R3.B1:MCS, at= 418.413+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357303, assembly_id= 102590, from= IP3; - LEEL.11R3.B1:LEEL, at= 425.67735+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52997802, assembly_id= 102591, from= IP3; - BPM.11R3.B1:BPM, at= 433.0087+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243869, assembly_id= 102592, from= IP3; -MQ.11R3.B1:MQ, at= 435.5557+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308668, assembly_id= 102592, from= IP3; - MQTLI.11R3.B1:MQTLI, at= 437.9247+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307356, assembly_id= 102592, from= IP3; - MS.11R3.B1:MS, at= 438.9367+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250575, assembly_id= 102592, from= IP3; - MCBH.11R3.B1:MCBH, at= 439.5297+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250577, assembly_id= 102592, from= IP3; -S.ARC.34.B1:OMK, at= 440.2807+(-8-IP3OFS.B1)*DS, slot_id= 100932, from= IP3; - MCO.A12R3.B1:MCO, at= 440.6247+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250580, assembly_id= 102593, from= IP3; - MCD.A12R3.B1:MCD, at= 440.6262+(-8-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250581, assembly_id= 102593, from= IP3; - MB.A12R3.B1:MB, at= 448.1107+(-8.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827718, assembly_id= 102593, from= IP3; - MCS.A12R3.B1:MCS, at= 455.5347+(-9-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243877, assembly_id= 102593, from= IP3; - MB.B12R3.B1:MB, at= 463.7707+(-9.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827742, assembly_id= 102594, from= IP3; - MCS.B12R3.B1:MCS, at= 471.1947+(-10-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243880, assembly_id= 102594, from= IP3; - MCO.B12R3.B1:MCO, at= 471.9447+(-10-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250584, assembly_id= 102595, from= IP3; - MCD.B12R3.B1:MCD, at= 471.9462+(-10-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250585, assembly_id= 102595, from= IP3; - MB.C12R3.B1:MB, at= 479.4307+(-10.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827766, assembly_id= 102595, from= IP3; - MCS.C12R3.B1:MCS, at= 486.8547+(-11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243885, assembly_id= 102595, from= IP3; - BPM.12R3.B1:BPM, at= 487.7337+(-11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243887, assembly_id= 102596, from= IP3; - MQT.12R3.B1:MQT, at= 488.4877+(-11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307703, assembly_id= 102596, from= IP3; -MQ.12R3.B1:MQ, at= 490.4957+(-11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308461, assembly_id= 102596, from= IP3; - MS.12R3.B1:MS, at= 492.3907+(-11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250587, assembly_id= 102596, from= IP3; - MCBV.12R3.B1:MCBV, at= 492.9837+(-11-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250589, assembly_id= 102596, from= IP3; - MB.A13R3.B1:MB, at= 501.5607+(-11.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827790, assembly_id= 102597, from= IP3; - MCS.A13R3.B1:MCS, at= 508.9847+(-12-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243893, assembly_id= 102597, from= IP3; - MCO.13R3.B1:MCO, at= 509.7347+(-12-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250592, assembly_id= 102598, from= IP3; - MCD.13R3.B1:MCD, at= 509.7362+(-12-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250593, assembly_id= 102598, from= IP3; - MB.B13R3.B1:MB, at= 517.2207+(-12.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827814, assembly_id= 102598, from= IP3; - MCS.B13R3.B1:MCS, at= 524.6447+(-13-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243898, assembly_id= 102598, from= IP3; - MB.C13R3.B1:MB, at= 532.8807+(-13.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827838, assembly_id= 102599, from= IP3; - MCS.C13R3.B1:MCS, at= 540.3047+(-14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243901, assembly_id= 102599, from= IP3; - BPM.13R3.B1:BPM, at= 541.1837+(-14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243903, assembly_id= 102600, from= IP3; - MQT.13R3.B1:MQT, at= 541.9377+(-14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307496, assembly_id= 102600, from= IP3; -MQ.13R3.B1:MQ, at= 543.9457+(-14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308491, assembly_id= 102600, from= IP3; - MS.13R3.B1:MS, at= 545.8407+(-14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250595, assembly_id= 102600, from= IP3; - MCBH.13R3.B1:MCBH, at= 546.4337+(-14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250597, assembly_id= 102600, from= IP3; -E.DS.R3.B1:OMK, at= 547.1807+(-14-IP3OFS.B1)*DS, slot_id= 100932, from= IP3; - MCO.A14R3.B1:MCO, at= 547.5247+(-14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250600, assembly_id= 102601, from= IP3; - MCD.A14R3.B1:MCD, at= 547.5262+(-14-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250601, assembly_id= 102601, from= IP3; - MB.A14R3.B1:MB, at= 555.0107+(-14.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827862, assembly_id= 102601, from= IP3; - MCS.A14R3.B1:MCS, at= 562.4347+(-15-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243911, assembly_id= 102601, from= IP3; - MB.B14R3.B1:MB, at= 570.6707+(-15.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827886, assembly_id= 102602, from= IP3; - MCS.B14R3.B1:MCS, at= 578.0947+(-16-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243914, assembly_id= 102602, from= IP3; - MCO.B14R3.B1:MCO, at= 578.8447+(-16-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250604, assembly_id= 102603, from= IP3; - MCD.B14R3.B1:MCD, at= 578.8462+(-16-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250605, assembly_id= 102603, from= IP3; - MB.C14R3.B1:MB, at= 586.3307+(-16.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827910, assembly_id= 102603, from= IP3; - MCS.C14R3.B1:MCS, at= 593.7547+(-17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243919, assembly_id= 102603, from= IP3; - BPM.14R3.B1:BPM, at= 594.6337+(-17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243921, assembly_id= 102604, from= IP3; - MQT.14R3.B1:MQT, at= 595.3877+(-17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307527, assembly_id= 102604, from= IP3; -MQ.14R3.B1:MQ, at= 597.3957+(-17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308521, assembly_id= 102604, from= IP3; - MS.14R3.B1:MS, at= 599.2907+(-17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250607, assembly_id= 102604, from= IP3; - MCBV.14R3.B1:MCBV, at= 599.8837+(-17-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250609, assembly_id= 102604, from= IP3; - MB.A15R3.B1:MB, at= 608.4607+(-17.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827934, assembly_id= 102605, from= IP3; - MCS.A15R3.B1:MCS, at= 615.8847+(-18-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243927, assembly_id= 102605, from= IP3; - MCO.15R3.B1:MCO, at= 616.6347+(-18-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250612, assembly_id= 102606, from= IP3; - MCD.15R3.B1:MCD, at= 616.6362+(-18-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250613, assembly_id= 102606, from= IP3; - MB.B15R3.B1:MB, at= 624.1207+(-18.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827958, assembly_id= 102606, from= IP3; - MCS.B15R3.B1:MCS, at= 631.5447+(-19-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243932, assembly_id= 102606, from= IP3; - MB.C15R3.B1:MB, at= 639.7807+(-19.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52827982, assembly_id= 102607, from= IP3; - MCS.C15R3.B1:MCS, at= 647.2047+(-20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243935, assembly_id= 102607, from= IP3; - BPM.15R3.B1:BPM, at= 648.0837+(-20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243937, assembly_id= 102608, from= IP3; - MQT.15R3.B1:MQT, at= 648.8377+(-20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307559, assembly_id= 102608, from= IP3; -MQ.15R3.B1:MQ, at= 650.8457+(-20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308551, assembly_id= 102608, from= IP3; - MS.15R3.B1:MS, at= 652.7407+(-20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250615, assembly_id= 102608, from= IP3; - MCBH.15R3.B1:MCBH, at= 653.3337+(-20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250617, assembly_id= 102608, from= IP3; - MCO.A16R3.B1:MCO, at= 654.4247+(-20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250620, assembly_id= 102609, from= IP3; - MCD.A16R3.B1:MCD, at= 654.4262+(-20-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250621, assembly_id= 102609, from= IP3; - MB.A16R3.B1:MB, at= 661.9107+(-20.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828006, assembly_id= 102609, from= IP3; - MCS.A16R3.B1:MCS, at= 669.3347+(-21-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243945, assembly_id= 102609, from= IP3; - MB.B16R3.B1:MB, at= 677.5707+(-21.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828030, assembly_id= 102610, from= IP3; - MCS.B16R3.B1:MCS, at= 684.9947+(-22-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243948, assembly_id= 102610, from= IP3; - MCO.B16R3.B1:MCO, at= 685.7447+(-22-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250624, assembly_id= 102611, from= IP3; - MCD.B16R3.B1:MCD, at= 685.7462+(-22-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250625, assembly_id= 102611, from= IP3; - MB.C16R3.B1:MB, at= 693.2307+(-22.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828054, assembly_id= 102611, from= IP3; - MCS.C16R3.B1:MCS, at= 700.6547+(-23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243953, assembly_id= 102611, from= IP3; - BPM.16R3.B1:BPM, at= 701.5337+(-23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243955, assembly_id= 102612, from= IP3; - MQT.16R3.B1:MQT, at= 702.2877+(-23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307589, assembly_id= 102612, from= IP3; -MQ.16R3.B1:MQ, at= 704.2957+(-23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308344, assembly_id= 102612, from= IP3; - MS.16R3.B1:MS, at= 706.1907+(-23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250627, assembly_id= 102612, from= IP3; - MCBV.16R3.B1:MCBV, at= 706.7837+(-23-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250629, assembly_id= 102612, from= IP3; - MB.A17R3.B1:MB, at= 715.3607+(-23.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828078, assembly_id= 102613, from= IP3; - MCS.A17R3.B1:MCS, at= 722.7847+(-24-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243961, assembly_id= 102613, from= IP3; - MCO.17R3.B1:MCO, at= 723.5347+(-24-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250632, assembly_id= 102614, from= IP3; - MCD.17R3.B1:MCD, at= 723.5362+(-24-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250633, assembly_id= 102614, from= IP3; - MB.B17R3.B1:MB, at= 731.0207+(-24.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828102, assembly_id= 102614, from= IP3; - MCS.B17R3.B1:MCS, at= 738.4447+(-25-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243966, assembly_id= 102614, from= IP3; - MB.C17R3.B1:MB, at= 746.6807+(-25.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828126, assembly_id= 102615, from= IP3; - MCS.C17R3.B1:MCS, at= 754.1047+(-26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243969, assembly_id= 102615, from= IP3; - BPM.17R3.B1:BPM, at= 754.9837+(-26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243971, assembly_id= 102616, from= IP3; - MQT.17R3.B1:MQT, at= 755.7377+(-26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307383, assembly_id= 102616, from= IP3; -MQ.17R3.B1:MQ, at= 757.7457+(-26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308374, assembly_id= 102616, from= IP3; - MS.17R3.B1:MS, at= 759.6407+(-26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250635, assembly_id= 102616, from= IP3; - MCBH.17R3.B1:MCBH, at= 760.2337+(-26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250637, assembly_id= 102616, from= IP3; - MCO.A18R3.B1:MCO, at= 761.3247+(-26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250640, assembly_id= 102617, from= IP3; - MCD.A18R3.B1:MCD, at= 761.3262+(-26-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250641, assembly_id= 102617, from= IP3; - MB.A18R3.B1:MB, at= 768.8107+(-26.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828150, assembly_id= 102617, from= IP3; - MCS.A18R3.B1:MCS, at= 776.2347+(-27-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243979, assembly_id= 102617, from= IP3; - MB.B18R3.B1:MB, at= 784.4707+(-27.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828174, assembly_id= 102618, from= IP3; - MCS.B18R3.B1:MCS, at= 791.8947+(-28-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243982, assembly_id= 102618, from= IP3; - MCO.B18R3.B1:MCO, at= 792.6447+(-28-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250644, assembly_id= 102619, from= IP3; - MCD.B18R3.B1:MCD, at= 792.6462+(-28-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250645, assembly_id= 102619, from= IP3; - MB.C18R3.B1:MB, at= 800.1307+(-28.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828198, assembly_id= 102619, from= IP3; - MCS.C18R3.B1:MCS, at= 807.5547+(-29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243987, assembly_id= 102619, from= IP3; - BPM.18R3.B1:BPM, at= 808.4337+(-29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243989, assembly_id= 102620, from= IP3; - MQT.18R3.B1:MQT, at= 809.1877+(-29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307415, assembly_id= 102620, from= IP3; -MQ.18R3.B1:MQ, at= 811.1957+(-29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308404, assembly_id= 102620, from= IP3; - MS.18R3.B1:MS, at= 813.0907+(-29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250647, assembly_id= 102620, from= IP3; - MCBV.18R3.B1:MCBV, at= 813.6837+(-29-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250649, assembly_id= 102620, from= IP3; - MB.A19R3.B1:MB, at= 822.2607+(-29.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828222, assembly_id= 102621, from= IP3; - MCS.A19R3.B1:MCS, at= 829.6847+(-30-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 243995, assembly_id= 102621, from= IP3; - MCO.19R3.B1:MCO, at= 830.4347+(-30-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250652, assembly_id= 102622, from= IP3; - MCD.19R3.B1:MCD, at= 830.4362+(-30-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250653, assembly_id= 102622, from= IP3; - MB.B19R3.B1:MB, at= 837.9207+(-30.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828246, assembly_id= 102622, from= IP3; - MCS.B19R3.B1:MCS, at= 845.3447+(-31-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244000, assembly_id= 102622, from= IP3; - MB.C19R3.B1:MB, at= 853.5807+(-31.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828270, assembly_id= 102623, from= IP3; - MCS.C19R3.B1:MCS, at= 861.0047+(-32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244003, assembly_id= 102623, from= IP3; - BPM.19R3.B1:BPM, at= 861.8837+(-32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244005, assembly_id= 102624, from= IP3; - MQT.19R3.B1:MQT, at= 862.6377+(-32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348440, assembly_id= 102624, from= IP3; -MQ.19R3.B1:MQ, at= 864.6457+(-32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308436, assembly_id= 102624, from= IP3; - MS.19R3.B1:MS, at= 866.5407+(-32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250655, assembly_id= 102624, from= IP3; - MCBH.19R3.B1:MCBH, at= 867.1337+(-32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250657, assembly_id= 102624, from= IP3; - MCO.A20R3.B1:MCO, at= 868.2247+(-32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250660, assembly_id= 102625, from= IP3; - MCD.A20R3.B1:MCD, at= 868.2262+(-32-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250661, assembly_id= 102625, from= IP3; - MB.A20R3.B1:MB, at= 875.7107+(-32.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828294, assembly_id= 102625, from= IP3; - MCS.A20R3.B1:MCS, at= 883.1347+(-33-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244013, assembly_id= 102625, from= IP3; - MB.B20R3.B1:MB, at= 891.3707+(-33.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828318, assembly_id= 102626, from= IP3; - MCS.B20R3.B1:MCS, at= 898.7947+(-34-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244016, assembly_id= 102626, from= IP3; - MCO.B20R3.B1:MCO, at= 899.5447+(-34-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250664, assembly_id= 102627, from= IP3; - MCD.B20R3.B1:MCD, at= 899.5462+(-34-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250665, assembly_id= 102627, from= IP3; - MB.C20R3.B1:MB, at= 907.0307+(-34.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828342, assembly_id= 102627, from= IP3; - MCS.C20R3.B1:MCS, at= 914.4547+(-35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244021, assembly_id= 102627, from= IP3; - BPM.20R3.B1:BPM, at= 915.3337+(-35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244023, assembly_id= 102628, from= IP3; - MQT.20R3.B1:MQT, at= 916.0877+(-35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307475, assembly_id= 102628, from= IP3; -MQ.20R3.B1:MQ, at= 918.0957+(-35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308227, assembly_id= 102628, from= IP3; - MS.20R3.B1:MS, at= 919.9907+(-35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250667, assembly_id= 102628, from= IP3; - MCBV.20R3.B1:MCBV, at= 920.5837+(-35-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250669, assembly_id= 102628, from= IP3; - MB.A21R3.B1:MB, at= 929.1607+(-35.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828366, assembly_id= 102629, from= IP3; - MCS.A21R3.B1:MCS, at= 936.5847+(-36-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244029, assembly_id= 102629, from= IP3; - MCO.21R3.B1:MCO, at= 937.3347+(-36-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250672, assembly_id= 102630, from= IP3; - MCD.21R3.B1:MCD, at= 937.3362+(-36-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250673, assembly_id= 102630, from= IP3; - MB.B21R3.B1:MB, at= 944.8207+(-36.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828390, assembly_id= 102630, from= IP3; - MCS.B21R3.B1:MCS, at= 952.2447+(-37-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244034, assembly_id= 102630, from= IP3; - MB.C21R3.B1:MB, at= 960.4807+(-37.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828414, assembly_id= 102631, from= IP3; - MCS.C21R3.B1:MCS, at= 967.9047+(-38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244037, assembly_id= 102631, from= IP3; - BPM.21R3.B1:BPM, at= 968.7837+(-38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244039, assembly_id= 102632, from= IP3; - MQT.21R3.B1:MQT, at= 969.5377+(-38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307273, assembly_id= 102632, from= IP3; -MQ.21R3.B1:MQ, at= 971.5457+(-38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308257, assembly_id= 102632, from= IP3; - MS.21R3.B1:MS, at= 973.4407+(-38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250675, assembly_id= 102632, from= IP3; - MCBH.21R3.B1:MCBH, at= 974.0337+(-38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250677, assembly_id= 102632, from= IP3; - MCO.A22R3.B1:MCO, at= 975.1247+(-38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250680, assembly_id= 102633, from= IP3; - MCD.A22R3.B1:MCD, at= 975.1262+(-38-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250681, assembly_id= 102633, from= IP3; - MB.A22R3.B1:MB, at= 982.6107+(-38.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828438, assembly_id= 102633, from= IP3; - MCS.A22R3.B1:MCS, at= 990.0347+(-39-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244047, assembly_id= 102633, from= IP3; - MB.B22R3.B1:MB, at= 998.2707+(-39.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828462, assembly_id= 102634, from= IP3; - MCS.B22R3.B1:MCS, at= 1005.6947+(-40-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244050, assembly_id= 102634, from= IP3; - MCO.B22R3.B1:MCO, at= 1006.4447+(-40-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250684, assembly_id= 102635, from= IP3; - MCD.B22R3.B1:MCD, at= 1006.4462+(-40-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250685, assembly_id= 102635, from= IP3; - MB.C22R3.B1:MB, at= 1013.9307+(-40.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828486, assembly_id= 102635, from= IP3; - MCS.C22R3.B1:MCS, at= 1021.3547+(-41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244055, assembly_id= 102635, from= IP3; - BPM.22R3.B1:BPM, at= 1022.2337+(-41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244057, assembly_id= 102636, from= IP3; - MO.22R3.B1:MO, at= 1022.9847+(-41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308817, assembly_id= 102636, from= IP3; -MQ.22R3.B1:MQ, at= 1024.9957+(-41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308289, assembly_id= 102636, from= IP3; - MS.22R3.B1:MS, at= 1026.8907+(-41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250687, assembly_id= 102636, from= IP3; - MCBV.22R3.B1:MCBV, at= 1027.4837+(-41-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250689, assembly_id= 102636, from= IP3; - MB.A23R3.B1:MB, at= 1036.0607+(-41.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828510, assembly_id= 102637, from= IP3; - MCS.A23R3.B1:MCS, at= 1043.4847+(-42-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244063, assembly_id= 102637, from= IP3; - MCO.23R3.B1:MCO, at= 1044.2347+(-42-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250692, assembly_id= 102638, from= IP3; - MCD.23R3.B1:MCD, at= 1044.2362+(-42-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250693, assembly_id= 102638, from= IP3; - MB.B23R3.B1:MB, at= 1051.7207+(-42.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828534, assembly_id= 102638, from= IP3; - MCS.B23R3.B1:MCS, at= 1059.1447+(-43-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244068, assembly_id= 102638, from= IP3; - MB.C23R3.B1:MB, at= 1067.3807+(-43.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828558, assembly_id= 102639, from= IP3; - MCS.C23R3.B1:MCS, at= 1074.8047+(-44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244071, assembly_id= 102639, from= IP3; - BPM.23R3.B1:BPM, at= 1075.6837+(-44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244073, assembly_id= 102640, from= IP3; - MQS.23R3.B1:MQS, at= 1076.4377+(-44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307639, assembly_id= 102640, from= IP3; -MQ.23R3.B1:MQ, at= 1078.4457+(-44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308320, assembly_id= 102640, from= IP3; - MS.23R3.B1:MS, at= 1080.3407+(-44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250695, assembly_id= 102640, from= IP3; - MCBH.23R3.B1:MCBH, at= 1080.9337+(-44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250697, assembly_id= 102640, from= IP3; - MCO.A24R3.B1:MCO, at= 1082.0247+(-44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250700, assembly_id= 102641, from= IP3; - MCD.A24R3.B1:MCD, at= 1082.0262+(-44-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250701, assembly_id= 102641, from= IP3; - MB.A24R3.B1:MB, at= 1089.5107+(-44.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828582, assembly_id= 102641, from= IP3; - MCS.A24R3.B1:MCS, at= 1096.9347+(-45-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244081, assembly_id= 102641, from= IP3; - MB.B24R3.B1:MB, at= 1105.1707+(-45.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828606, assembly_id= 102642, from= IP3; - MCS.B24R3.B1:MCS, at= 1112.5947+(-46-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244084, assembly_id= 102642, from= IP3; - MCO.B24R3.B1:MCO, at= 1113.3447+(-46-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250704, assembly_id= 102643, from= IP3; - MCD.B24R3.B1:MCD, at= 1113.3462+(-46-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250705, assembly_id= 102643, from= IP3; - MB.C24R3.B1:MB, at= 1120.8307+(-46.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828630, assembly_id= 102643, from= IP3; - MCS.C24R3.B1:MCS, at= 1128.2547+(-47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244089, assembly_id= 102643, from= IP3; - BPM.24R3.B1:BPM, at= 1129.1337+(-47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244091, assembly_id= 102644, from= IP3; - MO.24R3.B1:MO, at= 1129.8847+(-47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308847, assembly_id= 102644, from= IP3; -MQ.24R3.B1:MQ, at= 1131.8957+(-47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308110, assembly_id= 102644, from= IP3; - MS.24R3.B1:MS, at= 1133.7907+(-47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250707, assembly_id= 102644, from= IP3; - MCBV.24R3.B1:MCBV, at= 1134.3837+(-47-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250709, assembly_id= 102644, from= IP3; - MB.A25R3.B1:MB, at= 1142.9607+(-47.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828654, assembly_id= 102645, from= IP3; - MCS.A25R3.B1:MCS, at= 1150.3847+(-48-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244097, assembly_id= 102645, from= IP3; - MCO.25R3.B1:MCO, at= 1151.1347+(-48-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250712, assembly_id= 102646, from= IP3; - MCD.25R3.B1:MCD, at= 1151.1362+(-48-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250713, assembly_id= 102646, from= IP3; - MB.B25R3.B1:MB, at= 1158.6207+(-48.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828678, assembly_id= 102646, from= IP3; - MCS.B25R3.B1:MCS, at= 1166.0447+(-49-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244102, assembly_id= 102646, from= IP3; - MB.C25R3.B1:MB, at= 1174.2807+(-49.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828702, assembly_id= 102647, from= IP3; - MCS.C25R3.B1:MCS, at= 1181.7047+(-50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244105, assembly_id= 102647, from= IP3; - BPM.25R3.B1:BPM, at= 1182.5837+(-50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244107, assembly_id= 102648, from= IP3; - MO.25R3.B1:MO, at= 1183.3347+(-50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308879, assembly_id= 102648, from= IP3; -MQ.25R3.B1:MQ, at= 1185.3457+(-50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308142, assembly_id= 102648, from= IP3; - MS.25R3.B1:MS, at= 1187.2407+(-50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250715, assembly_id= 102648, from= IP3; - MCBH.25R3.B1:MCBH, at= 1187.8337+(-50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250717, assembly_id= 102648, from= IP3; - MCO.A26R3.B1:MCO, at= 1188.9247+(-50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250720, assembly_id= 102649, from= IP3; - MCD.A26R3.B1:MCD, at= 1188.9262+(-50-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250721, assembly_id= 102649, from= IP3; - MB.A26R3.B1:MB, at= 1196.4107+(-50.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828726, assembly_id= 102649, from= IP3; - MCS.A26R3.B1:MCS, at= 1203.8347+(-51-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244115, assembly_id= 102649, from= IP3; - MB.B26R3.B1:MB, at= 1212.0707+(-51.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828750, assembly_id= 102650, from= IP3; - MCS.B26R3.B1:MCS, at= 1219.4947+(-52-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244118, assembly_id= 102650, from= IP3; - MCO.B26R3.B1:MCO, at= 1220.2447+(-52-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250724, assembly_id= 102651, from= IP3; - MCD.B26R3.B1:MCD, at= 1220.2462+(-52-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250725, assembly_id= 102651, from= IP3; - MB.C26R3.B1:MB, at= 1227.7307+(-52.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828774, assembly_id= 102651, from= IP3; - MCS.C26R3.B1:MCS, at= 1235.1547+(-53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244123, assembly_id= 102651, from= IP3; - BPM.26R3.B1:BPM, at= 1236.0337+(-53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244125, assembly_id= 102652, from= IP3; - MO.26R3.B1:MO, at= 1236.7847+(-53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308911, assembly_id= 102652, from= IP3; -MQ.26R3.B1:MQ, at= 1238.7957+(-53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308173, assembly_id= 102652, from= IP3; - MS.26R3.B1:MS, at= 1240.6907+(-53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250727, assembly_id= 102652, from= IP3; - MCBV.26R3.B1:MCBV, at= 1241.2837+(-53-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250729, assembly_id= 102652, from= IP3; - MB.A27R3.B1:MB, at= 1249.8607+(-53.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828798, assembly_id= 102653, from= IP3; - MCS.A27R3.B1:MCS, at= 1257.2847+(-54-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244131, assembly_id= 102653, from= IP3; - MCO.27R3.B1:MCO, at= 1258.0347+(-54-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250732, assembly_id= 102654, from= IP3; - MCD.27R3.B1:MCD, at= 1258.0362+(-54-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250733, assembly_id= 102654, from= IP3; - MB.B27R3.B1:MB, at= 1265.5207+(-54.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828822, assembly_id= 102654, from= IP3; - MCS.B27R3.B1:MCS, at= 1272.9447+(-55-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244136, assembly_id= 102654, from= IP3; - MB.C27R3.B1:MB, at= 1281.1807+(-55.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828846, assembly_id= 102655, from= IP3; - MCS.C27R3.B1:MCS, at= 1288.6047+(-56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244139, assembly_id= 102655, from= IP3; - BPM.27R3.B1:BPM, at= 1289.4837+(-56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244141, assembly_id= 102656, from= IP3; - MQS.27R3.B1:MQS, at= 1290.2377+(-56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307671, assembly_id= 102656, from= IP3; -MQ.27R3.B1:MQ, at= 1292.2457+(-56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308203, assembly_id= 102656, from= IP3; - MS.27R3.B1:MS, at= 1294.1407+(-56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250735, assembly_id= 102656, from= IP3; - MCBH.27R3.B1:MCBH, at= 1294.7337+(-56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250737, assembly_id= 102656, from= IP3; - MCO.A28R3.B1:MCO, at= 1295.8247+(-56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250740, assembly_id= 102657, from= IP3; - MCD.A28R3.B1:MCD, at= 1295.8262+(-56-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250741, assembly_id= 102657, from= IP3; - MB.A28R3.B1:MB, at= 1303.3107+(-56.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828870, assembly_id= 102657, from= IP3; - MCS.A28R3.B1:MCS, at= 1310.7347+(-57-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244149, assembly_id= 102657, from= IP3; - MB.B28R3.B1:MB, at= 1318.9707+(-57.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828894, assembly_id= 102658, from= IP3; - MCS.B28R3.B1:MCS, at= 1326.3947+(-58-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244152, assembly_id= 102658, from= IP3; - MCO.B28R3.B1:MCO, at= 1327.1447+(-58-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250744, assembly_id= 102659, from= IP3; - MCD.B28R3.B1:MCD, at= 1327.1462+(-58-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250745, assembly_id= 102659, from= IP3; - MB.C28R3.B1:MB, at= 1334.6307+(-58.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828918, assembly_id= 102659, from= IP3; - MCS.C28R3.B1:MCS, at= 1342.0547+(-59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244157, assembly_id= 102659, from= IP3; - BPM.28R3.B1:BPM, at= 1342.9337+(-59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51849017, assembly_id= 51848980, from= IP3; - MO.28R3.B1:MO, at= 1343.6877+(-59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51849067, assembly_id= 51848980, from= IP3; -MQ.28R3.B1:MQ, at= 1345.6957+(-59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51849069, assembly_id= 51848980, from= IP3; - MS.28R3.B1:MS, at= 1347.5907+(-59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51849022, assembly_id= 51848980, from= IP3; - MCBV.28R3.B1:MCBV, at= 1348.1837+(-59-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51849024, assembly_id= 51848980, from= IP3; - MB.A29R3.B1:MB, at= 1356.7607+(-59.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828942, assembly_id= 102661, from= IP3; - MCS.A29R3.B1:MCS, at= 1364.1847+(-60-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244165, assembly_id= 102661, from= IP3; - MCO.29R3.B1:MCO, at= 1364.9347+(-60-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250752, assembly_id= 102662, from= IP3; - MCD.29R3.B1:MCD, at= 1364.9362+(-60-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250753, assembly_id= 102662, from= IP3; - MB.B29R3.B1:MB, at= 1372.4207+(-60.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828966, assembly_id= 102662, from= IP3; - MCS.B29R3.B1:MCS, at= 1379.8447+(-61-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244170, assembly_id= 102662, from= IP3; - MB.C29R3.B1:MB, at= 1388.0807+(-61.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52828990, assembly_id= 102663, from= IP3; - MCS.C29R3.B1:MCS, at= 1395.5047+(-62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244173, assembly_id= 102663, from= IP3; - BPM.29R3.B1:BPM, at= 1396.3837+(-62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244175, assembly_id= 102664, from= IP3; - MO.29R3.B1:MO, at= 1397.1347+(-62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308732, assembly_id= 102664, from= IP3; -MQ.29R3.B1:MQ, at= 1399.1457+(-62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308025, assembly_id= 102664, from= IP3; - MSS.29R3.B1:MSS_UNPLUGGED, at= 1401.0407+(-62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250755, assembly_id= 102664, from= IP3; - MCBH.29R3.B1:MCBH, at= 1401.6337+(-62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250757, assembly_id= 102664, from= IP3; - MCO.A30R3.B1:MCO, at= 1402.7247+(-62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250760, assembly_id= 102665, from= IP3; - MCD.A30R3.B1:MCD, at= 1402.7262+(-62-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250761, assembly_id= 102665, from= IP3; - MB.A30R3.B1:MB, at= 1410.2107+(-62.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829014, assembly_id= 102665, from= IP3; - MCS.A30R3.B1:MCS, at= 1417.6347+(-63-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244183, assembly_id= 102665, from= IP3; - MB.B30R3.B1:MB, at= 1425.8707+(-63.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829038, assembly_id= 102666, from= IP3; - MCS.B30R3.B1:MCS, at= 1433.2947+(-64-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244186, assembly_id= 102666, from= IP3; - MCO.B30R3.B1:MCO, at= 1434.0447+(-64-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250764, assembly_id= 102667, from= IP3; - MCD.B30R3.B1:MCD, at= 1434.0462+(-64-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250765, assembly_id= 102667, from= IP3; - MB.C30R3.B1:MB, at= 1441.5307+(-64.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829062, assembly_id= 102667, from= IP3; - MCS.C30R3.B1:MCS, at= 1448.9547+(-65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244191, assembly_id= 102667, from= IP3; - BPM.30R3.B1:BPM, at= 1449.8337+(-65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244193, assembly_id= 102668, from= IP3; - MO.30R3.B1:MO, at= 1450.5847+(-65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308763, assembly_id= 102668, from= IP3; -MQ.30R3.B1:MQ, at= 1452.5957+(-65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308055, assembly_id= 102668, from= IP3; - MS.30R3.B1:MS, at= 1454.4907+(-65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250767, assembly_id= 102668, from= IP3; - MCBV.30R3.B1:MCBV, at= 1455.0837+(-65-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250769, assembly_id= 102668, from= IP3; - MB.A31R3.B1:MB, at= 1463.6607+(-65.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829086, assembly_id= 102669, from= IP3; - MCS.A31R3.B1:MCS, at= 1471.0847+(-66-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244199, assembly_id= 102669, from= IP3; - MCO.31R3.B1:MCO, at= 1471.8347+(-66-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250772, assembly_id= 102670, from= IP3; - MCD.31R3.B1:MCD, at= 1471.8362+(-66-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250773, assembly_id= 102670, from= IP3; - MB.B31R3.B1:MB, at= 1479.3207+(-66.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829110, assembly_id= 102670, from= IP3; - MCS.B31R3.B1:MCS, at= 1486.7447+(-67-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244204, assembly_id= 102670, from= IP3; - MB.C31R3.B1:MB, at= 1494.9807+(-67.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829134, assembly_id= 102671, from= IP3; - MCS.C31R3.B1:MCS, at= 1502.4047+(-68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244207, assembly_id= 102671, from= IP3; - BPM.31R3.B1:BPM, at= 1503.2837+(-68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244209, assembly_id= 102672, from= IP3; - MO.31R3.B1:MO, at= 1504.0347+(-68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308793, assembly_id= 102672, from= IP3; -MQ.31R3.B1:MQ, at= 1506.0457+(-68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308084, assembly_id= 102672, from= IP3; - MS.31R3.B1:MS, at= 1507.9407+(-68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250775, assembly_id= 102672, from= IP3; - MCBH.31R3.B1:MCBH, at= 1508.5337+(-68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250777, assembly_id= 102672, from= IP3; -S.CELL.34.B1:OMK, at= 1509.2807+(-68-IP3OFS.B1)*DS, slot_id= 100932, from= IP3; - MCO.A32R3.B1:MCO, at= 1509.6247+(-68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250780, assembly_id= 102673, from= IP3; - MCD.A32R3.B1:MCD, at= 1509.6262+(-68-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250781, assembly_id= 102673, from= IP3; - MB.A32R3.B1:MB, at= 1517.1107+(-68.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829158, assembly_id= 102673, from= IP3; - MCS.A32R3.B1:MCS, at= 1524.5347+(-69-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244217, assembly_id= 102673, from= IP3; - MB.B32R3.B1:MB, at= 1532.7707+(-69.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829182, assembly_id= 102674, from= IP3; - MCS.B32R3.B1:MCS, at= 1540.1947+(-70-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244220, assembly_id= 102674, from= IP3; - MCO.B32R3.B1:MCO, at= 1540.9447+(-70-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250784, assembly_id= 102675, from= IP3; - MCD.B32R3.B1:MCD, at= 1540.9462+(-70-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250785, assembly_id= 102675, from= IP3; - MB.C32R3.B1:MB, at= 1548.4307+(-70.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829206, assembly_id= 102675, from= IP3; - MCS.C32R3.B1:MCS, at= 1555.8547+(-71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244225, assembly_id= 102675, from= IP3; - BPM.32R3.B1:BPM, at= 1556.7337+(-71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51851050, assembly_id= 51851014, from= IP3; - MO.32R3.B1:MO, at= 1557.4877+(-71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51851082, assembly_id= 51851014, from= IP3; -MQ.32R3.B1:MQ, at= 1559.4957+(-71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51851084, assembly_id= 51851014, from= IP3; - MS.32R3.B1:MS, at= 1561.3907+(-71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51851055, assembly_id= 51851014, from= IP3; - MCBV.32R3.B1:MCBV, at= 1561.9837+(-71-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 51851057, assembly_id= 51851014, from= IP3; - MB.A33R3.B1:MB, at= 1570.5607+(-71.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829230, assembly_id= 102677, from= IP3; - MCS.A33R3.B1:MCS, at= 1577.9847+(-72-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244233, assembly_id= 102677, from= IP3; - MCO.33R3.B1:MCO, at= 1578.7347+(-72-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250792, assembly_id= 102678, from= IP3; - MCD.33R3.B1:MCD, at= 1578.7362+(-72-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250793, assembly_id= 102678, from= IP3; - MB.B33R3.B1:MB, at= 1586.2207+(-72.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829254, assembly_id= 102678, from= IP3; - MCS.B33R3.B1:MCS, at= 1593.6447+(-73-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244238, assembly_id= 102678, from= IP3; - MB.C33R3.B1:MB, at= 1601.8807+(-73.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829278, assembly_id= 102679, from= IP3; - MCS.C33R3.B1:MCS, at= 1609.3047+(-74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244241, assembly_id= 102679, from= IP3; - BPM.33R3.B1:BPM, at= 1610.1837+(-74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244243, assembly_id= 102680, from= IP3; - MO.33R3.B1:MO, at= 1610.9347+(-74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308616, assembly_id= 102680, from= IP3; -MQ.33R3.B1:MQ, at= 1612.9457+(-74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307906, assembly_id= 102680, from= IP3; - MSS.33R3.B1:MSS_UNPLUGGED, at= 1614.8407+(-74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250795, assembly_id= 102680, from= IP3; - MCBH.33R3.B1:MCBH, at= 1615.4337+(-74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250797, assembly_id= 102680, from= IP3; -E.CELL.34.B1:OMK, at= 1616.1807+(-74-IP3OFS.B1)*DS, slot_id= 100932, from= IP3; - MCO.A34R3.B1:MCO, at= 1616.5247+(-74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250800, assembly_id= 102681, from= IP3; - MCD.A34R3.B1:MCD, at= 1616.5262+(-74-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250801, assembly_id= 102681, from= IP3; - MB.A34R3.B1:MB, at= 1624.0107+(-74.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829302, assembly_id= 102681, from= IP3; - MCS.A34R3.B1:MCS, at= 1631.4347+(-75-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244251, assembly_id= 102681, from= IP3; - MB.B34R3.B1:MB, at= 1639.6707+(-75.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829326, assembly_id= 102682, from= IP3; - MCS.B34R3.B1:MCS, at= 1647.0947+(-76-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244254, assembly_id= 102682, from= IP3; - MCO.B34R3.B1:MCO, at= 1647.8447+(-76-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250804, assembly_id= 102683, from= IP3; - MCD.B34R3.B1:MCD, at= 1647.8462+(-76-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250805, assembly_id= 102683, from= IP3; - MB.C34R3.B1:MB, at= 1655.3307+(-76.5-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829350, assembly_id= 102683, from= IP3; - MCS.C34R3.B1:MCS, at= 1662.7547+(-77-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244259, assembly_id= 102683, from= IP3; - BPM.34R3.B1:BPM, at= 1663.6337+(-77-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244261, assembly_id= 102684, from= IP3; - MO.34R3.B1:MO, at= 1664.3847+(-77-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308631, assembly_id= 102684, from= IP3; -MQ.34R3.B1:MQ, at= 1666.3957+(-77-IP3OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307921, assembly_id= 102684, from= IP3; - MS.34L4.B1:MS, at= -1664.0697+(-77-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250807, assembly_id= 102684, from= IP4; - MCBV.34L4.B1:MCBV, at= -1663.4767+(-77-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250809, assembly_id= 102684, from= IP4; - MB.C34L4.B1:MB, at= -1654.8997+(-77.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829374, assembly_id= 102685, from= IP4; - MCS.C34L4.B1:MCS, at= -1647.4757+(-78-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244267, assembly_id= 102685, from= IP4; - MCO.34L4.B1:MCO, at= -1646.7257+(-78-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250812, assembly_id= 102686, from= IP4; - MCD.34L4.B1:MCD, at= -1646.7242+(-78-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250813, assembly_id= 102686, from= IP4; - MB.B34L4.B1:MB, at= -1639.2397+(-78.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829398, assembly_id= 102686, from= IP4; - MCS.B34L4.B1:MCS, at= -1631.8157+(-79-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244272, assembly_id= 102686, from= IP4; - MB.A34L4.B1:MB, at= -1623.5797+(-79.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829422, assembly_id= 102687, from= IP4; - MCS.A34L4.B1:MCS, at= -1616.1557+(-80-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244275, assembly_id= 102687, from= IP4; - BPM.33L4.B1:BPM, at= -1615.2767+(-80-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244277, assembly_id= 102688, from= IP4; - MO.33L4.B1:MO, at= -1614.5257+(-80-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308603, assembly_id= 102688, from= IP4; -MQ.33L4.B1:MQ, at= -1612.5147+(-80-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307893, assembly_id= 102688, from= IP4; - MSS.33L4.B1:MSS_UNPLUGGED, at= -1610.6197+(-80-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250815, assembly_id= 102688, from= IP4; - MCBH.33L4.B1:MCBH, at= -1610.0267+(-80-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250817, assembly_id= 102688, from= IP4; - MCO.B33L4.B1:MCO, at= -1608.9357+(-80-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250820, assembly_id= 102689, from= IP4; - MCD.B33L4.B1:MCD, at= -1608.9342+(-80-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250821, assembly_id= 102689, from= IP4; - MB.C33L4.B1:MB, at= -1601.4497+(-80.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829446, assembly_id= 102689, from= IP4; - MCS.C33L4.B1:MCS, at= -1594.0257+(-81-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244285, assembly_id= 102689, from= IP4; - MB.B33L4.B1:MB, at= -1585.7897+(-81.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829470, assembly_id= 102690, from= IP4; - MCS.B33L4.B1:MCS, at= -1578.3657+(-82-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244288, assembly_id= 102690, from= IP4; - MCO.A33L4.B1:MCO, at= -1577.6157+(-82-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250824, assembly_id= 102691, from= IP4; - MCD.A33L4.B1:MCD, at= -1577.6142+(-82-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250825, assembly_id= 102691, from= IP4; - MB.A33L4.B1:MB, at= -1570.1297+(-82.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829494, assembly_id= 102691, from= IP4; - MCS.A33L4.B1:MCS, at= -1562.7057+(-83-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244293, assembly_id= 102691, from= IP4; - BPM.32L4.B1:BPM, at= -1561.8267+(-83-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244295, assembly_id= 102692, from= IP4; - MO.32L4.B1:MO, at= -1561.0757+(-83-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308571, assembly_id= 102692, from= IP4; -MQ.32L4.B1:MQ, at= -1559.0647+(-83-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307863, assembly_id= 102692, from= IP4; - MS.32L4.B1:MS, at= -1557.1697+(-83-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250827, assembly_id= 102692, from= IP4; - MCBV.32L4.B1:MCBV, at= -1556.5767+(-83-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250829, assembly_id= 102692, from= IP4; - MB.C32L4.B1:MB, at= -1547.9997+(-83.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829518, assembly_id= 102693, from= IP4; - MCS.C32L4.B1:MCS, at= -1540.5757+(-84-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244301, assembly_id= 102693, from= IP4; - MCO.32L4.B1:MCO, at= -1539.8257+(-84-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250832, assembly_id= 102694, from= IP4; - MCD.32L4.B1:MCD, at= -1539.8242+(-84-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250833, assembly_id= 102694, from= IP4; - MB.B32L4.B1:MB, at= -1532.3397+(-84.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829542, assembly_id= 102694, from= IP4; - MCS.B32L4.B1:MCS, at= -1524.9157+(-85-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244306, assembly_id= 102694, from= IP4; - MB.A32L4.B1:MB, at= -1516.6797+(-85.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829566, assembly_id= 102695, from= IP4; - MCS.A32L4.B1:MCS, at= -1509.2557+(-86-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244309, assembly_id= 102695, from= IP4; - BPM.31L4.B1:BPM, at= -1508.3767+(-86-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244311, assembly_id= 102696, from= IP4; - MO.31L4.B1:MO, at= -1507.6257+(-86-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308780, assembly_id= 102696, from= IP4; -MQ.31L4.B1:MQ, at= -1505.6147+(-86-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308071, assembly_id= 102696, from= IP4; - MS.31L4.B1:MS, at= -1503.7197+(-86-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250835, assembly_id= 102696, from= IP4; - MCBH.31L4.B1:MCBH, at= -1503.1267+(-86-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250837, assembly_id= 102696, from= IP4; - MCO.B31L4.B1:MCO, at= -1502.0357+(-86-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250840, assembly_id= 102697, from= IP4; - MCD.B31L4.B1:MCD, at= -1502.0342+(-86-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250841, assembly_id= 102697, from= IP4; - MB.C31L4.B1:MB, at= -1494.5497+(-86.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829590, assembly_id= 102697, from= IP4; - MCS.C31L4.B1:MCS, at= -1487.1257+(-87-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244319, assembly_id= 102697, from= IP4; - MB.B31L4.B1:MB, at= -1478.8897+(-87.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829614, assembly_id= 102698, from= IP4; - MCS.B31L4.B1:MCS, at= -1471.4657+(-88-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244322, assembly_id= 102698, from= IP4; - MCO.A31L4.B1:MCO, at= -1470.7157+(-88-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250844, assembly_id= 102699, from= IP4; - MCD.A31L4.B1:MCD, at= -1470.7142+(-88-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250845, assembly_id= 102699, from= IP4; - MB.A31L4.B1:MB, at= -1463.2297+(-88.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829638, assembly_id= 102699, from= IP4; - MCS.A31L4.B1:MCS, at= -1455.8057+(-89-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244327, assembly_id= 102699, from= IP4; - BPM.30L4.B1:BPM, at= -1454.9267+(-89-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244329, assembly_id= 102700, from= IP4; - MO.30L4.B1:MO, at= -1454.1757+(-89-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308750, assembly_id= 102700, from= IP4; -MQ.30L4.B1:MQ, at= -1452.1647+(-89-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308042, assembly_id= 102700, from= IP4; - MS.30L4.B1:MS, at= -1450.2697+(-89-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250847, assembly_id= 102700, from= IP4; - MCBV.30L4.B1:MCBV, at= -1449.6767+(-89-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250849, assembly_id= 102700, from= IP4; - MB.C30L4.B1:MB, at= -1441.0997+(-89.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829662, assembly_id= 102701, from= IP4; - MCS.C30L4.B1:MCS, at= -1433.6757+(-90-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244335, assembly_id= 102701, from= IP4; - MCO.30L4.B1:MCO, at= -1432.9257+(-90-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250852, assembly_id= 102702, from= IP4; - MCD.30L4.B1:MCD, at= -1432.9242+(-90-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250853, assembly_id= 102702, from= IP4; - MB.B30L4.B1:MB, at= -1425.4397+(-90.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829686, assembly_id= 102702, from= IP4; - MCS.B30L4.B1:MCS, at= -1418.0157+(-91-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244340, assembly_id= 102702, from= IP4; - MB.A30L4.B1:MB, at= -1409.7797+(-91.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829710, assembly_id= 102703, from= IP4; - MCS.A30L4.B1:MCS, at= -1402.3557+(-92-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244343, assembly_id= 102703, from= IP4; - BPM.29L4.B1:BPM, at= -1401.4767+(-92-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244345, assembly_id= 102704, from= IP4; - MO.29L4.B1:MO, at= -1400.7257+(-92-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308718, assembly_id= 102704, from= IP4; -MQ.29L4.B1:MQ, at= -1398.7147+(-92-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308012, assembly_id= 102704, from= IP4; - MSS.29L4.B1:MSS_UNPLUGGED, at= -1396.8197+(-92-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250855, assembly_id= 102704, from= IP4; - MCBH.29L4.B1:MCBH, at= -1396.2267+(-92-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250857, assembly_id= 102704, from= IP4; - MCO.B29L4.B1:MCO, at= -1395.1357+(-92-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250860, assembly_id= 102705, from= IP4; - MCD.B29L4.B1:MCD, at= -1395.1342+(-92-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250861, assembly_id= 102705, from= IP4; - MB.C29L4.B1:MB, at= -1387.6497+(-92.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829734, assembly_id= 102705, from= IP4; - MCS.C29L4.B1:MCS, at= -1380.2257+(-93-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244353, assembly_id= 102705, from= IP4; - MB.B29L4.B1:MB, at= -1371.9897+(-93.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829758, assembly_id= 102706, from= IP4; - MCS.B29L4.B1:MCS, at= -1364.5657+(-94-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244356, assembly_id= 102706, from= IP4; - MCO.A29L4.B1:MCO, at= -1363.8157+(-94-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250864, assembly_id= 102707, from= IP4; - MCD.A29L4.B1:MCD, at= -1363.8142+(-94-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250865, assembly_id= 102707, from= IP4; - MB.A29L4.B1:MB, at= -1356.3297+(-94.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829782, assembly_id= 102707, from= IP4; - MCS.A29L4.B1:MCS, at= -1348.9057+(-95-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244361, assembly_id= 102707, from= IP4; - BPM.28L4.B1:BPM, at= -1348.0267+(-95-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244363, assembly_id= 102708, from= IP4; - MO.28L4.B1:MO, at= -1347.2757+(-95-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308687, assembly_id= 102708, from= IP4; -MQ.28L4.B1:MQ, at= -1345.2647+(-95-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307980, assembly_id= 102708, from= IP4; - MS.28L4.B1:MS, at= -1343.3697+(-95-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250867, assembly_id= 102708, from= IP4; - MCBV.28L4.B1:MCBV, at= -1342.7767+(-95-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250869, assembly_id= 102708, from= IP4; - MB.C28L4.B1:MB, at= -1334.1997+(-95.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829806, assembly_id= 102709, from= IP4; - MCS.C28L4.B1:MCS, at= -1326.7757+(-96-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244369, assembly_id= 102709, from= IP4; - MCO.28L4.B1:MCO, at= -1326.0257+(-96-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250872, assembly_id= 102710, from= IP4; - MCD.28L4.B1:MCD, at= -1326.0242+(-96-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250873, assembly_id= 102710, from= IP4; - MB.B28L4.B1:MB, at= -1318.5397+(-96.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829830, assembly_id= 102710, from= IP4; - MCS.B28L4.B1:MCS, at= -1311.1157+(-97-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244374, assembly_id= 102710, from= IP4; - MB.A28L4.B1:MB, at= -1302.8797+(-97.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829854, assembly_id= 102711, from= IP4; - MCS.A28L4.B1:MCS, at= -1295.4557+(-98-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244377, assembly_id= 102711, from= IP4; - BPM.27L4.B1:BPM, at= -1294.5767+(-98-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244379, assembly_id= 102712, from= IP4; - MQS.27L4.B1:MQS, at= -1293.8227+(-98-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307657, assembly_id= 102712, from= IP4; -MQ.27L4.B1:MQ, at= -1291.8147+(-98-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308190, assembly_id= 102712, from= IP4; - MS.27L4.B1:MS, at= -1289.9197+(-98-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250875, assembly_id= 102712, from= IP4; - MCBH.27L4.B1:MCBH, at= -1289.3267+(-98-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250877, assembly_id= 102712, from= IP4; - MCO.B27L4.B1:MCO, at= -1288.2357+(-98-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250880, assembly_id= 102713, from= IP4; - MCD.B27L4.B1:MCD, at= -1288.2342+(-98-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250881, assembly_id= 102713, from= IP4; - MB.C27L4.B1:MB, at= -1280.7497+(-98.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829878, assembly_id= 102713, from= IP4; - MCS.C27L4.B1:MCS, at= -1273.3257+(-99-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244387, assembly_id= 102713, from= IP4; - MB.B27L4.B1:MB, at= -1265.0897+(-99.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829902, assembly_id= 102714, from= IP4; - MCS.B27L4.B1:MCS, at= -1257.6657+(-100-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244390, assembly_id= 102714, from= IP4; - MCO.A27L4.B1:MCO, at= -1256.9157+(-100-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250884, assembly_id= 102715, from= IP4; - MCD.A27L4.B1:MCD, at= -1256.9142+(-100-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250885, assembly_id= 102715, from= IP4; - MB.A27L4.B1:MB, at= -1249.4297+(-100.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829926, assembly_id= 102715, from= IP4; - MCS.A27L4.B1:MCS, at= -1242.0057+(-101-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244395, assembly_id= 102715, from= IP4; - BPM.26L4.B1:BPM, at= -1241.1267+(-101-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244397, assembly_id= 102716, from= IP4; - MO.26L4.B1:MO, at= -1240.3757+(-101-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308897, assembly_id= 102716, from= IP4; -MQ.26L4.B1:MQ, at= -1238.3647+(-101-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308160, assembly_id= 102716, from= IP4; - MS.26L4.B1:MS, at= -1236.4697+(-101-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250887, assembly_id= 102716, from= IP4; - MCBV.26L4.B1:MCBV, at= -1235.8767+(-101-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250889, assembly_id= 102716, from= IP4; - MB.C26L4.B1:MB, at= -1227.2997+(-101.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829950, assembly_id= 102717, from= IP4; - MCS.C26L4.B1:MCS, at= -1219.8757+(-102-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244403, assembly_id= 102717, from= IP4; - MCO.26L4.B1:MCO, at= -1219.1257+(-102-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250892, assembly_id= 102718, from= IP4; - MCD.26L4.B1:MCD, at= -1219.1242+(-102-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250893, assembly_id= 102718, from= IP4; - MB.B26L4.B1:MB, at= -1211.6397+(-102.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829974, assembly_id= 102718, from= IP4; - MCS.B26L4.B1:MCS, at= -1204.2157+(-103-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244408, assembly_id= 102718, from= IP4; - MB.A26L4.B1:MB, at= -1195.9797+(-103.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52829998, assembly_id= 102719, from= IP4; - MCS.A26L4.B1:MCS, at= -1188.5557+(-104-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244411, assembly_id= 102719, from= IP4; - BPM.25L4.B1:BPM, at= -1187.6767+(-104-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244413, assembly_id= 102720, from= IP4; - MO.25L4.B1:MO, at= -1186.9257+(-104-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308865, assembly_id= 102720, from= IP4; -MQ.25L4.B1:MQ, at= -1184.9147+(-104-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308128, assembly_id= 102720, from= IP4; - MS.25L4.B1:MS, at= -1183.0197+(-104-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250895, assembly_id= 102720, from= IP4; - MCBH.25L4.B1:MCBH, at= -1182.4267+(-104-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250897, assembly_id= 102720, from= IP4; - MCO.B25L4.B1:MCO, at= -1181.3357+(-104-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250900, assembly_id= 102721, from= IP4; - MCD.B25L4.B1:MCD, at= -1181.3342+(-104-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250901, assembly_id= 102721, from= IP4; - MB.C25L4.B1:MB, at= -1173.8497+(-104.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830022, assembly_id= 102721, from= IP4; - MCS.C25L4.B1:MCS, at= -1166.4257+(-105-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244421, assembly_id= 102721, from= IP4; - MB.B25L4.B1:MB, at= -1158.1897+(-105.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830046, assembly_id= 102722, from= IP4; - MCS.B25L4.B1:MCS, at= -1150.7657+(-106-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244424, assembly_id= 102722, from= IP4; - MCO.A25L4.B1:MCO, at= -1150.0157+(-106-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250904, assembly_id= 102723, from= IP4; - MCD.A25L4.B1:MCD, at= -1150.0142+(-106-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250905, assembly_id= 102723, from= IP4; - MB.A25L4.B1:MB, at= -1142.5297+(-106.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830070, assembly_id= 102723, from= IP4; - MCS.A25L4.B1:MCS, at= -1135.1057+(-107-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244429, assembly_id= 102723, from= IP4; - BPM.24L4.B1:BPM, at= -1134.2267+(-107-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244431, assembly_id= 102724, from= IP4; - MO.24L4.B1:MO, at= -1133.4757+(-107-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308834, assembly_id= 102724, from= IP4; -MQ.24L4.B1:MQ, at= -1131.4647+(-107-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308096, assembly_id= 102724, from= IP4; - MS.24L4.B1:MS, at= -1129.5697+(-107-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250907, assembly_id= 102724, from= IP4; - MCBV.24L4.B1:MCBV, at= -1128.9767+(-107-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250909, assembly_id= 102724, from= IP4; - MB.C24L4.B1:MB, at= -1120.3997+(-107.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830094, assembly_id= 102725, from= IP4; - MCS.C24L4.B1:MCS, at= -1112.9757+(-108-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244437, assembly_id= 102725, from= IP4; - MCO.24L4.B1:MCO, at= -1112.2257+(-108-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250912, assembly_id= 102726, from= IP4; - MCD.24L4.B1:MCD, at= -1112.2242+(-108-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250913, assembly_id= 102726, from= IP4; - MB.B24L4.B1:MB, at= -1104.7397+(-108.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830118, assembly_id= 102726, from= IP4; - MCS.B24L4.B1:MCS, at= -1097.3157+(-109-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244442, assembly_id= 102726, from= IP4; - MB.A24L4.B1:MB, at= -1089.0797+(-109.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830142, assembly_id= 102727, from= IP4; - MCS.A24L4.B1:MCS, at= -1081.6557+(-110-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244445, assembly_id= 102727, from= IP4; - BPM.23L4.B1:BPM, at= -1080.7767+(-110-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266529, assembly_id= 102728, from= IP4; - MQS.23L4.B1:MQS, at= -1080.0227+(-110-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307626, assembly_id= 102728, from= IP4; -MQ.23L4.B1:MQ, at= -1078.0147+(-110-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308307, assembly_id= 102728, from= IP4; - MS.23L4.B1:MS, at= -1076.1197+(-110-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250915, assembly_id= 102728, from= IP4; - MCBH.23L4.B1:MCBH, at= -1075.5267+(-110-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250917, assembly_id= 102728, from= IP4; - MCO.B23L4.B1:MCO, at= -1074.4357+(-110-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250920, assembly_id= 102729, from= IP4; - MCD.B23L4.B1:MCD, at= -1074.4342+(-110-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250921, assembly_id= 102729, from= IP4; - MB.C23L4.B1:MB, at= -1066.9497+(-110.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830166, assembly_id= 102729, from= IP4; - MCS.C23L4.B1:MCS, at= -1059.5257+(-111-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244453, assembly_id= 102729, from= IP4; - MB.B23L4.B1:MB, at= -1051.2897+(-111.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830190, assembly_id= 102730, from= IP4; - MCS.B23L4.B1:MCS, at= -1043.8657+(-112-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244456, assembly_id= 102730, from= IP4; - MCO.A23L4.B1:MCO, at= -1043.1157+(-112-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250924, assembly_id= 102731, from= IP4; - MCD.A23L4.B1:MCD, at= -1043.1142+(-112-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250925, assembly_id= 102731, from= IP4; - MB.A23L4.B1:MB, at= -1035.6297+(-112.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830214, assembly_id= 102731, from= IP4; - MCS.A23L4.B1:MCS, at= -1028.2057+(-113-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244461, assembly_id= 102731, from= IP4; - BPM.22L4.B1:BPM, at= -1027.3267+(-113-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244463, assembly_id= 102732, from= IP4; - MO.22L4.B1:MO, at= -1026.5757+(-113-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308804, assembly_id= 102732, from= IP4; -MQ.22L4.B1:MQ, at= -1024.5647+(-113-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308275, assembly_id= 102732, from= IP4; - MS.22L4.B1:MS, at= -1022.6697+(-113-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250927, assembly_id= 102732, from= IP4; - MCBV.22L4.B1:MCBV, at= -1022.0767+(-113-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250929, assembly_id= 102732, from= IP4; - MB.C22L4.B1:MB, at= -1013.4997+(-113.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830238, assembly_id= 102733, from= IP4; - MCS.C22L4.B1:MCS, at= -1006.0757+(-114-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244469, assembly_id= 102733, from= IP4; - MCO.22L4.B1:MCO, at= -1005.3257+(-114-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250932, assembly_id= 102734, from= IP4; - MCD.22L4.B1:MCD, at= -1005.3242+(-114-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250933, assembly_id= 102734, from= IP4; - MB.B22L4.B1:MB, at= -997.8397+(-114.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830262, assembly_id= 102734, from= IP4; - MCS.B22L4.B1:MCS, at= -990.4157+(-115-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244474, assembly_id= 102734, from= IP4; - MB.A22L4.B1:MB, at= -982.1797+(-115.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830286, assembly_id= 102735, from= IP4; - MCS.A22L4.B1:MCS, at= -974.7557+(-116-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244477, assembly_id= 102735, from= IP4; - BPM.21L4.B1:BPM, at= -973.8767+(-116-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244479, assembly_id= 102736, from= IP4; - MQT.21L4.B1:MQT, at= -973.1227+(-116-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307259, assembly_id= 102736, from= IP4; -MQ.21L4.B1:MQ, at= -971.1147+(-116-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348476, assembly_id= 102736, from= IP4; - MS.21L4.B1:MS, at= -969.2197+(-116-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250935, assembly_id= 102736, from= IP4; - MCBH.21L4.B1:MCBH, at= -968.6267+(-116-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250937, assembly_id= 102736, from= IP4; - MCO.B21L4.B1:MCO, at= -967.5357+(-116-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250940, assembly_id= 102737, from= IP4; - MCD.B21L4.B1:MCD, at= -967.5342+(-116-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250941, assembly_id= 102737, from= IP4; - MB.C21L4.B1:MB, at= -960.0497+(-116.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830310, assembly_id= 102737, from= IP4; - MCS.C21L4.B1:MCS, at= -952.6257+(-117-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244487, assembly_id= 102737, from= IP4; - MB.B21L4.B1:MB, at= -944.3897+(-117.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830334, assembly_id= 102738, from= IP4; - MCS.B21L4.B1:MCS, at= -936.9657+(-118-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244490, assembly_id= 102738, from= IP4; - MCO.A21L4.B1:MCO, at= -936.2157+(-118-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250944, assembly_id= 102739, from= IP4; - MCD.A21L4.B1:MCD, at= -936.2142+(-118-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250945, assembly_id= 102739, from= IP4; - MB.A21L4.B1:MB, at= -928.7297+(-118.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830358, assembly_id= 102739, from= IP4; - MCS.A21L4.B1:MCS, at= -921.3057+(-119-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244495, assembly_id= 102739, from= IP4; - BPM.20L4.B1:BPM, at= -920.4267+(-119-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244497, assembly_id= 102740, from= IP4; - MQT.20L4.B1:MQT, at= -919.6727+(-119-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307462, assembly_id= 102740, from= IP4; -MQ.20L4.B1:MQ, at= -917.6647+(-119-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308214, assembly_id= 102740, from= IP4; - MS.20L4.B1:MS, at= -915.7697+(-119-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250947, assembly_id= 102740, from= IP4; - MCBV.20L4.B1:MCBV, at= -915.1767+(-119-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250949, assembly_id= 102740, from= IP4; - MB.C20L4.B1:MB, at= -906.5997+(-119.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830382, assembly_id= 102741, from= IP4; - MCS.C20L4.B1:MCS, at= -899.1757+(-120-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244503, assembly_id= 102741, from= IP4; - MCO.20L4.B1:MCO, at= -898.4257+(-120-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250952, assembly_id= 102742, from= IP4; - MCD.20L4.B1:MCD, at= -898.4242+(-120-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250953, assembly_id= 102742, from= IP4; - MB.B20L4.B1:MB, at= -890.9397+(-120.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830406, assembly_id= 102742, from= IP4; - MCS.B20L4.B1:MCS, at= -883.5157+(-121-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244508, assembly_id= 102742, from= IP4; - MB.A20L4.B1:MB, at= -875.2797+(-121.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830430, assembly_id= 102743, from= IP4; - MCS.A20L4.B1:MCS, at= -867.8557+(-122-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244511, assembly_id= 102743, from= IP4; - BPM.19L4.B1:BPM, at= -866.9767+(-122-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244513, assembly_id= 102744, from= IP4; - MQT.19L4.B1:MQT, at= -866.2227+(-122-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348439, assembly_id= 102744, from= IP4; -MQ.19L4.B1:MQ, at= -864.2147+(-122-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308422, assembly_id= 102744, from= IP4; - MS.19L4.B1:MS, at= -862.3197+(-122-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250955, assembly_id= 102744, from= IP4; - MCBH.19L4.B1:MCBH, at= -861.7267+(-122-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250957, assembly_id= 102744, from= IP4; - MCO.B19L4.B1:MCO, at= -860.6357+(-122-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250960, assembly_id= 102745, from= IP4; - MCD.B19L4.B1:MCD, at= -860.6342+(-122-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250961, assembly_id= 102745, from= IP4; - MB.C19L4.B1:MB, at= -853.1497+(-122.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830454, assembly_id= 102745, from= IP4; - MCS.C19L4.B1:MCS, at= -845.7257+(-123-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244521, assembly_id= 102745, from= IP4; - MB.B19L4.B1:MB, at= -837.4897+(-123.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830478, assembly_id= 102746, from= IP4; - MCS.B19L4.B1:MCS, at= -830.0657+(-124-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244524, assembly_id= 102746, from= IP4; - MCO.A19L4.B1:MCO, at= -829.3157+(-124-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250964, assembly_id= 102747, from= IP4; - MCD.A19L4.B1:MCD, at= -829.3142+(-124-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250965, assembly_id= 102747, from= IP4; - MB.A19L4.B1:MB, at= -821.8297+(-124.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830502, assembly_id= 102747, from= IP4; - MCS.A19L4.B1:MCS, at= -814.4057+(-125-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244529, assembly_id= 102747, from= IP4; - BPM.18L4.B1:BPM, at= -813.5267+(-125-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244531, assembly_id= 102748, from= IP4; - MQT.18L4.B1:MQT, at= -812.7727+(-125-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307401, assembly_id= 102748, from= IP4; -MQ.18L4.B1:MQ, at= -810.7647+(-125-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308391, assembly_id= 102748, from= IP4; - MS.18L4.B1:MS, at= -808.8697+(-125-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250967, assembly_id= 102748, from= IP4; - MCBV.18L4.B1:MCBV, at= -808.2767+(-125-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250969, assembly_id= 102748, from= IP4; - MB.C18L4.B1:MB, at= -799.6997+(-125.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830526, assembly_id= 102749, from= IP4; - MCS.C18L4.B1:MCS, at= -792.2757+(-126-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244537, assembly_id= 102749, from= IP4; - MCO.18L4.B1:MCO, at= -791.5257+(-126-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250972, assembly_id= 102750, from= IP4; - MCD.18L4.B1:MCD, at= -791.5242+(-126-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250973, assembly_id= 102750, from= IP4; - MB.B18L4.B1:MB, at= -784.0397+(-126.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830550, assembly_id= 102750, from= IP4; - MCS.B18L4.B1:MCS, at= -776.6157+(-127-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244542, assembly_id= 102750, from= IP4; - MB.A18L4.B1:MB, at= -768.3797+(-127.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830574, assembly_id= 102751, from= IP4; - MCS.A18L4.B1:MCS, at= -760.9557+(-128-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244545, assembly_id= 102751, from= IP4; - BPM.17L4.B1:BPM, at= -760.0767+(-128-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244547, assembly_id= 102752, from= IP4; - MQT.17L4.B1:MQT, at= -759.3227+(-128-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307606, assembly_id= 102752, from= IP4; -MQ.17L4.B1:MQ, at= -757.3147+(-128-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308361, assembly_id= 102752, from= IP4; - MS.17L4.B1:MS, at= -755.4197+(-128-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250975, assembly_id= 102752, from= IP4; - MCBH.17L4.B1:MCBH, at= -754.8267+(-128-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250977, assembly_id= 102752, from= IP4; - MCO.B17L4.B1:MCO, at= -753.7357+(-128-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250980, assembly_id= 102753, from= IP4; - MCD.B17L4.B1:MCD, at= -753.7342+(-128-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250981, assembly_id= 102753, from= IP4; - MB.C17L4.B1:MB, at= -746.2497+(-128.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830598, assembly_id= 102753, from= IP4; - MCS.C17L4.B1:MCS, at= -738.8257+(-129-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244555, assembly_id= 102753, from= IP4; - MB.B17L4.B1:MB, at= -730.5897+(-129.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830622, assembly_id= 102754, from= IP4; - MCS.B17L4.B1:MCS, at= -723.1657+(-130-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244558, assembly_id= 102754, from= IP4; - MCO.A17L4.B1:MCO, at= -722.4157+(-130-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250984, assembly_id= 102755, from= IP4; - MCD.A17L4.B1:MCD, at= -722.4142+(-130-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250985, assembly_id= 102755, from= IP4; - MB.A17L4.B1:MB, at= -714.9297+(-130.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830646, assembly_id= 102755, from= IP4; - MCS.A17L4.B1:MCS, at= -707.5057+(-131-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244563, assembly_id= 102755, from= IP4; - BPM.16L4.B1:BPM, at= -706.6267+(-131-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244565, assembly_id= 102756, from= IP4; - MQT.16L4.B1:MQT, at= -705.8727+(-131-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307576, assembly_id= 102756, from= IP4; -MQ.16L4.B1:MQ, at= -703.8647+(-131-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308331, assembly_id= 102756, from= IP4; - MS.16L4.B1:MS, at= -701.9697+(-131-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250987, assembly_id= 102756, from= IP4; - MCBV.16L4.B1:MCBV, at= -701.3767+(-131-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250989, assembly_id= 102756, from= IP4; - MB.C16L4.B1:MB, at= -692.7997+(-131.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830670, assembly_id= 102757, from= IP4; - MCS.C16L4.B1:MCS, at= -685.3757+(-132-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244571, assembly_id= 102757, from= IP4; - MCO.16L4.B1:MCO, at= -684.6257+(-132-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250992, assembly_id= 102758, from= IP4; - MCD.16L4.B1:MCD, at= -684.6242+(-132-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250993, assembly_id= 102758, from= IP4; - MB.B16L4.B1:MB, at= -677.1397+(-132.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830694, assembly_id= 102758, from= IP4; - MCS.B16L4.B1:MCS, at= -669.7157+(-133-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244576, assembly_id= 102758, from= IP4; - MB.A16L4.B1:MB, at= -661.4797+(-133.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830718, assembly_id= 102759, from= IP4; - MCS.A16L4.B1:MCS, at= -654.0557+(-134-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244579, assembly_id= 102759, from= IP4; - BPM.15L4.B1:BPM, at= -653.1767+(-134-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244581, assembly_id= 102760, from= IP4; - MQT.15L4.B1:MQT, at= -652.4227+(-134-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307545, assembly_id= 102760, from= IP4; -MQ.15L4.B1:MQ, at= -650.4147+(-134-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308538, assembly_id= 102760, from= IP4; - MS.15L4.B1:MS, at= -648.5197+(-134-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250995, assembly_id= 102760, from= IP4; - MCBH.15L4.B1:MCBH, at= -647.9267+(-134-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 250997, assembly_id= 102760, from= IP4; - MCO.B15L4.B1:MCO, at= -646.8357+(-134-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251000, assembly_id= 102761, from= IP4; - MCD.B15L4.B1:MCD, at= -646.8342+(-134-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251001, assembly_id= 102761, from= IP4; - MB.C15L4.B1:MB, at= -639.3497+(-134.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830742, assembly_id= 102761, from= IP4; - MCS.C15L4.B1:MCS, at= -631.9257+(-135-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244589, assembly_id= 102761, from= IP4; - MB.B15L4.B1:MB, at= -623.6897+(-135.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830766, assembly_id= 102762, from= IP4; - MCS.B15L4.B1:MCS, at= -616.2657+(-136-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244592, assembly_id= 102762, from= IP4; - MCO.A15L4.B1:MCO, at= -615.5157+(-136-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251004, assembly_id= 102763, from= IP4; - MCD.A15L4.B1:MCD, at= -615.5142+(-136-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251005, assembly_id= 102763, from= IP4; - MB.A15L4.B1:MB, at= -608.0297+(-136.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830790, assembly_id= 102763, from= IP4; - MCS.A15L4.B1:MCS, at= -600.6057+(-137-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244597, assembly_id= 102763, from= IP4; - BPM.14L4.B1:BPM, at= -599.7267+(-137-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244599, assembly_id= 102764, from= IP4; - MQT.14L4.B1:MQT, at= -598.9727+(-137-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307513, assembly_id= 102764, from= IP4; -MQ.14L4.B1:MQ, at= -596.9647+(-137-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308508, assembly_id= 102764, from= IP4; - MS.14L4.B1:MS, at= -595.0697+(-137-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251007, assembly_id= 102764, from= IP4; - MCBV.14L4.B1:MCBV, at= -594.4767+(-137-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251009, assembly_id= 102764, from= IP4; - MB.C14L4.B1:MB, at= -585.8997+(-137.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830814, assembly_id= 102765, from= IP4; - MCS.C14L4.B1:MCS, at= -578.4757+(-138-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244605, assembly_id= 102765, from= IP4; - MCO.14L4.B1:MCO, at= -577.7257+(-138-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251012, assembly_id= 102766, from= IP4; - MCD.14L4.B1:MCD, at= -577.7242+(-138-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251013, assembly_id= 102766, from= IP4; - MB.B14L4.B1:MB, at= -570.2397+(-138.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830838, assembly_id= 102766, from= IP4; - MCS.B14L4.B1:MCS, at= -562.8157+(-139-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244610, assembly_id= 102766, from= IP4; - MB.A14L4.B1:MB, at= -554.5797+(-139.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830862, assembly_id= 102767, from= IP4; - MCS.A14L4.B1:MCS, at= -547.1557+(-140-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244613, assembly_id= 102767, from= IP4; -S.DS.L4.B1:OMK, at= -546.7497+(-140-IP4OFS.B1)*DS, slot_id= 100932, from= IP4; - BPM.13L4.B1:BPM, at= -546.2767+(-140-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244615, assembly_id= 102768, from= IP4; - MQT.13L4.B1:MQT, at= -545.5227+(-140-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307721, assembly_id= 102768, from= IP4; -MQ.13L4.B1:MQ, at= -543.5147+(-140-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308478, assembly_id= 102768, from= IP4; - MS.13L4.B1:MS, at= -541.6197+(-140-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251015, assembly_id= 102768, from= IP4; - MCBH.13L4.B1:MCBH, at= -541.0267+(-140-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251017, assembly_id= 102768, from= IP4; - MCO.B13L4.B1:MCO, at= -539.9357+(-140-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251020, assembly_id= 102769, from= IP4; - MCD.B13L4.B1:MCD, at= -539.9342+(-140-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251021, assembly_id= 102769, from= IP4; - MB.C13L4.B1:MB, at= -532.4497+(-140.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830886, assembly_id= 102769, from= IP4; - MCS.C13L4.B1:MCS, at= -525.0257+(-141-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244623, assembly_id= 102769, from= IP4; - MB.B13L4.B1:MB, at= -516.7897+(-141.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830910, assembly_id= 102770, from= IP4; - MCS.B13L4.B1:MCS, at= -509.3657+(-142-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244626, assembly_id= 102770, from= IP4; - MCO.A13L4.B1:MCO, at= -508.6157+(-142-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251024, assembly_id= 102771, from= IP4; - MCD.A13L4.B1:MCD, at= -508.6142+(-142-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251025, assembly_id= 102771, from= IP4; - MB.A13L4.B1:MB, at= -501.1297+(-142.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830934, assembly_id= 102771, from= IP4; - MCS.A13L4.B1:MCS, at= -493.7057+(-143-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244631, assembly_id= 102771, from= IP4; - BPM.12L4.B1:BPM, at= -492.8267+(-143-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244633, assembly_id= 102772, from= IP4; - MQT.12L4.B1:MQT, at= -492.0727+(-143-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307689, assembly_id= 102772, from= IP4; -MQ.12L4.B1:MQ, at= -490.0647+(-143-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308448, assembly_id= 102772, from= IP4; - MS.12L4.B1:MS, at= -488.1697+(-143-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251027, assembly_id= 102772, from= IP4; - MCBV.12L4.B1:MCBV, at= -487.5767+(-143-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251029, assembly_id= 102772, from= IP4; - MB.C12L4.B1:MB, at= -478.9997+(-143.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830958, assembly_id= 102773, from= IP4; - MCS.C12L4.B1:MCS, at= -471.5757+(-144-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244639, assembly_id= 102773, from= IP4; - MCO.12L4.B1:MCO, at= -470.8257+(-144-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251032, assembly_id= 102774, from= IP4; - MCD.12L4.B1:MCD, at= -470.8242+(-144-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251033, assembly_id= 102774, from= IP4; - MB.B12L4.B1:MB, at= -463.3397+(-144.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52830982, assembly_id= 102774, from= IP4; - MCS.B12L4.B1:MCS, at= -455.9157+(-145-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244644, assembly_id= 102774, from= IP4; - MB.A12L4.B1:MB, at= -447.6797+(-145.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831006, assembly_id= 102775, from= IP4; - MCS.A12L4.B1:MCS, at= -440.2557+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244647, assembly_id= 102775, from= IP4; -E.ARC.34.B1:OMK, at= -439.8497+(-146-IP4OFS.B1)*DS, slot_id= 100932, from= IP4; - BPM.11L4.B1:BPM, at= -439.3767+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244649, assembly_id= 102776, from= IP4; -MQ.11L4.B1:MQ, at= -436.8297+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308655, assembly_id= 102776, from= IP4; - MQTLI.11L4.B1:MQTLI, at= -434.4607+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307343, assembly_id= 102776, from= IP4; - MS.11L4.B1:MS, at= -433.4487+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251035, assembly_id= 102776, from= IP4; - MCBH.11L4.B1:MCBH, at= -432.8557+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251037, assembly_id= 102776, from= IP4; - LEBL.11L4.B1:LEBL, at= -425.71735+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52997634, assembly_id= 102777, from= IP4; - MCO.11L4.B1:MCO, at= -418.986+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251040, assembly_id= 102778, from= IP4; - MCD.11L4.B1:MCD, at= -418.9845+(-146-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251041, assembly_id= 102778, from= IP4; - MB.B11L4.B1:MB, at= -411.5+(-146.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831030, assembly_id= 102778, from= IP4; - MCS.B11L4.B1:MCS, at= -404.076+(-147-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244657, assembly_id= 102778, from= IP4; - MB.A11L4.B1:MB, at= -395.84+(-147.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849534, assembly_id= 102779, from= IP4; - MCS.A11L4.B1:MCS, at= -388.416+(-148-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357305, assembly_id= 102779, from= IP4; - BPMCS.10L4.B1:BPMCS, at= -387.729+(-148-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773693, assembly_id= 102780, from= IP4; - BPM.10L4.B1:BPM, at= -387.537+(-148-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773657, assembly_id= 102780, from= IP4; - MQML.10L4.B1:MQML, at= -384.392+(-148-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307808, assembly_id= 102780, from= IP4; - MCBCV.10L4.B1:MCBCV, at= -381.35+(-148-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251042, assembly_id= 102780, from= IP4; - MCO.10L4.B1:MCO, at= -379.921+(-148-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251046, assembly_id= 102781, from= IP4; - MCD.10L4.B1:MCD, at= -379.9195+(-148-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251047, assembly_id= 102781, from= IP4; - MB.B10L4.B1:MB, at= -372.435+(-148.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831054, assembly_id= 102781, from= IP4; - MCS.B10L4.B1:MCS, at= -365.011+(-149-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244669, assembly_id= 102781, from= IP4; - MB.A10L4.B1:MB, at= -356.775+(-149.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831078, assembly_id= 102782, from= IP4; - MCS.A10L4.B1:MCS, at= -349.351+(-150-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244672, assembly_id= 102782, from= IP4; - BPMCS.9L4.B1:BPMCS, at= -348.663+(-150-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773701, assembly_id= 102783, from= IP4; - BPM.9L4.B1:BPM, at= -348.471+(-150-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773665, assembly_id= 102783, from= IP4; - MQMC.9L4.B1:MQMC, at= -346.495+(-150-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307785, assembly_id= 102783, from= IP4; - MQM.9L4.B1:MQM, at= -343.229+(-150-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307733, assembly_id= 102783, from= IP4; - MCBCH.9L4.B1:MCBCH, at= -340.888+(-150-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251048, assembly_id= 102783, from= IP4; - MCO.9L4.B1:MCO, at= -339.456+(-150-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251052, assembly_id= 102784, from= IP4; - MCD.9L4.B1:MCD, at= -339.4545+(-150-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251053, assembly_id= 102784, from= IP4; - MB.B9L4.B1:MB, at= -331.97+(-150.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831102, assembly_id= 102784, from= IP4; - MCS.B9L4.B1:MCS, at= -324.546+(-151-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244682, assembly_id= 102784, from= IP4; - MB.A9L4.B1:MB, at= -316.31+(-151.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831126, assembly_id= 102785, from= IP4; - MCS.A9L4.B1:MCS, at= -308.886+(-152-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244685, assembly_id= 102785, from= IP4; - BPMCS.8L4.B1:BPMCS, at= -308.199+(-152-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773705, assembly_id= 102786, from= IP4; - BPM.8L4.B1:BPM, at= -308.007+(-152-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773669, assembly_id= 102786, from= IP4; - MQML.8L4.B1:MQML, at= -304.862+(-152-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307840, assembly_id= 102786, from= IP4; - MCBCV.8L4.B1:MCBCV, at= -301.82+(-152-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251054, assembly_id= 102786, from= IP4; - MCO.8L4.B1:MCO, at= -300.391+(-152-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251058, assembly_id= 102787, from= IP4; - MCD.8L4.B1:MCD, at= -300.3895+(-152-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251059, assembly_id= 102787, from= IP4; - MB.B8L4.B1:MB, at= -292.905+(-152.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831150, assembly_id= 102787, from= IP4; - MCS.B8L4.B1:MCS, at= -285.481+(-153-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244694, assembly_id= 102787, from= IP4; - MB.A8L4.B1:MB, at= -277.245+(-153.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849558, assembly_id= 102788, from= IP4; - MCS.A8L4.B1:MCS, at= -269.821+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357309, assembly_id= 102788, from= IP4; -E.DS.L4.B1:OMK, at= -269.415+(-154-IP4OFS.B1)*DS, slot_id= 100932, from= IP4; - BPMCS.7L4.B1:BPMCS, at= -269.134+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773709, assembly_id= 102789, from= IP4; - BPM.7L4.B1:BPM, at= -268.942+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773673, assembly_id= 102789, from= IP4; - MQM.7L4.B1:MQM, at= -266.367+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307963, assembly_id= 102789, from= IP4; - MCBCH.7L4.B1:MCBCH, at= -264.026+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251060, assembly_id= 102789, from= IP4; - DFBAG.7L4.B1:DFBAG, at= -261.8575+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52996683, assembly_id= 104680, from= IP4; - BPMYB.6L4.B1:BPMYB, at= -172.338+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 298213, assembly_id= 102790, from= IP4; - MQY.6L4.B1:MQY, at= -169.62+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303131, assembly_id= 102790, from= IP4; - MCBYV.6L4.B1:MCBYV, at= -167.273+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251062, assembly_id= 102790, from= IP4; - BQKV.6L4.B1:BQKV, at= -164.388+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635730, from= IP4; - MKQA.6L4.B1:MKQA, at= -150.9285+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 377747, from= IP4; - BTVM.6L4.B1:BTVM, at= -148.87+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635731, from= IP4; - APWL.B6L4.B1:APWL, at= -143.8883+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 694130, from= IP4; - BQKH.B6L4.B1:BQKH, at= -137.252+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635729, from= IP4; - BPMYA.5L4.B1:BPMYA, at= -135.338+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244707, assembly_id= 102791, from= IP4; - MQY.5L4.B1:MQY, at= -132.62+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2302991, assembly_id= 102791, from= IP4; - MCBYH.5L4.B1:MCBYH, at= -130.273+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251064, assembly_id= 102791, from= IP4; - MBRB.5L4.B1:MBRB, at= -123.684+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52819566, assembly_id= 102792, from= IP4; - BSRTMB.5L4.B1:BSRTMB, at= -98.9285+(-154-IP4OFS.B1)*DS, mech_sep= -0.2718, slot_id= 56282630, from= IP4; - MGMWH.A5L4.B1:MGMWH, at= -65.4459+(-154-IP4OFS.B1)*DS, mech_sep= -0.3771, slot_id= 642434, from= IP4; - MGMWH.C5L4.B1:MGMWH003, at= -64.01925+(-154-IP4OFS.B1)*DS, mech_sep= -0.3790, slot_id= 2057442, from= IP4; - MGMWV.C5L4.B1:MGMWV003, at= -62.22905+(-154-IP4OFS.B1)*DS, mech_sep= -0.3846, slot_id= 2057445, from= IP4; - MGMWV.A5L4.B1:MGMWV, at= -60.7959+(-154-IP4OFS.B1)*DS, mech_sep= -0.3917, slot_id= 642436, from= IP4; - BPMWI.A5L4.B1:BPMWI, at= -58.7355+(-154-IP4OFS.B1)*DS, mech_sep= -0.3980, slot_id= 6729055, from= IP4; - MBRS.5L4.B1:MBRS, at= -51.783+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244712, assembly_id= 102793, from= IP4; - BGCAB.A5L4.B1:BGCAB, at= -42.104+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 51625890, from= IP4; - BPMWA.B5L4.B1:BPMWA, at= -32.8715+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 104604, from= IP4; - ADTKH.D5L4.B1:ADTKH, at= -30.967+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 627222, assembly_id= 102799, from= IP4; - ADTKH.C5L4.B1:ADTKH, at= -29.367+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 627226, assembly_id= 102799, from= IP4; - ADTKH.B5L4.B1:ADTKH, at= -26.767+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 627224, assembly_id= 102801, from= IP4; - ADTKH.A5L4.B1:ADTKH, at= -25.167+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 627228, assembly_id= 102801, from= IP4; - BPMWA.A5L4.B1:BPMWA, at= -23.9865+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 104605, from= IP4; - ACSPH.A5L4.B1:ACSPH001, at= -14.79925+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538017, assembly_id= 102804, from= IP4; - ACSCA.D5L4.B1:ACSCA, at= -14.543+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244721, assembly_id= 102804, from= IP4; - ACSPH.E5L4.B1:ACSPH002, at= -14.25175+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538025, assembly_id= 102804, from= IP4; - ACSPH.B5L4.B1:ACSPH001, at= -13.30325+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538019, assembly_id= 102804, from= IP4; - ACSCA.C5L4.B1:ACSCA, at= -13.047+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244722, assembly_id= 102804, from= IP4; - ACSPH.F5L4.B1:ACSPH002, at= -12.75575+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538027, assembly_id= 102804, from= IP4; - ACSPH.C5L4.B1:ACSPH001, at= -11.80725+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538021, assembly_id= 102804, from= IP4; - ACSCA.B5L4.B1:ACSCA, at= -11.551+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244723, assembly_id= 102804, from= IP4; - ACSPH.G5L4.B1:ACSPH002, at= -11.25975+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538029, assembly_id= 102804, from= IP4; - ACSPH.D5L4.B1:ACSPH001, at= -10.31125+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538023, assembly_id= 102804, from= IP4; - ACSCA.A5L4.B1:ACSCA, at= -10.055+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244724, assembly_id= 102804, from= IP4; - ACSPH.H5L4.B1:ACSPH002, at= -9.76375+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538031, assembly_id= 102804, from= IP4; -IP4:OMK, at= pIP4+IP4OFS.B1*DS; - ACSPH.A5R4.B1:ACSPH001, at= 9.29875+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538405, assembly_id= 102807, from= IP4; - ACSCA.A5R4.B1:ACSCA, at= 9.555+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244733, assembly_id= 102807, from= IP4; - ACSPH.E5R4.B1:ACSPH002, at= 9.84625+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538417, assembly_id= 102807, from= IP4; - ACSPH.B5R4.B1:ACSPH001, at= 10.79475+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538407, assembly_id= 102807, from= IP4; - ACSCA.B5R4.B1:ACSCA, at= 11.051+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244734, assembly_id= 102807, from= IP4; - ACSPH.F5R4.B1:ACSPH002, at= 11.34225+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538419, assembly_id= 102807, from= IP4; - ACSPH.C5R4.B1:ACSPH001, at= 12.29075+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538409, assembly_id= 102807, from= IP4; - ACSCA.C5R4.B1:ACSCA, at= 12.547+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244735, assembly_id= 102807, from= IP4; - ACSPH.G5R4.B1:ACSPH002, at= 12.83825+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538421, assembly_id= 102807, from= IP4; - ACSPH.D5R4.B1:ACSPH001, at= 13.78675+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538411, assembly_id= 102807, from= IP4; - ACSCA.D5R4.B1:ACSCA, at= 14.043+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244736, assembly_id= 102807, from= IP4; - ACSPH.H5R4.B1:ACSPH002, at= 14.33425+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 40538423, assembly_id= 102807, from= IP4; - APWL.5R4.B1:APWL, at= 17.25+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 479345, from= IP4; - APWL.B5R4.B1:APWL, at= 18.15+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 479346, from= IP4; - BPMWA.A5R4.B1:BPMWA, at= 24.0625+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 104606, from= IP4; - ADTKV.A5R4.B1:ADTKV, at= 25.967+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 628037, assembly_id= 102809, from= IP4; - ADTKV.B5R4.B1:ADTKV, at= 27.567+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 628041, assembly_id= 102809, from= IP4; - ADTKV.C5R4.B1:ADTKV, at= 30.167+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 628039, assembly_id= 102810, from= IP4; - ADTKV.D5R4.B1:ADTKV, at= 31.767+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 628043, assembly_id= 102810, from= IP4; - BPMWA.B5R4.B1:BPMWA, at= 32.9475+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 104607, from= IP4; - MU.A5R4.B1:MU, at= 45.631+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 266549, assembly_id= 102817, from= IP4; - MU.B5R4.B1:MU, at= 45.771+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 266548, assembly_id= 102817, from= IP4; - MU.C5R4.B1:MU, at= 45.911+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 266547, assembly_id= 102817, from= IP4; - MU.D5R4.B1:MU, at= 46.051+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 266546, assembly_id= 102817, from= IP4; - MBRS.5R4.B1:MBRS, at= 51.783+(-154-IP4OFS.B1)*DS, mech_sep= -0.4200, slot_id= 244746, assembly_id= 102818, from= IP4; - BSRTR.5R4.B1:BSRTR, at= 58.781+(-154-IP4OFS.B1)*DS, mech_sep= -0.4040, slot_id= 635738, from= IP4; - BSRTO.A5R4.B1:BSRTO001, at= 70.981+(-154-IP4OFS.B1)*DS, mech_sep= -0.3760, slot_id= 42551670, assembly_id= 635739, from= IP4; - BSRTM.5R4.B1:BSRTM, at= 73.081+(-154-IP4OFS.B1)*DS, mech_sep= -0.3760, slot_id= 635739, from= IP4; - BWS.5R4.B1:BWS, at= 84.876+(-154-IP4OFS.B1)*DS, mech_sep= -0.3176, slot_id= 642430, from= IP4; - BQSV.5R4.B1:BQSV, at= 116.109+(-154-IP4OFS.B1)*DS, mech_sep= -0.2160, slot_id= 635695, from= IP4; - MBRB.5R4.B1:MBRB, at= 123.684+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52819590, assembly_id= 102819, from= IP4; - MCBYV.5R4.B1:MCBYV, at= 130.273+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251067, assembly_id= 102820, from= IP4; - MQY.5R4.B1:MQY, at= 132.62+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348363, assembly_id= 102820, from= IP4; - BPMYB.5R4.B1:BPMYB, at= 135.338+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 298215, assembly_id= 102820, from= IP4; - BPLV.A6R4.B1:BPLV, at= 137.752+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635709, from= IP4; - BPLV.B6R4.B1:BPLV, at= 138.552+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635710, from= IP4; - BPLV.C6R4.B1:BPLV, at= 139.352+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635711, from= IP4; - BPLX.H6R4.B1:BPLX, at= 149.662+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 6731967, from= IP4; - BPLX.D6R4.B1:BPLX, at= 150.452+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635713, from= IP4; - BCTDC.A6R4.B1:BCTDC, at= 153.078+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635717, from= IP4; - BCTDC.B6R4.B1:BCTDC, at= 153.998+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635718, from= IP4; - BCTFR.A6R4.B1:BCTFR, at= 158.838+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635723, from= IP4; - BCTFR.B6R4.B1:BCTFR, at= 159.758+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635724, from= IP4; - BPLH.A6R4.B1:BPLH, at= 163.088+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635706, from= IP4; - BPLH.B6R4.B1:BPLH, at= 163.888+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635707, from= IP4; - BPMYA.6R4.B1:BPMYA, at= 166.902+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244753, assembly_id= 102821, from= IP4; - MQY.6R4.B1:MQY, at= 169.62+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303099, assembly_id= 102821, from= IP4; - MCBYH.6R4.B1:MCBYH, at= 171.967+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251068, assembly_id= 102821, from= IP4; - BQSH.7R4.B1:BQSH, at= 174.902+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635694, from= IP4; - BPLH.7R4.B1:BPLH, at= 177.952+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 635708, from= IP4; - DFBAH.7R4.B1:DFBAH, at= 261.6075+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52996707, assembly_id= 104681, from= IP4; - BPMCS.7R4.B1:BPMCS, at= 263.226+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773714, assembly_id= 102822, from= IP4; - BPM.7R4.B1:BPM, at= 263.418+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773678, assembly_id= 102822, from= IP4; - MQM.7R4.B1:MQM, at= 265.993+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307965, assembly_id= 102822, from= IP4; - MCBCV.7R4.B1:MCBCV, at= 268.334+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251070, assembly_id= 102822, from= IP4; -S.DS.R4.B1:OMK, at= 269.415+(-154-IP4OFS.B1)*DS, slot_id= 100932, from= IP4; - MCO.8R4.B1:MCO_UNPLUGGED, at= 269.759+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251074, assembly_id= 102823, from= IP4; - MCD.8R4.B1:MCD, at= 269.7605+(-154-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251075, assembly_id= 102823, from= IP4; - MB.A8R4.B1:MB, at= 277.245+(-154.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831174, assembly_id= 102823, from= IP4; - MCS.A8R4.B1:MCS, at= 284.669+(-155-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244764, assembly_id= 102823, from= IP4; - MB.B8R4.B1:MB, at= 292.905+(-155.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831198, assembly_id= 102824, from= IP4; - MCS.B8R4.B1:MCS, at= 300.329+(-156-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244767, assembly_id= 102824, from= IP4; - BPMCS.8R4.B1:BPMCS, at= 301.016+(-156-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773717, assembly_id= 102825, from= IP4; - BPM.8R4.B1:BPM, at= 301.208+(-156-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773681, assembly_id= 102825, from= IP4; - MQML.8R4.B1:MQML, at= 304.353+(-156-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307613, assembly_id= 102825, from= IP4; - MCBCH.8R4.B1:MCBCH, at= 307.395+(-156-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251076, assembly_id= 102825, from= IP4; - MCO.9R4.B1:MCO_UNPLUGGED, at= 308.824+(-156-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251080, assembly_id= 102826, from= IP4; - MCD.9R4.B1:MCD, at= 308.8255+(-156-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251081, assembly_id= 102826, from= IP4; - MB.A9R4.B1:MB, at= 316.31+(-156.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831222, assembly_id= 102826, from= IP4; - MCS.A9R4.B1:MCS, at= 323.734+(-157-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244776, assembly_id= 102826, from= IP4; - MB.B9R4.B1:MB, at= 331.97+(-157.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831246, assembly_id= 102827, from= IP4; - MCS.B9R4.B1:MCS, at= 339.394+(-158-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244779, assembly_id= 102827, from= IP4; - BPMCS.9R4.B1:BPMCS, at= 340.082+(-158-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773721, assembly_id= 102828, from= IP4; - BPM.9R4.B1:BPM, at= 340.274+(-158-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773685, assembly_id= 102828, from= IP4; - MQMC.9R4.B1:MQMC, at= 342.25+(-158-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307796, assembly_id= 102828, from= IP4; - MQM.9R4.B1:MQM, at= 345.516+(-158-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307744, assembly_id= 102828, from= IP4; - MCBCV.9R4.B1:MCBCV, at= 347.857+(-158-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251082, assembly_id= 102828, from= IP4; - MCO.10R4.B1:MCO_UNPLUGGED, at= 349.289+(-158-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251086, assembly_id= 102829, from= IP4; - MCD.10R4.B1:MCD, at= 349.2905+(-158-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251087, assembly_id= 102829, from= IP4; - MB.A10R4.B1:MB, at= 356.775+(-158.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831270, assembly_id= 102829, from= IP4; - MCS.A10R4.B1:MCS, at= 364.199+(-159-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244789, assembly_id= 102829, from= IP4; - MB.B10R4.B1:MB, at= 372.435+(-159.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831294, assembly_id= 102830, from= IP4; - MCS.B10R4.B1:MCS, at= 379.859+(-160-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244792, assembly_id= 102830, from= IP4; - BPMCS.10R4.B1:BPMCS, at= 380.546+(-160-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773725, assembly_id= 102831, from= IP4; - BPM.10R4.B1:BPM, at= 380.738+(-160-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 4773689, assembly_id= 102831, from= IP4; - MQML.10R4.B1:MQML, at= 383.883+(-160-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307820, assembly_id= 102831, from= IP4; - MCBCH.10R4.B1:MCBCH, at= 386.925+(-160-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251088, assembly_id= 102831, from= IP4; - MCO.11R4.B1:MCO_UNPLUGGED, at= 388.354+(-160-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251092, assembly_id= 102832, from= IP4; - MCD.11R4.B1:MCD, at= 388.3555+(-160-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251093, assembly_id= 102832, from= IP4; - MB.A11R4.B1:MB, at= 395.84+(-160.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831318, assembly_id= 102832, from= IP4; - MCS.A11R4.B1:MCS, at= 403.264+(-161-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244801, assembly_id= 102832, from= IP4; - MB.B11R4.B1:MB, at= 411.5+(-161.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831342, assembly_id= 102833, from= IP4; - MCS.B11R4.B1:MCS, at= 418.924+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244804, assembly_id= 102833, from= IP4; - LEAL.11R4.B1:LEAL, at= 425.71735+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52997586, assembly_id= 102834, from= IP4; - BPM.11R4.B1:BPM, at= 432.5777+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244806, assembly_id= 102835, from= IP4; -MQ.11R4.B1:MQ, at= 435.1247+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308670, assembly_id= 102835, from= IP4; - MQTLI.11R4.B1:MQTLI, at= 437.4937+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307358, assembly_id= 102835, from= IP4; - MS.11R4.B1:MS, at= 438.5057+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251095, assembly_id= 102835, from= IP4; - MCBV.11R4.B1:MCBV, at= 439.0987+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251097, assembly_id= 102835, from= IP4; -S.ARC.45.B1:OMK, at= 439.8497+(-162-IP4OFS.B1)*DS, slot_id= 100932, from= IP4; - MCO.A12R4.B1:MCO_UNPLUGGED, at= 440.1937+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251100, assembly_id= 102836, from= IP4; - MCD.A12R4.B1:MCD, at= 440.1952+(-162-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251101, assembly_id= 102836, from= IP4; - MB.A12R4.B1:MB, at= 447.6797+(-162.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831366, assembly_id= 102836, from= IP4; - MCS.A12R4.B1:MCS, at= 455.1037+(-163-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244814, assembly_id= 102836, from= IP4; - MB.B12R4.B1:MB, at= 463.3397+(-163.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831390, assembly_id= 102837, from= IP4; - MCS.B12R4.B1:MCS, at= 470.7637+(-164-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244817, assembly_id= 102837, from= IP4; - MCO.B12R4.B1:MCO_UNPLUGGED, at= 471.5137+(-164-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251104, assembly_id= 102838, from= IP4; - MCD.B12R4.B1:MCD, at= 471.5152+(-164-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251105, assembly_id= 102838, from= IP4; - MB.C12R4.B1:MB, at= 478.9997+(-164.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831414, assembly_id= 102838, from= IP4; - MCS.C12R4.B1:MCS, at= 486.4237+(-165-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244822, assembly_id= 102838, from= IP4; - BPM.12R4.B1:BPM, at= 487.3027+(-165-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244824, assembly_id= 102839, from= IP4; - MQT.12R4.B1:MQT, at= 488.0567+(-165-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307705, assembly_id= 102839, from= IP4; -MQ.12R4.B1:MQ, at= 490.0647+(-165-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308463, assembly_id= 102839, from= IP4; - MS.12R4.B1:MS, at= 491.9597+(-165-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251107, assembly_id= 102839, from= IP4; - MCBH.12R4.B1:MCBH, at= 492.5527+(-165-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251109, assembly_id= 102839, from= IP4; - MB.A13R4.B1:MB, at= 501.1297+(-165.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831438, assembly_id= 102840, from= IP4; - MCS.A13R4.B1:MCS, at= 508.5537+(-166-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244830, assembly_id= 102840, from= IP4; - MCO.13R4.B1:MCO_UNPLUGGED, at= 509.3037+(-166-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251112, assembly_id= 102841, from= IP4; - MCD.13R4.B1:MCD, at= 509.3052+(-166-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251113, assembly_id= 102841, from= IP4; - MB.B13R4.B1:MB, at= 516.7897+(-166.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831462, assembly_id= 102841, from= IP4; - MCS.B13R4.B1:MCS, at= 524.2137+(-167-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244835, assembly_id= 102841, from= IP4; - MB.C13R4.B1:MB, at= 532.4497+(-167.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831486, assembly_id= 102842, from= IP4; - MCS.C13R4.B1:MCS, at= 539.8737+(-168-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244838, assembly_id= 102842, from= IP4; - BPM.13R4.B1:BPM, at= 540.7527+(-168-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244840, assembly_id= 102843, from= IP4; - MQT.13R4.B1:MQT, at= 541.5067+(-168-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307498, assembly_id= 102843, from= IP4; -MQ.13R4.B1:MQ, at= 543.5147+(-168-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308493, assembly_id= 102843, from= IP4; - MS.13R4.B1:MS, at= 545.4097+(-168-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251115, assembly_id= 102843, from= IP4; - MCBV.13R4.B1:MCBV, at= 546.0027+(-168-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251117, assembly_id= 102843, from= IP4; -E.DS.R4.B1:OMK, at= 546.7497+(-168-IP4OFS.B1)*DS, slot_id= 100932, from= IP4; - MCO.A14R4.B1:MCO_UNPLUGGED, at= 547.0937+(-168-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251120, assembly_id= 102844, from= IP4; - MCD.A14R4.B1:MCD, at= 547.0952+(-168-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251121, assembly_id= 102844, from= IP4; - MB.A14R4.B1:MB, at= 554.5797+(-168.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831510, assembly_id= 102844, from= IP4; - MCS.A14R4.B1:MCS, at= 562.0037+(-169-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244848, assembly_id= 102844, from= IP4; - MB.B14R4.B1:MB, at= 570.2397+(-169.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831534, assembly_id= 102845, from= IP4; - MCS.B14R4.B1:MCS, at= 577.6637+(-170-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244851, assembly_id= 102845, from= IP4; - MCO.B14R4.B1:MCO_UNPLUGGED, at= 578.4137+(-170-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251124, assembly_id= 102846, from= IP4; - MCD.B14R4.B1:MCD, at= 578.4152+(-170-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251125, assembly_id= 102846, from= IP4; - MB.C14R4.B1:MB, at= 585.8997+(-170.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831558, assembly_id= 102846, from= IP4; - MCS.C14R4.B1:MCS, at= 593.3237+(-171-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244856, assembly_id= 102846, from= IP4; - BPM.14R4.B1:BPM, at= 594.2027+(-171-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244858, assembly_id= 102847, from= IP4; - MQT.14R4.B1:MQT, at= 594.9567+(-171-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307529, assembly_id= 102847, from= IP4; -MQ.14R4.B1:MQ, at= 596.9647+(-171-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308523, assembly_id= 102847, from= IP4; - MS.14R4.B1:MS, at= 598.8597+(-171-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251127, assembly_id= 102847, from= IP4; - MCBH.14R4.B1:MCBH, at= 599.4527+(-171-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251129, assembly_id= 102847, from= IP4; - MB.A15R4.B1:MB, at= 608.0297+(-171.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831582, assembly_id= 102848, from= IP4; - MCS.A15R4.B1:MCS, at= 615.4537+(-172-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244864, assembly_id= 102848, from= IP4; - MCO.15R4.B1:MCO_UNPLUGGED, at= 616.2037+(-172-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251132, assembly_id= 102849, from= IP4; - MCD.15R4.B1:MCD, at= 616.2052+(-172-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251133, assembly_id= 102849, from= IP4; - MB.B15R4.B1:MB, at= 623.6897+(-172.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831606, assembly_id= 102849, from= IP4; - MCS.B15R4.B1:MCS, at= 631.1137+(-173-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244869, assembly_id= 102849, from= IP4; - MB.C15R4.B1:MB, at= 639.3497+(-173.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831630, assembly_id= 102850, from= IP4; - MCS.C15R4.B1:MCS, at= 646.7737+(-174-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244872, assembly_id= 102850, from= IP4; - BPM.15R4.B1:BPM, at= 647.6527+(-174-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244874, assembly_id= 102851, from= IP4; - MQT.15R4.B1:MQT, at= 648.4067+(-174-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307561, assembly_id= 102851, from= IP4; -MQ.15R4.B1:MQ, at= 650.4147+(-174-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308553, assembly_id= 102851, from= IP4; - MS.15R4.B1:MS, at= 652.3097+(-174-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251135, assembly_id= 102851, from= IP4; - MCBV.15R4.B1:MCBV, at= 652.9027+(-174-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251137, assembly_id= 102851, from= IP4; - MCO.A16R4.B1:MCO_UNPLUGGED, at= 653.9937+(-174-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251140, assembly_id= 102852, from= IP4; - MCD.A16R4.B1:MCD, at= 653.9952+(-174-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251141, assembly_id= 102852, from= IP4; - MB.A16R4.B1:MB, at= 661.4797+(-174.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831654, assembly_id= 102852, from= IP4; - MCS.A16R4.B1:MCS, at= 668.9037+(-175-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244882, assembly_id= 102852, from= IP4; - MB.B16R4.B1:MB, at= 677.1397+(-175.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831678, assembly_id= 102853, from= IP4; - MCS.B16R4.B1:MCS, at= 684.5637+(-176-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244885, assembly_id= 102853, from= IP4; - MCO.B16R4.B1:MCO_UNPLUGGED, at= 685.3137+(-176-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251144, assembly_id= 102854, from= IP4; - MCD.B16R4.B1:MCD, at= 685.3152+(-176-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251145, assembly_id= 102854, from= IP4; - MB.C16R4.B1:MB, at= 692.7997+(-176.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831702, assembly_id= 102854, from= IP4; - MCS.C16R4.B1:MCS, at= 700.2237+(-177-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244890, assembly_id= 102854, from= IP4; - BPM.16R4.B1:BPM, at= 701.1027+(-177-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244892, assembly_id= 102855, from= IP4; - MQT.16R4.B1:MQT, at= 701.8567+(-177-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307591, assembly_id= 102855, from= IP4; -MQ.16R4.B1:MQ, at= 703.8647+(-177-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308346, assembly_id= 102855, from= IP4; - MS.16R4.B1:MS, at= 705.7597+(-177-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251147, assembly_id= 102855, from= IP4; - MCBH.16R4.B1:MCBH, at= 706.3527+(-177-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251149, assembly_id= 102855, from= IP4; - MB.A17R4.B1:MB, at= 714.9297+(-177.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831726, assembly_id= 102856, from= IP4; - MCS.A17R4.B1:MCS, at= 722.3537+(-178-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244898, assembly_id= 102856, from= IP4; - MCO.17R4.B1:MCO_UNPLUGGED, at= 723.1037+(-178-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251152, assembly_id= 102857, from= IP4; - MCD.17R4.B1:MCD, at= 723.1052+(-178-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251153, assembly_id= 102857, from= IP4; - MB.B17R4.B1:MB, at= 730.5897+(-178.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831750, assembly_id= 102857, from= IP4; - MCS.B17R4.B1:MCS, at= 738.0137+(-179-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244903, assembly_id= 102857, from= IP4; - MB.C17R4.B1:MB, at= 746.2497+(-179.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831774, assembly_id= 102858, from= IP4; - MCS.C17R4.B1:MCS, at= 753.6737+(-180-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244906, assembly_id= 102858, from= IP4; - BPM.17R4.B1:BPM, at= 754.5527+(-180-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244908, assembly_id= 102859, from= IP4; - MQT.17R4.B1:MQT, at= 755.3067+(-180-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307385, assembly_id= 102859, from= IP4; -MQ.17R4.B1:MQ, at= 757.3147+(-180-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308376, assembly_id= 102859, from= IP4; - MS.17R4.B1:MS, at= 759.2097+(-180-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251155, assembly_id= 102859, from= IP4; - MCBV.17R4.B1:MCBV, at= 759.8027+(-180-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251157, assembly_id= 102859, from= IP4; - MCO.A18R4.B1:MCO_UNPLUGGED, at= 760.8937+(-180-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251160, assembly_id= 102860, from= IP4; - MCD.A18R4.B1:MCD, at= 760.8952+(-180-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251161, assembly_id= 102860, from= IP4; - MB.A18R4.B1:MB, at= 768.3797+(-180.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831798, assembly_id= 102860, from= IP4; - MCS.A18R4.B1:MCS, at= 775.8037+(-181-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244916, assembly_id= 102860, from= IP4; - MB.B18R4.B1:MB, at= 784.0397+(-181.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831822, assembly_id= 102861, from= IP4; - MCS.B18R4.B1:MCS, at= 791.4637+(-182-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244919, assembly_id= 102861, from= IP4; - MCO.B18R4.B1:MCO_UNPLUGGED, at= 792.2137+(-182-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251164, assembly_id= 102862, from= IP4; - MCD.B18R4.B1:MCD, at= 792.2152+(-182-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251165, assembly_id= 102862, from= IP4; - MB.C18R4.B1:MB, at= 799.6997+(-182.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831846, assembly_id= 102862, from= IP4; - MCS.C18R4.B1:MCS, at= 807.1237+(-183-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244924, assembly_id= 102862, from= IP4; - BPM.18R4.B1:BPM, at= 808.0027+(-183-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244926, assembly_id= 102863, from= IP4; - MQT.18R4.B1:MQT, at= 808.7567+(-183-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307417, assembly_id= 102863, from= IP4; -MQ.18R4.B1:MQ, at= 810.7647+(-183-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308406, assembly_id= 102863, from= IP4; - MS.18R4.B1:MS, at= 812.6597+(-183-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251167, assembly_id= 102863, from= IP4; - MCBH.18R4.B1:MCBH, at= 813.2527+(-183-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251169, assembly_id= 102863, from= IP4; - MB.A19R4.B1:MB, at= 821.8297+(-183.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831870, assembly_id= 102864, from= IP4; - MCS.A19R4.B1:MCS, at= 829.2537+(-184-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244932, assembly_id= 102864, from= IP4; - MCO.19R4.B1:MCO_UNPLUGGED, at= 830.0037+(-184-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251172, assembly_id= 102865, from= IP4; - MCD.19R4.B1:MCD, at= 830.0052+(-184-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251173, assembly_id= 102865, from= IP4; - MB.B19R4.B1:MB, at= 837.4897+(-184.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831894, assembly_id= 102865, from= IP4; - MCS.B19R4.B1:MCS, at= 844.9137+(-185-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244937, assembly_id= 102865, from= IP4; - MB.C19R4.B1:MB, at= 853.1497+(-185.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831918, assembly_id= 102866, from= IP4; - MCS.C19R4.B1:MCS, at= 860.5737+(-186-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244940, assembly_id= 102866, from= IP4; - BPM.19R4.B1:BPM, at= 861.4527+(-186-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244942, assembly_id= 102867, from= IP4; - MQT.19R4.B1:MQT, at= 862.2067+(-186-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307447, assembly_id= 102867, from= IP4; -MQ.19R4.B1:MQ, at= 864.2147+(-186-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308438, assembly_id= 102867, from= IP4; - MS.19R4.B1:MS, at= 866.1097+(-186-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251175, assembly_id= 102867, from= IP4; - MCBV.19R4.B1:MCBV, at= 866.7027+(-186-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251177, assembly_id= 102867, from= IP4; - MCO.A20R4.B1:MCO_UNPLUGGED, at= 867.7937+(-186-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251180, assembly_id= 102868, from= IP4; - MCD.A20R4.B1:MCD, at= 867.7952+(-186-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251181, assembly_id= 102868, from= IP4; - MB.A20R4.B1:MB, at= 875.2797+(-186.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831942, assembly_id= 102868, from= IP4; - MCS.A20R4.B1:MCS, at= 882.7037+(-187-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244950, assembly_id= 102868, from= IP4; - MB.B20R4.B1:MB, at= 890.9397+(-187.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831966, assembly_id= 102869, from= IP4; - MCS.B20R4.B1:MCS, at= 898.3637+(-188-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244953, assembly_id= 102869, from= IP4; - MCO.B20R4.B1:MCO_UNPLUGGED, at= 899.1137+(-188-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251184, assembly_id= 102870, from= IP4; - MCD.B20R4.B1:MCD, at= 899.1152+(-188-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251185, assembly_id= 102870, from= IP4; - MB.C20R4.B1:MB, at= 906.5997+(-188.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52831990, assembly_id= 102870, from= IP4; - MCS.C20R4.B1:MCS, at= 914.0237+(-189-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244958, assembly_id= 102870, from= IP4; - BPM.20R4.B1:BPM, at= 914.9027+(-189-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244960, assembly_id= 102871, from= IP4; - MQT.20R4.B1:MQT, at= 915.6567+(-189-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307477, assembly_id= 102871, from= IP4; -MQ.20R4.B1:MQ, at= 917.6647+(-189-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308229, assembly_id= 102871, from= IP4; - MS.20R4.B1:MS, at= 919.5597+(-189-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251187, assembly_id= 102871, from= IP4; - MCBH.20R4.B1:MCBH, at= 920.1527+(-189-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251189, assembly_id= 102871, from= IP4; - MB.A21R4.B1:MB, at= 928.7297+(-189.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832014, assembly_id= 102872, from= IP4; - MCS.A21R4.B1:MCS, at= 936.1537+(-190-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244966, assembly_id= 102872, from= IP4; - MCO.21R4.B1:MCO_UNPLUGGED, at= 936.9037+(-190-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251192, assembly_id= 102873, from= IP4; - MCD.21R4.B1:MCD, at= 936.9052+(-190-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251193, assembly_id= 102873, from= IP4; - MB.B21R4.B1:MB, at= 944.3897+(-190.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832038, assembly_id= 102873, from= IP4; - MCS.B21R4.B1:MCS, at= 951.8137+(-191-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244971, assembly_id= 102873, from= IP4; - MB.C21R4.B1:MB, at= 960.0497+(-191.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832062, assembly_id= 102874, from= IP4; - MCS.C21R4.B1:MCS, at= 967.4737+(-192-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244974, assembly_id= 102874, from= IP4; - BPM.21R4.B1:BPM, at= 968.3527+(-192-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244976, assembly_id= 102875, from= IP4; - MQT.21R4.B1:MQT, at= 969.1067+(-192-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307275, assembly_id= 102875, from= IP4; -MQ.21R4.B1:MQ, at= 971.1147+(-192-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308259, assembly_id= 102875, from= IP4; - MS.21R4.B1:MS, at= 973.0097+(-192-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251195, assembly_id= 102875, from= IP4; - MCBV.21R4.B1:MCBV, at= 973.6027+(-192-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251197, assembly_id= 102875, from= IP4; - MCO.A22R4.B1:MCO_UNPLUGGED, at= 974.6937+(-192-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251200, assembly_id= 102876, from= IP4; - MCD.A22R4.B1:MCD, at= 974.6952+(-192-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251201, assembly_id= 102876, from= IP4; - MB.A22R4.B1:MB, at= 982.1797+(-192.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832086, assembly_id= 102876, from= IP4; - MCS.A22R4.B1:MCS, at= 989.6037+(-193-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244984, assembly_id= 102876, from= IP4; - MB.B22R4.B1:MB, at= 997.8397+(-193.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832110, assembly_id= 102877, from= IP4; - MCS.B22R4.B1:MCS, at= 1005.2637+(-194-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244987, assembly_id= 102877, from= IP4; - MCO.B22R4.B1:MCO_UNPLUGGED, at= 1006.0137+(-194-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251204, assembly_id= 102878, from= IP4; - MCD.B22R4.B1:MCD, at= 1006.0152+(-194-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251205, assembly_id= 102878, from= IP4; - MB.C22R4.B1:MB, at= 1013.4997+(-194.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832134, assembly_id= 102878, from= IP4; - MCS.C22R4.B1:MCS, at= 1020.9237+(-195-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244992, assembly_id= 102878, from= IP4; - BPM.22R4.B1:BPM, at= 1021.8027+(-195-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 244994, assembly_id= 102879, from= IP4; - MO.22R4.B1:MO, at= 1022.5537+(-195-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308819, assembly_id= 102879, from= IP4; -MQ.22R4.B1:MQ, at= 1024.5647+(-195-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308291, assembly_id= 102879, from= IP4; - MS.22R4.B1:MS, at= 1026.4597+(-195-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251207, assembly_id= 102879, from= IP4; - MCBH.22R4.B1:MCBH, at= 1027.0527+(-195-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251209, assembly_id= 102879, from= IP4; - MB.A23R4.B1:MB, at= 1035.6297+(-195.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832158, assembly_id= 102880, from= IP4; - MCS.A23R4.B1:MCS, at= 1043.0537+(-196-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245000, assembly_id= 102880, from= IP4; - MCO.23R4.B1:MCO_UNPLUGGED, at= 1043.8037+(-196-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251212, assembly_id= 102881, from= IP4; - MCD.23R4.B1:MCD, at= 1043.8052+(-196-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251213, assembly_id= 102881, from= IP4; - MB.B23R4.B1:MB, at= 1051.2897+(-196.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832182, assembly_id= 102881, from= IP4; - MCS.B23R4.B1:MCS, at= 1058.7137+(-197-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245005, assembly_id= 102881, from= IP4; - MB.C23R4.B1:MB, at= 1066.9497+(-197.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832206, assembly_id= 102882, from= IP4; - MCS.C23R4.B1:MCS, at= 1074.3737+(-198-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245008, assembly_id= 102882, from= IP4; - BPM.23R4.B1:BPM, at= 1075.2527+(-198-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245010, assembly_id= 102883, from= IP4; - MQS.23R4.B1:MQS, at= 1076.0067+(-198-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307641, assembly_id= 102883, from= IP4; -MQ.23R4.B1:MQ, at= 1078.0147+(-198-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308322, assembly_id= 102883, from= IP4; - MS.23R4.B1:MS, at= 1079.9097+(-198-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251215, assembly_id= 102883, from= IP4; - MCBV.23R4.B1:MCBV, at= 1080.5027+(-198-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251217, assembly_id= 102883, from= IP4; - MCO.A24R4.B1:MCO_UNPLUGGED, at= 1081.5937+(-198-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251220, assembly_id= 102884, from= IP4; - MCD.A24R4.B1:MCD, at= 1081.5952+(-198-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251221, assembly_id= 102884, from= IP4; - MB.A24R4.B1:MB, at= 1089.0797+(-198.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832230, assembly_id= 102884, from= IP4; - MCS.A24R4.B1:MCS, at= 1096.5037+(-199-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245018, assembly_id= 102884, from= IP4; - MB.B24R4.B1:MB, at= 1104.7397+(-199.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832254, assembly_id= 102885, from= IP4; - MCS.B24R4.B1:MCS, at= 1112.1637+(-200-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245021, assembly_id= 102885, from= IP4; - MCO.B24R4.B1:MCO_UNPLUGGED, at= 1112.9137+(-200-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251224, assembly_id= 102886, from= IP4; - MCD.B24R4.B1:MCD, at= 1112.9152+(-200-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251225, assembly_id= 102886, from= IP4; - MB.C24R4.B1:MB, at= 1120.3997+(-200.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832278, assembly_id= 102886, from= IP4; - MCS.C24R4.B1:MCS, at= 1127.8237+(-201-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245026, assembly_id= 102886, from= IP4; - BPM.24R4.B1:BPM, at= 1128.7027+(-201-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245028, assembly_id= 102887, from= IP4; - MO.24R4.B1:MO, at= 1129.4537+(-201-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308849, assembly_id= 102887, from= IP4; -MQ.24R4.B1:MQ, at= 1131.4647+(-201-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308112, assembly_id= 102887, from= IP4; - MS.24R4.B1:MS, at= 1133.3597+(-201-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251227, assembly_id= 102887, from= IP4; - MCBH.24R4.B1:MCBH, at= 1133.9527+(-201-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251229, assembly_id= 102887, from= IP4; - MB.A25R4.B1:MB, at= 1142.5297+(-201.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832302, assembly_id= 102888, from= IP4; - MCS.A25R4.B1:MCS, at= 1149.9537+(-202-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245034, assembly_id= 102888, from= IP4; - MCO.25R4.B1:MCO_UNPLUGGED, at= 1150.7037+(-202-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251232, assembly_id= 102889, from= IP4; - MCD.25R4.B1:MCD, at= 1150.7052+(-202-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251233, assembly_id= 102889, from= IP4; - MB.B25R4.B1:MB, at= 1158.1897+(-202.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832326, assembly_id= 102889, from= IP4; - MCS.B25R4.B1:MCS, at= 1165.6137+(-203-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245039, assembly_id= 102889, from= IP4; - MB.C25R4.B1:MB, at= 1173.8497+(-203.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832350, assembly_id= 102890, from= IP4; - MCS.C25R4.B1:MCS, at= 1181.2737+(-204-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245042, assembly_id= 102890, from= IP4; - BPM.25R4.B1:BPM, at= 1182.1527+(-204-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245044, assembly_id= 102891, from= IP4; - MO.25R4.B1:MO, at= 1182.9037+(-204-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308881, assembly_id= 102891, from= IP4; -MQ.25R4.B1:MQ, at= 1184.9147+(-204-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308144, assembly_id= 102891, from= IP4; - MS.25R4.B1:MS, at= 1186.8097+(-204-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251235, assembly_id= 102891, from= IP4; - MCBV.25R4.B1:MCBV, at= 1187.4027+(-204-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251237, assembly_id= 102891, from= IP4; - MCO.A26R4.B1:MCO_UNPLUGGED, at= 1188.4937+(-204-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251240, assembly_id= 102892, from= IP4; - MCD.A26R4.B1:MCD, at= 1188.4952+(-204-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251241, assembly_id= 102892, from= IP4; - MB.A26R4.B1:MB, at= 1195.9797+(-204.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832374, assembly_id= 102892, from= IP4; - MCS.A26R4.B1:MCS, at= 1203.4037+(-205-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245052, assembly_id= 102892, from= IP4; - MB.B26R4.B1:MB, at= 1211.6397+(-205.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832398, assembly_id= 102893, from= IP4; - MCS.B26R4.B1:MCS, at= 1219.0637+(-206-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245055, assembly_id= 102893, from= IP4; - MCO.B26R4.B1:MCO_UNPLUGGED, at= 1219.8137+(-206-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251244, assembly_id= 102894, from= IP4; - MCD.B26R4.B1:MCD, at= 1219.8152+(-206-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251245, assembly_id= 102894, from= IP4; - MB.C26R4.B1:MB, at= 1227.2997+(-206.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832422, assembly_id= 102894, from= IP4; - MCS.C26R4.B1:MCS, at= 1234.7237+(-207-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245060, assembly_id= 102894, from= IP4; - BPM.26R4.B1:BPM, at= 1235.6027+(-207-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245062, assembly_id= 102895, from= IP4; - MO.26R4.B1:MO, at= 1236.3537+(-207-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348505, assembly_id= 102895, from= IP4; -MQ.26R4.B1:MQ, at= 1238.3647+(-207-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308175, assembly_id= 102895, from= IP4; - MS.26R4.B1:MS, at= 1240.2597+(-207-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251247, assembly_id= 102895, from= IP4; - MCBH.26R4.B1:MCBH, at= 1240.8527+(-207-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251249, assembly_id= 102895, from= IP4; - MB.A27R4.B1:MB, at= 1249.4297+(-207.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832446, assembly_id= 102896, from= IP4; - MCS.A27R4.B1:MCS, at= 1256.8537+(-208-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245068, assembly_id= 102896, from= IP4; - MCO.27R4.B1:MCO_UNPLUGGED, at= 1257.6037+(-208-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251252, assembly_id= 102897, from= IP4; - MCD.27R4.B1:MCD, at= 1257.6052+(-208-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251253, assembly_id= 102897, from= IP4; - MB.B27R4.B1:MB, at= 1265.0897+(-208.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832470, assembly_id= 102897, from= IP4; - MCS.B27R4.B1:MCS, at= 1272.5137+(-209-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245073, assembly_id= 102897, from= IP4; - MB.C27R4.B1:MB, at= 1280.7497+(-209.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832494, assembly_id= 102898, from= IP4; - MCS.C27R4.B1:MCS, at= 1288.1737+(-210-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245076, assembly_id= 102898, from= IP4; - BPM.27R4.B1:BPM, at= 1289.0527+(-210-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245078, assembly_id= 102899, from= IP4; - MQS.27R4.B1:MQS, at= 1289.8067+(-210-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307673, assembly_id= 102899, from= IP4; -MQ.27R4.B1:MQ, at= 1291.8147+(-210-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308204, assembly_id= 102899, from= IP4; - MS.27R4.B1:MS, at= 1293.7097+(-210-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251255, assembly_id= 102899, from= IP4; - MCBV.27R4.B1:MCBV, at= 1294.3027+(-210-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251257, assembly_id= 102899, from= IP4; - MCO.A28R4.B1:MCO_UNPLUGGED, at= 1295.3937+(-210-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251260, assembly_id= 102900, from= IP4; - MCD.A28R4.B1:MCD, at= 1295.3952+(-210-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251261, assembly_id= 102900, from= IP4; - MB.A28R4.B1:MB, at= 1302.8797+(-210.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832518, assembly_id= 102900, from= IP4; - MCS.A28R4.B1:MCS, at= 1310.3037+(-211-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245086, assembly_id= 102900, from= IP4; - MB.B28R4.B1:MB, at= 1318.5397+(-211.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832542, assembly_id= 102901, from= IP4; - MCS.B28R4.B1:MCS, at= 1325.9637+(-212-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245089, assembly_id= 102901, from= IP4; - MCO.B28R4.B1:MCO_UNPLUGGED, at= 1326.7137+(-212-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251264, assembly_id= 102902, from= IP4; - MCD.B28R4.B1:MCD, at= 1326.7152+(-212-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251265, assembly_id= 102902, from= IP4; - MB.C28R4.B1:MB, at= 1334.1997+(-212.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832566, assembly_id= 102902, from= IP4; - MCS.C28R4.B1:MCS, at= 1341.6237+(-213-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245094, assembly_id= 102902, from= IP4; - BPM.28R4.B1:BPM, at= 1342.5027+(-213-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245096, assembly_id= 102903, from= IP4; - MO.28R4.B1:MO, at= 1343.2537+(-213-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308702, assembly_id= 102903, from= IP4; -MQ.28R4.B1:MQ, at= 1345.2647+(-213-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307996, assembly_id= 102903, from= IP4; - MS.28R4.B1:MS, at= 1347.1597+(-213-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251267, assembly_id= 102903, from= IP4; - MCBH.28R4.B1:MCBH, at= 1347.7527+(-213-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251269, assembly_id= 102903, from= IP4; - MB.A29R4.B1:MB, at= 1356.3297+(-213.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832590, assembly_id= 102904, from= IP4; - MCS.A29R4.B1:MCS, at= 1363.7537+(-214-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245102, assembly_id= 102904, from= IP4; - MCO.29R4.B1:MCO_UNPLUGGED, at= 1364.5037+(-214-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251272, assembly_id= 102905, from= IP4; - MCD.29R4.B1:MCD, at= 1364.5052+(-214-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251273, assembly_id= 102905, from= IP4; - MB.B29R4.B1:MB, at= 1371.9897+(-214.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832614, assembly_id= 102905, from= IP4; - MCS.B29R4.B1:MCS, at= 1379.4137+(-215-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245107, assembly_id= 102905, from= IP4; - MB.C29R4.B1:MB, at= 1387.6497+(-215.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832638, assembly_id= 102906, from= IP4; - MCS.C29R4.B1:MCS, at= 1395.0737+(-216-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245110, assembly_id= 102906, from= IP4; - BPM.29R4.B1:BPM, at= 1395.9527+(-216-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245112, assembly_id= 102907, from= IP4; - MO.29R4.B1:MO, at= 1396.7037+(-216-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308734, assembly_id= 102907, from= IP4; -MQ.29R4.B1:MQ, at= 1398.7147+(-216-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308027, assembly_id= 102907, from= IP4; - MS.29R4.B1:MS, at= 1400.6097+(-216-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251275, assembly_id= 102907, from= IP4; - MCBV.29R4.B1:MCBV, at= 1401.2027+(-216-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251277, assembly_id= 102907, from= IP4; - MCO.A30R4.B1:MCO_UNPLUGGED, at= 1402.2937+(-216-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251280, assembly_id= 102908, from= IP4; - MCD.A30R4.B1:MCD, at= 1402.2952+(-216-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251281, assembly_id= 102908, from= IP4; - MB.A30R4.B1:MB, at= 1409.7797+(-216.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832662, assembly_id= 102908, from= IP4; - MCS.A30R4.B1:MCS, at= 1417.2037+(-217-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245120, assembly_id= 102908, from= IP4; - MB.B30R4.B1:MB, at= 1425.4397+(-217.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832686, assembly_id= 102909, from= IP4; - MCS.B30R4.B1:MCS, at= 1432.8637+(-218-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245123, assembly_id= 102909, from= IP4; - MCO.B30R4.B1:MCO_UNPLUGGED, at= 1433.6137+(-218-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251284, assembly_id= 102910, from= IP4; - MCD.B30R4.B1:MCD, at= 1433.6152+(-218-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251285, assembly_id= 102910, from= IP4; - MB.C30R4.B1:MB, at= 1441.0997+(-218.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832710, assembly_id= 102910, from= IP4; - MCS.C30R4.B1:MCS, at= 1448.5237+(-219-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245128, assembly_id= 102910, from= IP4; - BPM.30R4.B1:BPM, at= 1449.4027+(-219-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245130, assembly_id= 102911, from= IP4; - MO.30R4.B1:MO, at= 1450.1537+(-219-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308765, assembly_id= 102911, from= IP4; -MQ.30R4.B1:MQ, at= 1452.1647+(-219-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308057, assembly_id= 102911, from= IP4; - MSS.30R4.B1:MSS, at= 1454.0597+(-219-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251287, assembly_id= 102911, from= IP4; - MCBH.30R4.B1:MCBH, at= 1454.6527+(-219-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251289, assembly_id= 102911, from= IP4; - MB.A31R4.B1:MB, at= 1463.2297+(-219.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832734, assembly_id= 102912, from= IP4; - MCS.A31R4.B1:MCS, at= 1470.6537+(-220-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245136, assembly_id= 102912, from= IP4; - MCO.31R4.B1:MCO_UNPLUGGED, at= 1471.4037+(-220-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251292, assembly_id= 102913, from= IP4; - MCD.31R4.B1:MCD, at= 1471.4052+(-220-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251293, assembly_id= 102913, from= IP4; - MB.B31R4.B1:MB, at= 1478.8897+(-220.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832758, assembly_id= 102913, from= IP4; - MCS.B31R4.B1:MCS, at= 1486.3137+(-221-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245141, assembly_id= 102913, from= IP4; - MB.C31R4.B1:MB, at= 1494.5497+(-221.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832782, assembly_id= 102914, from= IP4; - MCS.C31R4.B1:MCS, at= 1501.9737+(-222-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245144, assembly_id= 102914, from= IP4; - BPM.31R4.B1:BPM, at= 1502.8527+(-222-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245146, assembly_id= 102915, from= IP4; - MO.31R4.B1:MO, at= 1503.6037+(-222-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308795, assembly_id= 102915, from= IP4; -MQ.31R4.B1:MQ, at= 1505.6147+(-222-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307848, assembly_id= 102915, from= IP4; - MS.31R4.B1:MS, at= 1507.5097+(-222-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251295, assembly_id= 102915, from= IP4; - MCBV.31R4.B1:MCBV, at= 1508.1027+(-222-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251297, assembly_id= 102915, from= IP4; -S.CELL.45.B1:OMK, at= 1508.8497+(-222-IP4OFS.B1)*DS, slot_id= 100932, from= IP4; - MCO.A32R4.B1:MCO_UNPLUGGED, at= 1509.1937+(-222-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251300, assembly_id= 102916, from= IP4; - MCD.A32R4.B1:MCD, at= 1509.1952+(-222-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251301, assembly_id= 102916, from= IP4; - MB.A32R4.B1:MB, at= 1516.6797+(-222.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832806, assembly_id= 102916, from= IP4; - MCS.A32R4.B1:MCS, at= 1524.1037+(-223-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245154, assembly_id= 102916, from= IP4; - MB.B32R4.B1:MB, at= 1532.3397+(-223.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832830, assembly_id= 102917, from= IP4; - MCS.B32R4.B1:MCS, at= 1539.7637+(-224-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245157, assembly_id= 102917, from= IP4; - MCO.B32R4.B1:MCO_UNPLUGGED, at= 1540.5137+(-224-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251304, assembly_id= 102918, from= IP4; - MCD.B32R4.B1:MCD, at= 1540.5152+(-224-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251305, assembly_id= 102918, from= IP4; - MB.C32R4.B1:MB, at= 1547.9997+(-224.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832854, assembly_id= 102918, from= IP4; - MCS.C32R4.B1:MCS, at= 1555.4237+(-225-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245162, assembly_id= 102918, from= IP4; - BPM.32R4.B1:BPM, at= 1556.3027+(-225-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245164, assembly_id= 102919, from= IP4; - MO.32R4.B1:MO, at= 1557.0537+(-225-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308587, assembly_id= 102919, from= IP4; -MQ.32R4.B1:MQ, at= 1559.0647+(-225-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307878, assembly_id= 102919, from= IP4; - MS.32R4.B1:MS, at= 1560.9597+(-225-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251307, assembly_id= 102919, from= IP4; - MCBH.32R4.B1:MCBH, at= 1561.5527+(-225-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251309, assembly_id= 102919, from= IP4; - MB.A33R4.B1:MB, at= 1570.1297+(-225.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832878, assembly_id= 102920, from= IP4; - MCS.A33R4.B1:MCS, at= 1577.5537+(-226-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245170, assembly_id= 102920, from= IP4; - MCO.33R4.B1:MCO_UNPLUGGED, at= 1578.3037+(-226-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251312, assembly_id= 102921, from= IP4; - MCD.33R4.B1:MCD, at= 1578.3052+(-226-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251313, assembly_id= 102921, from= IP4; - MB.B33R4.B1:MB, at= 1585.7897+(-226.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832902, assembly_id= 102921, from= IP4; - MCS.B33R4.B1:MCS, at= 1593.2137+(-227-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245175, assembly_id= 102921, from= IP4; - MB.C33R4.B1:MB, at= 1601.4497+(-227.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832926, assembly_id= 102922, from= IP4; - MCS.C33R4.B1:MCS, at= 1608.8737+(-228-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245178, assembly_id= 102922, from= IP4; - BPM.33R4.B1:BPM, at= 1609.7527+(-228-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245180, assembly_id= 102923, from= IP4; - MO.33R4.B1:MO, at= 1610.5037+(-228-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308618, assembly_id= 102923, from= IP4; -MQ.33R4.B1:MQ, at= 1612.5147+(-228-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307908, assembly_id= 102923, from= IP4; - MS.33R4.B1:MS, at= 1614.4097+(-228-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251315, assembly_id= 102923, from= IP4; - MCBV.33R4.B1:MCBV, at= 1615.0027+(-228-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251317, assembly_id= 102923, from= IP4; -E.CELL.45.B1:OMK, at= 1615.7497+(-228-IP4OFS.B1)*DS, slot_id= 100932, from= IP4; - MCO.A34R4.B1:MCO_UNPLUGGED, at= 1616.0937+(-228-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251320, assembly_id= 102924, from= IP4; - MCD.A34R4.B1:MCD, at= 1616.0952+(-228-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251321, assembly_id= 102924, from= IP4; - MB.A34R4.B1:MB, at= 1623.5797+(-228.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832950, assembly_id= 102924, from= IP4; - MCS.A34R4.B1:MCS, at= 1631.0037+(-229-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245188, assembly_id= 102924, from= IP4; - MB.B34R4.B1:MB, at= 1639.2397+(-229.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832974, assembly_id= 102925, from= IP4; - MCS.B34R4.B1:MCS, at= 1646.6637+(-230-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245191, assembly_id= 102925, from= IP4; - MCO.B34R4.B1:MCO_UNPLUGGED, at= 1647.4137+(-230-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251324, assembly_id= 102926, from= IP4; - MCD.B34R4.B1:MCD, at= 1647.4152+(-230-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251325, assembly_id= 102926, from= IP4; - MB.C34R4.B1:MB, at= 1654.8997+(-230.5-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52832998, assembly_id= 102926, from= IP4; - MCS.C34R4.B1:MCS, at= 1662.3237+(-231-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245196, assembly_id= 102926, from= IP4; - BPM.34R4.B1:BPM, at= 1663.2027+(-231-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245198, assembly_id= 102927, from= IP4; - MO.34R4.B1:MO, at= 1663.9537+(-231-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308633, assembly_id= 102927, from= IP4; -MQ.34R4.B1:MQ, at= 1665.9647+(-231-IP4OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307923, assembly_id= 102927, from= IP4; - MSS.34L5.B1:MSS, at= -1664.5007+(-231-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251327, assembly_id= 102927, from= IP5; - MCBH.34L5.B1:MCBH, at= -1663.9077+(-231-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251329, assembly_id= 102927, from= IP5; - MB.C34L5.B1:MB, at= -1655.3307+(-231.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833022, assembly_id= 102928, from= IP5; - MCS.C34L5.B1:MCS, at= -1647.9067+(-232-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245204, assembly_id= 102928, from= IP5; - MCO.34L5.B1:MCO_UNPLUGGED, at= -1647.1567+(-232-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251332, assembly_id= 102929, from= IP5; - MCD.34L5.B1:MCD, at= -1647.1552+(-232-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251333, assembly_id= 102929, from= IP5; - MB.B34L5.B1:MB, at= -1639.6707+(-232.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833046, assembly_id= 102929, from= IP5; - MCS.B34L5.B1:MCS, at= -1632.2467+(-233-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245209, assembly_id= 102929, from= IP5; - MB.A34L5.B1:MB, at= -1624.0107+(-233.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833070, assembly_id= 102930, from= IP5; - MCS.A34L5.B1:MCS, at= -1616.5867+(-234-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245212, assembly_id= 102930, from= IP5; - BPM.33L5.B1:BPM, at= -1615.7077+(-234-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245214, assembly_id= 102931, from= IP5; - MO.33L5.B1:MO, at= -1614.9567+(-234-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308605, assembly_id= 102931, from= IP5; -MQ.33L5.B1:MQ, at= -1612.9457+(-234-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307895, assembly_id= 102931, from= IP5; - MS.33L5.B1:MS, at= -1611.0507+(-234-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251335, assembly_id= 102931, from= IP5; - MCBV.33L5.B1:MCBV, at= -1610.4577+(-234-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251337, assembly_id= 102931, from= IP5; - MCO.B33L5.B1:MCO_UNPLUGGED, at= -1609.3667+(-234-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251340, assembly_id= 102932, from= IP5; - MCD.B33L5.B1:MCD, at= -1609.3652+(-234-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251341, assembly_id= 102932, from= IP5; - MB.C33L5.B1:MB, at= -1601.8807+(-234.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833094, assembly_id= 102932, from= IP5; - MCS.C33L5.B1:MCS, at= -1594.4567+(-235-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245222, assembly_id= 102932, from= IP5; - MB.B33L5.B1:MB, at= -1586.2207+(-235.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833118, assembly_id= 102933, from= IP5; - MCS.B33L5.B1:MCS, at= -1578.7967+(-236-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245225, assembly_id= 102933, from= IP5; - MCO.A33L5.B1:MCO_UNPLUGGED, at= -1578.0467+(-236-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251344, assembly_id= 102934, from= IP5; - MCD.A33L5.B1:MCD, at= -1578.0452+(-236-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251345, assembly_id= 102934, from= IP5; - MB.A33L5.B1:MB, at= -1570.5607+(-236.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833142, assembly_id= 102934, from= IP5; - MCS.A33L5.B1:MCS, at= -1563.1367+(-237-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245230, assembly_id= 102934, from= IP5; - BPM.32L5.B1:BPM, at= -1562.2577+(-237-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245232, assembly_id= 102935, from= IP5; - MO.32L5.B1:MO, at= -1561.5067+(-237-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308573, assembly_id= 102935, from= IP5; -MQ.32L5.B1:MQ, at= -1559.4957+(-237-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307865, assembly_id= 102935, from= IP5; - MSS.32L5.B1:MSS, at= -1557.6007+(-237-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251347, assembly_id= 102935, from= IP5; - MCBH.32L5.B1:MCBH, at= -1557.0077+(-237-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251349, assembly_id= 102935, from= IP5; - MB.C32L5.B1:MB, at= -1548.4307+(-237.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833166, assembly_id= 102936, from= IP5; - MCS.C32L5.B1:MCS, at= -1541.0067+(-238-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245238, assembly_id= 102936, from= IP5; - MCO.32L5.B1:MCO_UNPLUGGED, at= -1540.2567+(-238-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251352, assembly_id= 102937, from= IP5; - MCD.32L5.B1:MCD, at= -1540.2552+(-238-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251353, assembly_id= 102937, from= IP5; - MB.B32L5.B1:MB, at= -1532.7707+(-238.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833190, assembly_id= 102937, from= IP5; - MCS.B32L5.B1:MCS, at= -1525.3467+(-239-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245243, assembly_id= 102937, from= IP5; - MB.A32L5.B1:MB, at= -1517.1107+(-239.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833214, assembly_id= 102938, from= IP5; - MCS.A32L5.B1:MCS, at= -1509.6867+(-240-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245246, assembly_id= 102938, from= IP5; - BPM.31L5.B1:BPM, at= -1508.8077+(-240-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245248, assembly_id= 102939, from= IP5; - MO.31L5.B1:MO, at= -1508.0567+(-240-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308782, assembly_id= 102939, from= IP5; -MQ.31L5.B1:MQ, at= -1506.0457+(-240-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308073, assembly_id= 102939, from= IP5; - MS.31L5.B1:MS, at= -1504.1507+(-240-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251355, assembly_id= 102939, from= IP5; - MCBV.31L5.B1:MCBV, at= -1503.5577+(-240-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251357, assembly_id= 102939, from= IP5; - MCO.B31L5.B1:MCO_UNPLUGGED, at= -1502.4667+(-240-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251360, assembly_id= 102940, from= IP5; - MCD.B31L5.B1:MCD, at= -1502.4652+(-240-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251361, assembly_id= 102940, from= IP5; - MB.C31L5.B1:MB, at= -1494.9807+(-240.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833238, assembly_id= 102940, from= IP5; - MCS.C31L5.B1:MCS, at= -1487.5567+(-241-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245256, assembly_id= 102940, from= IP5; - MB.B31L5.B1:MB, at= -1479.3207+(-241.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833262, assembly_id= 102941, from= IP5; - MCS.B31L5.B1:MCS, at= -1471.8967+(-242-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245259, assembly_id= 102941, from= IP5; - MCO.A31L5.B1:MCO_UNPLUGGED, at= -1471.1467+(-242-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251364, assembly_id= 102942, from= IP5; - MCD.A31L5.B1:MCD, at= -1471.1452+(-242-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251365, assembly_id= 102942, from= IP5; - MB.A31L5.B1:MB, at= -1463.6607+(-242.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833286, assembly_id= 102942, from= IP5; - MCS.A31L5.B1:MCS, at= -1456.2367+(-243-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245264, assembly_id= 102942, from= IP5; - BPM.30L5.B1:BPM, at= -1455.3577+(-243-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245266, assembly_id= 102943, from= IP5; - MO.30L5.B1:MO, at= -1454.6067+(-243-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308752, assembly_id= 102943, from= IP5; -MQ.30L5.B1:MQ, at= -1452.5957+(-243-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348466, assembly_id= 102943, from= IP5; - MS.30L5.B1:MS, at= -1450.7007+(-243-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251367, assembly_id= 102943, from= IP5; - MCBH.30L5.B1:MCBH, at= -1450.1077+(-243-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251369, assembly_id= 102943, from= IP5; - MB.C30L5.B1:MB, at= -1441.5307+(-243.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833310, assembly_id= 102944, from= IP5; - MCS.C30L5.B1:MCS, at= -1434.1067+(-244-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245272, assembly_id= 102944, from= IP5; - MCO.30L5.B1:MCO_UNPLUGGED, at= -1433.3567+(-244-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251372, assembly_id= 102945, from= IP5; - MCD.30L5.B1:MCD, at= -1433.3552+(-244-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251373, assembly_id= 102945, from= IP5; - MB.B30L5.B1:MB, at= -1425.8707+(-244.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833334, assembly_id= 102945, from= IP5; - MCS.B30L5.B1:MCS, at= -1418.4467+(-245-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245277, assembly_id= 102945, from= IP5; - MB.A30L5.B1:MB, at= -1410.2107+(-245.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833358, assembly_id= 102946, from= IP5; - MCS.A30L5.B1:MCS, at= -1402.7867+(-246-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245280, assembly_id= 102946, from= IP5; - BPM.29L5.B1:BPM, at= -1401.9077+(-246-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245282, assembly_id= 102947, from= IP5; - MO.29L5.B1:MO, at= -1401.1567+(-246-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308720, assembly_id= 102947, from= IP5; -MQ.29L5.B1:MQ, at= -1399.1457+(-246-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308014, assembly_id= 102947, from= IP5; - MS.29L5.B1:MS, at= -1397.2507+(-246-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251375, assembly_id= 102947, from= IP5; - MCBV.29L5.B1:MCBV, at= -1396.6577+(-246-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251377, assembly_id= 102947, from= IP5; - MCO.B29L5.B1:MCO_UNPLUGGED, at= -1395.5667+(-246-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251380, assembly_id= 102948, from= IP5; - MCD.B29L5.B1:MCD, at= -1395.5652+(-246-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251381, assembly_id= 102948, from= IP5; - MB.C29L5.B1:MB, at= -1388.0807+(-246.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833382, assembly_id= 102948, from= IP5; - MCS.C29L5.B1:MCS, at= -1380.6567+(-247-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245290, assembly_id= 102948, from= IP5; - MB.B29L5.B1:MB, at= -1372.4207+(-247.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833406, assembly_id= 102949, from= IP5; - MCS.B29L5.B1:MCS, at= -1364.9967+(-248-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245293, assembly_id= 102949, from= IP5; - MCO.A29L5.B1:MCO_UNPLUGGED, at= -1364.2467+(-248-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251384, assembly_id= 102950, from= IP5; - MCD.A29L5.B1:MCD, at= -1364.2452+(-248-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251385, assembly_id= 102950, from= IP5; - MB.A29L5.B1:MB, at= -1356.7607+(-248.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833430, assembly_id= 102950, from= IP5; - MCS.A29L5.B1:MCS, at= -1349.3367+(-249-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245298, assembly_id= 102950, from= IP5; - BPM.28L5.B1:BPM, at= -1348.4577+(-249-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245300, assembly_id= 102951, from= IP5; - MO.28L5.B1:MO, at= -1347.7067+(-249-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308689, assembly_id= 102951, from= IP5; -MQ.28L5.B1:MQ, at= -1345.6957+(-249-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307982, assembly_id= 102951, from= IP5; - MSS.28L5.B1:MSS, at= -1343.8007+(-249-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251387, assembly_id= 102951, from= IP5; - MCBH.28L5.B1:MCBH, at= -1343.2077+(-249-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251389, assembly_id= 102951, from= IP5; - MB.C28L5.B1:MB, at= -1334.6307+(-249.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833454, assembly_id= 102952, from= IP5; - MCS.C28L5.B1:MCS, at= -1327.2067+(-250-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245306, assembly_id= 102952, from= IP5; - MCO.28L5.B1:MCO_UNPLUGGED, at= -1326.4567+(-250-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251392, assembly_id= 102953, from= IP5; - MCD.28L5.B1:MCD, at= -1326.4552+(-250-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251393, assembly_id= 102953, from= IP5; - MB.B28L5.B1:MB, at= -1318.9707+(-250.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833478, assembly_id= 102953, from= IP5; - MCS.B28L5.B1:MCS, at= -1311.5467+(-251-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245311, assembly_id= 102953, from= IP5; - MB.A28L5.B1:MB, at= -1303.3107+(-251.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833502, assembly_id= 102954, from= IP5; - MCS.A28L5.B1:MCS, at= -1295.8867+(-252-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245314, assembly_id= 102954, from= IP5; - BPM.27L5.B1:BPM, at= -1295.0077+(-252-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245316, assembly_id= 102955, from= IP5; - MQS.27L5.B1:MQS, at= -1294.2537+(-252-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307659, assembly_id= 102955, from= IP5; -MQ.27L5.B1:MQ, at= -1292.2457+(-252-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308191, assembly_id= 102955, from= IP5; - MS.27L5.B1:MS, at= -1290.3507+(-252-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251395, assembly_id= 102955, from= IP5; - MCBV.27L5.B1:MCBV, at= -1289.7577+(-252-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251397, assembly_id= 102955, from= IP5; - MCO.B27L5.B1:MCO_UNPLUGGED, at= -1288.6667+(-252-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251400, assembly_id= 102956, from= IP5; - MCD.B27L5.B1:MCD, at= -1288.6652+(-252-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251401, assembly_id= 102956, from= IP5; - MB.C27L5.B1:MB, at= -1281.1807+(-252.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833526, assembly_id= 102956, from= IP5; - MCS.C27L5.B1:MCS, at= -1273.7567+(-253-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245324, assembly_id= 102956, from= IP5; - MB.B27L5.B1:MB, at= -1265.5207+(-253.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833550, assembly_id= 102957, from= IP5; - MCS.B27L5.B1:MCS, at= -1258.0967+(-254-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245327, assembly_id= 102957, from= IP5; - MCO.A27L5.B1:MCO_UNPLUGGED, at= -1257.3467+(-254-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251404, assembly_id= 102958, from= IP5; - MCD.A27L5.B1:MCD, at= -1257.3452+(-254-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251405, assembly_id= 102958, from= IP5; - MB.A27L5.B1:MB, at= -1249.8607+(-254.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833574, assembly_id= 102958, from= IP5; - MCS.A27L5.B1:MCS, at= -1242.4367+(-255-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245332, assembly_id= 102958, from= IP5; - BPM.26L5.B1:BPM, at= -1241.5577+(-255-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245334, assembly_id= 102959, from= IP5; - MO.26L5.B1:MO, at= -1240.8067+(-255-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308899, assembly_id= 102959, from= IP5; -MQ.26L5.B1:MQ, at= -1238.7957+(-255-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308162, assembly_id= 102959, from= IP5; - MS.26L5.B1:MS, at= -1236.9007+(-255-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251407, assembly_id= 102959, from= IP5; - MCBH.26L5.B1:MCBH, at= -1236.3077+(-255-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251409, assembly_id= 102959, from= IP5; - MB.C26L5.B1:MB, at= -1227.7307+(-255.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833598, assembly_id= 102960, from= IP5; - MCS.C26L5.B1:MCS, at= -1220.3067+(-256-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245340, assembly_id= 102960, from= IP5; - MCO.26L5.B1:MCO_UNPLUGGED, at= -1219.5567+(-256-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251412, assembly_id= 102961, from= IP5; - MCD.26L5.B1:MCD, at= -1219.5552+(-256-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251413, assembly_id= 102961, from= IP5; - MB.B26L5.B1:MB, at= -1212.0707+(-256.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833622, assembly_id= 102961, from= IP5; - MCS.B26L5.B1:MCS, at= -1204.6467+(-257-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245345, assembly_id= 102961, from= IP5; - MB.A26L5.B1:MB, at= -1196.4107+(-257.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833646, assembly_id= 102962, from= IP5; - MCS.A26L5.B1:MCS, at= -1188.9867+(-258-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245348, assembly_id= 102962, from= IP5; - BPM.25L5.B1:BPM, at= -1188.1077+(-258-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245350, assembly_id= 102963, from= IP5; - MO.25L5.B1:MO, at= -1187.3567+(-258-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308867, assembly_id= 102963, from= IP5; -MQ.25L5.B1:MQ, at= -1185.3457+(-258-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308130, assembly_id= 102963, from= IP5; - MS.25L5.B1:MS, at= -1183.4507+(-258-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251415, assembly_id= 102963, from= IP5; - MCBV.25L5.B1:MCBV, at= -1182.8577+(-258-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251417, assembly_id= 102963, from= IP5; - MCO.B25L5.B1:MCO_UNPLUGGED, at= -1181.7667+(-258-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251420, assembly_id= 102964, from= IP5; - MCD.B25L5.B1:MCD, at= -1181.7652+(-258-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251421, assembly_id= 102964, from= IP5; - MB.C25L5.B1:MB, at= -1174.2807+(-258.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833670, assembly_id= 102964, from= IP5; - MCS.C25L5.B1:MCS, at= -1166.8567+(-259-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245358, assembly_id= 102964, from= IP5; - MB.B25L5.B1:MB, at= -1158.6207+(-259.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833694, assembly_id= 102965, from= IP5; - MCS.B25L5.B1:MCS, at= -1151.1967+(-260-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245361, assembly_id= 102965, from= IP5; - MCO.A25L5.B1:MCO_UNPLUGGED, at= -1150.4467+(-260-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251424, assembly_id= 102966, from= IP5; - MCD.A25L5.B1:MCD, at= -1150.4452+(-260-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251425, assembly_id= 102966, from= IP5; - MB.A25L5.B1:MB, at= -1142.9607+(-260.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833718, assembly_id= 102966, from= IP5; - MCS.A25L5.B1:MCS, at= -1135.5367+(-261-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245366, assembly_id= 102966, from= IP5; - BPM.24L5.B1:BPM, at= -1134.6577+(-261-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245368, assembly_id= 102967, from= IP5; - MO.24L5.B1:MO, at= -1133.9067+(-261-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308836, assembly_id= 102967, from= IP5; -MQ.24L5.B1:MQ, at= -1131.8957+(-261-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308098, assembly_id= 102967, from= IP5; - MS.24L5.B1:MS, at= -1130.0007+(-261-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251427, assembly_id= 102967, from= IP5; - MCBH.24L5.B1:MCBH, at= -1129.4077+(-261-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251429, assembly_id= 102967, from= IP5; - MB.C24L5.B1:MB, at= -1120.8307+(-261.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833742, assembly_id= 102968, from= IP5; - MCS.C24L5.B1:MCS, at= -1113.4067+(-262-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245374, assembly_id= 102968, from= IP5; - MCO.24L5.B1:MCO_UNPLUGGED, at= -1112.6567+(-262-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251432, assembly_id= 102969, from= IP5; - MCD.24L5.B1:MCD, at= -1112.6552+(-262-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251433, assembly_id= 102969, from= IP5; - MB.B24L5.B1:MB, at= -1105.1707+(-262.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833766, assembly_id= 102969, from= IP5; - MCS.B24L5.B1:MCS, at= -1097.7467+(-263-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245379, assembly_id= 102969, from= IP5; - MB.A24L5.B1:MB, at= -1089.5107+(-263.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833790, assembly_id= 102970, from= IP5; - MCS.A24L5.B1:MCS, at= -1082.0867+(-264-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245382, assembly_id= 102970, from= IP5; - BPM.23L5.B1:BPM, at= -1081.2077+(-264-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245384, assembly_id= 102971, from= IP5; - MQS.23L5.B1:MQS, at= -1080.4537+(-264-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307628, assembly_id= 102971, from= IP5; -MQ.23L5.B1:MQ, at= -1078.4457+(-264-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308309, assembly_id= 102971, from= IP5; - MS.23L5.B1:MS, at= -1076.5507+(-264-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251435, assembly_id= 102971, from= IP5; - MCBV.23L5.B1:MCBV, at= -1075.9577+(-264-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251437, assembly_id= 102971, from= IP5; - MCO.B23L5.B1:MCO_UNPLUGGED, at= -1074.8667+(-264-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251440, assembly_id= 102972, from= IP5; - MCD.B23L5.B1:MCD, at= -1074.8652+(-264-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251441, assembly_id= 102972, from= IP5; - MB.C23L5.B1:MB, at= -1067.3807+(-264.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833814, assembly_id= 102972, from= IP5; - MCS.C23L5.B1:MCS, at= -1059.9567+(-265-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245392, assembly_id= 102972, from= IP5; - MB.B23L5.B1:MB, at= -1051.7207+(-265.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833838, assembly_id= 102973, from= IP5; - MCS.B23L5.B1:MCS, at= -1044.2967+(-266-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245395, assembly_id= 102973, from= IP5; - MCO.A23L5.B1:MCO_UNPLUGGED, at= -1043.5467+(-266-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251444, assembly_id= 102974, from= IP5; - MCD.A23L5.B1:MCD, at= -1043.5452+(-266-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251445, assembly_id= 102974, from= IP5; - MB.A23L5.B1:MB, at= -1036.0607+(-266.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833862, assembly_id= 102974, from= IP5; - MCS.A23L5.B1:MCS, at= -1028.6367+(-267-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245400, assembly_id= 102974, from= IP5; - BPM.22L5.B1:BPM, at= -1027.7577+(-267-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245402, assembly_id= 102975, from= IP5; - MO.22L5.B1:MO, at= -1027.0067+(-267-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308806, assembly_id= 102975, from= IP5; -MQ.22L5.B1:MQ, at= -1024.9957+(-267-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308277, assembly_id= 102975, from= IP5; - MS.22L5.B1:MS, at= -1023.1007+(-267-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251447, assembly_id= 102975, from= IP5; - MCBH.22L5.B1:MCBH, at= -1022.5077+(-267-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251449, assembly_id= 102975, from= IP5; - MB.C22L5.B1:MB, at= -1013.9307+(-267.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833886, assembly_id= 102976, from= IP5; - MCS.C22L5.B1:MCS, at= -1006.5067+(-268-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245408, assembly_id= 102976, from= IP5; - MCO.22L5.B1:MCO_UNPLUGGED, at= -1005.7567+(-268-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251452, assembly_id= 102977, from= IP5; - MCD.22L5.B1:MCD, at= -1005.7552+(-268-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251453, assembly_id= 102977, from= IP5; - MB.B22L5.B1:MB, at= -998.2707+(-268.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833910, assembly_id= 102977, from= IP5; - MCS.B22L5.B1:MCS, at= -990.8467+(-269-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245413, assembly_id= 102977, from= IP5; - MB.A22L5.B1:MB, at= -982.6107+(-269.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833934, assembly_id= 102978, from= IP5; - MCS.A22L5.B1:MCS, at= -975.1867+(-270-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245416, assembly_id= 102978, from= IP5; - BPM.21L5.B1:BPM, at= -974.3077+(-270-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245418, assembly_id= 102979, from= IP5; - MQT.21L5.B1:MQT, at= -973.5537+(-270-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307261, assembly_id= 102979, from= IP5; -MQ.21L5.B1:MQ, at= -971.5457+(-270-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308245, assembly_id= 102979, from= IP5; - MS.21L5.B1:MS, at= -969.6507+(-270-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251455, assembly_id= 102979, from= IP5; - MCBV.21L5.B1:MCBV, at= -969.0577+(-270-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251457, assembly_id= 102979, from= IP5; - MCO.B21L5.B1:MCO_UNPLUGGED, at= -967.9667+(-270-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251460, assembly_id= 102980, from= IP5; - MCD.B21L5.B1:MCD, at= -967.9652+(-270-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251461, assembly_id= 102980, from= IP5; - MB.C21L5.B1:MB, at= -960.4807+(-270.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833958, assembly_id= 102980, from= IP5; - MCS.C21L5.B1:MCS, at= -953.0567+(-271-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245426, assembly_id= 102980, from= IP5; - MB.B21L5.B1:MB, at= -944.8207+(-271.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52833982, assembly_id= 102981, from= IP5; - MCS.B21L5.B1:MCS, at= -937.3967+(-272-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245429, assembly_id= 102981, from= IP5; - MCO.A21L5.B1:MCO_UNPLUGGED, at= -936.6467+(-272-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251464, assembly_id= 102982, from= IP5; - MCD.A21L5.B1:MCD, at= -936.6452+(-272-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251465, assembly_id= 102982, from= IP5; - MB.A21L5.B1:MB, at= -929.1607+(-272.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834006, assembly_id= 102982, from= IP5; - MCS.A21L5.B1:MCS, at= -921.7367+(-273-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245434, assembly_id= 102982, from= IP5; - BPM.20L5.B1:BPM, at= -920.8577+(-273-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245436, assembly_id= 102983, from= IP5; - MQT.20L5.B1:MQT, at= -920.1037+(-273-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307464, assembly_id= 102983, from= IP5; -MQ.20L5.B1:MQ, at= -918.0957+(-273-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308216, assembly_id= 102983, from= IP5; - MS.20L5.B1:MS, at= -916.2007+(-273-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251467, assembly_id= 102983, from= IP5; - MCBH.20L5.B1:MCBH, at= -915.6077+(-273-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251469, assembly_id= 102983, from= IP5; - MB.C20L5.B1:MB, at= -907.0307+(-273.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834030, assembly_id= 102984, from= IP5; - MCS.C20L5.B1:MCS, at= -899.6067+(-274-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245442, assembly_id= 102984, from= IP5; - MCO.20L5.B1:MCO_UNPLUGGED, at= -898.8567+(-274-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251472, assembly_id= 102985, from= IP5; - MCD.20L5.B1:MCD, at= -898.8552+(-274-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251473, assembly_id= 102985, from= IP5; - MB.B20L5.B1:MB, at= -891.3707+(-274.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834054, assembly_id= 102985, from= IP5; - MCS.B20L5.B1:MCS, at= -883.9467+(-275-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245447, assembly_id= 102985, from= IP5; - MB.A20L5.B1:MB, at= -875.7107+(-275.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834078, assembly_id= 102986, from= IP5; - MCS.A20L5.B1:MCS, at= -868.2867+(-276-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245450, assembly_id= 102986, from= IP5; - BPM.19L5.B1:BPM, at= -867.4077+(-276-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245452, assembly_id= 102987, from= IP5; - MQT.19L5.B1:MQT, at= -866.6537+(-276-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307434, assembly_id= 102987, from= IP5; -MQ.19L5.B1:MQ, at= -864.6457+(-276-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308424, assembly_id= 102987, from= IP5; - MS.19L5.B1:MS, at= -862.7507+(-276-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251475, assembly_id= 102987, from= IP5; - MCBV.19L5.B1:MCBV, at= -862.1577+(-276-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251477, assembly_id= 102987, from= IP5; - MCO.B19L5.B1:MCO_UNPLUGGED, at= -861.0667+(-276-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251480, assembly_id= 102988, from= IP5; - MCD.B19L5.B1:MCD, at= -861.0652+(-276-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251481, assembly_id= 102988, from= IP5; - MB.C19L5.B1:MB, at= -853.5807+(-276.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834102, assembly_id= 102988, from= IP5; - MCS.C19L5.B1:MCS, at= -846.1567+(-277-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245460, assembly_id= 102988, from= IP5; - MB.B19L5.B1:MB, at= -837.9207+(-277.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834126, assembly_id= 102989, from= IP5; - MCS.B19L5.B1:MCS, at= -830.4967+(-278-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245463, assembly_id= 102989, from= IP5; - MCO.A19L5.B1:MCO_UNPLUGGED, at= -829.7467+(-278-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251484, assembly_id= 102990, from= IP5; - MCD.A19L5.B1:MCD, at= -829.7452+(-278-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251485, assembly_id= 102990, from= IP5; - MB.A19L5.B1:MB, at= -822.2607+(-278.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834150, assembly_id= 102990, from= IP5; - MCS.A19L5.B1:MCS, at= -814.8367+(-279-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245468, assembly_id= 102990, from= IP5; - BPM.18L5.B1:BPM, at= -813.9577+(-279-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245470, assembly_id= 102991, from= IP5; - MQT.18L5.B1:MQT, at= -813.2037+(-279-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307403, assembly_id= 102991, from= IP5; -MQ.18L5.B1:MQ, at= -811.1957+(-279-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348483, assembly_id= 102991, from= IP5; - MS.18L5.B1:MS, at= -809.3007+(-279-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251487, assembly_id= 102991, from= IP5; - MCBH.18L5.B1:MCBH, at= -808.7077+(-279-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251489, assembly_id= 102991, from= IP5; - MB.C18L5.B1:MB, at= -800.1307+(-279.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834174, assembly_id= 102992, from= IP5; - MCS.C18L5.B1:MCS, at= -792.7067+(-280-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245476, assembly_id= 102992, from= IP5; - MCO.18L5.B1:MCO_UNPLUGGED, at= -791.9567+(-280-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251492, assembly_id= 102993, from= IP5; - MCD.18L5.B1:MCD, at= -791.9552+(-280-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251493, assembly_id= 102993, from= IP5; - MB.B18L5.B1:MB, at= -784.4707+(-280.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834198, assembly_id= 102993, from= IP5; - MCS.B18L5.B1:MCS, at= -777.0467+(-281-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245481, assembly_id= 102993, from= IP5; - MB.A18L5.B1:MB, at= -768.8107+(-281.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834222, assembly_id= 102994, from= IP5; - MCS.A18L5.B1:MCS, at= -761.3867+(-282-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245484, assembly_id= 102994, from= IP5; - BPM.17L5.B1:BPM, at= -760.5077+(-282-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245486, assembly_id= 102995, from= IP5; - MQT.17L5.B1:MQT, at= -759.7537+(-282-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307608, assembly_id= 102995, from= IP5; -MQ.17L5.B1:MQ, at= -757.7457+(-282-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308363, assembly_id= 102995, from= IP5; - MS.17L5.B1:MS, at= -755.8507+(-282-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251495, assembly_id= 102995, from= IP5; - MCBV.17L5.B1:MCBV, at= -755.2577+(-282-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251497, assembly_id= 102995, from= IP5; - MCO.B17L5.B1:MCO_UNPLUGGED, at= -754.1667+(-282-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251500, assembly_id= 102996, from= IP5; - MCD.B17L5.B1:MCD, at= -754.1652+(-282-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251501, assembly_id= 102996, from= IP5; - MB.C17L5.B1:MB, at= -746.6807+(-282.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834246, assembly_id= 102996, from= IP5; - MCS.C17L5.B1:MCS, at= -739.2567+(-283-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245494, assembly_id= 102996, from= IP5; - MB.B17L5.B1:MB, at= -731.0207+(-283.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834270, assembly_id= 102997, from= IP5; - MCS.B17L5.B1:MCS, at= -723.5967+(-284-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245497, assembly_id= 102997, from= IP5; - MCO.A17L5.B1:MCO_UNPLUGGED, at= -722.8467+(-284-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251504, assembly_id= 102998, from= IP5; - MCD.A17L5.B1:MCD, at= -722.8452+(-284-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251505, assembly_id= 102998, from= IP5; - MB.A17L5.B1:MB, at= -715.3607+(-284.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834294, assembly_id= 102998, from= IP5; - MCS.A17L5.B1:MCS, at= -707.9367+(-285-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245502, assembly_id= 102998, from= IP5; - BPM.16L5.B1:BPM, at= -707.0577+(-285-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245504, assembly_id= 102999, from= IP5; - MQT.16L5.B1:MQT, at= -706.3037+(-285-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307578, assembly_id= 102999, from= IP5; -MQ.16L5.B1:MQ, at= -704.2957+(-285-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308333, assembly_id= 102999, from= IP5; - MS.16L5.B1:MS, at= -702.4007+(-285-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251507, assembly_id= 102999, from= IP5; - MCBH.16L5.B1:MCBH, at= -701.8077+(-285-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251509, assembly_id= 102999, from= IP5; - MB.C16L5.B1:MB, at= -693.2307+(-285.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834318, assembly_id= 103000, from= IP5; - MCS.C16L5.B1:MCS, at= -685.8067+(-286-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245510, assembly_id= 103000, from= IP5; - MCO.16L5.B1:MCO_UNPLUGGED, at= -685.0567+(-286-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251512, assembly_id= 103001, from= IP5; - MCD.16L5.B1:MCD, at= -685.0552+(-286-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251513, assembly_id= 103001, from= IP5; - MB.B16L5.B1:MB, at= -677.5707+(-286.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834342, assembly_id= 103001, from= IP5; - MCS.B16L5.B1:MCS, at= -670.1467+(-287-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245515, assembly_id= 103001, from= IP5; - MB.A16L5.B1:MB, at= -661.9107+(-287.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834366, assembly_id= 103002, from= IP5; - MCS.A16L5.B1:MCS, at= -654.4867+(-288-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245518, assembly_id= 103002, from= IP5; - BPM.15L5.B1:BPM, at= -653.6077+(-288-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245520, assembly_id= 103003, from= IP5; - MQT.15L5.B1:MQT, at= -652.8537+(-288-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307547, assembly_id= 103003, from= IP5; -MQ.15L5.B1:MQ, at= -650.8457+(-288-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308540, assembly_id= 103003, from= IP5; - MS.15L5.B1:MS, at= -648.9507+(-288-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251515, assembly_id= 103003, from= IP5; - MCBV.15L5.B1:MCBV, at= -648.3577+(-288-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251517, assembly_id= 103003, from= IP5; - MCO.B15L5.B1:MCO_UNPLUGGED, at= -647.2667+(-288-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251520, assembly_id= 103004, from= IP5; - MCD.B15L5.B1:MCD, at= -647.2652+(-288-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251521, assembly_id= 103004, from= IP5; - MB.C15L5.B1:MB, at= -639.7807+(-288.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834390, assembly_id= 103004, from= IP5; - MCS.C15L5.B1:MCS, at= -632.3567+(-289-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245528, assembly_id= 103004, from= IP5; - MB.B15L5.B1:MB, at= -624.1207+(-289.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834414, assembly_id= 103005, from= IP5; - MCS.B15L5.B1:MCS, at= -616.6967+(-290-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245531, assembly_id= 103005, from= IP5; - MCO.A15L5.B1:MCO_UNPLUGGED, at= -615.9467+(-290-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251524, assembly_id= 103006, from= IP5; - MCD.A15L5.B1:MCD, at= -615.9452+(-290-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251525, assembly_id= 103006, from= IP5; - MB.A15L5.B1:MB, at= -608.4607+(-290.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834438, assembly_id= 103006, from= IP5; - MCS.A15L5.B1:MCS, at= -601.0367+(-291-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245536, assembly_id= 103006, from= IP5; - BPM.14L5.B1:BPM, at= -600.1577+(-291-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245538, assembly_id= 103007, from= IP5; - MQT.14L5.B1:MQT, at= -599.4037+(-291-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307515, assembly_id= 103007, from= IP5; -MQ.14L5.B1:MQ, at= -597.3957+(-291-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308510, assembly_id= 103007, from= IP5; - MS.14L5.B1:MS, at= -595.5007+(-291-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251527, assembly_id= 103007, from= IP5; - MCBH.14L5.B1:MCBH, at= -594.9077+(-291-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251529, assembly_id= 103007, from= IP5; - MB.C14L5.B1:MB, at= -586.3307+(-291.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834462, assembly_id= 103008, from= IP5; - MCS.C14L5.B1:MCS, at= -578.9067+(-292-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245544, assembly_id= 103008, from= IP5; - MCO.14L5.B1:MCO_UNPLUGGED, at= -578.1567+(-292-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251532, assembly_id= 103009, from= IP5; - MCD.14L5.B1:MCD, at= -578.1552+(-292-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251533, assembly_id= 103009, from= IP5; - MB.B14L5.B1:MB, at= -570.6707+(-292.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834486, assembly_id= 103009, from= IP5; - MCS.B14L5.B1:MCS, at= -563.2467+(-293-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245549, assembly_id= 103009, from= IP5; - MB.A14L5.B1:MB, at= -555.0107+(-293.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834510, assembly_id= 103010, from= IP5; - MCS.A14L5.B1:MCS, at= -547.5867+(-294-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245552, assembly_id= 103010, from= IP5; -S.DS.L5.B1:OMK, at= -547.1807+(-294-IP5OFS.B1)*DS, slot_id= 100932, from= IP5; - BPM.13L5.B1:BPM, at= -546.7077+(-294-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245554, assembly_id= 103011, from= IP5; - MQT.13L5.B1:MQT, at= -545.9537+(-294-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307723, assembly_id= 103011, from= IP5; -MQ.13L5.B1:MQ, at= -543.9457+(-294-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308480, assembly_id= 103011, from= IP5; - MS.13L5.B1:MS, at= -542.0507+(-294-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251535, assembly_id= 103011, from= IP5; - MCBV.13L5.B1:MCBV, at= -541.4577+(-294-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251537, assembly_id= 103011, from= IP5; - MCO.B13L5.B1:MCO_UNPLUGGED, at= -540.3667+(-294-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251540, assembly_id= 103012, from= IP5; - MCD.B13L5.B1:MCD, at= -540.3652+(-294-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251541, assembly_id= 103012, from= IP5; - MB.C13L5.B1:MB, at= -532.8807+(-294.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834534, assembly_id= 103012, from= IP5; - MCS.C13L5.B1:MCS, at= -525.4567+(-295-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245562, assembly_id= 103012, from= IP5; - MB.B13L5.B1:MB, at= -517.2207+(-295.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834558, assembly_id= 103013, from= IP5; - MCS.B13L5.B1:MCS, at= -509.7967+(-296-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245565, assembly_id= 103013, from= IP5; - MCO.A13L5.B1:MCO_UNPLUGGED, at= -509.0467+(-296-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251544, assembly_id= 103014, from= IP5; - MCD.A13L5.B1:MCD, at= -509.0452+(-296-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251545, assembly_id= 103014, from= IP5; - MB.A13L5.B1:MB, at= -501.5607+(-296.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834582, assembly_id= 103014, from= IP5; - MCS.A13L5.B1:MCS, at= -494.1367+(-297-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245570, assembly_id= 103014, from= IP5; - BPM.12L5.B1:BPM, at= -493.2577+(-297-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245572, assembly_id= 103015, from= IP5; - MQT.12L5.B1:MQT, at= -492.5037+(-297-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307691, assembly_id= 103015, from= IP5; -MQ.12L5.B1:MQ, at= -490.4957+(-297-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308450, assembly_id= 103015, from= IP5; - MS.12L5.B1:MS, at= -488.6007+(-297-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251547, assembly_id= 103015, from= IP5; - MCBH.12L5.B1:MCBH, at= -488.0077+(-297-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251549, assembly_id= 103015, from= IP5; - MB.C12L5.B1:MB, at= -479.4307+(-297.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834606, assembly_id= 103016, from= IP5; - MCS.C12L5.B1:MCS, at= -472.0067+(-298-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245578, assembly_id= 103016, from= IP5; - MCO.12L5.B1:MCO_UNPLUGGED, at= -471.2567+(-298-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251552, assembly_id= 103017, from= IP5; - MCD.12L5.B1:MCD, at= -471.2552+(-298-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251553, assembly_id= 103017, from= IP5; - MB.B12L5.B1:MB, at= -463.7707+(-298.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834630, assembly_id= 103017, from= IP5; - MCS.B12L5.B1:MCS, at= -456.3467+(-299-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245583, assembly_id= 103017, from= IP5; - MB.A12L5.B1:MB, at= -448.1107+(-299.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834654, assembly_id= 103018, from= IP5; - MCS.A12L5.B1:MCS, at= -440.6867+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245586, assembly_id= 103018, from= IP5; -E.ARC.45.B1:OMK, at= -440.2807+(-300-IP5OFS.B1)*DS, slot_id= 100932, from= IP5; - BPM.11L5.B1:BPM, at= -439.8077+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245588, assembly_id= 103019, from= IP5; -MQ.11L5.B1:MQ, at= -437.2607+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308657, assembly_id= 103019, from= IP5; - MQTLI.11L5.B1:MQTLI, at= -434.8917+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307345, assembly_id= 103019, from= IP5; - MS.11L5.B1:MS, at= -433.8797+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251555, assembly_id= 103019, from= IP5; - MCBV.11L5.B1:MCBV, at= -433.2867+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251557, assembly_id= 103019, from= IP5; - LEFL.11L5.B1:LEFL, at= -425.67735+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52997850, assembly_id= 103020, from= IP5; - MCO.11L5.B1:MCO_UNPLUGGED, at= -418.475+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251560, assembly_id= 103021, from= IP5; - MCD.11L5.B1:MCD, at= -418.4735+(-300-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251561, assembly_id= 103021, from= IP5; - MB.B11L5.B1:MB, at= -410.989+(-300.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834678, assembly_id= 103021, from= IP5; - MCS.B11L5.B1:MCS, at= -403.565+(-301-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245596, assembly_id= 103021, from= IP5; - MB.A11L5.B1:MB, at= -395.329+(-301.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849582, assembly_id= 103022, from= IP5; - MCS.A11L5.B1:MCS, at= -387.905+(-302-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357311, assembly_id= 103022, from= IP5; - BPM.10L5.B1:BPM, at= -387.026+(-302-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245601, assembly_id= 103023, from= IP5; - MQML.10L5.B1:MQML, at= -383.881+(-302-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307810, assembly_id= 103023, from= IP5; - MCBCH.10L5.B1:MCBCH, at= -380.839+(-302-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251562, assembly_id= 103023, from= IP5; - MCO.10L5.B1:MCO_UNPLUGGED, at= -379.41+(-302-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251566, assembly_id= 103024, from= IP5; - MCD.10L5.B1:MCD, at= -379.4085+(-302-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251567, assembly_id= 103024, from= IP5; - MB.B10L5.B1:MB, at= -371.924+(-302.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834702, assembly_id= 103024, from= IP5; - MCS.B10L5.B1:MCS, at= -364.5+(-303-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245608, assembly_id= 103024, from= IP5; - MB.A10L5.B1:MB, at= -356.264+(-303.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849606, assembly_id= 103025, from= IP5; - MCS.A10L5.B1:MCS, at= -348.84+(-304-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357314, assembly_id= 103025, from= IP5; - BPM.9L5.B1:BPM, at= -347.96+(-304-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245613, assembly_id= 103026, from= IP5; - MQMC.9L5.B1:MQMC, at= -345.984+(-304-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307787, assembly_id= 103026, from= IP5; - MQM.9L5.B1:MQM, at= -342.718+(-304-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307735, assembly_id= 103026, from= IP5; - MCBCV.9L5.B1:MCBCV, at= -340.377+(-304-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251568, assembly_id= 103026, from= IP5; - MCO.9L5.B1:MCO_UNPLUGGED, at= -338.945+(-304-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251572, assembly_id= 103027, from= IP5; - MCD.9L5.B1:MCD, at= -338.9435+(-304-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251573, assembly_id= 103027, from= IP5; - MB.B9L5.B1:MB, at= -331.459+(-304.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834726, assembly_id= 103027, from= IP5; - MCS.B9L5.B1:MCS, at= -324.035+(-305-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245621, assembly_id= 103027, from= IP5; - MB.A9L5.B1:MB, at= -315.799+(-305.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849630, assembly_id= 103028, from= IP5; - MCS.A9L5.B1:MCS, at= -308.375+(-306-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357317, assembly_id= 103028, from= IP5; - BPM.8L5.B1:BPM, at= -307.496+(-306-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245626, assembly_id= 103029, from= IP5; - MQML.8L5.B1:MQML, at= -304.351+(-306-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307842, assembly_id= 103029, from= IP5; - MCBCH.8L5.B1:MCBCH, at= -301.309+(-306-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251574, assembly_id= 103029, from= IP5; - MCO.8L5.B1:MCO_UNPLUGGED, at= -299.88+(-306-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251578, assembly_id= 103030, from= IP5; - MCD.8L5.B1:MCD, at= -299.8785+(-306-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251579, assembly_id= 103030, from= IP5; - MB.B8L5.B1:MB, at= -292.394+(-306.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52834750, assembly_id= 103030, from= IP5; - MCS.B8L5.B1:MCS, at= -284.97+(-307-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245633, assembly_id= 103030, from= IP5; - MB.A8L5.B1:MB, at= -276.734+(-307.5-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849654, assembly_id= 103031, from= IP5; - MCS.A8L5.B1:MCS, at= -269.31+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357320, assembly_id= 103031, from= IP5; -E.DS.L5.B1:OMK, at= -268.904+(-308-IP5OFS.B1)*DS, slot_id= 100932, from= IP5; - BPMR.7L5.B1:BPMR, at= -268.429+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 377975, assembly_id= 103032, from= IP5; - MQM.B7L5.B1:MQM, at= -265.984+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307770, assembly_id= 103032, from= IP5; - MQM.A7L5.B1:MQM, at= -262.217+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307755, assembly_id= 103032, from= IP5; - MCBCV.7L5.B1:MCBCV, at= -259.876+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251580, assembly_id= 103032, from= IP5; - DFBAI.7L5.B1:DFBAI, at= -257.6965+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52996731, assembly_id= 104682, from= IP5; - BPM.6L5.B1:BPM, at= -231.535+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 377977, assembly_id= 103033, from= IP5; - MQML.6L5.B1:MQML, at= -228.39+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303102, assembly_id= 103033, from= IP5; - MCBCH.6L5.B1:MCBCH, at= -225.348+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251582, assembly_id= 103033, from= IP5; - BPMR.5L5.B1:BPMR, at= -199.635+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 377979, assembly_id= 103035, from= IP5; - MQML.5L5.B1:MQML, at= -196.49+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303134, assembly_id= 103035, from= IP5; - MCBCV.5L5.B1:MCBCV, at= -193.448+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251584, assembly_id= 103035, from= IP5; - BPTX.5L5.B1:BPTX, at= -174.6425+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 104667, from= IP5; - BPMYA.4L5.B1:BPMYA, at= -172.229+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 245652, assembly_id= 103038, from= IP5; - MQY.4L5.B1:MQY, at= -169.553+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303106, assembly_id= 103038, from= IP5; - MCBYH.B4L5.B1:MCBYH, at= -167.031+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251586, assembly_id= 103038, from= IP5; - MCBYV.4L5.B1:MCBYV, at= -165.735+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251588, assembly_id= 103038, from= IP5; - MCBYH.A4L5.B1:MCBYH, at= -164.439+(-308-IP5OFS.B1)*DS, mech_sep= -0.1940, slot_id= 251590, assembly_id= 103038, from= IP5; - MBRC.4L5.B1:MBRC, at= -157.9+(-308-IP5OFS.B1)*DS, mech_sep= -0.1880, slot_id= 52819682, assembly_id= 103039, from= IP5; - BPMWB.4L5.B1:BPMWB, at= -151.0945+(-308-IP5OFS.B1)*DS, mech_sep= -0.1780, slot_id= 104608, from= IP5; - BBCWE.4L5.U.B1:BBCWE, at= -148.54+(-308-IP5OFS.B1)*DS, mech_sep= -0.1720, slot_id= 52659225, assembly_id= 52658403, from= IP5; - BBCWI.4L5.U.B1:BBCWI, at= -148.54+(-308-IP5OFS.B1)*DS, mech_sep= -0.1720, slot_id= 52659243, assembly_id= 52658403, from= IP5; - BPTUH.A4L5.B1:BPTUH, at= -148.49+(-308-IP5OFS.B1)*DS, mech_sep= -0.1728, slot_id= 52661751, assembly_id= 52658403, from= IP5; - TCTPH.4L5.B1:TCTWH, at= -147.945+(-308-IP5OFS.B1)*DS, mech_sep= -0.1715, slot_id= 52658403, from= IP5; - BPTDH.A4L5.B1:BPTDH, at= -147.4+(-308-IP5OFS.B1)*DS, mech_sep= -0.1703, slot_id= 52661742, assembly_id= 52658403, from= IP5; - BBCWE.4L5.D.B1:BBCWE, at= -147.35+(-308-IP5OFS.B1)*DS, mech_sep= -0.1700, slot_id= 52659216, assembly_id= 52658403, from= IP5; - BBCWI.4L5.D.B1:BBCWI, at= -147.35+(-308-IP5OFS.B1)*DS, mech_sep= -0.1700, slot_id= 52659234, assembly_id= 52658403, from= IP5; - BPTUV.A4L5.B1:BPTUV, at= -146.49+(-308-IP5OFS.B1)*DS, mech_sep= -0.1683, slot_id= 10402736, assembly_id= 377607, from= IP5; - TCTPV.4L5.B1:TCTPV, at= -145.945+(-308-IP5OFS.B1)*DS, mech_sep= -0.1671, slot_id= 377607, from= IP5; - BPTDV.A4L5.B1:BPTDV, at= -145.4+(-308-IP5OFS.B1)*DS, mech_sep= -0.1658, slot_id= 10402740, assembly_id= 377607, from= IP5; - TANC.4L5:TANC, at= -142.754+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 103042, from= IP5; - X5ZDC.B4L5:X5ZDC001, at= -141.6225+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 2019606, assembly_id= 103042, from= IP5; - BRAND.4L5:BRAND, at= -141.085+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 55374093, assembly_id= 103042, from= IP5; - X5ZDC.A4L5:X5ZDC002, at= -141.0725+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 2019602, assembly_id= 103042, from= IP5; - X5FCB.A4L5:X5FCB, at= -114.13+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 5593911, from= IP5; - X5FCA.B4L5:X5FCA, at= -85.08+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 5593908, from= IP5; - MBXW.F4L5:MBXW, at= -82.652+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134562, from= IP5; - MBXW.E4L5:MBXW, at= -78.386+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134563, from= IP5; - MBXW.D4L5:MBXW, at= -74.12+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134564, from= IP5; - MBXW.C4L5:MBXW, at= -69.854+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134565, from= IP5; - MBXW.B4L5:MBXW, at= -65.588+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134566, from= IP5; - MBXW.A4L5:MBXW, at= -61.322+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134567, from= IP5; - X5FCA.A4L5:X5FCA, at= -59.24+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 5593907, from= IP5; - BPMSY.4L5.B1:BPMSY002, at= -58.3745+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 47562516, assembly_id= 104609, from= IP5; - DFBXE.3L5:DFBXE, at= -56.427+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 104683, from= IP5; - MCOSX.3L5:MCOSX, at= -54.297+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282246, assembly_id= 103044, from= IP5; - MCOX.3L5:MCOX, at= -54.297+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282245, assembly_id= 103044, from= IP5; - MCSSX.3L5:MCSSX, at= -54.297+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282244, assembly_id= 103044, from= IP5; - MCBXH.3L5:MCBXH, at= -53.814+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251592, assembly_id= 103044, from= IP5; - MCBXV.3L5:MCBXV, at= -53.814+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251593, assembly_id= 103044, from= IP5; - MCSX.3L5:MCSX, at= -53.814+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251594, assembly_id= 103044, from= IP5; - MCTX.3L5:MCTX, at= -53.814+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251595, assembly_id= 103044, from= IP5; - MQXA.3L5:MQXA, at= -50.15+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 245665, assembly_id= 103044, from= IP5; - MQSX.3L5:MQSX, at= -46.608+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282142, assembly_id= 103044, from= IP5; - TASB.3L5:TASB, at= -45.342+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 245667, assembly_id= 103044, from= IP5; - MQXB.B2L5:MQXB, at= -41.3+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 245668, assembly_id= 103045, from= IP5; - MCBXH.2L5:MCBXH, at= -38.019+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251600, assembly_id= 103045, from= IP5; - MCBXV.2L5:MCBXV, at= -38.019+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251601, assembly_id= 103045, from= IP5; - MQXB.A2L5:MQXB, at= -34.8+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 245670, assembly_id= 103045, from= IP5; - BPMS.2L5.B1:BPMS_003, at= -31.529+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 47564251, assembly_id= 103045, from= IP5; - MCBXH.1L5:MCBXH, at= -29.842+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282215, assembly_id= 103046, from= IP5; - MCBXV.1L5:MCBXV, at= -29.842+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282214, assembly_id= 103046, from= IP5; - MQXA.1L5:MQXA, at= -26.15+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282143, assembly_id= 103046, from= IP5; - BPMWF.A1L5.B1:BPMWF, at= -21.751+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 6080247, assembly_id= 6080226, from= IP5; - BPMSW.1L5.B1:BPMSW002, at= -21.564+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 6080243, assembly_id= 6080226, from= IP5; - BPMSW.1L5.B1_DOROS:BPMSW002, at= -21.564+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 10429427, assembly_id= 6080226, from= IP5; - TAS.1L5:TAS, at= -19.95+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 103047, from= IP5; - MBCS2.1L5:MBCS2, at= -3.25+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 52895730, assembly_id= 2209455, from= IP5; -IP5:OMK, at= pIP5+IP5OFS.B1*DS; - MBCS2.1R5:MBCS2, at= 3.25+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 52895762, assembly_id= 2209455, from= IP5; - TAS.1R5:TAS, at= 19.95+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 103048, from= IP5; - BPMSW.1R5.B1:BPMSW002, at= 21.564+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 6080261, assembly_id= 6080227, from= IP5; - BPMSW.1R5.B1_DOROS:BPMSW002, at= 21.564+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 10429434, assembly_id= 6080227, from= IP5; - BPMWF.A1R5.B1:BPMWF, at= 21.697+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 6080269, assembly_id= 6080227, from= IP5; - MQXA.1R5:MQXA, at= 26.15+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282146, assembly_id= 103049, from= IP5; - MCBXH.1R5:MCBXH, at= 29.842+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282217, assembly_id= 103049, from= IP5; - MCBXV.1R5:MCBXV, at= 29.842+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282216, assembly_id= 103049, from= IP5; - BPMS.2R5.B1:BPMS_003, at= 31.529+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 47564241, assembly_id= 103050, from= IP5; - MQXB.A2R5:MQXB, at= 34.8+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 245683, assembly_id= 103050, from= IP5; - MCBXH.2R5:MCBXH, at= 38.019+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251606, assembly_id= 103050, from= IP5; - MCBXV.2R5:MCBXV, at= 38.019+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251607, assembly_id= 103050, from= IP5; - MQXB.B2R5:MQXB, at= 41.3+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 245685, assembly_id= 103050, from= IP5; - TASB.3R5:TASB, at= 45.342+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 245686, assembly_id= 103051, from= IP5; - MQSX.3R5:MQSX, at= 46.608+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282147, assembly_id= 103051, from= IP5; - MQXA.3R5:MQXA, at= 50.15+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 245688, assembly_id= 103051, from= IP5; - MCBXH.3R5:MCBXH, at= 53.814+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251612, assembly_id= 103051, from= IP5; - MCBXV.3R5:MCBXV, at= 53.814+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251613, assembly_id= 103051, from= IP5; - MCSX.3R5:MCSX, at= 53.814+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251614, assembly_id= 103051, from= IP5; - MCTX.3R5:MCTX, at= 53.814+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 251615, assembly_id= 103051, from= IP5; - MCOSX.3R5:MCOSX, at= 54.297+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282249, assembly_id= 103051, from= IP5; - MCOX.3R5:MCOX, at= 54.297+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282248, assembly_id= 103051, from= IP5; - MCSSX.3R5:MCSSX, at= 54.297+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 282247, assembly_id= 103051, from= IP5; - DFBXF.3R5:DFBXF, at= 56.427+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 104684, from= IP5; - BPMSY.4R5.B1:BPMSY002, at= 58.2545+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 47562518, assembly_id= 104612, from= IP5; - X5FCA.B4R5:X5FCA, at= 59.24+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 5593910, from= IP5; - MBXW.A4R5:MBXW, at= 61.322+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134568, from= IP5; - MBXW.B4R5:MBXW, at= 65.588+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134569, from= IP5; - MBXW.C4R5:MBXW, at= 69.854+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134570, from= IP5; - MBXW.D4R5:MBXW, at= 74.12+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134571, from= IP5; - MBXW.E4R5:MBXW, at= 78.386+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134572, from= IP5; - MBXW.F4R5:MBXW, at= 82.652+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 134573, from= IP5; - X5FCA.A4R5:X5FCA, at= 84.94+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 5593909, from= IP5; - X5FCB.A4R5:X5FCB, at= 114.15+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 5593912, from= IP5; - X5ZDC.B4R5:X5ZDC002, at= 141.0725+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 2019608, assembly_id= 103053, from= IP5; - BRANA.4R5:BRANA, at= 141.185+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 883604, assembly_id= 103053, from= IP5; - X5ZDC.A4R5:X5ZDC001, at= 141.6225+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 2019604, assembly_id= 103053, from= IP5; - TANC.4R5:TANC, at= 142.754+(-308-IP5OFS.B1)*DS, mech_sep= 0, slot_id= 103053, from= IP5; - TCL.4R5.B1:TCL, at= 150.03+(-308-IP5OFS.B1)*DS, mech_sep= 0.1757, slot_id= 103055, from= IP5; - BPMWB.4R5.B1:BPMWB, at= 151.0945+(-308-IP5OFS.B1)*DS, mech_sep= 0.1780, slot_id= 181643, from= IP5; - MBRC.4R5.B1:MBRC, at= 157.9+(-308-IP5OFS.B1)*DS, mech_sep= 0.1880, slot_id= 52819706, assembly_id= 103056, from= IP5; - MCBYV.A4R5.B1:MCBYV, at= 164.439+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251616, assembly_id= 103057, from= IP5; - MCBYH.4R5.B1:MCBYH, at= 165.735+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251618, assembly_id= 103057, from= IP5; - MCBYV.B4R5.B1:MCBYV, at= 167.031+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251620, assembly_id= 103057, from= IP5; - MQY.4R5.B1:MQY, at= 169.553+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303120, assembly_id= 103057, from= IP5; - BPMYA.4R5.B1:BPMYA, at= 172.227+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245701, assembly_id= 103057, from= IP5; - TCL.5R5.B1:TCL, at= 184.264+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 103059, from= IP5; - BPM.5R5.B1:BPM, at= 193.345+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377988, assembly_id= 103060, from= IP5; - MQML.5R5.B1:MQML, at= 196.49+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303124, assembly_id= 103060, from= IP5; - MCBCH.5R5.B1:MCBCH, at= 199.532+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251623, assembly_id= 103060, from= IP5; - BPMWT.C6R5.B1:BPMWT, at= 203.152+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 6738966, assembly_id= 6738963, from= IP5; - XRPV.C6R5.B1:XRPV, at= 203.377+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 6738970, assembly_id= 6738963, from= IP5; - XRPH.D6R5.B1:XRPH, at= 212.551+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 6738974, assembly_id= 6738964, from= IP5; - XRPV.D6R5.B1:XRPV, at= 213+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 6738976, assembly_id= 6738964, from= IP5; - BPMWT.D6R5.B1:BPMWT, at= 213.225+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 6738972, assembly_id= 6738964, from= IP5; - BPMWT.A6R5.B1:BPMWT, at= 214.403+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 826593, assembly_id= 825718, from= IP5; - XRPV.A6R5.B1:XRPV, at= 214.628+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 826617, assembly_id= 825718, from= IP5; - XRPH.A6R5.B1:XRPH, at= 215.077+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 826605, assembly_id= 825718, from= IP5; - XRPH.E6R5.B1:XRPH, at= 215.71+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 12978120, assembly_id= 12978114, from= IP5; - XRPH.B6R5.B1:XRPH, at= 219.551+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 826641, assembly_id= 825719, from= IP5; - XRPV.B6R5.B1:XRPV, at= 220+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 826653, assembly_id= 825719, from= IP5; - BPMWT.B6R5.B1:BPMWT, at= 220.225+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 826629, assembly_id= 825719, from= IP5; - TCL.6R5.B1:TCL, at= 221.574+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 12962654, from= IP5; - BPMR.6R5.B1:BPMR, at= 225.245+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377990, assembly_id= 103062, from= IP5; - MQML.6R5.B1:MQML, at= 228.39+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303128, assembly_id= 103062, from= IP5; - MCBCV.6R5.B1:MCBCV, at= 231.432+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251625, assembly_id= 103062, from= IP5; - DFBAJ.7R5.B1:DFBAJ, at= 257.4465+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52996755, assembly_id= 104685, from= IP5; - BPM_A.7R5.B1:BPM_A, at= 259.259+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377993, assembly_id= 103063, from= IP5; - MQM.A7R5.B1:MQM, at= 261.704+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307763, assembly_id= 103063, from= IP5; - MQM.B7R5.B1:MQM, at= 265.471+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307778, assembly_id= 103063, from= IP5; - MCBCH.7R5.B1:MCBCH, at= 267.812+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251627, assembly_id= 103063, from= IP5; -S.DS.R5.B1:OMK, at= 268.904+(-308-IP5OFS.B1)*DS, slot_id= 100932, from= IP5; - MCO.8R5.B1:MCO, at= 269.248+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251628, assembly_id= 103064, from= IP5; - MCD.8R5.B1:MCD, at= 269.2495+(-308-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251629, assembly_id= 103064, from= IP5; - MB.A8R5.B1:MB, at= 276.734+(-307.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834774, assembly_id= 103064, from= IP5; - MCS.A8R5.B1:MCS, at= 284.158+(-307-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245720, assembly_id= 103064, from= IP5; - MB.B8R5.B1:MB, at= 292.394+(-306.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834798, assembly_id= 103065, from= IP5; - MCS.B8R5.B1:MCS, at= 299.818+(-306-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245723, assembly_id= 103065, from= IP5; - BPM.8R5.B1:BPM, at= 300.697+(-306-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377996, assembly_id= 103066, from= IP5; - MQML.8R5.B1:MQML, at= 303.842+(-306-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307615, assembly_id= 103066, from= IP5; - MCBCV.8R5.B1:MCBCV, at= 306.884+(-306-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378108, assembly_id= 103066, from= IP5; - MCO.9R5.B1:MCO, at= 308.313+(-306-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251634, assembly_id= 103067, from= IP5; - MCD.9R5.B1:MCD, at= 308.3145+(-306-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251635, assembly_id= 103067, from= IP5; - MB.A9R5.B1:MB, at= 315.799+(-305.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834822, assembly_id= 103067, from= IP5; - MCS.A9R5.B1:MCS, at= 323.223+(-305-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245732, assembly_id= 103067, from= IP5; - MB.B9R5.B1:MB, at= 331.459+(-304.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834846, assembly_id= 103068, from= IP5; - MCS.B9R5.B1:MCS, at= 338.883+(-304-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245735, assembly_id= 103068, from= IP5; - BPM.9R5.B1:BPM, at= 339.763+(-304-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 383967, assembly_id= 103069, from= IP5; - MQMC.9R5.B1:MQMC, at= 341.739+(-304-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307798, assembly_id= 103069, from= IP5; - MQM.9R5.B1:MQM, at= 345.005+(-304-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307746, assembly_id= 103069, from= IP5; - MCBCH.9R5.B1:MCBCH, at= 347.346+(-304-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 383973, assembly_id= 103069, from= IP5; - MCO.10R5.B1:MCO, at= 348.778+(-304-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251640, assembly_id= 103070, from= IP5; - MCD.10R5.B1:MCD, at= 348.7795+(-304-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251641, assembly_id= 103070, from= IP5; - MB.A10R5.B1:MB, at= 356.264+(-303.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834870, assembly_id= 103070, from= IP5; - MCS.A10R5.B1:MCS, at= 363.688+(-303-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245745, assembly_id= 103070, from= IP5; - MB.B10R5.B1:MB, at= 371.924+(-302.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834894, assembly_id= 103071, from= IP5; - MCS.B10R5.B1:MCS, at= 379.348+(-302-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245748, assembly_id= 103071, from= IP5; - BPM.10R5.B1:BPM, at= 380.227+(-302-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378000, assembly_id= 103072, from= IP5; - MQML.10R5.B1:MQML, at= 383.372+(-302-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307822, assembly_id= 103072, from= IP5; - MCBCV.10R5.B1:MCBCV, at= 386.414+(-302-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378112, assembly_id= 103072, from= IP5; - MCO.11R5.B1:MCO, at= 387.843+(-302-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251646, assembly_id= 103073, from= IP5; - MCD.11R5.B1:MCD, at= 387.8445+(-302-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251647, assembly_id= 103073, from= IP5; - MB.A11R5.B1:MB, at= 395.329+(-301.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834918, assembly_id= 103073, from= IP5; - MCS.A11R5.B1:MCS, at= 402.753+(-301-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245757, assembly_id= 103073, from= IP5; - MB.B11R5.B1:MB, at= 410.989+(-300.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834942, assembly_id= 103074, from= IP5; - MCS.B11R5.B1:MCS, at= 418.413+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245760, assembly_id= 103074, from= IP5; - LEGR.11R5.B1:LEGR, at= 425.67735+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52997898, assembly_id= 103075, from= IP5; - BPM.11R5.B1:BPM, at= 433.0087+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245762, assembly_id= 103076, from= IP5; -MQ.11R5.B1:MQ, at= 435.5557+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308672, assembly_id= 103076, from= IP5; - MQTLI.11R5.B1:MQTLI, at= 437.9247+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307360, assembly_id= 103076, from= IP5; - MS.11R5.B1:MS, at= 438.9367+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251650, assembly_id= 103076, from= IP5; - MCBH.11R5.B1:MCBH, at= 439.5297+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251652, assembly_id= 103076, from= IP5; -S.ARC.56.B1:OMK, at= 440.2807+(-300-IP5OFS.B1)*DS, slot_id= 100932, from= IP5; - MCO.A12R5.B1:MCO, at= 440.6247+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251654, assembly_id= 103077, from= IP5; - MCD.A12R5.B1:MCD, at= 440.6262+(-300-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251655, assembly_id= 103077, from= IP5; - MB.A12R5.B1:MB, at= 448.1107+(-299.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834966, assembly_id= 103077, from= IP5; - MCS.A12R5.B1:MCS, at= 455.5347+(-299-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245770, assembly_id= 103077, from= IP5; - MB.B12R5.B1:MB, at= 463.7707+(-298.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52834990, assembly_id= 103078, from= IP5; - MCS.B12R5.B1:MCS, at= 471.1947+(-298-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245773, assembly_id= 103078, from= IP5; - MCO.B12R5.B1:MCO, at= 471.9447+(-298-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251658, assembly_id= 103079, from= IP5; - MCD.B12R5.B1:MCD, at= 471.9462+(-298-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251659, assembly_id= 103079, from= IP5; - MB.C12R5.B1:MB, at= 479.4307+(-297.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835014, assembly_id= 103079, from= IP5; - MCS.C12R5.B1:MCS, at= 486.8547+(-297-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245778, assembly_id= 103079, from= IP5; - BPM.12R5.B1:BPM, at= 487.7337+(-297-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245780, assembly_id= 103080, from= IP5; - MQT.12R5.B1:MQT, at= 488.4877+(-297-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307707, assembly_id= 103080, from= IP5; -MQ.12R5.B1:MQ, at= 490.4957+(-297-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308465, assembly_id= 103080, from= IP5; - MS.12R5.B1:MS, at= 492.3907+(-297-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251662, assembly_id= 103080, from= IP5; - MCBV.12R5.B1:MCBV, at= 492.9837+(-297-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251664, assembly_id= 103080, from= IP5; - MB.A13R5.B1:MB, at= 501.5607+(-296.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835038, assembly_id= 103081, from= IP5; - MCS.A13R5.B1:MCS, at= 508.9847+(-296-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245786, assembly_id= 103081, from= IP5; - MCO.13R5.B1:MCO, at= 509.7347+(-296-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251666, assembly_id= 103082, from= IP5; - MCD.13R5.B1:MCD, at= 509.7362+(-296-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251667, assembly_id= 103082, from= IP5; - MB.B13R5.B1:MB, at= 517.2207+(-295.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835062, assembly_id= 103082, from= IP5; - MCS.B13R5.B1:MCS, at= 524.6447+(-295-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245791, assembly_id= 103082, from= IP5; - MB.C13R5.B1:MB, at= 532.8807+(-294.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835086, assembly_id= 103083, from= IP5; - MCS.C13R5.B1:MCS, at= 540.3047+(-294-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245794, assembly_id= 103083, from= IP5; - BPM.13R5.B1:BPM, at= 541.1837+(-294-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245796, assembly_id= 103084, from= IP5; - MQT.13R5.B1:MQT, at= 541.9377+(-294-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348444, assembly_id= 103084, from= IP5; -MQ.13R5.B1:MQ, at= 543.9457+(-294-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308495, assembly_id= 103084, from= IP5; - MS.13R5.B1:MS, at= 545.8407+(-294-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251670, assembly_id= 103084, from= IP5; - MCBH.13R5.B1:MCBH, at= 546.4337+(-294-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251672, assembly_id= 103084, from= IP5; -E.DS.R5.B1:OMK, at= 547.1807+(-294-IP5OFS.B1)*DS, slot_id= 100932, from= IP5; - MCO.A14R5.B1:MCO, at= 547.5247+(-294-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251674, assembly_id= 103085, from= IP5; - MCD.A14R5.B1:MCD, at= 547.5262+(-294-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251675, assembly_id= 103085, from= IP5; - MB.A14R5.B1:MB, at= 555.0107+(-293.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835110, assembly_id= 103085, from= IP5; - MCS.A14R5.B1:MCS, at= 562.4347+(-293-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245804, assembly_id= 103085, from= IP5; - MB.B14R5.B1:MB, at= 570.6707+(-292.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835134, assembly_id= 103086, from= IP5; - MCS.B14R5.B1:MCS, at= 578.0947+(-292-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245807, assembly_id= 103086, from= IP5; - MCO.B14R5.B1:MCO, at= 578.8447+(-292-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251678, assembly_id= 103087, from= IP5; - MCD.B14R5.B1:MCD, at= 578.8462+(-292-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251679, assembly_id= 103087, from= IP5; - MB.C14R5.B1:MB, at= 586.3307+(-291.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835158, assembly_id= 103087, from= IP5; - MCS.C14R5.B1:MCS, at= 593.7547+(-291-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245812, assembly_id= 103087, from= IP5; - BPM.14R5.B1:BPM, at= 594.6337+(-291-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245814, assembly_id= 103088, from= IP5; - MQT.14R5.B1:MQT, at= 595.3877+(-291-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307531, assembly_id= 103088, from= IP5; -MQ.14R5.B1:MQ, at= 597.3957+(-291-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308525, assembly_id= 103088, from= IP5; - MS.14R5.B1:MS, at= 599.2907+(-291-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251682, assembly_id= 103088, from= IP5; - MCBV.14R5.B1:MCBV, at= 599.8837+(-291-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251684, assembly_id= 103088, from= IP5; - MB.A15R5.B1:MB, at= 608.4607+(-290.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835182, assembly_id= 103089, from= IP5; - MCS.A15R5.B1:MCS, at= 615.8847+(-290-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245820, assembly_id= 103089, from= IP5; - MCO.15R5.B1:MCO, at= 616.6347+(-290-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251686, assembly_id= 103090, from= IP5; - MCD.15R5.B1:MCD, at= 616.6362+(-290-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251687, assembly_id= 103090, from= IP5; - MB.B15R5.B1:MB, at= 624.1207+(-289.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835206, assembly_id= 103090, from= IP5; - MCS.B15R5.B1:MCS, at= 631.5447+(-289-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245825, assembly_id= 103090, from= IP5; - MB.C15R5.B1:MB, at= 639.7807+(-288.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835230, assembly_id= 103091, from= IP5; - MCS.C15R5.B1:MCS, at= 647.2047+(-288-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245828, assembly_id= 103091, from= IP5; - BPM.15R5.B1:BPM, at= 648.0837+(-288-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245830, assembly_id= 103092, from= IP5; - MQT.15R5.B1:MQT, at= 648.8377+(-288-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307563, assembly_id= 103092, from= IP5; -MQ.15R5.B1:MQ, at= 650.8457+(-288-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308555, assembly_id= 103092, from= IP5; - MS.15R5.B1:MS, at= 652.7407+(-288-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251690, assembly_id= 103092, from= IP5; - MCBH.15R5.B1:MCBH, at= 653.3337+(-288-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251692, assembly_id= 103092, from= IP5; - MCO.A16R5.B1:MCO, at= 654.4247+(-288-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251694, assembly_id= 103093, from= IP5; - MCD.A16R5.B1:MCD, at= 654.4262+(-288-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251695, assembly_id= 103093, from= IP5; - MB.A16R5.B1:MB, at= 661.9107+(-287.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835254, assembly_id= 103093, from= IP5; - MCS.A16R5.B1:MCS, at= 669.3347+(-287-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245838, assembly_id= 103093, from= IP5; - MB.B16R5.B1:MB, at= 677.5707+(-286.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835278, assembly_id= 103094, from= IP5; - MCS.B16R5.B1:MCS, at= 684.9947+(-286-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245841, assembly_id= 103094, from= IP5; - MCO.B16R5.B1:MCO, at= 685.7447+(-286-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251698, assembly_id= 103095, from= IP5; - MCD.B16R5.B1:MCD, at= 685.7462+(-286-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251699, assembly_id= 103095, from= IP5; - MB.C16R5.B1:MB, at= 693.2307+(-285.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835302, assembly_id= 103095, from= IP5; - MCS.C16R5.B1:MCS, at= 700.6547+(-285-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245846, assembly_id= 103095, from= IP5; - BPM.16R5.B1:BPM, at= 701.5337+(-285-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245848, assembly_id= 103096, from= IP5; - MQT.16R5.B1:MQT, at= 702.2877+(-285-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307593, assembly_id= 103096, from= IP5; -MQ.16R5.B1:MQ, at= 704.2957+(-285-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308348, assembly_id= 103096, from= IP5; - MS.16R5.B1:MS, at= 706.1907+(-285-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251702, assembly_id= 103096, from= IP5; - MCBV.16R5.B1:MCBV, at= 706.7837+(-285-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251704, assembly_id= 103096, from= IP5; - MB.A17R5.B1:MB, at= 715.3607+(-284.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835326, assembly_id= 103097, from= IP5; - MCS.A17R5.B1:MCS, at= 722.7847+(-284-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245854, assembly_id= 103097, from= IP5; - MCO.17R5.B1:MCO, at= 723.5347+(-284-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251706, assembly_id= 103098, from= IP5; - MCD.17R5.B1:MCD, at= 723.5362+(-284-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251707, assembly_id= 103098, from= IP5; - MB.B17R5.B1:MB, at= 731.0207+(-283.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835350, assembly_id= 103098, from= IP5; - MCS.B17R5.B1:MCS, at= 738.4447+(-283-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245859, assembly_id= 103098, from= IP5; - MB.C17R5.B1:MB, at= 746.6807+(-282.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835374, assembly_id= 103099, from= IP5; - MCS.C17R5.B1:MCS, at= 754.1047+(-282-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245862, assembly_id= 103099, from= IP5; - BPM.17R5.B1:BPM, at= 754.9837+(-282-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245864, assembly_id= 103100, from= IP5; - MQT.17R5.B1:MQT, at= 755.7377+(-282-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307387, assembly_id= 103100, from= IP5; -MQ.17R5.B1:MQ, at= 757.7457+(-282-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308378, assembly_id= 103100, from= IP5; - MS.17R5.B1:MS, at= 759.6407+(-282-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251710, assembly_id= 103100, from= IP5; - MCBH.17R5.B1:MCBH, at= 760.2337+(-282-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251712, assembly_id= 103100, from= IP5; - MCO.A18R5.B1:MCO, at= 761.3247+(-282-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251714, assembly_id= 103101, from= IP5; - MCD.A18R5.B1:MCD, at= 761.3262+(-282-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251715, assembly_id= 103101, from= IP5; - MB.A18R5.B1:MB, at= 768.8107+(-281.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835398, assembly_id= 103101, from= IP5; - MCS.A18R5.B1:MCS, at= 776.2347+(-281-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245872, assembly_id= 103101, from= IP5; - MB.B18R5.B1:MB, at= 784.4707+(-280.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835422, assembly_id= 103102, from= IP5; - MCS.B18R5.B1:MCS, at= 791.8947+(-280-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245875, assembly_id= 103102, from= IP5; - MCO.B18R5.B1:MCO, at= 792.6447+(-280-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251718, assembly_id= 103103, from= IP5; - MCD.B18R5.B1:MCD, at= 792.6462+(-280-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251719, assembly_id= 103103, from= IP5; - MB.C18R5.B1:MB, at= 800.1307+(-279.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835446, assembly_id= 103103, from= IP5; - MCS.C18R5.B1:MCS, at= 807.5547+(-279-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245880, assembly_id= 103103, from= IP5; - BPM.18R5.B1:BPM, at= 808.4337+(-279-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245882, assembly_id= 103104, from= IP5; - MQT.18R5.B1:MQT, at= 809.1877+(-279-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307419, assembly_id= 103104, from= IP5; -MQ.18R5.B1:MQ, at= 811.1957+(-279-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308408, assembly_id= 103104, from= IP5; - MS.18R5.B1:MS, at= 813.0907+(-279-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251722, assembly_id= 103104, from= IP5; - MCBV.18R5.B1:MCBV, at= 813.6837+(-279-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251724, assembly_id= 103104, from= IP5; - MB.A19R5.B1:MB, at= 822.2607+(-278.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835470, assembly_id= 103105, from= IP5; - MCS.A19R5.B1:MCS, at= 829.6847+(-278-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245888, assembly_id= 103105, from= IP5; - MCO.19R5.B1:MCO, at= 830.4347+(-278-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251726, assembly_id= 103106, from= IP5; - MCD.19R5.B1:MCD, at= 830.4362+(-278-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251727, assembly_id= 103106, from= IP5; - MB.B19R5.B1:MB, at= 837.9207+(-277.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835494, assembly_id= 103106, from= IP5; - MCS.B19R5.B1:MCS, at= 845.3447+(-277-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245893, assembly_id= 103106, from= IP5; - MB.C19R5.B1:MB, at= 853.5807+(-276.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835518, assembly_id= 103107, from= IP5; - MCS.C19R5.B1:MCS, at= 861.0047+(-276-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245896, assembly_id= 103107, from= IP5; - BPM.19R5.B1:BPM, at= 861.8837+(-276-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245898, assembly_id= 103108, from= IP5; - MQT.19R5.B1:MQT, at= 862.6377+(-276-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307449, assembly_id= 103108, from= IP5; -MQ.19R5.B1:MQ, at= 864.6457+(-276-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308440, assembly_id= 103108, from= IP5; - MS.19R5.B1:MS, at= 866.5407+(-276-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251730, assembly_id= 103108, from= IP5; - MCBH.19R5.B1:MCBH, at= 867.1337+(-276-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251732, assembly_id= 103108, from= IP5; - MCO.A20R5.B1:MCO, at= 868.2247+(-276-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251734, assembly_id= 103109, from= IP5; - MCD.A20R5.B1:MCD, at= 868.2262+(-276-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251735, assembly_id= 103109, from= IP5; - MB.A20R5.B1:MB, at= 875.7107+(-275.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835542, assembly_id= 103109, from= IP5; - MCS.A20R5.B1:MCS, at= 883.1347+(-275-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245906, assembly_id= 103109, from= IP5; - MB.B20R5.B1:MB, at= 891.3707+(-274.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835566, assembly_id= 103110, from= IP5; - MCS.B20R5.B1:MCS, at= 898.7947+(-274-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245909, assembly_id= 103110, from= IP5; - MCO.B20R5.B1:MCO, at= 899.5447+(-274-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251738, assembly_id= 103111, from= IP5; - MCD.B20R5.B1:MCD, at= 899.5462+(-274-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251739, assembly_id= 103111, from= IP5; - MB.C20R5.B1:MB, at= 907.0307+(-273.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835590, assembly_id= 103111, from= IP5; - MCS.C20R5.B1:MCS, at= 914.4547+(-273-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245914, assembly_id= 103111, from= IP5; - BPM.20R5.B1:BPM, at= 915.3337+(-273-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245916, assembly_id= 103112, from= IP5; - MQT.20R5.B1:MQT, at= 916.0877+(-273-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307479, assembly_id= 103112, from= IP5; -MQ.20R5.B1:MQ, at= 918.0957+(-273-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348475, assembly_id= 103112, from= IP5; - MS.20R5.B1:MS, at= 919.9907+(-273-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251742, assembly_id= 103112, from= IP5; - MCBV.20R5.B1:MCBV, at= 920.5837+(-273-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251744, assembly_id= 103112, from= IP5; - MB.A21R5.B1:MB, at= 929.1607+(-272.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835614, assembly_id= 103113, from= IP5; - MCS.A21R5.B1:MCS, at= 936.5847+(-272-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245922, assembly_id= 103113, from= IP5; - MCO.21R5.B1:MCO, at= 937.3347+(-272-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251746, assembly_id= 103114, from= IP5; - MCD.21R5.B1:MCD, at= 937.3362+(-272-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251747, assembly_id= 103114, from= IP5; - MB.B21R5.B1:MB, at= 944.8207+(-271.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835638, assembly_id= 103114, from= IP5; - MCS.B21R5.B1:MCS, at= 952.2447+(-271-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245927, assembly_id= 103114, from= IP5; - MB.C21R5.B1:MB, at= 960.4807+(-270.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835662, assembly_id= 103115, from= IP5; - MCS.C21R5.B1:MCS, at= 967.9047+(-270-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245930, assembly_id= 103115, from= IP5; - BPM.21R5.B1:BPM, at= 968.7837+(-270-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245932, assembly_id= 103116, from= IP5; - MQT.21R5.B1:MQT, at= 969.5377+(-270-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307277, assembly_id= 103116, from= IP5; -MQ.21R5.B1:MQ, at= 971.5457+(-270-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308261, assembly_id= 103116, from= IP5; - MS.21R5.B1:MS, at= 973.4407+(-270-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251750, assembly_id= 103116, from= IP5; - MCBH.21R5.B1:MCBH, at= 974.0337+(-270-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251752, assembly_id= 103116, from= IP5; - MCO.A22R5.B1:MCO, at= 975.1247+(-270-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251754, assembly_id= 103117, from= IP5; - MCD.A22R5.B1:MCD, at= 975.1262+(-270-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251755, assembly_id= 103117, from= IP5; - MB.A22R5.B1:MB, at= 982.6107+(-269.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835686, assembly_id= 103117, from= IP5; - MCS.A22R5.B1:MCS, at= 990.0347+(-269-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245940, assembly_id= 103117, from= IP5; - MB.B22R5.B1:MB, at= 998.2707+(-268.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835710, assembly_id= 103118, from= IP5; - MCS.B22R5.B1:MCS, at= 1005.6947+(-268-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245943, assembly_id= 103118, from= IP5; - MCO.B22R5.B1:MCO, at= 1006.4447+(-268-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251758, assembly_id= 103119, from= IP5; - MCD.B22R5.B1:MCD, at= 1006.4462+(-268-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251759, assembly_id= 103119, from= IP5; - MB.C22R5.B1:MB, at= 1013.9307+(-267.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835734, assembly_id= 103119, from= IP5; - MCS.C22R5.B1:MCS, at= 1021.3547+(-267-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245948, assembly_id= 103119, from= IP5; - BPM.22R5.B1:BPM, at= 1022.2337+(-267-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245950, assembly_id= 103120, from= IP5; - MO.22R5.B1:MO_UNPLUGGED, at= 1022.9847+(-267-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308821, assembly_id= 103120, from= IP5; -MQ.22R5.B1:MQ, at= 1024.9957+(-267-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308293, assembly_id= 103120, from= IP5; - MS.22R5.B1:MS, at= 1026.8907+(-267-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251762, assembly_id= 103120, from= IP5; - MCBV.22R5.B1:MCBV, at= 1027.4837+(-267-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251764, assembly_id= 103120, from= IP5; - MB.A23R5.B1:MB, at= 1036.0607+(-266.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835758, assembly_id= 103121, from= IP5; - MCS.A23R5.B1:MCS, at= 1043.4847+(-266-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245956, assembly_id= 103121, from= IP5; - MCO.23R5.B1:MCO, at= 1044.2347+(-266-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251766, assembly_id= 103122, from= IP5; - MCD.23R5.B1:MCD, at= 1044.2362+(-266-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251767, assembly_id= 103122, from= IP5; - MB.B23R5.B1:MB, at= 1051.7207+(-265.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835782, assembly_id= 103122, from= IP5; - MCS.B23R5.B1:MCS, at= 1059.1447+(-265-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245961, assembly_id= 103122, from= IP5; - MB.C23R5.B1:MB, at= 1067.3807+(-264.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835806, assembly_id= 103123, from= IP5; - MCS.C23R5.B1:MCS, at= 1074.8047+(-264-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245964, assembly_id= 103123, from= IP5; - BPM.23R5.B1:BPM, at= 1075.6837+(-264-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245966, assembly_id= 103124, from= IP5; - MQS.23R5.B1:MQS, at= 1076.4377+(-264-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307643, assembly_id= 103124, from= IP5; -MQ.23R5.B1:MQ, at= 1078.4457+(-264-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308324, assembly_id= 103124, from= IP5; - MS.23R5.B1:MS, at= 1080.3407+(-264-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251770, assembly_id= 103124, from= IP5; - MCBH.23R5.B1:MCBH, at= 1080.9337+(-264-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251772, assembly_id= 103124, from= IP5; - MCO.A24R5.B1:MCO, at= 1082.0247+(-264-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251774, assembly_id= 103125, from= IP5; - MCD.A24R5.B1:MCD, at= 1082.0262+(-264-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251775, assembly_id= 103125, from= IP5; - MB.A24R5.B1:MB, at= 1089.5107+(-263.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835830, assembly_id= 103125, from= IP5; - MCS.A24R5.B1:MCS, at= 1096.9347+(-263-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245974, assembly_id= 103125, from= IP5; - MB.B24R5.B1:MB, at= 1105.1707+(-262.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835854, assembly_id= 103126, from= IP5; - MCS.B24R5.B1:MCS, at= 1112.5947+(-262-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245977, assembly_id= 103126, from= IP5; - MCO.B24R5.B1:MCO, at= 1113.3447+(-262-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251778, assembly_id= 103127, from= IP5; - MCD.B24R5.B1:MCD, at= 1113.3462+(-262-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251779, assembly_id= 103127, from= IP5; - MB.C24R5.B1:MB, at= 1120.8307+(-261.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835878, assembly_id= 103127, from= IP5; - MCS.C24R5.B1:MCS, at= 1128.2547+(-261-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245982, assembly_id= 103127, from= IP5; - BPM.24R5.B1:BPM, at= 1129.1337+(-261-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245984, assembly_id= 103128, from= IP5; - MO.24R5.B1:MO_UNPLUGGED, at= 1129.8847+(-261-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308851, assembly_id= 103128, from= IP5; -MQ.24R5.B1:MQ, at= 1131.8957+(-261-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308114, assembly_id= 103128, from= IP5; - MS.24R5.B1:MS, at= 1133.7907+(-261-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251782, assembly_id= 103128, from= IP5; - MCBV.24R5.B1:MCBV, at= 1134.3837+(-261-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251784, assembly_id= 103128, from= IP5; - MB.A25R5.B1:MB, at= 1142.9607+(-260.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835902, assembly_id= 103129, from= IP5; - MCS.A25R5.B1:MCS, at= 1150.3847+(-260-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245990, assembly_id= 103129, from= IP5; - MCO.25R5.B1:MCO, at= 1151.1347+(-260-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251786, assembly_id= 103130, from= IP5; - MCD.25R5.B1:MCD, at= 1151.1362+(-260-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251787, assembly_id= 103130, from= IP5; - MB.B25R5.B1:MB, at= 1158.6207+(-259.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835926, assembly_id= 103130, from= IP5; - MCS.B25R5.B1:MCS, at= 1166.0447+(-259-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245995, assembly_id= 103130, from= IP5; - MB.C25R5.B1:MB, at= 1174.2807+(-258.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835950, assembly_id= 103131, from= IP5; - MCS.C25R5.B1:MCS, at= 1181.7047+(-258-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 245998, assembly_id= 103131, from= IP5; - BPM.25R5.B1:BPM, at= 1182.5837+(-258-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246000, assembly_id= 103132, from= IP5; - MO.25R5.B1:MO, at= 1183.3347+(-258-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308883, assembly_id= 103132, from= IP5; -MQ.25R5.B1:MQ, at= 1185.3457+(-258-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308146, assembly_id= 103132, from= IP5; - MS.25R5.B1:MS, at= 1187.2407+(-258-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251790, assembly_id= 103132, from= IP5; - MCBH.25R5.B1:MCBH, at= 1187.8337+(-258-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251792, assembly_id= 103132, from= IP5; - MCO.A26R5.B1:MCO, at= 1188.9247+(-258-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251794, assembly_id= 103133, from= IP5; - MCD.A26R5.B1:MCD, at= 1188.9262+(-258-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251795, assembly_id= 103133, from= IP5; - MB.A26R5.B1:MB, at= 1196.4107+(-257.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835974, assembly_id= 103133, from= IP5; - MCS.A26R5.B1:MCS, at= 1203.8347+(-257-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246008, assembly_id= 103133, from= IP5; - MB.B26R5.B1:MB, at= 1212.0707+(-256.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52835998, assembly_id= 103134, from= IP5; - MCS.B26R5.B1:MCS, at= 1219.4947+(-256-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246011, assembly_id= 103134, from= IP5; - MCO.B26R5.B1:MCO, at= 1220.2447+(-256-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251798, assembly_id= 103135, from= IP5; - MCD.B26R5.B1:MCD, at= 1220.2462+(-256-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251799, assembly_id= 103135, from= IP5; - MB.C26R5.B1:MB, at= 1227.7307+(-255.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836022, assembly_id= 103135, from= IP5; - MCS.C26R5.B1:MCS, at= 1235.1547+(-255-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246016, assembly_id= 103135, from= IP5; - BPM.26R5.B1:BPM, at= 1236.0337+(-255-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246018, assembly_id= 103136, from= IP5; - MO.26R5.B1:MO, at= 1236.7847+(-255-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308914, assembly_id= 103136, from= IP5; -MQ.26R5.B1:MQ, at= 1238.7957+(-255-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308177, assembly_id= 103136, from= IP5; - MS.26R5.B1:MS, at= 1240.6907+(-255-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251802, assembly_id= 103136, from= IP5; - MCBV.26R5.B1:MCBV_UNPLUGGED, at= 1241.2837+(-255-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251804, assembly_id= 103136, from= IP5; - MB.A27R5.B1:MB, at= 1249.8607+(-254.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836046, assembly_id= 103137, from= IP5; - MCS.A27R5.B1:MCS, at= 1257.2847+(-254-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246024, assembly_id= 103137, from= IP5; - MCO.27R5.B1:MCO, at= 1258.0347+(-254-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251806, assembly_id= 103138, from= IP5; - MCD.27R5.B1:MCD, at= 1258.0362+(-254-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251807, assembly_id= 103138, from= IP5; - MB.B27R5.B1:MB, at= 1265.5207+(-253.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836070, assembly_id= 103138, from= IP5; - MCS.B27R5.B1:MCS, at= 1272.9447+(-253-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246029, assembly_id= 103138, from= IP5; - MB.C27R5.B1:MB, at= 1281.1807+(-252.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836094, assembly_id= 103139, from= IP5; - MCS.C27R5.B1:MCS, at= 1288.6047+(-252-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246032, assembly_id= 103139, from= IP5; - BPM.27R5.B1:BPM, at= 1289.4837+(-252-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246034, assembly_id= 103140, from= IP5; - MQS.27R5.B1:MQS, at= 1290.2377+(-252-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307675, assembly_id= 103140, from= IP5; -MQ.27R5.B1:MQ, at= 1292.2457+(-252-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308206, assembly_id= 103140, from= IP5; - MS.27R5.B1:MS, at= 1294.1407+(-252-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251810, assembly_id= 103140, from= IP5; - MCBH.27R5.B1:MCBH, at= 1294.7337+(-252-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251812, assembly_id= 103140, from= IP5; - MCO.A28R5.B1:MCO, at= 1295.8247+(-252-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251814, assembly_id= 103141, from= IP5; - MCD.A28R5.B1:MCD, at= 1295.8262+(-252-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251815, assembly_id= 103141, from= IP5; - MB.A28R5.B1:MB, at= 1303.3107+(-251.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836118, assembly_id= 103141, from= IP5; - MCS.A28R5.B1:MCS, at= 1310.7347+(-251-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246042, assembly_id= 103141, from= IP5; - MB.B28R5.B1:MB, at= 1318.9707+(-250.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836142, assembly_id= 103142, from= IP5; - MCS.B28R5.B1:MCS, at= 1326.3947+(-250-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246045, assembly_id= 103142, from= IP5; - MCO.B28R5.B1:MCO, at= 1327.1447+(-250-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251818, assembly_id= 103143, from= IP5; - MCD.B28R5.B1:MCD, at= 1327.1462+(-250-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251819, assembly_id= 103143, from= IP5; - MB.C28R5.B1:MB, at= 1334.6307+(-249.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836166, assembly_id= 103143, from= IP5; - MCS.C28R5.B1:MCS, at= 1342.0547+(-249-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246050, assembly_id= 103143, from= IP5; - BPM.28R5.B1:BPM, at= 1342.9337+(-249-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246052, assembly_id= 103144, from= IP5; - MO.28R5.B1:MO_UNPLUGGED, at= 1343.6847+(-249-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308704, assembly_id= 103144, from= IP5; -MQ.28R5.B1:MQ, at= 1345.6957+(-249-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307998, assembly_id= 103144, from= IP5; - MS.28R5.B1:MS, at= 1347.5907+(-249-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251822, assembly_id= 103144, from= IP5; - MCBV.28R5.B1:MCBV, at= 1348.1837+(-249-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251824, assembly_id= 103144, from= IP5; - MB.A29R5.B1:MB, at= 1356.7607+(-248.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836190, assembly_id= 103145, from= IP5; - MCS.A29R5.B1:MCS, at= 1364.1847+(-248-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246058, assembly_id= 103145, from= IP5; - MCO.29R5.B1:MCO, at= 1364.9347+(-248-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251826, assembly_id= 103146, from= IP5; - MCD.29R5.B1:MCD, at= 1364.9362+(-248-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251827, assembly_id= 103146, from= IP5; - MB.B29R5.B1:MB, at= 1372.4207+(-247.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836214, assembly_id= 103146, from= IP5; - MCS.B29R5.B1:MCS, at= 1379.8447+(-247-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246063, assembly_id= 103146, from= IP5; - MB.C29R5.B1:MB, at= 1388.0807+(-246.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836238, assembly_id= 103147, from= IP5; - MCS.C29R5.B1:MCS, at= 1395.5047+(-246-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246066, assembly_id= 103147, from= IP5; - BPM.29R5.B1:BPM, at= 1396.3837+(-246-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246068, assembly_id= 103148, from= IP5; - MO.29R5.B1:MO, at= 1397.1347+(-246-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308736, assembly_id= 103148, from= IP5; -MQ.29R5.B1:MQ, at= 1399.1457+(-246-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308029, assembly_id= 103148, from= IP5; - MSS.29R5.B1:MSS, at= 1401.0407+(-246-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251830, assembly_id= 103148, from= IP5; - MCBH.29R5.B1:MCBH, at= 1401.6337+(-246-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251832, assembly_id= 103148, from= IP5; - MCO.A30R5.B1:MCO, at= 1402.7247+(-246-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251834, assembly_id= 103149, from= IP5; - MCD.A30R5.B1:MCD, at= 1402.7262+(-246-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251835, assembly_id= 103149, from= IP5; - MB.A30R5.B1:MB, at= 1410.2107+(-245.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836262, assembly_id= 103149, from= IP5; - MCS.A30R5.B1:MCS, at= 1417.6347+(-245-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246076, assembly_id= 103149, from= IP5; - MB.B30R5.B1:MB, at= 1425.8707+(-244.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836286, assembly_id= 103150, from= IP5; - MCS.B30R5.B1:MCS, at= 1433.2947+(-244-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246079, assembly_id= 103150, from= IP5; - MCO.B30R5.B1:MCO, at= 1434.0447+(-244-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251838, assembly_id= 103151, from= IP5; - MCD.B30R5.B1:MCD, at= 1434.0462+(-244-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251839, assembly_id= 103151, from= IP5; - MB.C30R5.B1:MB, at= 1441.5307+(-243.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836310, assembly_id= 103151, from= IP5; - MCS.C30R5.B1:MCS, at= 1448.9547+(-243-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246084, assembly_id= 103151, from= IP5; - BPM.30R5.B1:BPM, at= 1449.8337+(-243-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246086, assembly_id= 103152, from= IP5; - MO.30R5.B1:MO, at= 1450.5847+(-243-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308767, assembly_id= 103152, from= IP5; -MQ.30R5.B1:MQ, at= 1452.5957+(-243-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308058, assembly_id= 103152, from= IP5; - MS.30R5.B1:MS, at= 1454.4907+(-243-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251842, assembly_id= 103152, from= IP5; - MCBV.30R5.B1:MCBV, at= 1455.0837+(-243-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251844, assembly_id= 103152, from= IP5; - MB.A31R5.B1:MB, at= 1463.6607+(-242.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836334, assembly_id= 103153, from= IP5; - MCS.A31R5.B1:MCS, at= 1471.0847+(-242-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246092, assembly_id= 103153, from= IP5; - MCO.31R5.B1:MCO, at= 1471.8347+(-242-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251846, assembly_id= 103154, from= IP5; - MCD.31R5.B1:MCD, at= 1471.8362+(-242-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251847, assembly_id= 103154, from= IP5; - MB.B31R5.B1:MB, at= 1479.3207+(-241.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836358, assembly_id= 103154, from= IP5; - MCS.B31R5.B1:MCS, at= 1486.7447+(-241-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246097, assembly_id= 103154, from= IP5; - MB.C31R5.B1:MB, at= 1494.9807+(-240.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836382, assembly_id= 103155, from= IP5; - MCS.C31R5.B1:MCS, at= 1502.4047+(-240-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246100, assembly_id= 103155, from= IP5; - BPM.31R5.B1:BPM, at= 1503.2837+(-240-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246102, assembly_id= 103156, from= IP5; - MO.31R5.B1:MO, at= 1504.0347+(-240-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308797, assembly_id= 103156, from= IP5; -MQ.31R5.B1:MQ, at= 1506.0457+(-240-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307850, assembly_id= 103156, from= IP5; - MS.31R5.B1:MS, at= 1507.9407+(-240-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251850, assembly_id= 103156, from= IP5; - MCBH.31R5.B1:MCBH, at= 1508.5337+(-240-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251852, assembly_id= 103156, from= IP5; -S.CELL.56.B1:OMK, at= 1509.2807+(-240-IP5OFS.B1)*DS, slot_id= 100932, from= IP5; - MCO.A32R5.B1:MCO, at= 1509.6247+(-240-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251854, assembly_id= 103157, from= IP5; - MCD.A32R5.B1:MCD, at= 1509.6262+(-240-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251855, assembly_id= 103157, from= IP5; - MB.A32R5.B1:MB, at= 1517.1107+(-239.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836406, assembly_id= 103157, from= IP5; - MCS.A32R5.B1:MCS, at= 1524.5347+(-239-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246110, assembly_id= 103157, from= IP5; - MB.B32R5.B1:MB, at= 1532.7707+(-238.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836430, assembly_id= 103158, from= IP5; - MCS.B32R5.B1:MCS, at= 1540.1947+(-238-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246113, assembly_id= 103158, from= IP5; - MCO.B32R5.B1:MCO, at= 1540.9447+(-238-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251858, assembly_id= 103159, from= IP5; - MCD.B32R5.B1:MCD, at= 1540.9462+(-238-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251859, assembly_id= 103159, from= IP5; - MB.C32R5.B1:MB, at= 1548.4307+(-237.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836454, assembly_id= 103159, from= IP5; - MCS.C32R5.B1:MCS, at= 1555.8547+(-237-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246118, assembly_id= 103159, from= IP5; - BPM.32R5.B1:BPM, at= 1556.7337+(-237-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246120, assembly_id= 103160, from= IP5; - MO.32R5.B1:MO, at= 1557.4847+(-237-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308589, assembly_id= 103160, from= IP5; -MQ.32R5.B1:MQ, at= 1559.4957+(-237-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307880, assembly_id= 103160, from= IP5; - MS.32R5.B1:MS, at= 1561.3907+(-237-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251862, assembly_id= 103160, from= IP5; - MCBV.32R5.B1:MCBV, at= 1561.9837+(-237-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251864, assembly_id= 103160, from= IP5; - MB.A33R5.B1:MB, at= 1570.5607+(-236.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836478, assembly_id= 103161, from= IP5; - MCS.A33R5.B1:MCS, at= 1577.9847+(-236-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246126, assembly_id= 103161, from= IP5; - MCO.33R5.B1:MCO, at= 1578.7347+(-236-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251866, assembly_id= 103162, from= IP5; - MCD.33R5.B1:MCD, at= 1578.7362+(-236-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251867, assembly_id= 103162, from= IP5; - MB.B33R5.B1:MB, at= 1586.2207+(-235.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836502, assembly_id= 103162, from= IP5; - MCS.B33R5.B1:MCS, at= 1593.6447+(-235-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246131, assembly_id= 103162, from= IP5; - MB.C33R5.B1:MB, at= 1601.8807+(-234.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836526, assembly_id= 103163, from= IP5; - MCS.C33R5.B1:MCS, at= 1609.3047+(-234-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246134, assembly_id= 103163, from= IP5; - BPM.33R5.B1:BPM, at= 1610.1837+(-234-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246136, assembly_id= 103164, from= IP5; - MO.33R5.B1:MO, at= 1610.9347+(-234-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308620, assembly_id= 103164, from= IP5; -MQ.33R5.B1:MQ, at= 1612.9457+(-234-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307910, assembly_id= 103164, from= IP5; - MSS.33R5.B1:MSS, at= 1614.8407+(-234-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251870, assembly_id= 103164, from= IP5; - MCBH.33R5.B1:MCBH, at= 1615.4337+(-234-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251872, assembly_id= 103164, from= IP5; -E.CELL.56.B1:OMK, at= 1616.1807+(-234-IP5OFS.B1)*DS, slot_id= 100932, from= IP5; - MCO.A34R5.B1:MCO, at= 1616.5247+(-234-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251874, assembly_id= 103165, from= IP5; - MCD.A34R5.B1:MCD, at= 1616.5262+(-234-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251875, assembly_id= 103165, from= IP5; - MB.A34R5.B1:MB, at= 1624.0107+(-233.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836550, assembly_id= 103165, from= IP5; - MCS.A34R5.B1:MCS, at= 1631.4347+(-233-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246144, assembly_id= 103165, from= IP5; - MB.B34R5.B1:MB, at= 1639.6707+(-232.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836574, assembly_id= 103166, from= IP5; - MCS.B34R5.B1:MCS, at= 1647.0947+(-232-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246147, assembly_id= 103166, from= IP5; - MCO.B34R5.B1:MCO, at= 1647.8447+(-232-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251878, assembly_id= 103167, from= IP5; - MCD.B34R5.B1:MCD, at= 1647.8462+(-232-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251879, assembly_id= 103167, from= IP5; - MB.C34R5.B1:MB, at= 1655.3307+(-231.5-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836598, assembly_id= 103167, from= IP5; - MCS.C34R5.B1:MCS, at= 1662.7547+(-231-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246152, assembly_id= 103167, from= IP5; - BPM.34R5.B1:BPM, at= 1663.6337+(-231-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246154, assembly_id= 103168, from= IP5; - MO.34R5.B1:MO, at= 1664.3847+(-231-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308635, assembly_id= 103168, from= IP5; -MQ.34R5.B1:MQ, at= 1666.3957+(-231-IP5OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307925, assembly_id= 103168, from= IP5; - MS.34L6.B1:MS, at= -1664.0697+(-231-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251882, assembly_id= 103168, from= IP6; - MCBV.34L6.B1:MCBV, at= -1663.4767+(-231-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251884, assembly_id= 103168, from= IP6; - MB.C34L6.B1:MB, at= -1654.8997+(-230.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836622, assembly_id= 103169, from= IP6; - MCS.C34L6.B1:MCS, at= -1647.4757+(-230-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246160, assembly_id= 103169, from= IP6; - MCO.34L6.B1:MCO, at= -1646.7257+(-230-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251886, assembly_id= 103170, from= IP6; - MCD.34L6.B1:MCD, at= -1646.7242+(-230-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251887, assembly_id= 103170, from= IP6; - MB.B34L6.B1:MB, at= -1639.2397+(-229.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836646, assembly_id= 103170, from= IP6; - MCS.B34L6.B1:MCS, at= -1631.8157+(-229-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246165, assembly_id= 103170, from= IP6; - MB.A34L6.B1:MB, at= -1623.5797+(-228.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836670, assembly_id= 103171, from= IP6; - MCS.A34L6.B1:MCS, at= -1616.1557+(-228-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246168, assembly_id= 103171, from= IP6; - BPM.33L6.B1:BPM, at= -1615.2767+(-228-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246170, assembly_id= 103172, from= IP6; - MO.33L6.B1:MO, at= -1614.5257+(-228-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308607, assembly_id= 103172, from= IP6; -MQ.33L6.B1:MQ, at= -1612.5147+(-228-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307897, assembly_id= 103172, from= IP6; - MSS.33L6.B1:MSS, at= -1610.6197+(-228-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251890, assembly_id= 103172, from= IP6; - MCBH.33L6.B1:MCBH, at= -1610.0267+(-228-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251892, assembly_id= 103172, from= IP6; - MCO.B33L6.B1:MCO, at= -1608.9357+(-228-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251894, assembly_id= 103173, from= IP6; - MCD.B33L6.B1:MCD, at= -1608.9342+(-228-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251895, assembly_id= 103173, from= IP6; - MB.C33L6.B1:MB, at= -1601.4497+(-227.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836694, assembly_id= 103173, from= IP6; - MCS.C33L6.B1:MCS, at= -1594.0257+(-227-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246178, assembly_id= 103173, from= IP6; - MB.B33L6.B1:MB, at= -1585.7897+(-226.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836718, assembly_id= 103174, from= IP6; - MCS.B33L6.B1:MCS, at= -1578.3657+(-226-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246181, assembly_id= 103174, from= IP6; - MCO.A33L6.B1:MCO, at= -1577.6157+(-226-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251898, assembly_id= 103175, from= IP6; - MCD.A33L6.B1:MCD, at= -1577.6142+(-226-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251899, assembly_id= 103175, from= IP6; - MB.A33L6.B1:MB, at= -1570.1297+(-225.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836742, assembly_id= 103175, from= IP6; - MCS.A33L6.B1:MCS, at= -1562.7057+(-225-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246186, assembly_id= 103175, from= IP6; - BPM.32L6.B1:BPM, at= -1561.8267+(-225-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246188, assembly_id= 103176, from= IP6; - MO.32L6.B1:MO, at= -1561.0757+(-225-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308575, assembly_id= 103176, from= IP6; -MQ.32L6.B1:MQ, at= -1559.0647+(-225-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307867, assembly_id= 103176, from= IP6; - MS.32L6.B1:MS, at= -1557.1697+(-225-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251902, assembly_id= 103176, from= IP6; - MCBV.32L6.B1:MCBV, at= -1556.5767+(-225-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251904, assembly_id= 103176, from= IP6; - MB.C32L6.B1:MB, at= -1547.9997+(-224.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836766, assembly_id= 103177, from= IP6; - MCS.C32L6.B1:MCS, at= -1540.5757+(-224-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246194, assembly_id= 103177, from= IP6; - MCO.32L6.B1:MCO, at= -1539.8257+(-224-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251906, assembly_id= 103178, from= IP6; - MCD.32L6.B1:MCD, at= -1539.8242+(-224-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251907, assembly_id= 103178, from= IP6; - MB.B32L6.B1:MB, at= -1532.3397+(-223.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836790, assembly_id= 103178, from= IP6; - MCS.B32L6.B1:MCS, at= -1524.9157+(-223-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246199, assembly_id= 103178, from= IP6; - MB.A32L6.B1:MB, at= -1516.6797+(-222.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836814, assembly_id= 103179, from= IP6; - MCS.A32L6.B1:MCS, at= -1509.2557+(-222-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246202, assembly_id= 103179, from= IP6; - BPM.31L6.B1:BPM, at= -1508.3767+(-222-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246204, assembly_id= 103180, from= IP6; - MO.31L6.B1:MO, at= -1507.6257+(-222-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308784, assembly_id= 103180, from= IP6; -MQ.31L6.B1:MQ, at= -1505.6147+(-222-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308075, assembly_id= 103180, from= IP6; - MS.31L6.B1:MS, at= -1503.7197+(-222-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251910, assembly_id= 103180, from= IP6; - MCBH.31L6.B1:MCBH, at= -1503.1267+(-222-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251912, assembly_id= 103180, from= IP6; - MCO.B31L6.B1:MCO, at= -1502.0357+(-222-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251914, assembly_id= 103181, from= IP6; - MCD.B31L6.B1:MCD, at= -1502.0342+(-222-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251915, assembly_id= 103181, from= IP6; - MB.C31L6.B1:MB, at= -1494.5497+(-221.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836838, assembly_id= 103181, from= IP6; - MCS.C31L6.B1:MCS, at= -1487.1257+(-221-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246212, assembly_id= 103181, from= IP6; - MB.B31L6.B1:MB, at= -1478.8897+(-220.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836862, assembly_id= 103182, from= IP6; - MCS.B31L6.B1:MCS, at= -1471.4657+(-220-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246215, assembly_id= 103182, from= IP6; - MCO.A31L6.B1:MCO, at= -1470.7157+(-220-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251918, assembly_id= 103183, from= IP6; - MCD.A31L6.B1:MCD, at= -1470.7142+(-220-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251919, assembly_id= 103183, from= IP6; - MB.A31L6.B1:MB, at= -1463.2297+(-219.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836886, assembly_id= 103183, from= IP6; - MCS.A31L6.B1:MCS, at= -1455.8057+(-219-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246220, assembly_id= 103183, from= IP6; - BPM.30L6.B1:BPM, at= -1454.9267+(-219-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246222, assembly_id= 103184, from= IP6; - MO.30L6.B1:MO, at= -1454.1757+(-219-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308754, assembly_id= 103184, from= IP6; -MQ.30L6.B1:MQ, at= -1452.1647+(-219-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308045, assembly_id= 103184, from= IP6; - MS.30L6.B1:MS, at= -1450.2697+(-219-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251922, assembly_id= 103184, from= IP6; - MCBV.30L6.B1:MCBV, at= -1449.6767+(-219-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251924, assembly_id= 103184, from= IP6; - MB.C30L6.B1:MB, at= -1441.0997+(-218.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836910, assembly_id= 103185, from= IP6; - MCS.C30L6.B1:MCS, at= -1433.6757+(-218-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246228, assembly_id= 103185, from= IP6; - MCO.30L6.B1:MCO, at= -1432.9257+(-218-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251926, assembly_id= 103186, from= IP6; - MCD.30L6.B1:MCD, at= -1432.9242+(-218-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251927, assembly_id= 103186, from= IP6; - MB.B30L6.B1:MB, at= -1425.4397+(-217.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836934, assembly_id= 103186, from= IP6; - MCS.B30L6.B1:MCS, at= -1418.0157+(-217-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246233, assembly_id= 103186, from= IP6; - MB.A30L6.B1:MB, at= -1409.7797+(-216.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836958, assembly_id= 103187, from= IP6; - MCS.A30L6.B1:MCS, at= -1402.3557+(-216-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246236, assembly_id= 103187, from= IP6; - BPM.29L6.B1:BPM, at= -1401.4767+(-216-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246238, assembly_id= 103188, from= IP6; - MO.29L6.B1:MO, at= -1400.7257+(-216-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308722, assembly_id= 103188, from= IP6; -MQ.29L6.B1:MQ, at= -1398.7147+(-216-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308016, assembly_id= 103188, from= IP6; - MSS.29L6.B1:MSS, at= -1396.8197+(-216-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251930, assembly_id= 103188, from= IP6; - MCBH.29L6.B1:MCBH, at= -1396.2267+(-216-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251932, assembly_id= 103188, from= IP6; - MCO.B29L6.B1:MCO, at= -1395.1357+(-216-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251934, assembly_id= 103189, from= IP6; - MCD.B29L6.B1:MCD, at= -1395.1342+(-216-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251935, assembly_id= 103189, from= IP6; - MB.C29L6.B1:MB, at= -1387.6497+(-215.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52836982, assembly_id= 103189, from= IP6; - MCS.C29L6.B1:MCS, at= -1380.2257+(-215-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246246, assembly_id= 103189, from= IP6; - MB.B29L6.B1:MB, at= -1371.9897+(-214.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837006, assembly_id= 103190, from= IP6; - MCS.B29L6.B1:MCS, at= -1364.5657+(-214-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246249, assembly_id= 103190, from= IP6; - MCO.A29L6.B1:MCO, at= -1363.8157+(-214-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251938, assembly_id= 103191, from= IP6; - MCD.A29L6.B1:MCD, at= -1363.8142+(-214-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251939, assembly_id= 103191, from= IP6; - MB.A29L6.B1:MB, at= -1356.3297+(-213.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837030, assembly_id= 103191, from= IP6; - MCS.A29L6.B1:MCS, at= -1348.9057+(-213-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246254, assembly_id= 103191, from= IP6; - BPM.28L6.B1:BPM, at= -1348.0267+(-213-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246256, assembly_id= 103192, from= IP6; - MO.28L6.B1:MO, at= -1347.2757+(-213-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348497, assembly_id= 103192, from= IP6; -MQ.28L6.B1:MQ, at= -1345.2647+(-213-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307984, assembly_id= 103192, from= IP6; - MS.28L6.B1:MS, at= -1343.3697+(-213-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251942, assembly_id= 103192, from= IP6; - MCBV.28L6.B1:MCBV, at= -1342.7767+(-213-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251944, assembly_id= 103192, from= IP6; - MB.C28L6.B1:MB, at= -1334.1997+(-212.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837054, assembly_id= 103193, from= IP6; - MCS.C28L6.B1:MCS, at= -1326.7757+(-212-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246262, assembly_id= 103193, from= IP6; - MCO.28L6.B1:MCO, at= -1326.0257+(-212-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251946, assembly_id= 103194, from= IP6; - MCD.28L6.B1:MCD, at= -1326.0242+(-212-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251947, assembly_id= 103194, from= IP6; - MB.B28L6.B1:MB, at= -1318.5397+(-211.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837078, assembly_id= 103194, from= IP6; - MCS.B28L6.B1:MCS, at= -1311.1157+(-211-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246267, assembly_id= 103194, from= IP6; - MB.A28L6.B1:MB, at= -1302.8797+(-210.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837102, assembly_id= 103195, from= IP6; - MCS.A28L6.B1:MCS, at= -1295.4557+(-210-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246270, assembly_id= 103195, from= IP6; - BPM.27L6.B1:BPM, at= -1294.5767+(-210-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246272, assembly_id= 103196, from= IP6; - MQS.27L6.B1:MQS, at= -1293.8227+(-210-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307661, assembly_id= 103196, from= IP6; -MQ.27L6.B1:MQ, at= -1291.8147+(-210-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308193, assembly_id= 103196, from= IP6; - MS.27L6.B1:MS, at= -1289.9197+(-210-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251950, assembly_id= 103196, from= IP6; - MCBH.27L6.B1:MCBH, at= -1289.3267+(-210-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251952, assembly_id= 103196, from= IP6; - MCO.B27L6.B1:MCO, at= -1288.2357+(-210-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251954, assembly_id= 103197, from= IP6; - MCD.B27L6.B1:MCD, at= -1288.2342+(-210-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251955, assembly_id= 103197, from= IP6; - MB.C27L6.B1:MB, at= -1280.7497+(-209.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837126, assembly_id= 103197, from= IP6; - MCS.C27L6.B1:MCS, at= -1273.3257+(-209-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246280, assembly_id= 103197, from= IP6; - MB.B27L6.B1:MB, at= -1265.0897+(-208.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837150, assembly_id= 103198, from= IP6; - MCS.B27L6.B1:MCS, at= -1257.6657+(-208-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246283, assembly_id= 103198, from= IP6; - MCO.A27L6.B1:MCO, at= -1256.9157+(-208-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251958, assembly_id= 103199, from= IP6; - MCD.A27L6.B1:MCD, at= -1256.9142+(-208-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251959, assembly_id= 103199, from= IP6; - MB.A27L6.B1:MB, at= -1249.4297+(-207.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837174, assembly_id= 103199, from= IP6; - MCS.A27L6.B1:MCS, at= -1242.0057+(-207-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246288, assembly_id= 103199, from= IP6; - BPM.26L6.B1:BPM, at= -1241.1267+(-207-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246290, assembly_id= 103200, from= IP6; - MO.26L6.B1:MO, at= -1240.3757+(-207-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308901, assembly_id= 103200, from= IP6; -MQ.26L6.B1:MQ, at= -1238.3647+(-207-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308164, assembly_id= 103200, from= IP6; - MS.26L6.B1:MS, at= -1236.4697+(-207-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251962, assembly_id= 103200, from= IP6; - MCBV.26L6.B1:MCBV, at= -1235.8767+(-207-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251964, assembly_id= 103200, from= IP6; - MB.C26L6.B1:MB, at= -1227.2997+(-206.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837198, assembly_id= 103201, from= IP6; - MCS.C26L6.B1:MCS, at= -1219.8757+(-206-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246296, assembly_id= 103201, from= IP6; - MCO.26L6.B1:MCO, at= -1219.1257+(-206-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251966, assembly_id= 103202, from= IP6; - MCD.26L6.B1:MCD, at= -1219.1242+(-206-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251967, assembly_id= 103202, from= IP6; - MB.B26L6.B1:MB, at= -1211.6397+(-205.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837222, assembly_id= 103202, from= IP6; - MCS.B26L6.B1:MCS, at= -1204.2157+(-205-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246301, assembly_id= 103202, from= IP6; - MB.A26L6.B1:MB, at= -1195.9797+(-204.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837246, assembly_id= 103203, from= IP6; - MCS.A26L6.B1:MCS, at= -1188.5557+(-204-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246304, assembly_id= 103203, from= IP6; - BPM.25L6.B1:BPM, at= -1187.6767+(-204-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246306, assembly_id= 103204, from= IP6; - MO.25L6.B1:MO, at= -1186.9257+(-204-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308869, assembly_id= 103204, from= IP6; -MQ.25L6.B1:MQ, at= -1184.9147+(-204-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308132, assembly_id= 103204, from= IP6; - MS.25L6.B1:MS, at= -1183.0197+(-204-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251970, assembly_id= 103204, from= IP6; - MCBH.25L6.B1:MCBH, at= -1182.4267+(-204-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251972, assembly_id= 103204, from= IP6; - MCO.B25L6.B1:MCO, at= -1181.3357+(-204-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251974, assembly_id= 103205, from= IP6; - MCD.B25L6.B1:MCD, at= -1181.3342+(-204-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251975, assembly_id= 103205, from= IP6; - MB.C25L6.B1:MB, at= -1173.8497+(-203.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837270, assembly_id= 103205, from= IP6; - MCS.C25L6.B1:MCS, at= -1166.4257+(-203-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246314, assembly_id= 103205, from= IP6; - MB.B25L6.B1:MB, at= -1158.1897+(-202.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837294, assembly_id= 103206, from= IP6; - MCS.B25L6.B1:MCS, at= -1150.7657+(-202-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246317, assembly_id= 103206, from= IP6; - MCO.A25L6.B1:MCO, at= -1150.0157+(-202-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251978, assembly_id= 103207, from= IP6; - MCD.A25L6.B1:MCD, at= -1150.0142+(-202-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251979, assembly_id= 103207, from= IP6; - MB.A25L6.B1:MB, at= -1142.5297+(-201.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837318, assembly_id= 103207, from= IP6; - MCS.A25L6.B1:MCS, at= -1135.1057+(-201-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246322, assembly_id= 103207, from= IP6; - BPM.24L6.B1:BPM, at= -1134.2267+(-201-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246324, assembly_id= 103208, from= IP6; - MO.24L6.B1:MO, at= -1133.4757+(-201-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308838, assembly_id= 103208, from= IP6; -MQ.24L6.B1:MQ, at= -1131.4647+(-201-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308100, assembly_id= 103208, from= IP6; - MS.24L6.B1:MS, at= -1129.5697+(-201-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251982, assembly_id= 103208, from= IP6; - MCBV.24L6.B1:MCBV, at= -1128.9767+(-201-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251984, assembly_id= 103208, from= IP6; - MB.C24L6.B1:MB, at= -1120.3997+(-200.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837342, assembly_id= 103209, from= IP6; - MCS.C24L6.B1:MCS, at= -1112.9757+(-200-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246330, assembly_id= 103209, from= IP6; - MCO.24L6.B1:MCO, at= -1112.2257+(-200-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251986, assembly_id= 103210, from= IP6; - MCD.24L6.B1:MCD, at= -1112.2242+(-200-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251987, assembly_id= 103210, from= IP6; - MB.B24L6.B1:MB, at= -1104.7397+(-199.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837366, assembly_id= 103210, from= IP6; - MCS.B24L6.B1:MCS, at= -1097.3157+(-199-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246335, assembly_id= 103210, from= IP6; - MB.A24L6.B1:MB, at= -1089.0797+(-198.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837390, assembly_id= 103211, from= IP6; - MCS.A24L6.B1:MCS, at= -1081.6557+(-198-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246338, assembly_id= 103211, from= IP6; - BPM.23L6.B1:BPM, at= -1080.7767+(-198-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246340, assembly_id= 103212, from= IP6; - MQS.23L6.B1:MQS, at= -1080.0227+(-198-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307630, assembly_id= 103212, from= IP6; -MQ.23L6.B1:MQ, at= -1078.0147+(-198-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308311, assembly_id= 103212, from= IP6; - MS.23L6.B1:MS, at= -1076.1197+(-198-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251990, assembly_id= 103212, from= IP6; - MCBH.23L6.B1:MCBH, at= -1075.5267+(-198-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251992, assembly_id= 103212, from= IP6; - MCO.B23L6.B1:MCO, at= -1074.4357+(-198-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251994, assembly_id= 103213, from= IP6; - MCD.B23L6.B1:MCD, at= -1074.4342+(-198-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251995, assembly_id= 103213, from= IP6; - MB.C23L6.B1:MB, at= -1066.9497+(-197.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837414, assembly_id= 103213, from= IP6; - MCS.C23L6.B1:MCS, at= -1059.5257+(-197-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246348, assembly_id= 103213, from= IP6; - MB.B23L6.B1:MB, at= -1051.2897+(-196.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837438, assembly_id= 103214, from= IP6; - MCS.B23L6.B1:MCS, at= -1043.8657+(-196-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246351, assembly_id= 103214, from= IP6; - MCO.A23L6.B1:MCO, at= -1043.1157+(-196-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251998, assembly_id= 103215, from= IP6; - MCD.A23L6.B1:MCD, at= -1043.1142+(-196-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 251999, assembly_id= 103215, from= IP6; - MB.A23L6.B1:MB, at= -1035.6297+(-195.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837462, assembly_id= 103215, from= IP6; - MCS.A23L6.B1:MCS, at= -1028.2057+(-195-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246356, assembly_id= 103215, from= IP6; - BPM.22L6.B1:BPM, at= -1027.3267+(-195-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246358, assembly_id= 103216, from= IP6; - MO.22L6.B1:MO, at= -1026.5757+(-195-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308808, assembly_id= 103216, from= IP6; -MQ.22L6.B1:MQ, at= -1024.5647+(-195-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308279, assembly_id= 103216, from= IP6; - MS.22L6.B1:MS, at= -1022.6697+(-195-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252002, assembly_id= 103216, from= IP6; - MCBV.22L6.B1:MCBV, at= -1022.0767+(-195-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252004, assembly_id= 103216, from= IP6; - MB.C22L6.B1:MB, at= -1013.4997+(-194.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837486, assembly_id= 103217, from= IP6; - MCS.C22L6.B1:MCS, at= -1006.0757+(-194-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246364, assembly_id= 103217, from= IP6; - MCO.22L6.B1:MCO, at= -1005.3257+(-194-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252006, assembly_id= 103218, from= IP6; - MCD.22L6.B1:MCD, at= -1005.3242+(-194-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252007, assembly_id= 103218, from= IP6; - MB.B22L6.B1:MB, at= -997.8397+(-193.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837510, assembly_id= 103218, from= IP6; - MCS.B22L6.B1:MCS, at= -990.4157+(-193-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246369, assembly_id= 103218, from= IP6; - MB.A22L6.B1:MB, at= -982.1797+(-192.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837534, assembly_id= 103219, from= IP6; - MCS.A22L6.B1:MCS, at= -974.7557+(-192-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246372, assembly_id= 103219, from= IP6; - BPM.21L6.B1:BPM, at= -973.8767+(-192-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246374, assembly_id= 103220, from= IP6; - MQT.21L6.B1:MQT, at= -973.1227+(-192-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307263, assembly_id= 103220, from= IP6; -MQ.21L6.B1:MQ, at= -971.1147+(-192-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308247, assembly_id= 103220, from= IP6; - MS.21L6.B1:MS, at= -969.2197+(-192-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252010, assembly_id= 103220, from= IP6; - MCBH.21L6.B1:MCBH, at= -968.6267+(-192-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252012, assembly_id= 103220, from= IP6; - MCO.B21L6.B1:MCO, at= -967.5357+(-192-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252014, assembly_id= 103221, from= IP6; - MCD.B21L6.B1:MCD, at= -967.5342+(-192-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252015, assembly_id= 103221, from= IP6; - MB.C21L6.B1:MB, at= -960.0497+(-191.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837558, assembly_id= 103221, from= IP6; - MCS.C21L6.B1:MCS, at= -952.6257+(-191-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246382, assembly_id= 103221, from= IP6; - MB.B21L6.B1:MB, at= -944.3897+(-190.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837582, assembly_id= 103222, from= IP6; - MCS.B21L6.B1:MCS, at= -936.9657+(-190-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246385, assembly_id= 103222, from= IP6; - MCO.A21L6.B1:MCO, at= -936.2157+(-190-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252018, assembly_id= 103223, from= IP6; - MCD.A21L6.B1:MCD, at= -936.2142+(-190-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252019, assembly_id= 103223, from= IP6; - MB.A21L6.B1:MB, at= -928.7297+(-189.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837606, assembly_id= 103223, from= IP6; - MCS.A21L6.B1:MCS, at= -921.3057+(-189-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246390, assembly_id= 103223, from= IP6; - BPM.20L6.B1:BPM, at= -920.4267+(-189-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246392, assembly_id= 103224, from= IP6; - MQT.20L6.B1:MQT, at= -919.6727+(-189-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307466, assembly_id= 103224, from= IP6; -MQ.20L6.B1:MQ, at= -917.6647+(-189-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308217, assembly_id= 103224, from= IP6; - MS.20L6.B1:MS, at= -915.7697+(-189-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252022, assembly_id= 103224, from= IP6; - MCBV.20L6.B1:MCBV, at= -915.1767+(-189-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252024, assembly_id= 103224, from= IP6; - MB.C20L6.B1:MB, at= -906.5997+(-188.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837630, assembly_id= 103225, from= IP6; - MCS.C20L6.B1:MCS, at= -899.1757+(-188-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246398, assembly_id= 103225, from= IP6; - MCO.20L6.B1:MCO, at= -898.4257+(-188-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252026, assembly_id= 103226, from= IP6; - MCD.20L6.B1:MCD, at= -898.4242+(-188-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252027, assembly_id= 103226, from= IP6; - MB.B20L6.B1:MB, at= -890.9397+(-187.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837654, assembly_id= 103226, from= IP6; - MCS.B20L6.B1:MCS, at= -883.5157+(-187-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246403, assembly_id= 103226, from= IP6; - MB.A20L6.B1:MB, at= -875.2797+(-186.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837678, assembly_id= 103227, from= IP6; - MCS.A20L6.B1:MCS, at= -867.8557+(-186-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246406, assembly_id= 103227, from= IP6; - BPM.19L6.B1:BPM, at= -866.9767+(-186-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246408, assembly_id= 103228, from= IP6; - MQT.19L6.B1:MQT, at= -866.2227+(-186-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307436, assembly_id= 103228, from= IP6; -MQ.19L6.B1:MQ, at= -864.2147+(-186-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308426, assembly_id= 103228, from= IP6; - MS.19L6.B1:MS, at= -862.3197+(-186-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252030, assembly_id= 103228, from= IP6; - MCBH.19L6.B1:MCBH, at= -861.7267+(-186-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252032, assembly_id= 103228, from= IP6; - MCO.B19L6.B1:MCO, at= -860.6357+(-186-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252034, assembly_id= 103229, from= IP6; - MCD.B19L6.B1:MCD, at= -860.6342+(-186-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252035, assembly_id= 103229, from= IP6; - MB.C19L6.B1:MB, at= -853.1497+(-185.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837702, assembly_id= 103229, from= IP6; - MCS.C19L6.B1:MCS, at= -845.7257+(-185-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246416, assembly_id= 103229, from= IP6; - MB.B19L6.B1:MB, at= -837.4897+(-184.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837726, assembly_id= 103230, from= IP6; - MCS.B19L6.B1:MCS, at= -830.0657+(-184-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246419, assembly_id= 103230, from= IP6; - MCO.A19L6.B1:MCO, at= -829.3157+(-184-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252038, assembly_id= 103231, from= IP6; - MCD.A19L6.B1:MCD, at= -829.3142+(-184-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252039, assembly_id= 103231, from= IP6; - MB.A19L6.B1:MB, at= -821.8297+(-183.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837750, assembly_id= 103231, from= IP6; - MCS.A19L6.B1:MCS, at= -814.4057+(-183-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246424, assembly_id= 103231, from= IP6; - BPM.18L6.B1:BPM, at= -813.5267+(-183-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246426, assembly_id= 103232, from= IP6; - MQT.18L6.B1:MQT, at= -812.7727+(-183-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307405, assembly_id= 103232, from= IP6; -MQ.18L6.B1:MQ, at= -810.7647+(-183-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308394, assembly_id= 103232, from= IP6; - MS.18L6.B1:MS, at= -808.8697+(-183-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252042, assembly_id= 103232, from= IP6; - MCBV.18L6.B1:MCBV, at= -808.2767+(-183-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252044, assembly_id= 103232, from= IP6; - MB.C18L6.B1:MB, at= -799.6997+(-182.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837774, assembly_id= 103233, from= IP6; - MCS.C18L6.B1:MCS, at= -792.2757+(-182-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246432, assembly_id= 103233, from= IP6; - MCO.18L6.B1:MCO, at= -791.5257+(-182-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252046, assembly_id= 103234, from= IP6; - MCD.18L6.B1:MCD, at= -791.5242+(-182-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252047, assembly_id= 103234, from= IP6; - MB.B18L6.B1:MB, at= -784.0397+(-181.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837798, assembly_id= 103234, from= IP6; - MCS.B18L6.B1:MCS, at= -776.6157+(-181-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246437, assembly_id= 103234, from= IP6; - MB.A18L6.B1:MB, at= -768.3797+(-180.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837822, assembly_id= 103235, from= IP6; - MCS.A18L6.B1:MCS, at= -760.9557+(-180-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246440, assembly_id= 103235, from= IP6; - BPM.17L6.B1:BPM, at= -760.0767+(-180-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246442, assembly_id= 103236, from= IP6; - MQT.17L6.B1:MQT, at= -759.3227+(-180-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307373, assembly_id= 103236, from= IP6; -MQ.17L6.B1:MQ, at= -757.3147+(-180-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308365, assembly_id= 103236, from= IP6; - MS.17L6.B1:MS, at= -755.4197+(-180-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252050, assembly_id= 103236, from= IP6; - MCBH.17L6.B1:MCBH, at= -754.8267+(-180-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252052, assembly_id= 103236, from= IP6; - MCO.B17L6.B1:MCO, at= -753.7357+(-180-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252054, assembly_id= 103237, from= IP6; - MCD.B17L6.B1:MCD, at= -753.7342+(-180-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252055, assembly_id= 103237, from= IP6; - MB.C17L6.B1:MB, at= -746.2497+(-179.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837846, assembly_id= 103237, from= IP6; - MCS.C17L6.B1:MCS, at= -738.8257+(-179-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246450, assembly_id= 103237, from= IP6; - MB.B17L6.B1:MB, at= -730.5897+(-178.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837870, assembly_id= 103238, from= IP6; - MCS.B17L6.B1:MCS, at= -723.1657+(-178-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246453, assembly_id= 103238, from= IP6; - MCO.A17L6.B1:MCO, at= -722.4157+(-178-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252058, assembly_id= 103239, from= IP6; - MCD.A17L6.B1:MCD, at= -722.4142+(-178-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252059, assembly_id= 103239, from= IP6; - MB.A17L6.B1:MB, at= -714.9297+(-177.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837894, assembly_id= 103239, from= IP6; - MCS.A17L6.B1:MCS, at= -707.5057+(-177-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246458, assembly_id= 103239, from= IP6; - BPM.16L6.B1:BPM, at= -706.6267+(-177-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246460, assembly_id= 103240, from= IP6; - MQT.16L6.B1:MQT, at= -705.8727+(-177-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307580, assembly_id= 103240, from= IP6; -MQ.16L6.B1:MQ, at= -703.8647+(-177-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308335, assembly_id= 103240, from= IP6; - MS.16L6.B1:MS, at= -701.9697+(-177-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252062, assembly_id= 103240, from= IP6; - MCBV.16L6.B1:MCBV, at= -701.3767+(-177-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252064, assembly_id= 103240, from= IP6; - MB.C16L6.B1:MB, at= -692.7997+(-176.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837918, assembly_id= 103241, from= IP6; - MCS.C16L6.B1:MCS, at= -685.3757+(-176-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246466, assembly_id= 103241, from= IP6; - MCO.16L6.B1:MCO, at= -684.6257+(-176-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252066, assembly_id= 103242, from= IP6; - MCD.16L6.B1:MCD, at= -684.6242+(-176-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252067, assembly_id= 103242, from= IP6; - MB.B16L6.B1:MB, at= -677.1397+(-175.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837942, assembly_id= 103242, from= IP6; - MCS.B16L6.B1:MCS, at= -669.7157+(-175-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246471, assembly_id= 103242, from= IP6; - MB.A16L6.B1:MB, at= -661.4797+(-174.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837966, assembly_id= 103243, from= IP6; - MCS.A16L6.B1:MCS, at= -654.0557+(-174-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246474, assembly_id= 103243, from= IP6; - BPM.15L6.B1:BPM, at= -653.1767+(-174-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246476, assembly_id= 103244, from= IP6; - MQT.15L6.B1:MQT, at= -652.4227+(-174-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307549, assembly_id= 103244, from= IP6; -MQ.15L6.B1:MQ, at= -650.4147+(-174-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308541, assembly_id= 103244, from= IP6; - MS.15L6.B1:MS, at= -648.5197+(-174-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252070, assembly_id= 103244, from= IP6; - MCBH.15L6.B1:MCBH, at= -647.9267+(-174-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252072, assembly_id= 103244, from= IP6; - MCO.B15L6.B1:MCO, at= -646.8357+(-174-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252074, assembly_id= 103245, from= IP6; - MCD.B15L6.B1:MCD, at= -646.8342+(-174-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252075, assembly_id= 103245, from= IP6; - MB.C15L6.B1:MB, at= -639.3497+(-173.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52837990, assembly_id= 103245, from= IP6; - MCS.C15L6.B1:MCS, at= -631.9257+(-173-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246484, assembly_id= 103245, from= IP6; - MB.B15L6.B1:MB, at= -623.6897+(-172.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838014, assembly_id= 103246, from= IP6; - MCS.B15L6.B1:MCS, at= -616.2657+(-172-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246487, assembly_id= 103246, from= IP6; - MCO.A15L6.B1:MCO, at= -615.5157+(-172-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252078, assembly_id= 103247, from= IP6; - MCD.A15L6.B1:MCD, at= -615.5142+(-172-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252079, assembly_id= 103247, from= IP6; - MB.A15L6.B1:MB, at= -608.0297+(-171.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838038, assembly_id= 103247, from= IP6; - MCS.A15L6.B1:MCS, at= -600.6057+(-171-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246492, assembly_id= 103247, from= IP6; - BPM.14L6.B1:BPM, at= -599.7267+(-171-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246494, assembly_id= 103248, from= IP6; - MQT.14L6.B1:MQT, at= -598.9727+(-171-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307517, assembly_id= 103248, from= IP6; -MQ.14L6.B1:MQ, at= -596.9647+(-171-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308512, assembly_id= 103248, from= IP6; - MS.14L6.B1:MS, at= -595.0697+(-171-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252082, assembly_id= 103248, from= IP6; - MCBV.14L6.B1:MCBV, at= -594.4767+(-171-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252084, assembly_id= 103248, from= IP6; - MB.C14L6.B1:MB, at= -585.8997+(-170.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838062, assembly_id= 103249, from= IP6; - MCS.C14L6.B1:MCS, at= -578.4757+(-170-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246500, assembly_id= 103249, from= IP6; - MCO.14L6.B1:MCO, at= -577.7257+(-170-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252086, assembly_id= 103250, from= IP6; - MCD.14L6.B1:MCD, at= -577.7242+(-170-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252087, assembly_id= 103250, from= IP6; - MB.B14L6.B1:MB, at= -570.2397+(-169.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838086, assembly_id= 103250, from= IP6; - MCS.B14L6.B1:MCS, at= -562.8157+(-169-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246505, assembly_id= 103250, from= IP6; - MB.A14L6.B1:MB, at= -554.5797+(-168.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838110, assembly_id= 103251, from= IP6; - MCS.A14L6.B1:MCS, at= -547.1557+(-168-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246508, assembly_id= 103251, from= IP6; -S.DS.L6.B1:OMK, at= -546.7497+(-168-IP6OFS.B1)*DS, slot_id= 100932, from= IP6; - BPM.13L6.B1:BPM, at= -546.2767+(-168-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246510, assembly_id= 103252, from= IP6; - MQT.13L6.B1:MQT, at= -545.5227+(-168-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307725, assembly_id= 103252, from= IP6; -MQ.13L6.B1:MQ, at= -543.5147+(-168-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308482, assembly_id= 103252, from= IP6; - MS.13L6.B1:MS, at= -541.6197+(-168-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252090, assembly_id= 103252, from= IP6; - MCBH.13L6.B1:MCBH, at= -541.0267+(-168-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252092, assembly_id= 103252, from= IP6; - MCO.B13L6.B1:MCO, at= -539.9357+(-168-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252094, assembly_id= 103253, from= IP6; - MCD.B13L6.B1:MCD, at= -539.9342+(-168-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252095, assembly_id= 103253, from= IP6; - MB.C13L6.B1:MB, at= -532.4497+(-167.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838134, assembly_id= 103253, from= IP6; - MCS.C13L6.B1:MCS, at= -525.0257+(-167-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246518, assembly_id= 103253, from= IP6; - MB.B13L6.B1:MB, at= -516.7897+(-166.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838158, assembly_id= 103254, from= IP6; - MCS.B13L6.B1:MCS, at= -509.3657+(-166-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246521, assembly_id= 103254, from= IP6; - MCO.A13L6.B1:MCO, at= -508.6157+(-166-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252098, assembly_id= 103255, from= IP6; - MCD.A13L6.B1:MCD, at= -508.6142+(-166-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252099, assembly_id= 103255, from= IP6; - MB.A13L6.B1:MB, at= -501.1297+(-165.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838182, assembly_id= 103255, from= IP6; - MCS.A13L6.B1:MCS, at= -493.7057+(-165-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246526, assembly_id= 103255, from= IP6; - BPM.12L6.B1:BPM, at= -492.8267+(-165-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246528, assembly_id= 103256, from= IP6; - MQT.12L6.B1:MQT, at= -492.0727+(-165-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307693, assembly_id= 103256, from= IP6; -MQ.12L6.B1:MQ, at= -490.0647+(-165-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308452, assembly_id= 103256, from= IP6; - MS.12L6.B1:MS, at= -488.1697+(-165-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252102, assembly_id= 103256, from= IP6; - MCBV.12L6.B1:MCBV, at= -487.5767+(-165-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252104, assembly_id= 103256, from= IP6; - MB.C12L6.B1:MB, at= -478.9997+(-164.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838206, assembly_id= 103257, from= IP6; - MCS.C12L6.B1:MCS, at= -471.5757+(-164-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246534, assembly_id= 103257, from= IP6; - MCO.12L6.B1:MCO, at= -470.8257+(-164-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252106, assembly_id= 103258, from= IP6; - MCD.12L6.B1:MCD, at= -470.8242+(-164-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252107, assembly_id= 103258, from= IP6; - MB.B12L6.B1:MB, at= -463.3397+(-163.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838230, assembly_id= 103258, from= IP6; - MCS.B12L6.B1:MCS, at= -455.9157+(-163-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246539, assembly_id= 103258, from= IP6; - MB.A12L6.B1:MB, at= -447.6797+(-162.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838254, assembly_id= 103259, from= IP6; - MCS.A12L6.B1:MCS, at= -440.2557+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246542, assembly_id= 103259, from= IP6; -E.ARC.56.B1:OMK, at= -439.8497+(-162-IP6OFS.B1)*DS, slot_id= 100932, from= IP6; - BPM.11L6.B1:BPM, at= -439.3767+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246544, assembly_id= 103260, from= IP6; -MQ.11L6.B1:MQ, at= -436.8297+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308659, assembly_id= 103260, from= IP6; - MQTLI.11L6.B1:MQTLI, at= -434.4607+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307347, assembly_id= 103260, from= IP6; - MS.11L6.B1:MS, at= -433.4487+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252110, assembly_id= 103260, from= IP6; - MCBH.11L6.B1:MCBH, at= -432.8557+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252112, assembly_id= 103260, from= IP6; - LEBR.11L6.B1:LEBR, at= -425.71735+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52997682, assembly_id= 103261, from= IP6; - MCO.11L6.B1:MCO, at= -418.986+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252114, assembly_id= 103262, from= IP6; - MCD.11L6.B1:MCD, at= -418.9845+(-162-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252115, assembly_id= 103262, from= IP6; - MB.B11L6.B1:MB, at= -411.5+(-161.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838278, assembly_id= 103262, from= IP6; - MCS.B11L6.B1:MCS, at= -404.076+(-161-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246552, assembly_id= 103262, from= IP6; - MB.A11L6.B1:MB, at= -395.84+(-160.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838302, assembly_id= 103263, from= IP6; - MCS.A11L6.B1:MCS, at= -388.416+(-160-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246555, assembly_id= 103263, from= IP6; - BPM.10L6.B1:BPM, at= -387.537+(-160-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246557, assembly_id= 103264, from= IP6; - MQML.10L6.B1:MQML, at= -384.392+(-160-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307812, assembly_id= 103264, from= IP6; - MCBCV.10L6.B1:MCBCV, at= -381.35+(-160-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252119, assembly_id= 103264, from= IP6; - MCO.10L6.B1:MCO, at= -379.921+(-160-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252120, assembly_id= 103265, from= IP6; - MCD.10L6.B1:MCD, at= -379.9195+(-160-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252121, assembly_id= 103265, from= IP6; - MB.B10L6.B1:MB, at= -372.435+(-159.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838326, assembly_id= 103265, from= IP6; - MCS.B10L6.B1:MCS, at= -365.011+(-159-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246564, assembly_id= 103265, from= IP6; - MB.A10L6.B1:MB, at= -356.775+(-158.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838350, assembly_id= 103266, from= IP6; - MCS.A10L6.B1:MCS, at= -349.351+(-158-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246567, assembly_id= 103266, from= IP6; - BPM.9L6.B1:BPM, at= -348.471+(-158-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246569, assembly_id= 103267, from= IP6; - MQMC.9L6.B1:MQMC, at= -346.495+(-158-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307789, assembly_id= 103267, from= IP6; - MQM.9L6.B1:MQM, at= -343.229+(-158-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307737, assembly_id= 103267, from= IP6; - MCBCH.9L6.B1:MCBCH, at= -340.888+(-158-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252125, assembly_id= 103267, from= IP6; - MCO.9L6.B1:MCO, at= -339.456+(-158-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252126, assembly_id= 103268, from= IP6; - MCD.9L6.B1:MCD, at= -339.4545+(-158-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252127, assembly_id= 103268, from= IP6; - MB.B9L6.B1:MB, at= -331.97+(-157.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838374, assembly_id= 103268, from= IP6; - MCS.B9L6.B1:MCS, at= -324.546+(-157-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246577, assembly_id= 103268, from= IP6; - MB.A9L6.B1:MB, at= -316.31+(-156.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838398, assembly_id= 103269, from= IP6; - MCS.A9L6.B1:MCS, at= -308.886+(-156-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246580, assembly_id= 103269, from= IP6; - BPM.8L6.B1:BPM, at= -308.007+(-156-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378004, assembly_id= 103270, from= IP6; - MQML.8L6.B1:MQML, at= -304.862+(-156-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307844, assembly_id= 103270, from= IP6; - MCBCV.8L6.B1:MCBCV, at= -301.82+(-156-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378116, assembly_id= 103270, from= IP6; - MCO.8L6.B1:MCO, at= -300.391+(-156-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252132, assembly_id= 103271, from= IP6; - MCD.8L6.B1:MCD, at= -300.3895+(-156-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252133, assembly_id= 103271, from= IP6; - MB.B8L6.B1:MB, at= -292.905+(-155.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838422, assembly_id= 103271, from= IP6; - MCS.B8L6.B1:MCS, at= -285.481+(-155-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246589, assembly_id= 103271, from= IP6; - MB.A8L6.B1:MB, at= -277.245+(-154.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838446, assembly_id= 103272, from= IP6; - MCS.A8L6.B1:MCS, at= -269.821+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246592, assembly_id= 103272, from= IP6; -E.DS.L6.B1:OMK, at= -269.415+(-154-IP6OFS.B1)*DS, slot_id= 100932, from= IP6; - LEJL.5L6.B1:LEJL, at= -264.355+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52997970, assembly_id= 791286, from= IP6; - DFBAK.5L6.B1:DFBAK, at= -258.2075+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52996779, assembly_id= 104686, from= IP6; - BPMYA.5L6.B1:BPMYA, at= -210.918+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246594, assembly_id= 103273, from= IP6; - MQY.5L6.B1:MQY, at= -208.2+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303186, assembly_id= 103273, from= IP6; - MCBYH.5L6.B1:MCBYH, at= -205.853+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252137, assembly_id= 103273, from= IP6; - MKD.O5L6.B1:MKD, at= -202.9315+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134574, from= IP6; - MKD.N5L6.B1:MKD, at= -201.2285+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134575, from= IP6; - MKD.M5L6.B1:MKD, at= -199.2455+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134576, from= IP6; - MKD.L5L6.B1:MKD, at= -197.5425+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134577, from= IP6; - MKD.K5L6.B1:MKD, at= -195.5595+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134578, from= IP6; - MKD.J5L6.B1:MKD, at= -193.7015+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134579, from= IP6; - MKD.I5L6.B1:MKD, at= -191.7185+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134580, from= IP6; - MKD.H5L6.B1:MKD, at= -190.0155+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134581, from= IP6; - MKD.G5L6.B1:MKD, at= -188.3125+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134582, from= IP6; - MKD.F5L6.B1:MKD, at= -186.3295+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134583, from= IP6; - MKD.E5L6.B1:MKD, at= -184.4715+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134584, from= IP6; - MKD.D5L6.B1:MKD, at= -182.4885+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134585, from= IP6; - MKD.C5L6.B1:MKD, at= -180.7855+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134586, from= IP6; - MKD.B5L6.B1:MKD, at= -178.8025+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134587, from= IP6; - MKD.A5L6.B1:MKD, at= -177.0995+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 134588, from= IP6; - BPMYB.4L6.B1:BPMYB, at= -174.518+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 298234, assembly_id= 103275, from= IP6; - MQY.4L6.B1:MQY, at= -171.8+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 241849, assembly_id= 103275, from= IP6; - MCBYV.4L6.B1:MCBYV, at= -169.453+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252139, assembly_id= 103275, from= IP6; - TCDQM.B4L6.B1:TCDQM, at= -166.448+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52998752, assembly_id= 377626, from= IP6; - TCDQM.A4L6.B1:TCDQM, at= -165.098+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52998800, assembly_id= 829888, from= IP6; - BPMSX.B4L6.B1:BPMSX004, at= -138.9775+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377630, from= IP6; - BPMSX.B4L6.B1_ITLK:BPMSX002, at= -138.9775+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 14271446, assembly_id= 377630, from= IP6; - BPMSX.A4L6.B1:BPMSX004, at= -138.3925+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377631, from= IP6; - BPMSX.A4L6.B1_ITLK:BPMSX002, at= -138.3925+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 14271448, assembly_id= 377631, from= IP6; - BPMSE.4L6.B1:BPMSE, at= -45.2675+(-154-IP6OFS.B1)*DS, mech_sep= 0.2440, slot_id= 181625, from= IP6; - BTVSE.A4L6.B1:BTVSE, at= -44.575+(-154-IP6OFS.B1)*DS, mech_sep= 0.2440, slot_id= 181626, from= IP6; - TCDSA.4L6.B1:TCDSA, at= -42.375+(-154-IP6OFS.B1)*DS, mech_sep= 0.2440, slot_id= 631488, assembly_id= 103279, from= IP6; - TCDSB.4L6.B1:TCDSB, at= -38.825+(-154-IP6OFS.B1)*DS, mech_sep= 0.2451, slot_id= 631492, assembly_id= 616848, from= IP6; - MSDA.E4L6.B1:MSDA, at= -34.37+(-154-IP6OFS.B1)*DS, mech_sep= 0.1875, slot_id= 134591, from= IP6; - MSDA.D4L6.B1:MSDA, at= -29.46+(-154-IP6OFS.B1)*DS, mech_sep= 0.1894, slot_id= 134593, from= IP6; - MSDA.C4L6.B1:MSDA, at= -24.55+(-154-IP6OFS.B1)*DS, mech_sep= 0.1914, slot_id= 134595, from= IP6; - MSDA.B4L6.B1:MSDA, at= -19.64+(-154-IP6OFS.B1)*DS, mech_sep= 0.1933, slot_id= 134597, from= IP6; - MSDA.A4L6.B1:MSDA, at= -14.73+(-154-IP6OFS.B1)*DS, mech_sep= 0.1953, slot_id= 134600, from= IP6; - MSDB.C4L6.B1:MSDB, at= -9.82+(-154-IP6OFS.B1)*DS, mech_sep= 0.1911, slot_id= 134601, from= IP6; - MSDB.B4L6.B1:MSDB, at= -4.91+(-154-IP6OFS.B1)*DS, mech_sep= 0.1930, slot_id= 134604, from= IP6; - MSDB2.4L6.B1:MSDB2, at= -1.022+(-154-IP6OFS.B1)*DS, mech_sep= 0.1946, slot_id= 52895867, assembly_id= 134605, from= IP6; -IP6:OMK, at= pIP6+IP6OFS.B1*DS; - MSDB2.4R6.B1:MSDB2, at= 1.022+(-154-IP6OFS.B1)*DS, mech_sep= 0.1954, slot_id= 52895905, assembly_id= 134605, from= IP6; - MSDB.A4R6.B1:MSDB, at= 4.91+(-154-IP6OFS.B1)*DS, mech_sep= 0.1969, slot_id= 134608, from= IP6; - MSDB.B4R6.B1:MSDB, at= 9.82+(-154-IP6OFS.B1)*DS, mech_sep= 0.1989, slot_id= 134610, from= IP6; - MSDC.A4R6.B1:MSDC, at= 14.73+(-154-IP6OFS.B1)*DS, mech_sep= 0.1927, slot_id= 134612, from= IP6; - MSDC.B4R6.B1:MSDC, at= 19.64+(-154-IP6OFS.B1)*DS, mech_sep= 0.1950, slot_id= 134613, from= IP6; - MSDC.C4R6.B1:MSDC, at= 24.55+(-154-IP6OFS.B1)*DS, mech_sep= 0.1973, slot_id= 134615, from= IP6; - MSDC.D4R6.B1:MSDC, at= 29.46+(-154-IP6OFS.B1)*DS, mech_sep= 0.1996, slot_id= 134617, from= IP6; - MSDC.E4R6.B1:MSDC, at= 34.37+(-154-IP6OFS.B1)*DS, mech_sep= 0.2020, slot_id= 134620, from= IP6; - BPMSA.4R6.B1:BPMSA, at= 46.3025+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377633, from= IP6; - BPMSI.A4R6.B1_ITLK:BPMSI002, at= 139.5625+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 14305619, assembly_id= 377636, from= IP6; - BPMSI.B4R6.B1_ITLK:BPMSI002, at= 140.1975+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 14305621, assembly_id= 377637, from= IP6; - TCDQA.A4R6.B1:TCDQA, at= 143.24+(-154-IP6OFS.B1)*DS, mech_sep= 0.2140, slot_id= 629261, assembly_id= 103282, from= IP6; - TCDQA.C4R6.B1:TCDQA, at= 146.79+(-154-IP6OFS.B1)*DS, mech_sep= 0.2140, slot_id= 6030088, assembly_id= 6030087, from= IP6; - TCDQA.B4R6.B1:TCDQA, at= 150.34+(-154-IP6OFS.B1)*DS, mech_sep= 0.2140, slot_id= 629255, assembly_id= 616960, from= IP6; - BPTUH.A4R6.B1:BPTUH, at= 153.655+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 10338511, assembly_id= 377638, from= IP6; - TCSP.A4R6.B1:TCSP, at= 154.25+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 377638, from= IP6; - BPTDH.A4R6.B1:BPTDH, at= 154.845+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 10338509, assembly_id= 377638, from= IP6; - TCDQM.A4R6.B1:TCDQM, at= 165.098+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52998824, assembly_id= 829889, from= IP6; - TCDQM.B4R6.B1:TCDQM, at= 166.448+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52998776, assembly_id= 377639, from= IP6; - BPMYA.4R6.B1:BPMYA, at= 169.082+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246606, assembly_id= 103285, from= IP6; - MQY.4R6.B1:MQY, at= 171.8+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303141, assembly_id= 103285, from= IP6; - MCBYH.4R6.B1:MCBYH, at= 174.147+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252141, assembly_id= 103285, from= IP6; - BPMYB.5R6.B1:BPMYB, at= 205.482+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 298236, assembly_id= 103287, from= IP6; - MQY.5R6.B1:MQY, at= 208.2+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2302997, assembly_id= 103287, from= IP6; - MCBYV.5R6.B1:MCBYV, at= 210.547+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252143, assembly_id= 103287, from= IP6; - DFBAL.5R6.B1:DFBAL, at= 268.0775+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52996803, assembly_id= 104687, from= IP6; -S.DS.R6.B1:OMK, at= 269.415+(-154-IP6OFS.B1)*DS, slot_id= 100932, from= IP6; - MCO.8R6.B1:MCO, at= 269.759+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252144, assembly_id= 103288, from= IP6; - MCD.8R6.B1:MCD, at= 269.7605+(-154-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252145, assembly_id= 103288, from= IP6; - MB.A8R6.B1:MB, at= 277.245+(-153.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838470, assembly_id= 103288, from= IP6; - MCS.A8R6.B1:MCS, at= 284.669+(-153-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246617, assembly_id= 103288, from= IP6; - MB.B8R6.B1:MB, at= 292.905+(-152.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838494, assembly_id= 103289, from= IP6; - MCS.B8R6.B1:MCS, at= 300.329+(-152-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246620, assembly_id= 103289, from= IP6; - BPM.8R6.B1:BPM, at= 301.208+(-152-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246622, assembly_id= 103290, from= IP6; - MQML.8R6.B1:MQML, at= 304.353+(-152-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307617, assembly_id= 103290, from= IP6; - MCBCH.8R6.B1:MCBCH, at= 307.395+(-152-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252149, assembly_id= 103290, from= IP6; - MCO.9R6.B1:MCO, at= 308.824+(-152-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252150, assembly_id= 103291, from= IP6; - MCD.9R6.B1:MCD, at= 308.8255+(-152-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252151, assembly_id= 103291, from= IP6; - MB.A9R6.B1:MB, at= 316.31+(-151.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838518, assembly_id= 103291, from= IP6; - MCS.A9R6.B1:MCS, at= 323.734+(-151-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246629, assembly_id= 103291, from= IP6; - MB.B9R6.B1:MB, at= 331.97+(-150.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849678, assembly_id= 103292, from= IP6; - MCS.B9R6.B1:MCS, at= 339.394+(-150-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 357322, assembly_id= 103292, from= IP6; - BPM.9R6.B1:BPM, at= 340.274+(-150-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246634, assembly_id= 103293, from= IP6; - MQMC.9R6.B1:MQMC, at= 342.25+(-150-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307800, assembly_id= 103293, from= IP6; - MQM.9R6.B1:MQM, at= 345.516+(-150-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307748, assembly_id= 103293, from= IP6; - MCBCV.9R6.B1:MCBCV, at= 347.857+(-150-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252155, assembly_id= 103293, from= IP6; - MCO.10R6.B1:MCO, at= 349.289+(-150-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252156, assembly_id= 103294, from= IP6; - MCD.10R6.B1:MCD, at= 349.2905+(-150-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252157, assembly_id= 103294, from= IP6; - MB.A10R6.B1:MB, at= 356.775+(-149.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838542, assembly_id= 103294, from= IP6; - MCS.A10R6.B1:MCS, at= 364.199+(-149-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246642, assembly_id= 103294, from= IP6; - MB.B10R6.B1:MB, at= 372.435+(-148.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838566, assembly_id= 103295, from= IP6; - MCS.B10R6.B1:MCS, at= 379.859+(-148-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246645, assembly_id= 103295, from= IP6; - BPM.10R6.B1:BPM, at= 380.738+(-148-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246647, assembly_id= 103296, from= IP6; - MQML.10R6.B1:MQML, at= 383.883+(-148-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307824, assembly_id= 103296, from= IP6; - MCBCH.10R6.B1:MCBCH, at= 386.925+(-148-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252161, assembly_id= 103296, from= IP6; - MCO.11R6.B1:MCO, at= 388.354+(-148-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252162, assembly_id= 103297, from= IP6; - MCD.11R6.B1:MCD, at= 388.3555+(-148-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252163, assembly_id= 103297, from= IP6; - MB.A11R6.B1:MB, at= 395.84+(-147.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838590, assembly_id= 103297, from= IP6; - MCS.A11R6.B1:MCS, at= 403.264+(-147-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246654, assembly_id= 103297, from= IP6; - MB.B11R6.B1:MB, at= 411.5+(-146.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838614, assembly_id= 103298, from= IP6; - MCS.B11R6.B1:MCS, at= 418.924+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246657, assembly_id= 103298, from= IP6; - LEAR.11R6.B1:LEAR, at= 425.71735+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52997610, assembly_id= 103299, from= IP6; - BPM.11R6.B1:BPM, at= 432.5777+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246659, assembly_id= 103300, from= IP6; -MQ.11R6.B1:MQ, at= 435.1247+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308674, assembly_id= 103300, from= IP6; - MQTLI.11R6.B1:MQTLI, at= 437.4937+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307362, assembly_id= 103300, from= IP6; - MS.11R6.B1:MS, at= 438.5057+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252166, assembly_id= 103300, from= IP6; - MCBV.11R6.B1:MCBV, at= 439.0987+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252168, assembly_id= 103300, from= IP6; -S.ARC.67.B1:OMK, at= 439.8497+(-146-IP6OFS.B1)*DS, slot_id= 100932, from= IP6; - MCO.A12R6.B1:MCO, at= 440.1937+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252170, assembly_id= 103301, from= IP6; - MCD.A12R6.B1:MCD, at= 440.1952+(-146-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252171, assembly_id= 103301, from= IP6; - MB.A12R6.B1:MB, at= 447.6797+(-145.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838638, assembly_id= 103301, from= IP6; - MCS.A12R6.B1:MCS, at= 455.1037+(-145-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246667, assembly_id= 103301, from= IP6; - MB.B12R6.B1:MB, at= 463.3397+(-144.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838662, assembly_id= 103302, from= IP6; - MCS.B12R6.B1:MCS, at= 470.7637+(-144-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246670, assembly_id= 103302, from= IP6; - MCO.B12R6.B1:MCO, at= 471.5137+(-144-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252174, assembly_id= 103303, from= IP6; - MCD.B12R6.B1:MCD, at= 471.5152+(-144-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252175, assembly_id= 103303, from= IP6; - MB.C12R6.B1:MB, at= 478.9997+(-143.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838686, assembly_id= 103303, from= IP6; - MCS.C12R6.B1:MCS, at= 486.4237+(-143-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246675, assembly_id= 103303, from= IP6; - BPM.12R6.B1:BPM, at= 487.3027+(-143-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246677, assembly_id= 103304, from= IP6; - MQT.12R6.B1:MQT, at= 488.0567+(-143-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307709, assembly_id= 103304, from= IP6; -MQ.12R6.B1:MQ, at= 490.0647+(-143-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308467, assembly_id= 103304, from= IP6; - MS.12R6.B1:MS, at= 491.9597+(-143-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252178, assembly_id= 103304, from= IP6; - MCBH.12R6.B1:MCBH, at= 492.5527+(-143-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252180, assembly_id= 103304, from= IP6; - MB.A13R6.B1:MB, at= 501.1297+(-142.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838710, assembly_id= 103305, from= IP6; - MCS.A13R6.B1:MCS, at= 508.5537+(-142-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246683, assembly_id= 103305, from= IP6; - MCO.13R6.B1:MCO, at= 509.3037+(-142-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252182, assembly_id= 103306, from= IP6; - MCD.13R6.B1:MCD, at= 509.3052+(-142-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252183, assembly_id= 103306, from= IP6; - MB.B13R6.B1:MB, at= 516.7897+(-141.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838734, assembly_id= 103306, from= IP6; - MCS.B13R6.B1:MCS, at= 524.2137+(-141-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246688, assembly_id= 103306, from= IP6; - MB.C13R6.B1:MB, at= 532.4497+(-140.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838758, assembly_id= 103307, from= IP6; - MCS.C13R6.B1:MCS, at= 539.8737+(-140-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246691, assembly_id= 103307, from= IP6; - BPM.13R6.B1:BPM, at= 540.7527+(-140-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246693, assembly_id= 103308, from= IP6; - MQT.13R6.B1:MQT, at= 541.5067+(-140-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307501, assembly_id= 103308, from= IP6; -MQ.13R6.B1:MQ, at= 543.5147+(-140-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308497, assembly_id= 103308, from= IP6; - MS.13R6.B1:MS, at= 545.4097+(-140-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252186, assembly_id= 103308, from= IP6; - MCBV.13R6.B1:MCBV, at= 546.0027+(-140-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252188, assembly_id= 103308, from= IP6; -E.DS.R6.B1:OMK, at= 546.7497+(-140-IP6OFS.B1)*DS, slot_id= 100932, from= IP6; - MCO.A14R6.B1:MCO, at= 547.0937+(-140-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252190, assembly_id= 103309, from= IP6; - MCD.A14R6.B1:MCD, at= 547.0952+(-140-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252191, assembly_id= 103309, from= IP6; - MB.A14R6.B1:MB, at= 554.5797+(-139.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838782, assembly_id= 103309, from= IP6; - MCS.A14R6.B1:MCS, at= 562.0037+(-139-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246701, assembly_id= 103309, from= IP6; - MB.B14R6.B1:MB, at= 570.2397+(-138.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838806, assembly_id= 103310, from= IP6; - MCS.B14R6.B1:MCS, at= 577.6637+(-138-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246704, assembly_id= 103310, from= IP6; - MCO.B14R6.B1:MCO, at= 578.4137+(-138-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252194, assembly_id= 103311, from= IP6; - MCD.B14R6.B1:MCD, at= 578.4152+(-138-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252195, assembly_id= 103311, from= IP6; - MB.C14R6.B1:MB, at= 585.8997+(-137.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838830, assembly_id= 103311, from= IP6; - MCS.C14R6.B1:MCS, at= 593.3237+(-137-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246709, assembly_id= 103311, from= IP6; - BPM.14R6.B1:BPM, at= 594.2027+(-137-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246711, assembly_id= 103312, from= IP6; - MQT.14R6.B1:MQT, at= 594.9567+(-137-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307533, assembly_id= 103312, from= IP6; -MQ.14R6.B1:MQ, at= 596.9647+(-137-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348489, assembly_id= 103312, from= IP6; - MS.14R6.B1:MS, at= 598.8597+(-137-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252198, assembly_id= 103312, from= IP6; - MCBH.14R6.B1:MCBH, at= 599.4527+(-137-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252200, assembly_id= 103312, from= IP6; - MB.A15R6.B1:MB, at= 608.0297+(-136.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838854, assembly_id= 103313, from= IP6; - MCS.A15R6.B1:MCS, at= 615.4537+(-136-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246717, assembly_id= 103313, from= IP6; - MCO.15R6.B1:MCO, at= 616.2037+(-136-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252202, assembly_id= 103314, from= IP6; - MCD.15R6.B1:MCD, at= 616.2052+(-136-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252203, assembly_id= 103314, from= IP6; - MB.B15R6.B1:MB, at= 623.6897+(-135.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838878, assembly_id= 103314, from= IP6; - MCS.B15R6.B1:MCS, at= 631.1137+(-135-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246722, assembly_id= 103314, from= IP6; - MB.C15R6.B1:MB, at= 639.3497+(-134.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838902, assembly_id= 103315, from= IP6; - MCS.C15R6.B1:MCS, at= 646.7737+(-134-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246725, assembly_id= 103315, from= IP6; - BPM.15R6.B1:BPM, at= 647.6527+(-134-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 266530, assembly_id= 103316, from= IP6; - MQT.15R6.B1:MQT, at= 648.4067+(-134-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307565, assembly_id= 103316, from= IP6; -MQ.15R6.B1:MQ, at= 650.4147+(-134-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308557, assembly_id= 103316, from= IP6; - MS.15R6.B1:MS, at= 652.3097+(-134-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252206, assembly_id= 103316, from= IP6; - MCBV.15R6.B1:MCBV, at= 652.9027+(-134-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252208, assembly_id= 103316, from= IP6; - MCO.A16R6.B1:MCO, at= 653.9937+(-134-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252210, assembly_id= 103317, from= IP6; - MCD.A16R6.B1:MCD, at= 653.9952+(-134-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252211, assembly_id= 103317, from= IP6; - MB.A16R6.B1:MB, at= 661.4797+(-133.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838926, assembly_id= 103317, from= IP6; - MCS.A16R6.B1:MCS, at= 668.9037+(-133-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246733, assembly_id= 103317, from= IP6; - MB.B16R6.B1:MB, at= 677.1397+(-132.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838950, assembly_id= 103318, from= IP6; - MCS.B16R6.B1:MCS, at= 684.5637+(-132-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246736, assembly_id= 103318, from= IP6; - MCO.B16R6.B1:MCO, at= 685.3137+(-132-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252214, assembly_id= 103319, from= IP6; - MCD.B16R6.B1:MCD, at= 685.3152+(-132-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252215, assembly_id= 103319, from= IP6; - MB.C16R6.B1:MB, at= 692.7997+(-131.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838974, assembly_id= 103319, from= IP6; - MCS.C16R6.B1:MCS, at= 700.2237+(-131-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246741, assembly_id= 103319, from= IP6; - BPM.16R6.B1:BPM, at= 701.1027+(-131-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246743, assembly_id= 103320, from= IP6; - MQT.16R6.B1:MQT, at= 701.8567+(-131-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307595, assembly_id= 103320, from= IP6; -MQ.16R6.B1:MQ, at= 703.8647+(-131-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308350, assembly_id= 103320, from= IP6; - MS.16R6.B1:MS, at= 705.7597+(-131-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252218, assembly_id= 103320, from= IP6; - MCBH.16R6.B1:MCBH, at= 706.3527+(-131-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252220, assembly_id= 103320, from= IP6; - MB.A17R6.B1:MB, at= 714.9297+(-130.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52838998, assembly_id= 103321, from= IP6; - MCS.A17R6.B1:MCS, at= 722.3537+(-130-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246749, assembly_id= 103321, from= IP6; - MCO.17R6.B1:MCO, at= 723.1037+(-130-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252222, assembly_id= 103322, from= IP6; - MCD.17R6.B1:MCD, at= 723.1052+(-130-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252223, assembly_id= 103322, from= IP6; - MB.B17R6.B1:MB, at= 730.5897+(-129.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839022, assembly_id= 103322, from= IP6; - MCS.B17R6.B1:MCS, at= 738.0137+(-129-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246754, assembly_id= 103322, from= IP6; - MB.C17R6.B1:MB, at= 746.2497+(-128.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839046, assembly_id= 103323, from= IP6; - MCS.C17R6.B1:MCS, at= 753.6737+(-128-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246757, assembly_id= 103323, from= IP6; - BPM.17R6.B1:BPM, at= 754.5527+(-128-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246759, assembly_id= 103324, from= IP6; - MQT.17R6.B1:MQT, at= 755.3067+(-128-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307389, assembly_id= 103324, from= IP6; -MQ.17R6.B1:MQ, at= 757.3147+(-128-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348482, assembly_id= 103324, from= IP6; - MS.17R6.B1:MS, at= 759.2097+(-128-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252226, assembly_id= 103324, from= IP6; - MCBV.17R6.B1:MCBV, at= 759.8027+(-128-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252228, assembly_id= 103324, from= IP6; - MCO.A18R6.B1:MCO, at= 760.8937+(-128-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252230, assembly_id= 103325, from= IP6; - MCD.A18R6.B1:MCD, at= 760.8952+(-128-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252231, assembly_id= 103325, from= IP6; - MB.A18R6.B1:MB, at= 768.3797+(-127.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839070, assembly_id= 103325, from= IP6; - MCS.A18R6.B1:MCS, at= 775.8037+(-127-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246767, assembly_id= 103325, from= IP6; - MB.B18R6.B1:MB, at= 784.0397+(-126.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839094, assembly_id= 103326, from= IP6; - MCS.B18R6.B1:MCS, at= 791.4637+(-126-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246770, assembly_id= 103326, from= IP6; - MCO.B18R6.B1:MCO, at= 792.2137+(-126-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252234, assembly_id= 103327, from= IP6; - MCD.B18R6.B1:MCD, at= 792.2152+(-126-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252235, assembly_id= 103327, from= IP6; - MB.C18R6.B1:MB, at= 799.6997+(-125.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839118, assembly_id= 103327, from= IP6; - MCS.C18R6.B1:MCS, at= 807.1237+(-125-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246775, assembly_id= 103327, from= IP6; - BPM.18R6.B1:BPM, at= 808.0027+(-125-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246777, assembly_id= 103328, from= IP6; - MQT.18R6.B1:MQT, at= 808.7567+(-125-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307421, assembly_id= 103328, from= IP6; -MQ.18R6.B1:MQ, at= 810.7647+(-125-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308410, assembly_id= 103328, from= IP6; - MS.18R6.B1:MS, at= 812.6597+(-125-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252238, assembly_id= 103328, from= IP6; - MCBH.18R6.B1:MCBH, at= 813.2527+(-125-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252240, assembly_id= 103328, from= IP6; - MB.A19R6.B1:MB, at= 821.8297+(-124.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839142, assembly_id= 103329, from= IP6; - MCS.A19R6.B1:MCS, at= 829.2537+(-124-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246783, assembly_id= 103329, from= IP6; - MCO.19R6.B1:MCO, at= 830.0037+(-124-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252242, assembly_id= 103330, from= IP6; - MCD.19R6.B1:MCD, at= 830.0052+(-124-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252243, assembly_id= 103330, from= IP6; - MB.B19R6.B1:MB, at= 837.4897+(-123.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839166, assembly_id= 103330, from= IP6; - MCS.B19R6.B1:MCS, at= 844.9137+(-123-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246788, assembly_id= 103330, from= IP6; - MB.C19R6.B1:MB, at= 853.1497+(-122.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839190, assembly_id= 103331, from= IP6; - MCS.C19R6.B1:MCS, at= 860.5737+(-122-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246791, assembly_id= 103331, from= IP6; - BPM.19R6.B1:BPM, at= 861.4527+(-122-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 266532, assembly_id= 103332, from= IP6; - MQT.19R6.B1:MQT, at= 862.2067+(-122-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307451, assembly_id= 103332, from= IP6; -MQ.19R6.B1:MQ, at= 864.2147+(-122-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308442, assembly_id= 103332, from= IP6; - MS.19R6.B1:MS, at= 866.1097+(-122-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252246, assembly_id= 103332, from= IP6; - MCBV.19R6.B1:MCBV, at= 866.7027+(-122-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252248, assembly_id= 103332, from= IP6; - MCO.A20R6.B1:MCO, at= 867.7937+(-122-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252250, assembly_id= 103333, from= IP6; - MCD.A20R6.B1:MCD, at= 867.7952+(-122-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252251, assembly_id= 103333, from= IP6; - MB.A20R6.B1:MB, at= 875.2797+(-121.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839214, assembly_id= 103333, from= IP6; - MCS.A20R6.B1:MCS, at= 882.7037+(-121-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246799, assembly_id= 103333, from= IP6; - MB.B20R6.B1:MB, at= 890.9397+(-120.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839238, assembly_id= 103334, from= IP6; - MCS.B20R6.B1:MCS, at= 898.3637+(-120-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246802, assembly_id= 103334, from= IP6; - MCO.B20R6.B1:MCO, at= 899.1137+(-120-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252254, assembly_id= 103335, from= IP6; - MCD.B20R6.B1:MCD, at= 899.1152+(-120-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252255, assembly_id= 103335, from= IP6; - MB.C20R6.B1:MB, at= 906.5997+(-119.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839262, assembly_id= 103335, from= IP6; - MCS.C20R6.B1:MCS, at= 914.0237+(-119-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246807, assembly_id= 103335, from= IP6; - BPM.20R6.B1:BPM, at= 914.9027+(-119-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246809, assembly_id= 103336, from= IP6; - MQT.20R6.B1:MQT, at= 915.6567+(-119-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307481, assembly_id= 103336, from= IP6; -MQ.20R6.B1:MQ, at= 917.6647+(-119-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308232, assembly_id= 103336, from= IP6; - MS.20R6.B1:MS, at= 919.5597+(-119-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252258, assembly_id= 103336, from= IP6; - MCBH.20R6.B1:MCBH, at= 920.1527+(-119-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252260, assembly_id= 103336, from= IP6; - MB.A21R6.B1:MB, at= 928.7297+(-118.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839286, assembly_id= 103337, from= IP6; - MCS.A21R6.B1:MCS, at= 936.1537+(-118-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246815, assembly_id= 103337, from= IP6; - MCO.21R6.B1:MCO, at= 936.9037+(-118-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252262, assembly_id= 103338, from= IP6; - MCD.21R6.B1:MCD, at= 936.9052+(-118-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252263, assembly_id= 103338, from= IP6; - MB.B21R6.B1:MB, at= 944.3897+(-117.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839310, assembly_id= 103338, from= IP6; - MCS.B21R6.B1:MCS, at= 951.8137+(-117-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246820, assembly_id= 103338, from= IP6; - MB.C21R6.B1:MB, at= 960.0497+(-116.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839334, assembly_id= 103339, from= IP6; - MCS.C21R6.B1:MCS, at= 967.4737+(-116-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246823, assembly_id= 103339, from= IP6; - BPM.21R6.B1:BPM, at= 968.3527+(-116-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246825, assembly_id= 103340, from= IP6; - MQT.21R6.B1:MQT, at= 969.1067+(-116-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307279, assembly_id= 103340, from= IP6; -MQ.21R6.B1:MQ, at= 971.1147+(-116-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308263, assembly_id= 103340, from= IP6; - MS.21R6.B1:MS, at= 973.0097+(-116-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252266, assembly_id= 103340, from= IP6; - MCBV.21R6.B1:MCBV, at= 973.6027+(-116-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252268, assembly_id= 103340, from= IP6; - MCO.A22R6.B1:MCO, at= 974.6937+(-116-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252270, assembly_id= 103341, from= IP6; - MCD.A22R6.B1:MCD, at= 974.6952+(-116-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252271, assembly_id= 103341, from= IP6; - MB.A22R6.B1:MB, at= 982.1797+(-115.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839358, assembly_id= 103341, from= IP6; - MCS.A22R6.B1:MCS, at= 989.6037+(-115-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246833, assembly_id= 103341, from= IP6; - MB.B22R6.B1:MB, at= 997.8397+(-114.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839382, assembly_id= 103342, from= IP6; - MCS.B22R6.B1:MCS, at= 1005.2637+(-114-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246836, assembly_id= 103342, from= IP6; - MCO.B22R6.B1:MCO, at= 1006.0137+(-114-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252274, assembly_id= 103343, from= IP6; - MCD.B22R6.B1:MCD, at= 1006.0152+(-114-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252275, assembly_id= 103343, from= IP6; - MB.C22R6.B1:MB, at= 1013.4997+(-113.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839406, assembly_id= 103343, from= IP6; - MCS.C22R6.B1:MCS, at= 1020.9237+(-113-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246841, assembly_id= 103343, from= IP6; - BPM.22R6.B1:BPM, at= 1021.8027+(-113-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246843, assembly_id= 103344, from= IP6; - MO.22R6.B1:MO, at= 1022.5537+(-113-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308823, assembly_id= 103344, from= IP6; -MQ.22R6.B1:MQ, at= 1024.5647+(-113-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308295, assembly_id= 103344, from= IP6; - MS.22R6.B1:MS, at= 1026.4597+(-113-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252278, assembly_id= 103344, from= IP6; - MCBH.22R6.B1:MCBH, at= 1027.0527+(-113-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252280, assembly_id= 103344, from= IP6; - MB.A23R6.B1:MB, at= 1035.6297+(-112.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839430, assembly_id= 103345, from= IP6; - MCS.A23R6.B1:MCS, at= 1043.0537+(-112-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246849, assembly_id= 103345, from= IP6; - MCO.23R6.B1:MCO, at= 1043.8037+(-112-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252282, assembly_id= 103346, from= IP6; - MCD.23R6.B1:MCD, at= 1043.8052+(-112-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252283, assembly_id= 103346, from= IP6; - MB.B23R6.B1:MB, at= 1051.2897+(-111.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839454, assembly_id= 103346, from= IP6; - MCS.B23R6.B1:MCS, at= 1058.7137+(-111-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246854, assembly_id= 103346, from= IP6; - MB.C23R6.B1:MB, at= 1066.9497+(-110.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839478, assembly_id= 103347, from= IP6; - MCS.C23R6.B1:MCS, at= 1074.3737+(-110-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246857, assembly_id= 103347, from= IP6; - BPM.23R6.B1:BPM, at= 1075.2527+(-110-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246859, assembly_id= 103348, from= IP6; - MQS.23R6.B1:MQS, at= 1076.0067+(-110-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307645, assembly_id= 103348, from= IP6; -MQ.23R6.B1:MQ, at= 1078.0147+(-110-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348478, assembly_id= 103348, from= IP6; - MS.23R6.B1:MS, at= 1079.9097+(-110-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252286, assembly_id= 103348, from= IP6; - MCBV.23R6.B1:MCBV, at= 1080.5027+(-110-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252288, assembly_id= 103348, from= IP6; - MCO.A24R6.B1:MCO, at= 1081.5937+(-110-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252290, assembly_id= 103349, from= IP6; - MCD.A24R6.B1:MCD, at= 1081.5952+(-110-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252291, assembly_id= 103349, from= IP6; - MB.A24R6.B1:MB, at= 1089.0797+(-109.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839502, assembly_id= 103349, from= IP6; - MCS.A24R6.B1:MCS, at= 1096.5037+(-109-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246867, assembly_id= 103349, from= IP6; - MB.B24R6.B1:MB, at= 1104.7397+(-108.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839526, assembly_id= 103350, from= IP6; - MCS.B24R6.B1:MCS, at= 1112.1637+(-108-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246870, assembly_id= 103350, from= IP6; - MCO.B24R6.B1:MCO, at= 1112.9137+(-108-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252294, assembly_id= 103351, from= IP6; - MCD.B24R6.B1:MCD, at= 1112.9152+(-108-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252295, assembly_id= 103351, from= IP6; - MB.C24R6.B1:MB, at= 1120.3997+(-107.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839550, assembly_id= 103351, from= IP6; - MCS.C24R6.B1:MCS, at= 1127.8237+(-107-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246875, assembly_id= 103351, from= IP6; - BPM.24R6.B1:BPM, at= 1128.7027+(-107-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246877, assembly_id= 103352, from= IP6; - MO.24R6.B1:MO, at= 1129.4537+(-107-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308853, assembly_id= 103352, from= IP6; -MQ.24R6.B1:MQ, at= 1131.4647+(-107-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308116, assembly_id= 103352, from= IP6; - MS.24R6.B1:MS, at= 1133.3597+(-107-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252298, assembly_id= 103352, from= IP6; - MCBH.24R6.B1:MCBH, at= 1133.9527+(-107-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252300, assembly_id= 103352, from= IP6; - MB.A25R6.B1:MB, at= 1142.5297+(-106.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839574, assembly_id= 103353, from= IP6; - MCS.A25R6.B1:MCS, at= 1149.9537+(-106-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246883, assembly_id= 103353, from= IP6; - MCO.25R6.B1:MCO, at= 1150.7037+(-106-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252302, assembly_id= 103354, from= IP6; - MCD.25R6.B1:MCD, at= 1150.7052+(-106-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252303, assembly_id= 103354, from= IP6; - MB.B25R6.B1:MB, at= 1158.1897+(-105.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839598, assembly_id= 103354, from= IP6; - MCS.B25R6.B1:MCS, at= 1165.6137+(-105-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246888, assembly_id= 103354, from= IP6; - MB.C25R6.B1:MB, at= 1173.8497+(-104.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839622, assembly_id= 103355, from= IP6; - MCS.C25R6.B1:MCS, at= 1181.2737+(-104-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246891, assembly_id= 103355, from= IP6; - BPM.25R6.B1:BPM, at= 1182.1527+(-104-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246893, assembly_id= 103356, from= IP6; - MO.25R6.B1:MO, at= 1182.9037+(-104-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308885, assembly_id= 103356, from= IP6; -MQ.25R6.B1:MQ, at= 1184.9147+(-104-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308148, assembly_id= 103356, from= IP6; - MS.25R6.B1:MS, at= 1186.8097+(-104-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252306, assembly_id= 103356, from= IP6; - MCBV.25R6.B1:MCBV, at= 1187.4027+(-104-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252308, assembly_id= 103356, from= IP6; - MCO.A26R6.B1:MCO, at= 1188.4937+(-104-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252310, assembly_id= 103357, from= IP6; - MCD.A26R6.B1:MCD, at= 1188.4952+(-104-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252311, assembly_id= 103357, from= IP6; - MB.A26R6.B1:MB, at= 1195.9797+(-103.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839646, assembly_id= 103357, from= IP6; - MCS.A26R6.B1:MCS, at= 1203.4037+(-103-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246901, assembly_id= 103357, from= IP6; - MB.B26R6.B1:MB, at= 1211.6397+(-102.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839670, assembly_id= 103358, from= IP6; - MCS.B26R6.B1:MCS, at= 1219.0637+(-102-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246904, assembly_id= 103358, from= IP6; - MCO.B26R6.B1:MCO, at= 1219.8137+(-102-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252314, assembly_id= 103359, from= IP6; - MCD.B26R6.B1:MCD, at= 1219.8152+(-102-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252315, assembly_id= 103359, from= IP6; - MB.C26R6.B1:MB, at= 1227.2997+(-101.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839694, assembly_id= 103359, from= IP6; - MCS.C26R6.B1:MCS, at= 1234.7237+(-101-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246909, assembly_id= 103359, from= IP6; - BPM.26R6.B1:BPM, at= 1235.6027+(-101-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246911, assembly_id= 103360, from= IP6; - MO.26R6.B1:MO, at= 1236.3537+(-101-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308916, assembly_id= 103360, from= IP6; -MQ.26R6.B1:MQ, at= 1238.3647+(-101-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308178, assembly_id= 103360, from= IP6; - MS.26R6.B1:MS, at= 1240.2597+(-101-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252318, assembly_id= 103360, from= IP6; - MCBH.26R6.B1:MCBH, at= 1240.8527+(-101-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252320, assembly_id= 103360, from= IP6; - MB.A27R6.B1:MB, at= 1249.4297+(-100.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839718, assembly_id= 103361, from= IP6; - MCS.A27R6.B1:MCS, at= 1256.8537+(-100-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246917, assembly_id= 103361, from= IP6; - MCO.27R6.B1:MCO, at= 1257.6037+(-100-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252322, assembly_id= 103362, from= IP6; - MCD.27R6.B1:MCD, at= 1257.6052+(-100-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252323, assembly_id= 103362, from= IP6; - MB.B27R6.B1:MB, at= 1265.0897+(-99.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839742, assembly_id= 103362, from= IP6; - MCS.B27R6.B1:MCS, at= 1272.5137+(-99-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246922, assembly_id= 103362, from= IP6; - MB.C27R6.B1:MB, at= 1280.7497+(-98.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839766, assembly_id= 103363, from= IP6; - MCS.C27R6.B1:MCS, at= 1288.1737+(-98-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246925, assembly_id= 103363, from= IP6; - BPM.27R6.B1:BPM, at= 1289.0527+(-98-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246927, assembly_id= 103364, from= IP6; - MQS.27R6.B1:MQS, at= 1289.8067+(-98-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307677, assembly_id= 103364, from= IP6; -MQ.27R6.B1:MQ, at= 1291.8147+(-98-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307968, assembly_id= 103364, from= IP6; - MS.27R6.B1:MS, at= 1293.7097+(-98-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252326, assembly_id= 103364, from= IP6; - MCBV.27R6.B1:MCBV, at= 1294.3027+(-98-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252328, assembly_id= 103364, from= IP6; - MCO.A28R6.B1:MCO, at= 1295.3937+(-98-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252330, assembly_id= 103365, from= IP6; - MCD.A28R6.B1:MCD, at= 1295.3952+(-98-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252331, assembly_id= 103365, from= IP6; - MB.A28R6.B1:MB, at= 1302.8797+(-97.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839790, assembly_id= 103365, from= IP6; - MCS.A28R6.B1:MCS, at= 1310.3037+(-97-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246935, assembly_id= 103365, from= IP6; - MB.B28R6.B1:MB, at= 1318.5397+(-96.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839814, assembly_id= 103366, from= IP6; - MCS.B28R6.B1:MCS, at= 1325.9637+(-96-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246938, assembly_id= 103366, from= IP6; - MCO.B28R6.B1:MCO, at= 1326.7137+(-96-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252334, assembly_id= 103367, from= IP6; - MCD.B28R6.B1:MCD, at= 1326.7152+(-96-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252335, assembly_id= 103367, from= IP6; - MB.C28R6.B1:MB, at= 1334.1997+(-95.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839838, assembly_id= 103367, from= IP6; - MCS.C28R6.B1:MCS, at= 1341.6237+(-95-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246943, assembly_id= 103367, from= IP6; - BPM.28R6.B1:BPM, at= 1342.5027+(-95-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246945, assembly_id= 103368, from= IP6; - MO.28R6.B1:MO, at= 1343.2537+(-95-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308706, assembly_id= 103368, from= IP6; -MQ.28R6.B1:MQ, at= 1345.2647+(-95-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308000, assembly_id= 103368, from= IP6; - MS.28R6.B1:MS, at= 1347.1597+(-95-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252338, assembly_id= 103368, from= IP6; - MCBH.28R6.B1:MCBH, at= 1347.7527+(-95-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252340, assembly_id= 103368, from= IP6; - MB.A29R6.B1:MB, at= 1356.3297+(-94.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839862, assembly_id= 103369, from= IP6; - MCS.A29R6.B1:MCS, at= 1363.7537+(-94-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246951, assembly_id= 103369, from= IP6; - MCO.29R6.B1:MCO, at= 1364.5037+(-94-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252342, assembly_id= 103370, from= IP6; - MCD.29R6.B1:MCD, at= 1364.5052+(-94-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252343, assembly_id= 103370, from= IP6; - MB.B29R6.B1:MB, at= 1371.9897+(-93.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839886, assembly_id= 103370, from= IP6; - MCS.B29R6.B1:MCS, at= 1379.4137+(-93-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246956, assembly_id= 103370, from= IP6; - MB.C29R6.B1:MB, at= 1387.6497+(-92.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839910, assembly_id= 103371, from= IP6; - MCS.C29R6.B1:MCS, at= 1395.0737+(-92-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246959, assembly_id= 103371, from= IP6; - BPM.29R6.B1:BPM, at= 1395.9527+(-92-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246961, assembly_id= 103372, from= IP6; - MO.29R6.B1:MO, at= 1396.7037+(-92-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308738, assembly_id= 103372, from= IP6; -MQ.29R6.B1:MQ, at= 1398.7147+(-92-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348465, assembly_id= 103372, from= IP6; - MS.29R6.B1:MS, at= 1400.6097+(-92-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252346, assembly_id= 103372, from= IP6; - MCBV.29R6.B1:MCBV, at= 1401.2027+(-92-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252348, assembly_id= 103372, from= IP6; - MCO.A30R6.B1:MCO, at= 1402.2937+(-92-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252350, assembly_id= 103373, from= IP6; - MCD.A30R6.B1:MCD, at= 1402.2952+(-92-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252351, assembly_id= 103373, from= IP6; - MB.A30R6.B1:MB, at= 1409.7797+(-91.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839934, assembly_id= 103373, from= IP6; - MCS.A30R6.B1:MCS, at= 1417.2037+(-91-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246969, assembly_id= 103373, from= IP6; - MB.B30R6.B1:MB, at= 1425.4397+(-90.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839958, assembly_id= 103374, from= IP6; - MCS.B30R6.B1:MCS, at= 1432.8637+(-90-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246972, assembly_id= 103374, from= IP6; - MCO.B30R6.B1:MCO, at= 1433.6137+(-90-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252354, assembly_id= 103375, from= IP6; - MCD.B30R6.B1:MCD, at= 1433.6152+(-90-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252355, assembly_id= 103375, from= IP6; - MB.C30R6.B1:MB, at= 1441.0997+(-89.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52839982, assembly_id= 103375, from= IP6; - MCS.C30R6.B1:MCS, at= 1448.5237+(-89-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246977, assembly_id= 103375, from= IP6; - BPM.30R6.B1:BPM, at= 1449.4027+(-89-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246979, assembly_id= 103376, from= IP6; - MO.30R6.B1:MO, at= 1450.1537+(-89-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308769, assembly_id= 103376, from= IP6; -MQ.30R6.B1:MQ, at= 1452.1647+(-89-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308060, assembly_id= 103376, from= IP6; - MSS.30R6.B1:MSS, at= 1454.0597+(-89-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252358, assembly_id= 103376, from= IP6; - MCBH.30R6.B1:MCBH, at= 1454.6527+(-89-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252360, assembly_id= 103376, from= IP6; - MB.A31R6.B1:MB, at= 1463.2297+(-88.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840006, assembly_id= 103377, from= IP6; - MCS.A31R6.B1:MCS, at= 1470.6537+(-88-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246985, assembly_id= 103377, from= IP6; - MCO.31R6.B1:MCO, at= 1471.4037+(-88-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252362, assembly_id= 103378, from= IP6; - MCD.31R6.B1:MCD, at= 1471.4052+(-88-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252363, assembly_id= 103378, from= IP6; - MB.B31R6.B1:MB, at= 1478.8897+(-87.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840030, assembly_id= 103378, from= IP6; - MCS.B31R6.B1:MCS, at= 1486.3137+(-87-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246990, assembly_id= 103378, from= IP6; - MB.C31R6.B1:MB, at= 1494.5497+(-86.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840054, assembly_id= 103379, from= IP6; - MCS.C31R6.B1:MCS, at= 1501.9737+(-86-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246993, assembly_id= 103379, from= IP6; - BPM.31R6.B1:BPM, at= 1502.8527+(-86-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 246995, assembly_id= 103380, from= IP6; - MO.31R6.B1:MO, at= 1503.6037+(-86-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348501, assembly_id= 103380, from= IP6; -MQ.31R6.B1:MQ, at= 1505.6147+(-86-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307852, assembly_id= 103380, from= IP6; - MS.31R6.B1:MS, at= 1507.5097+(-86-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252366, assembly_id= 103380, from= IP6; - MCBV.31R6.B1:MCBV, at= 1508.1027+(-86-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252368, assembly_id= 103380, from= IP6; -S.CELL.67.B1:OMK, at= 1508.8497+(-86-IP6OFS.B1)*DS, slot_id= 100932, from= IP6; - MCO.A32R6.B1:MCO, at= 1509.1937+(-86-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252370, assembly_id= 103381, from= IP6; - MCD.A32R6.B1:MCD, at= 1509.1952+(-86-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252371, assembly_id= 103381, from= IP6; - MB.A32R6.B1:MB, at= 1516.6797+(-85.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840078, assembly_id= 103381, from= IP6; - MCS.A32R6.B1:MCS, at= 1524.1037+(-85-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247003, assembly_id= 103381, from= IP6; - MB.B32R6.B1:MB, at= 1532.3397+(-84.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840102, assembly_id= 103382, from= IP6; - MCS.B32R6.B1:MCS, at= 1539.7637+(-84-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247006, assembly_id= 103382, from= IP6; - MCO.B32R6.B1:MCO, at= 1540.5137+(-84-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252374, assembly_id= 103383, from= IP6; - MCD.B32R6.B1:MCD, at= 1540.5152+(-84-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252375, assembly_id= 103383, from= IP6; - MB.C32R6.B1:MB, at= 1547.9997+(-83.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840126, assembly_id= 103383, from= IP6; - MCS.C32R6.B1:MCS, at= 1555.4237+(-83-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247011, assembly_id= 103383, from= IP6; - BPM.32R6.B1:BPM, at= 1556.3027+(-83-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247013, assembly_id= 103384, from= IP6; - MO.32R6.B1:MO, at= 1557.0537+(-83-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308591, assembly_id= 103384, from= IP6; -MQ.32R6.B1:MQ, at= 1559.0647+(-83-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307882, assembly_id= 103384, from= IP6; - MS.32R6.B1:MS, at= 1560.9597+(-83-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252378, assembly_id= 103384, from= IP6; - MCBH.32R6.B1:MCBH, at= 1561.5527+(-83-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252380, assembly_id= 103384, from= IP6; - MB.A33R6.B1:MB, at= 1570.1297+(-82.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840150, assembly_id= 103385, from= IP6; - MCS.A33R6.B1:MCS, at= 1577.5537+(-82-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247019, assembly_id= 103385, from= IP6; - MCO.33R6.B1:MCO, at= 1578.3037+(-82-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252382, assembly_id= 103386, from= IP6; - MCD.33R6.B1:MCD, at= 1578.3052+(-82-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252383, assembly_id= 103386, from= IP6; - MB.B33R6.B1:MB, at= 1585.7897+(-81.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840174, assembly_id= 103386, from= IP6; - MCS.B33R6.B1:MCS, at= 1593.2137+(-81-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247024, assembly_id= 103386, from= IP6; - MB.C33R6.B1:MB, at= 1601.4497+(-80.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840198, assembly_id= 103387, from= IP6; - MCS.C33R6.B1:MCS, at= 1608.8737+(-80-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247027, assembly_id= 103387, from= IP6; - BPM.33R6.B1:BPM, at= 1609.7527+(-80-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247029, assembly_id= 103388, from= IP6; - MO.33R6.B1:MO, at= 1610.5037+(-80-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308622, assembly_id= 103388, from= IP6; -MQ.33R6.B1:MQ, at= 1612.5147+(-80-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307912, assembly_id= 103388, from= IP6; - MS.33R6.B1:MS, at= 1614.4097+(-80-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252386, assembly_id= 103388, from= IP6; - MCBV.33R6.B1:MCBV, at= 1615.0027+(-80-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252388, assembly_id= 103388, from= IP6; -E.CELL.67.B1:OMK, at= 1615.7497+(-80-IP6OFS.B1)*DS, slot_id= 100932, from= IP6; - MCO.A34R6.B1:MCO, at= 1616.0937+(-80-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252390, assembly_id= 103389, from= IP6; - MCD.A34R6.B1:MCD, at= 1616.0952+(-80-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252391, assembly_id= 103389, from= IP6; - MB.A34R6.B1:MB, at= 1623.5797+(-79.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840222, assembly_id= 103389, from= IP6; - MCS.A34R6.B1:MCS, at= 1631.0037+(-79-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247037, assembly_id= 103389, from= IP6; - MB.B34R6.B1:MB, at= 1639.2397+(-78.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840246, assembly_id= 103390, from= IP6; - MCS.B34R6.B1:MCS, at= 1646.6637+(-78-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247040, assembly_id= 103390, from= IP6; - MCO.B34R6.B1:MCO, at= 1647.4137+(-78-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252394, assembly_id= 103391, from= IP6; - MCD.B34R6.B1:MCD, at= 1647.4152+(-78-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252395, assembly_id= 103391, from= IP6; - MB.C34R6.B1:MB, at= 1654.8997+(-77.5-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840270, assembly_id= 103391, from= IP6; - MCS.C34R6.B1:MCS, at= 1662.3237+(-77-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247045, assembly_id= 103391, from= IP6; - BPM.34R6.B1:BPM, at= 1663.2027+(-77-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247047, assembly_id= 103392, from= IP6; - MO.34R6.B1:MO, at= 1663.9537+(-77-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348493, assembly_id= 103392, from= IP6; -MQ.34R6.B1:MQ, at= 1665.9647+(-77-IP6OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307927, assembly_id= 103392, from= IP6; - MSS.34L7.B1:MSS, at= -1664.5007+(-77-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252398, assembly_id= 103392, from= IP7; - MCBH.34L7.B1:MCBH, at= -1663.9077+(-77-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252400, assembly_id= 103392, from= IP7; - MB.C34L7.B1:MB, at= -1655.3307+(-76.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840294, assembly_id= 103393, from= IP7; - MCS.C34L7.B1:MCS, at= -1647.9067+(-76-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247053, assembly_id= 103393, from= IP7; - MCO.34L7.B1:MCO, at= -1647.1567+(-76-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252402, assembly_id= 103394, from= IP7; - MCD.34L7.B1:MCD, at= -1647.1552+(-76-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252403, assembly_id= 103394, from= IP7; - MB.B34L7.B1:MB, at= -1639.6707+(-75.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840318, assembly_id= 103394, from= IP7; - MCS.B34L7.B1:MCS, at= -1632.2467+(-75-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247058, assembly_id= 103394, from= IP7; - MB.A34L7.B1:MB, at= -1624.0107+(-74.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840342, assembly_id= 103395, from= IP7; - MCS.A34L7.B1:MCS, at= -1616.5867+(-74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247061, assembly_id= 103395, from= IP7; - BPM.33L7.B1:BPM, at= -1615.7077+(-74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247063, assembly_id= 103396, from= IP7; - MO.33L7.B1:MO, at= -1614.9567+(-74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308609, assembly_id= 103396, from= IP7; -MQ.33L7.B1:MQ, at= -1612.9457+(-74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307899, assembly_id= 103396, from= IP7; - MS.33L7.B1:MS, at= -1611.0507+(-74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252406, assembly_id= 103396, from= IP7; - MCBV.33L7.B1:MCBV, at= -1610.4577+(-74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252408, assembly_id= 103396, from= IP7; - MCO.B33L7.B1:MCO, at= -1609.3667+(-74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252410, assembly_id= 103397, from= IP7; - MCD.B33L7.B1:MCD, at= -1609.3652+(-74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252411, assembly_id= 103397, from= IP7; - MB.C33L7.B1:MB, at= -1601.8807+(-73.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840366, assembly_id= 103397, from= IP7; - MCS.C33L7.B1:MCS, at= -1594.4567+(-73-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247071, assembly_id= 103397, from= IP7; - MB.B33L7.B1:MB, at= -1586.2207+(-72.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840390, assembly_id= 103398, from= IP7; - MCS.B33L7.B1:MCS, at= -1578.7967+(-72-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247074, assembly_id= 103398, from= IP7; - MCO.A33L7.B1:MCO, at= -1578.0467+(-72-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252414, assembly_id= 103399, from= IP7; - MCD.A33L7.B1:MCD, at= -1578.0452+(-72-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252415, assembly_id= 103399, from= IP7; - MB.A33L7.B1:MB, at= -1570.5607+(-71.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840414, assembly_id= 103399, from= IP7; - MCS.A33L7.B1:MCS, at= -1563.1367+(-71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247079, assembly_id= 103399, from= IP7; - BPM.32L7.B1:BPM, at= -1562.2577+(-71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247081, assembly_id= 103400, from= IP7; - MO.32L7.B1:MO, at= -1561.5067+(-71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308577, assembly_id= 103400, from= IP7; -MQ.32L7.B1:MQ, at= -1559.4957+(-71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307869, assembly_id= 103400, from= IP7; - MSS.32L7.B1:MSS, at= -1557.6007+(-71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252418, assembly_id= 103400, from= IP7; - MCBH.32L7.B1:MCBH, at= -1557.0077+(-71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252420, assembly_id= 103400, from= IP7; - MB.C32L7.B1:MB, at= -1548.4307+(-70.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840438, assembly_id= 103401, from= IP7; - MCS.C32L7.B1:MCS, at= -1541.0067+(-70-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247087, assembly_id= 103401, from= IP7; - MCO.32L7.B1:MCO, at= -1540.2567+(-70-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252422, assembly_id= 103402, from= IP7; - MCD.32L7.B1:MCD, at= -1540.2552+(-70-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252423, assembly_id= 103402, from= IP7; - MB.B32L7.B1:MB, at= -1532.7707+(-69.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840462, assembly_id= 103402, from= IP7; - MCS.B32L7.B1:MCS, at= -1525.3467+(-69-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247092, assembly_id= 103402, from= IP7; - MB.A32L7.B1:MB, at= -1517.1107+(-68.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840486, assembly_id= 103403, from= IP7; - MCS.A32L7.B1:MCS, at= -1509.6867+(-68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247095, assembly_id= 103403, from= IP7; - BPM.31L7.B1:BPM, at= -1508.8077+(-68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247097, assembly_id= 103404, from= IP7; - MO.31L7.B1:MO, at= -1508.0567+(-68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308785, assembly_id= 103404, from= IP7; -MQ.31L7.B1:MQ, at= -1506.0457+(-68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308077, assembly_id= 103404, from= IP7; - MS.31L7.B1:MS, at= -1504.1507+(-68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252426, assembly_id= 103404, from= IP7; - MCBV.31L7.B1:MCBV, at= -1503.5577+(-68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252428, assembly_id= 103404, from= IP7; - MCO.B31L7.B1:MCO, at= -1502.4667+(-68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252430, assembly_id= 103405, from= IP7; - MCD.B31L7.B1:MCD, at= -1502.4652+(-68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252431, assembly_id= 103405, from= IP7; - MB.C31L7.B1:MB, at= -1494.9807+(-67.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840510, assembly_id= 103405, from= IP7; - MCS.C31L7.B1:MCS, at= -1487.5567+(-67-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247105, assembly_id= 103405, from= IP7; - MB.B31L7.B1:MB, at= -1479.3207+(-66.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840534, assembly_id= 103406, from= IP7; - MCS.B31L7.B1:MCS, at= -1471.8967+(-66-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247108, assembly_id= 103406, from= IP7; - MCO.A31L7.B1:MCO, at= -1471.1467+(-66-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252434, assembly_id= 103407, from= IP7; - MCD.A31L7.B1:MCD, at= -1471.1452+(-66-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252435, assembly_id= 103407, from= IP7; - MB.A31L7.B1:MB, at= -1463.6607+(-65.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840558, assembly_id= 103407, from= IP7; - MCS.A31L7.B1:MCS, at= -1456.2367+(-65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247113, assembly_id= 103407, from= IP7; - BPM.30L7.B1:BPM, at= -1455.3577+(-65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247115, assembly_id= 103408, from= IP7; - MO.30L7.B1:MO, at= -1454.6067+(-65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308756, assembly_id= 103408, from= IP7; -MQ.30L7.B1:MQ, at= -1452.5957+(-65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308047, assembly_id= 103408, from= IP7; - MS.30L7.B1:MS, at= -1450.7007+(-65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252438, assembly_id= 103408, from= IP7; - MCBH.30L7.B1:MCBH, at= -1450.1077+(-65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252440, assembly_id= 103408, from= IP7; - MB.C30L7.B1:MB, at= -1441.5307+(-64.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840582, assembly_id= 103409, from= IP7; - MCS.C30L7.B1:MCS, at= -1434.1067+(-64-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247121, assembly_id= 103409, from= IP7; - MCO.30L7.B1:MCO, at= -1433.3567+(-64-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252442, assembly_id= 103410, from= IP7; - MCD.30L7.B1:MCD, at= -1433.3552+(-64-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252443, assembly_id= 103410, from= IP7; - MB.B30L7.B1:MB, at= -1425.8707+(-63.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840606, assembly_id= 103410, from= IP7; - MCS.B30L7.B1:MCS, at= -1418.4467+(-63-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247126, assembly_id= 103410, from= IP7; - MB.A30L7.B1:MB, at= -1410.2107+(-62.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840630, assembly_id= 103411, from= IP7; - MCS.A30L7.B1:MCS, at= -1402.7867+(-62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247129, assembly_id= 103411, from= IP7; - BPM.29L7.B1:BPM, at= -1401.9077+(-62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247131, assembly_id= 103412, from= IP7; - MO.29L7.B1:MO, at= -1401.1567+(-62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308724, assembly_id= 103412, from= IP7; -MQ.29L7.B1:MQ, at= -1399.1457+(-62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348464, assembly_id= 103412, from= IP7; - MS.29L7.B1:MS, at= -1397.2507+(-62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252446, assembly_id= 103412, from= IP7; - MCBV.29L7.B1:MCBV, at= -1396.6577+(-62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252448, assembly_id= 103412, from= IP7; - MCO.B29L7.B1:MCO, at= -1395.5667+(-62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252450, assembly_id= 103413, from= IP7; - MCD.B29L7.B1:MCD, at= -1395.5652+(-62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252451, assembly_id= 103413, from= IP7; - MB.C29L7.B1:MB, at= -1388.0807+(-61.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840654, assembly_id= 103413, from= IP7; - MCS.C29L7.B1:MCS, at= -1380.6567+(-61-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247139, assembly_id= 103413, from= IP7; - MB.B29L7.B1:MB, at= -1372.4207+(-60.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840678, assembly_id= 103414, from= IP7; - MCS.B29L7.B1:MCS, at= -1364.9967+(-60-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247142, assembly_id= 103414, from= IP7; - MCO.A29L7.B1:MCO, at= -1364.2467+(-60-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252454, assembly_id= 103415, from= IP7; - MCD.A29L7.B1:MCD, at= -1364.2452+(-60-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252455, assembly_id= 103415, from= IP7; - MB.A29L7.B1:MB, at= -1356.7607+(-59.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840702, assembly_id= 103415, from= IP7; - MCS.A29L7.B1:MCS, at= -1349.3367+(-59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247147, assembly_id= 103415, from= IP7; - BPM.28L7.B1:BPM, at= -1348.4577+(-59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247149, assembly_id= 103416, from= IP7; - MO.28L7.B1:MO, at= -1347.7067+(-59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308692, assembly_id= 103416, from= IP7; -MQ.28L7.B1:MQ, at= -1345.6957+(-59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307986, assembly_id= 103416, from= IP7; - MSS.28L7.B1:MSS, at= -1343.8007+(-59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252458, assembly_id= 103416, from= IP7; - MCBH.28L7.B1:MCBH, at= -1343.2077+(-59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252460, assembly_id= 103416, from= IP7; - MB.C28L7.B1:MB, at= -1334.6307+(-58.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840726, assembly_id= 103417, from= IP7; - MCS.C28L7.B1:MCS, at= -1327.2067+(-58-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247155, assembly_id= 103417, from= IP7; - MCO.28L7.B1:MCO, at= -1326.4567+(-58-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252462, assembly_id= 103418, from= IP7; - MCD.28L7.B1:MCD, at= -1326.4552+(-58-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252463, assembly_id= 103418, from= IP7; - MB.B28L7.B1:MB, at= -1318.9707+(-57.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840750, assembly_id= 103418, from= IP7; - MCS.B28L7.B1:MCS, at= -1311.5467+(-57-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247160, assembly_id= 103418, from= IP7; - MB.A28L7.B1:MB, at= -1303.3107+(-56.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840774, assembly_id= 103419, from= IP7; - MCS.A28L7.B1:MCS, at= -1295.8867+(-56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247163, assembly_id= 103419, from= IP7; - BPM.27L7.B1:BPM, at= -1295.0077+(-56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247165, assembly_id= 103420, from= IP7; - MQS.27L7.B1:MQS, at= -1294.2537+(-56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307663, assembly_id= 103420, from= IP7; -MQ.27L7.B1:MQ, at= -1292.2457+(-56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308195, assembly_id= 103420, from= IP7; - MS.27L7.B1:MS, at= -1290.3507+(-56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252466, assembly_id= 103420, from= IP7; - MCBV.27L7.B1:MCBV, at= -1289.7577+(-56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252468, assembly_id= 103420, from= IP7; - MCO.B27L7.B1:MCO, at= -1288.6667+(-56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252470, assembly_id= 103421, from= IP7; - MCD.B27L7.B1:MCD, at= -1288.6652+(-56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252471, assembly_id= 103421, from= IP7; - MB.C27L7.B1:MB, at= -1281.1807+(-55.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840798, assembly_id= 103421, from= IP7; - MCS.C27L7.B1:MCS, at= -1273.7567+(-55-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247173, assembly_id= 103421, from= IP7; - MB.B27L7.B1:MB, at= -1265.5207+(-54.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840822, assembly_id= 103422, from= IP7; - MCS.B27L7.B1:MCS, at= -1258.0967+(-54-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247176, assembly_id= 103422, from= IP7; - MCO.A27L7.B1:MCO, at= -1257.3467+(-54-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252474, assembly_id= 103423, from= IP7; - MCD.A27L7.B1:MCD, at= -1257.3452+(-54-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252475, assembly_id= 103423, from= IP7; - MB.A27L7.B1:MB, at= -1249.8607+(-53.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840846, assembly_id= 103423, from= IP7; - MCS.A27L7.B1:MCS, at= -1242.4367+(-53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247181, assembly_id= 103423, from= IP7; - BPM.26L7.B1:BPM, at= -1241.5577+(-53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247183, assembly_id= 103424, from= IP7; - MO.26L7.B1:MO, at= -1240.8067+(-53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308903, assembly_id= 103424, from= IP7; -MQ.26L7.B1:MQ, at= -1238.7957+(-53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308165, assembly_id= 103424, from= IP7; - MS.26L7.B1:MS, at= -1236.9007+(-53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252478, assembly_id= 103424, from= IP7; - MCBH.26L7.B1:MCBH, at= -1236.3077+(-53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252480, assembly_id= 103424, from= IP7; - MB.C26L7.B1:MB, at= -1227.7307+(-52.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840870, assembly_id= 103425, from= IP7; - MCS.C26L7.B1:MCS, at= -1220.3067+(-52-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247189, assembly_id= 103425, from= IP7; - MCO.26L7.B1:MCO, at= -1219.5567+(-52-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252482, assembly_id= 103426, from= IP7; - MCD.26L7.B1:MCD, at= -1219.5552+(-52-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252483, assembly_id= 103426, from= IP7; - MB.B26L7.B1:MB, at= -1212.0707+(-51.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840894, assembly_id= 103426, from= IP7; - MCS.B26L7.B1:MCS, at= -1204.6467+(-51-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247194, assembly_id= 103426, from= IP7; - MB.A26L7.B1:MB, at= -1196.4107+(-50.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840918, assembly_id= 103427, from= IP7; - MCS.A26L7.B1:MCS, at= -1188.9867+(-50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247197, assembly_id= 103427, from= IP7; - BPM.25L7.B1:BPM, at= -1188.1077+(-50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247199, assembly_id= 103428, from= IP7; - MO.25L7.B1:MO, at= -1187.3567+(-50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308871, assembly_id= 103428, from= IP7; -MQ.25L7.B1:MQ, at= -1185.3457+(-50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308134, assembly_id= 103428, from= IP7; - MS.25L7.B1:MS, at= -1183.4507+(-50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252486, assembly_id= 103428, from= IP7; - MCBV.25L7.B1:MCBV, at= -1182.8577+(-50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252488, assembly_id= 103428, from= IP7; - MCO.B25L7.B1:MCO, at= -1181.7667+(-50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252490, assembly_id= 103429, from= IP7; - MCD.B25L7.B1:MCD, at= -1181.7652+(-50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252491, assembly_id= 103429, from= IP7; - MB.C25L7.B1:MB, at= -1174.2807+(-49.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840942, assembly_id= 103429, from= IP7; - MCS.C25L7.B1:MCS, at= -1166.8567+(-49-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247207, assembly_id= 103429, from= IP7; - MB.B25L7.B1:MB, at= -1158.6207+(-48.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840966, assembly_id= 103430, from= IP7; - MCS.B25L7.B1:MCS, at= -1151.1967+(-48-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247210, assembly_id= 103430, from= IP7; - MCO.A25L7.B1:MCO, at= -1150.4467+(-48-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252494, assembly_id= 103431, from= IP7; - MCD.A25L7.B1:MCD, at= -1150.4452+(-48-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252495, assembly_id= 103431, from= IP7; - MB.A25L7.B1:MB, at= -1142.9607+(-47.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52840990, assembly_id= 103431, from= IP7; - MCS.A25L7.B1:MCS, at= -1135.5367+(-47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247215, assembly_id= 103431, from= IP7; - BPM.24L7.B1:BPM, at= -1134.6577+(-47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247217, assembly_id= 103432, from= IP7; - MO.24L7.B1:MO, at= -1133.9067+(-47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308839, assembly_id= 103432, from= IP7; -MQ.24L7.B1:MQ, at= -1131.8957+(-47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308102, assembly_id= 103432, from= IP7; - MS.24L7.B1:MS, at= -1130.0007+(-47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252498, assembly_id= 103432, from= IP7; - MCBH.24L7.B1:MCBH, at= -1129.4077+(-47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252500, assembly_id= 103432, from= IP7; - MB.C24L7.B1:MB, at= -1120.8307+(-46.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841014, assembly_id= 103433, from= IP7; - MCS.C24L7.B1:MCS, at= -1113.4067+(-46-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247223, assembly_id= 103433, from= IP7; - MCO.24L7.B1:MCO, at= -1112.6567+(-46-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252502, assembly_id= 103434, from= IP7; - MCD.24L7.B1:MCD, at= -1112.6552+(-46-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252503, assembly_id= 103434, from= IP7; - MB.B24L7.B1:MB, at= -1105.1707+(-45.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841038, assembly_id= 103434, from= IP7; - MCS.B24L7.B1:MCS, at= -1097.7467+(-45-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247228, assembly_id= 103434, from= IP7; - MB.A24L7.B1:MB, at= -1089.5107+(-44.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841062, assembly_id= 103435, from= IP7; - MCS.A24L7.B1:MCS, at= -1082.0867+(-44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247231, assembly_id= 103435, from= IP7; - BPM.23L7.B1:BPM, at= -1081.2077+(-44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247233, assembly_id= 103436, from= IP7; - MQS.23L7.B1:MQS, at= -1080.4537+(-44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307632, assembly_id= 103436, from= IP7; -MQ.23L7.B1:MQ, at= -1078.4457+(-44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348477, assembly_id= 103436, from= IP7; - MS.23L7.B1:MS, at= -1076.5507+(-44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252506, assembly_id= 103436, from= IP7; - MCBV.23L7.B1:MCBV, at= -1075.9577+(-44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252508, assembly_id= 103436, from= IP7; - MCO.B23L7.B1:MCO, at= -1074.8667+(-44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252510, assembly_id= 103437, from= IP7; - MCD.B23L7.B1:MCD, at= -1074.8652+(-44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252511, assembly_id= 103437, from= IP7; - MB.C23L7.B1:MB, at= -1067.3807+(-43.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841086, assembly_id= 103437, from= IP7; - MCS.C23L7.B1:MCS, at= -1059.9567+(-43-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247241, assembly_id= 103437, from= IP7; - MB.B23L7.B1:MB, at= -1051.7207+(-42.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841110, assembly_id= 103438, from= IP7; - MCS.B23L7.B1:MCS, at= -1044.2967+(-42-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247244, assembly_id= 103438, from= IP7; - MCO.A23L7.B1:MCO, at= -1043.5467+(-42-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252514, assembly_id= 103439, from= IP7; - MCD.A23L7.B1:MCD, at= -1043.5452+(-42-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252515, assembly_id= 103439, from= IP7; - MB.A23L7.B1:MB, at= -1036.0607+(-41.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841134, assembly_id= 103439, from= IP7; - MCS.A23L7.B1:MCS, at= -1028.6367+(-41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247249, assembly_id= 103439, from= IP7; - BPM.22L7.B1:BPM, at= -1027.7577+(-41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247251, assembly_id= 103440, from= IP7; - MO.22L7.B1:MO, at= -1027.0067+(-41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308810, assembly_id= 103440, from= IP7; -MQ.22L7.B1:MQ, at= -1024.9957+(-41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308281, assembly_id= 103440, from= IP7; - MS.22L7.B1:MS, at= -1023.1007+(-41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252518, assembly_id= 103440, from= IP7; - MCBH.22L7.B1:MCBH, at= -1022.5077+(-41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252520, assembly_id= 103440, from= IP7; - MB.C22L7.B1:MB, at= -1013.9307+(-40.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841158, assembly_id= 103441, from= IP7; - MCS.C22L7.B1:MCS, at= -1006.5067+(-40-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247257, assembly_id= 103441, from= IP7; - MCO.22L7.B1:MCO, at= -1005.7567+(-40-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252522, assembly_id= 103442, from= IP7; - MCD.22L7.B1:MCD, at= -1005.7552+(-40-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252523, assembly_id= 103442, from= IP7; - MB.B22L7.B1:MB, at= -998.2707+(-39.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841182, assembly_id= 103442, from= IP7; - MCS.B22L7.B1:MCS, at= -990.8467+(-39-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247262, assembly_id= 103442, from= IP7; - MB.A22L7.B1:MB, at= -982.6107+(-38.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841206, assembly_id= 103443, from= IP7; - MCS.A22L7.B1:MCS, at= -975.1867+(-38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247265, assembly_id= 103443, from= IP7; - BPM.21L7.B1:BPM, at= -974.3077+(-38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247267, assembly_id= 103444, from= IP7; - MQT.21L7.B1:MQT, at= -973.5537+(-38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307265, assembly_id= 103444, from= IP7; -MQ.21L7.B1:MQ, at= -971.5457+(-38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308249, assembly_id= 103444, from= IP7; - MS.21L7.B1:MS, at= -969.6507+(-38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252526, assembly_id= 103444, from= IP7; - MCBV.21L7.B1:MCBV, at= -969.0577+(-38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252528, assembly_id= 103444, from= IP7; - MCO.B21L7.B1:MCO, at= -967.9667+(-38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252530, assembly_id= 103445, from= IP7; - MCD.B21L7.B1:MCD, at= -967.9652+(-38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252531, assembly_id= 103445, from= IP7; - MB.C21L7.B1:MB, at= -960.4807+(-37.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841230, assembly_id= 103445, from= IP7; - MCS.C21L7.B1:MCS, at= -953.0567+(-37-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247275, assembly_id= 103445, from= IP7; - MB.B21L7.B1:MB, at= -944.8207+(-36.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841254, assembly_id= 103446, from= IP7; - MCS.B21L7.B1:MCS, at= -937.3967+(-36-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247278, assembly_id= 103446, from= IP7; - MCO.A21L7.B1:MCO, at= -936.6467+(-36-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252534, assembly_id= 103447, from= IP7; - MCD.A21L7.B1:MCD, at= -936.6452+(-36-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252535, assembly_id= 103447, from= IP7; - MB.A21L7.B1:MB, at= -929.1607+(-35.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841278, assembly_id= 103447, from= IP7; - MCS.A21L7.B1:MCS, at= -921.7367+(-35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247283, assembly_id= 103447, from= IP7; - BPM.20L7.B1:BPM, at= -920.8577+(-35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247285, assembly_id= 103448, from= IP7; - MQT.20L7.B1:MQT, at= -920.1037+(-35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307468, assembly_id= 103448, from= IP7; -MQ.20L7.B1:MQ, at= -918.0957+(-35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308219, assembly_id= 103448, from= IP7; - MS.20L7.B1:MS, at= -916.2007+(-35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252538, assembly_id= 103448, from= IP7; - MCBH.20L7.B1:MCBH, at= -915.6077+(-35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252540, assembly_id= 103448, from= IP7; - MB.C20L7.B1:MB, at= -907.0307+(-34.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841302, assembly_id= 103449, from= IP7; - MCS.C20L7.B1:MCS, at= -899.6067+(-34-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247291, assembly_id= 103449, from= IP7; - MCO.20L7.B1:MCO, at= -898.8567+(-34-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252542, assembly_id= 103450, from= IP7; - MCD.20L7.B1:MCD, at= -898.8552+(-34-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252543, assembly_id= 103450, from= IP7; - MB.B20L7.B1:MB, at= -891.3707+(-33.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841326, assembly_id= 103450, from= IP7; - MCS.B20L7.B1:MCS, at= -883.9467+(-33-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247296, assembly_id= 103450, from= IP7; - MB.A20L7.B1:MB, at= -875.7107+(-32.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841350, assembly_id= 103451, from= IP7; - MCS.A20L7.B1:MCS, at= -868.2867+(-32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247299, assembly_id= 103451, from= IP7; - BPM.19L7.B1:BPM, at= -867.4077+(-32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 266534, assembly_id= 103452, from= IP7; - MQT.19L7.B1:MQT, at= -866.6537+(-32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307438, assembly_id= 103452, from= IP7; -MQ.19L7.B1:MQ, at= -864.6457+(-32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308428, assembly_id= 103452, from= IP7; - MS.19L7.B1:MS, at= -862.7507+(-32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252546, assembly_id= 103452, from= IP7; - MCBV.19L7.B1:MCBV, at= -862.1577+(-32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252548, assembly_id= 103452, from= IP7; - MCO.B19L7.B1:MCO, at= -861.0667+(-32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252550, assembly_id= 103453, from= IP7; - MCD.B19L7.B1:MCD, at= -861.0652+(-32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252551, assembly_id= 103453, from= IP7; - MB.C19L7.B1:MB, at= -853.5807+(-31.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841374, assembly_id= 103453, from= IP7; - MCS.C19L7.B1:MCS, at= -846.1567+(-31-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247307, assembly_id= 103453, from= IP7; - MB.B19L7.B1:MB, at= -837.9207+(-30.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841398, assembly_id= 103454, from= IP7; - MCS.B19L7.B1:MCS, at= -830.4967+(-30-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247310, assembly_id= 103454, from= IP7; - MCO.A19L7.B1:MCO, at= -829.7467+(-30-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252554, assembly_id= 103455, from= IP7; - MCD.A19L7.B1:MCD, at= -829.7452+(-30-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252555, assembly_id= 103455, from= IP7; - MB.A19L7.B1:MB, at= -822.2607+(-29.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841422, assembly_id= 103455, from= IP7; - MCS.A19L7.B1:MCS, at= -814.8367+(-29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247315, assembly_id= 103455, from= IP7; - BPM.18L7.B1:BPM, at= -813.9577+(-29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247317, assembly_id= 103456, from= IP7; - MQT.18L7.B1:MQT, at= -813.2037+(-29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307407, assembly_id= 103456, from= IP7; -MQ.18L7.B1:MQ, at= -811.1957+(-29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308396, assembly_id= 103456, from= IP7; - MS.18L7.B1:MS, at= -809.3007+(-29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252558, assembly_id= 103456, from= IP7; - MCBH.18L7.B1:MCBH, at= -808.7077+(-29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252560, assembly_id= 103456, from= IP7; - MB.C18L7.B1:MB, at= -800.1307+(-28.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841446, assembly_id= 103457, from= IP7; - MCS.C18L7.B1:MCS, at= -792.7067+(-28-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247323, assembly_id= 103457, from= IP7; - MCO.18L7.B1:MCO, at= -791.9567+(-28-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252562, assembly_id= 103458, from= IP7; - MCD.18L7.B1:MCD, at= -791.9552+(-28-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252563, assembly_id= 103458, from= IP7; - MB.B18L7.B1:MB, at= -784.4707+(-27.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841470, assembly_id= 103458, from= IP7; - MCS.B18L7.B1:MCS, at= -777.0467+(-27-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247328, assembly_id= 103458, from= IP7; - MB.A18L7.B1:MB, at= -768.8107+(-26.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841494, assembly_id= 103459, from= IP7; - MCS.A18L7.B1:MCS, at= -761.3867+(-26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247331, assembly_id= 103459, from= IP7; - BPM.17L7.B1:BPM, at= -760.5077+(-26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247333, assembly_id= 103460, from= IP7; - MQT.17L7.B1:MQT, at= -759.7537+(-26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307375, assembly_id= 103460, from= IP7; -MQ.17L7.B1:MQ, at= -757.7457+(-26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308366, assembly_id= 103460, from= IP7; - MS.17L7.B1:MS, at= -755.8507+(-26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252566, assembly_id= 103460, from= IP7; - MCBV.17L7.B1:MCBV, at= -755.2577+(-26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252568, assembly_id= 103460, from= IP7; - MCO.B17L7.B1:MCO, at= -754.1667+(-26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252570, assembly_id= 103461, from= IP7; - MCD.B17L7.B1:MCD, at= -754.1652+(-26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252571, assembly_id= 103461, from= IP7; - MB.C17L7.B1:MB, at= -746.6807+(-25.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841518, assembly_id= 103461, from= IP7; - MCS.C17L7.B1:MCS, at= -739.2567+(-25-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247341, assembly_id= 103461, from= IP7; - MB.B17L7.B1:MB, at= -731.0207+(-24.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841542, assembly_id= 103462, from= IP7; - MCS.B17L7.B1:MCS, at= -723.5967+(-24-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247344, assembly_id= 103462, from= IP7; - MCO.A17L7.B1:MCO, at= -722.8467+(-24-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252574, assembly_id= 103463, from= IP7; - MCD.A17L7.B1:MCD, at= -722.8452+(-24-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252575, assembly_id= 103463, from= IP7; - MB.A17L7.B1:MB, at= -715.3607+(-23.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841566, assembly_id= 103463, from= IP7; - MCS.A17L7.B1:MCS, at= -707.9367+(-23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247349, assembly_id= 103463, from= IP7; - BPM.16L7.B1:BPM, at= -707.0577+(-23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247351, assembly_id= 103464, from= IP7; - MQT.16L7.B1:MQT, at= -706.3037+(-23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307582, assembly_id= 103464, from= IP7; -MQ.16L7.B1:MQ, at= -704.2957+(-23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308337, assembly_id= 103464, from= IP7; - MS.16L7.B1:MS, at= -702.4007+(-23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252578, assembly_id= 103464, from= IP7; - MCBH.16L7.B1:MCBH, at= -701.8077+(-23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252580, assembly_id= 103464, from= IP7; - MB.C16L7.B1:MB, at= -693.2307+(-22.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841590, assembly_id= 103465, from= IP7; - MCS.C16L7.B1:MCS, at= -685.8067+(-22-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247357, assembly_id= 103465, from= IP7; - MCO.16L7.B1:MCO, at= -685.0567+(-22-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252582, assembly_id= 103466, from= IP7; - MCD.16L7.B1:MCD, at= -685.0552+(-22-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252583, assembly_id= 103466, from= IP7; - MB.B16L7.B1:MB, at= -677.5707+(-21.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841614, assembly_id= 103466, from= IP7; - MCS.B16L7.B1:MCS, at= -670.1467+(-21-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247362, assembly_id= 103466, from= IP7; - MB.A16L7.B1:MB, at= -661.9107+(-20.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841638, assembly_id= 103467, from= IP7; - MCS.A16L7.B1:MCS, at= -654.4867+(-20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247365, assembly_id= 103467, from= IP7; - BPM.15L7.B1:BPM, at= -653.6077+(-20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 266536, assembly_id= 103468, from= IP7; - MQT.15L7.B1:MQT, at= -652.8537+(-20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307551, assembly_id= 103468, from= IP7; -MQ.15L7.B1:MQ, at= -650.8457+(-20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308543, assembly_id= 103468, from= IP7; - MS.15L7.B1:MS, at= -648.9507+(-20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252586, assembly_id= 103468, from= IP7; - MCBV.15L7.B1:MCBV, at= -648.3577+(-20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252588, assembly_id= 103468, from= IP7; - MCO.B15L7.B1:MCO, at= -647.2667+(-20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252590, assembly_id= 103469, from= IP7; - MCD.B15L7.B1:MCD, at= -647.2652+(-20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252591, assembly_id= 103469, from= IP7; - MB.C15L7.B1:MB, at= -639.7807+(-19.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841662, assembly_id= 103469, from= IP7; - MCS.C15L7.B1:MCS, at= -632.3567+(-19-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247373, assembly_id= 103469, from= IP7; - MB.B15L7.B1:MB, at= -624.1207+(-18.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841686, assembly_id= 103470, from= IP7; - MCS.B15L7.B1:MCS, at= -616.6967+(-18-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247376, assembly_id= 103470, from= IP7; - MCO.A15L7.B1:MCO, at= -615.9467+(-18-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252594, assembly_id= 103471, from= IP7; - MCD.A15L7.B1:MCD, at= -615.9452+(-18-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252595, assembly_id= 103471, from= IP7; - MB.A15L7.B1:MB, at= -608.4607+(-17.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841710, assembly_id= 103471, from= IP7; - MCS.A15L7.B1:MCS, at= -601.0367+(-17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247381, assembly_id= 103471, from= IP7; - BPM.14L7.B1:BPM, at= -600.1577+(-17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247383, assembly_id= 103472, from= IP7; - MQT.14L7.B1:MQT, at= -599.4037+(-17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307519, assembly_id= 103472, from= IP7; -MQ.14L7.B1:MQ, at= -597.3957+(-17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348488, assembly_id= 103472, from= IP7; - MS.14L7.B1:MS, at= -595.5007+(-17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252598, assembly_id= 103472, from= IP7; - MCBH.14L7.B1:MCBH, at= -594.9077+(-17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252600, assembly_id= 103472, from= IP7; - MB.C14L7.B1:MB, at= -586.3307+(-16.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841734, assembly_id= 103473, from= IP7; - MCS.C14L7.B1:MCS, at= -578.9067+(-16-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247389, assembly_id= 103473, from= IP7; - MCO.14L7.B1:MCO, at= -578.1567+(-16-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252602, assembly_id= 103474, from= IP7; - MCD.14L7.B1:MCD, at= -578.1552+(-16-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252603, assembly_id= 103474, from= IP7; - MB.B14L7.B1:MB, at= -570.6707+(-15.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841758, assembly_id= 103474, from= IP7; - MCS.B14L7.B1:MCS, at= -563.2467+(-15-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247394, assembly_id= 103474, from= IP7; - MB.A14L7.B1:MB, at= -555.0107+(-14.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841782, assembly_id= 103475, from= IP7; - MCS.A14L7.B1:MCS, at= -547.5867+(-14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247397, assembly_id= 103475, from= IP7; -S.DS.L7.B1:OMK, at= -547.1807+(-14-IP7OFS.B1)*DS, slot_id= 100932, from= IP7; - BPM.13L7.B1:BPM, at= -546.7077+(-14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247399, assembly_id= 103476, from= IP7; - MQT.13L7.B1:MQT, at= -545.9537+(-14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307726, assembly_id= 103476, from= IP7; -MQ.13L7.B1:MQ, at= -543.9457+(-14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308484, assembly_id= 103476, from= IP7; - MS.13L7.B1:MS, at= -542.0507+(-14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252606, assembly_id= 103476, from= IP7; - MCBV.13L7.B1:MCBV, at= -541.4577+(-14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252608, assembly_id= 103476, from= IP7; - MCO.B13L7.B1:MCO, at= -540.3667+(-14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252610, assembly_id= 103477, from= IP7; - MCD.B13L7.B1:MCD, at= -540.3652+(-14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252611, assembly_id= 103477, from= IP7; - MB.C13L7.B1:MB, at= -532.8807+(-13.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841806, assembly_id= 103477, from= IP7; - MCS.C13L7.B1:MCS, at= -525.4567+(-13-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247407, assembly_id= 103477, from= IP7; - MB.B13L7.B1:MB, at= -517.2207+(-12.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841830, assembly_id= 103478, from= IP7; - MCS.B13L7.B1:MCS, at= -509.7967+(-12-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247410, assembly_id= 103478, from= IP7; - MCO.A13L7.B1:MCO, at= -509.0467+(-12-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252614, assembly_id= 103479, from= IP7; - MCD.A13L7.B1:MCD, at= -509.0452+(-12-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252615, assembly_id= 103479, from= IP7; - MB.A13L7.B1:MB, at= -501.5607+(-11.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841854, assembly_id= 103479, from= IP7; - MCS.A13L7.B1:MCS, at= -494.1367+(-11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247415, assembly_id= 103479, from= IP7; - BPM.12L7.B1:BPM, at= -493.2577+(-11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247417, assembly_id= 103480, from= IP7; - MQT.12L7.B1:MQT, at= -492.5037+(-11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307695, assembly_id= 103480, from= IP7; -MQ.12L7.B1:MQ, at= -490.4957+(-11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308454, assembly_id= 103480, from= IP7; - MS.12L7.B1:MS, at= -488.6007+(-11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252618, assembly_id= 103480, from= IP7; - MCBH.12L7.B1:MCBH, at= -488.0077+(-11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252620, assembly_id= 103480, from= IP7; - MB.C12L7.B1:MB, at= -479.4307+(-10.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841878, assembly_id= 103481, from= IP7; - MCS.C12L7.B1:MCS, at= -472.0067+(-10-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247423, assembly_id= 103481, from= IP7; - MCO.12L7.B1:MCO, at= -471.2567+(-10-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252622, assembly_id= 103482, from= IP7; - MCD.12L7.B1:MCD, at= -471.2552+(-10-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252623, assembly_id= 103482, from= IP7; - MB.B12L7.B1:MB, at= -463.7707+(-9.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841902, assembly_id= 103482, from= IP7; - MCS.B12L7.B1:MCS, at= -456.3467+(-9-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247428, assembly_id= 103482, from= IP7; - MB.A12L7.B1:MB, at= -448.1107+(-8.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841926, assembly_id= 103483, from= IP7; - MCS.A12L7.B1:MCS, at= -440.6867+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247431, assembly_id= 103483, from= IP7; -E.ARC.67.B1:OMK, at= -440.2807+(-8-IP7OFS.B1)*DS, slot_id= 100932, from= IP7; - BPM.11L7.B1:BPM, at= -439.8077+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247433, assembly_id= 103484, from= IP7; -MQ.11L7.B1:MQ, at= -437.2607+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308661, assembly_id= 103484, from= IP7; - MQTLI.11L7.B1:MQTLI, at= -434.8917+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307349, assembly_id= 103484, from= IP7; - MS.11L7.B1:MS, at= -433.8797+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252626, assembly_id= 103484, from= IP7; - MCBV.11L7.B1:MCBV, at= -433.2867+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252628, assembly_id= 103484, from= IP7; - LEIR.11L7.B1:LEIR, at= -425.67735+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52997946, assembly_id= 103485, from= IP7; - MCO.11L7.B1:MCO, at= -418.475+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252630, assembly_id= 103486, from= IP7; - MCD.11L7.B1:MCD, at= -418.4735+(-8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252631, assembly_id= 103486, from= IP7; - MB.B11L7.B1:MB, at= -410.989+(-7.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841950, assembly_id= 103486, from= IP7; - MCS.B11L7.B1:MCS, at= -403.565+(-7-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247441, assembly_id= 103486, from= IP7; - MB.A11L7.B1:MB, at= -395.329+(-6.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841974, assembly_id= 103487, from= IP7; - MCS.A11L7.B1:MCS, at= -387.905+(-6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247444, assembly_id= 103487, from= IP7; - BPM.10L7.B1:BPM, at= -387.026+(-6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247446, assembly_id= 103488, from= IP7; -MQ.10L7.B1:MQ, at= -384.479+(-6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308644, assembly_id= 103488, from= IP7; - MQTLI.10L7.B1:MQTLI, at= -382.11+(-6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307332, assembly_id= 103488, from= IP7; - MCBCH.10L7.B1:MCBCH, at= -380.82+(-6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252634, assembly_id= 103488, from= IP7; - MCO.10L7.B1:MCO, at= -379.41+(-6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252636, assembly_id= 103489, from= IP7; - MCD.10L7.B1:MCD, at= -379.4085+(-6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252637, assembly_id= 103489, from= IP7; - MB.B10L7.B1:MB, at= -371.924+(-5.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52841998, assembly_id= 103489, from= IP7; - MCS.B10L7.B1:MCS, at= -364.5+(-5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247454, assembly_id= 103489, from= IP7; - MB.A10L7.B1:MB, at= -356.264+(-4.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842022, assembly_id= 103490, from= IP7; - MCS.A10L7.B1:MCS, at= -348.84+(-4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247457, assembly_id= 103490, from= IP7; - BPM.9L7.B1:BPM, at= -347.96+(-4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247459, assembly_id= 103491, from= IP7; -MQ.9L7.B1:MQ, at= -345.413+(-4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307949, assembly_id= 103491, from= IP7; - MQTLI.B9L7.B1:MQTLI, at= -343.044+(-4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307159, assembly_id= 103491, from= IP7; - MQTLI.A9L7.B1:MQTLI, at= -341.589+(-4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307152, assembly_id= 103491, from= IP7; - MCBCV.9L7.B1:MCBCV, at= -340.299+(-4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252640, assembly_id= 103491, from= IP7; - MCO.9L7.B1:MCO, at= -338.945+(-4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252642, assembly_id= 103492, from= IP7; - MCD.9L7.B1:MCD, at= -338.9435+(-4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252643, assembly_id= 103492, from= IP7; - MB.B9L7.B1:MB, at= -331.459+(-3.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842046, assembly_id= 103492, from= IP7; - MCS.B9L7.B1:MCS, at= -324.035+(-3-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247468, assembly_id= 103492, from= IP7; - MB.A9L7.B1:MB, at= -315.799+(-2.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842070, assembly_id= 103493, from= IP7; - MCS.A9L7.B1:MCS, at= -308.375+(-2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247471, assembly_id= 103493, from= IP7; - BPM.8L7.B1:BPM, at= -307.496+(-2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247473, assembly_id= 103494, from= IP7; -MQ.8L7.B1:MQ, at= -304.949+(-2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307941, assembly_id= 103494, from= IP7; - MQTLI.8L7.B1:MQTLI, at= -302.58+(-2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307144, assembly_id= 103494, from= IP7; - MCBCH.8L7.B1:MCBCH, at= -301.29+(-2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252646, assembly_id= 103494, from= IP7; - MCO.8L7.B1:MCO, at= -299.88+(-2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252648, assembly_id= 103495, from= IP7; - MCD.8L7.B1:MCD, at= -299.8785+(-2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252649, assembly_id= 103495, from= IP7; - MB.B8L7.B1:MB, at= -292.394+(-1.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842094, assembly_id= 103495, from= IP7; - MCS.B8L7.B1:MCS, at= -284.97+(-1-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247481, assembly_id= 103495, from= IP7; - MB.A8L7.B1:MB, at= -276.734+(-.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849702, assembly_id= 103496, from= IP7; - MCS.A8L7.B1:MCS, at= -269.31+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 357325, assembly_id= 103496, from= IP7; -E.DS.L7.B1:OMK, at= -268.904+(0-IP7OFS.B1)*DS, slot_id= 100932, from= IP7; - BPM.7L7.B1:BPM, at= -268.431+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247486, assembly_id= 103497, from= IP7; -MQ.7L7.B1:MQ, at= -265.884+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307934, assembly_id= 103497, from= IP7; - MQTLI.7L7.B1:MQTLI, at= -263.515+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307370, assembly_id= 103497, from= IP7; - MCBCV.7L7.B1:MCBCV, at= -262.225+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252652, assembly_id= 103497, from= IP7; - DFBAM.7L7.B1:DFBAM, at= -260.0715+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52996827, assembly_id= 104688, from= IP7; - BPM.6L7.B1:BPM, at= -233.613+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378023, assembly_id= 103498, from= IP7; - MQTLH.F6L7.B1:MQTLH, at= -232.243+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307325, assembly_id= 103498, from= IP7; - MQTLH.E6L7.B1:MQTLH, at= -230.788+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307317, assembly_id= 103498, from= IP7; - MQTLH.D6L7.B1:MQTLH, at= -229.333+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307310, assembly_id= 103498, from= IP7; - MQTLH.C6L7.B1:MQTLH, at= -227.878+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307302, assembly_id= 103498, from= IP7; - MQTLH.B6L7.B1:MQTLH, at= -226.422+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307295, assembly_id= 103498, from= IP7; - MQTLH.A6L7.B1:MQTLH, at= -224.966+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307287, assembly_id= 103498, from= IP7; - MCBCH.6L7.B1:MCBCH, at= -223.675+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252655, assembly_id= 103498, from= IP7; - BPMWC.6L7.B1:BPMWC, at= -221.5105+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 181644, from= IP7; - MBW.D6L7.B1:MBW, at= -214.413+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820086, from= IP7; - MBW.C6L7.B1:MBW, at= -210.178+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820110, from= IP7; - BPTUH.D6L7.B1:BPTUH, at= -205.6635+(0-IP7OFS.B1)*DS, mech_sep= 0.1990, slot_id= 50605666, assembly_id= 103500, from= IP7; - BPTUV.D6L7.B1:BPTUV, at= -205.573+(0-IP7OFS.B1)*DS, mech_sep= 0.1991, slot_id= 50605668, assembly_id= 103500, from= IP7; - TCP.D6L7.B1:TCPPM, at= -204.978+(0-IP7OFS.B1)*DS, mech_sep= 0.1996, slot_id= 103500, from= IP7; - BPTDV.D6L7.B1:BPTDV, at= -204.383+(0-IP7OFS.B1)*DS, mech_sep= 0.2000, slot_id= 50605664, assembly_id= 103500, from= IP7; - BPTUV.C6L7.B1:BPTUV, at= -203.6635+(0-IP7OFS.B1)*DS, mech_sep= 0.2004, slot_id= 50605659, assembly_id= 103501, from= IP7; - BPTUH.C6L7.B1:BPTUH, at= -203.573+(0-IP7OFS.B1)*DS, mech_sep= 0.2005, slot_id= 40084941, assembly_id= 103501, from= IP7; - TCP.C6L7.B1:TCPPM, at= -202.978+(0-IP7OFS.B1)*DS, mech_sep= 0.2010, slot_id= 103501, from= IP7; - BPTDH.C6L7.B1:BPTDH, at= -202.383+(0-IP7OFS.B1)*DS, mech_sep= 0.2014, slot_id= 40084939, assembly_id= 103501, from= IP7; - TCP.B6L7.B1:TCP, at= -200.978+(0-IP7OFS.B1)*DS, mech_sep= 0.2026, slot_id= 103502, from= IP7; - TCAPA.6L7.B1:TCAPA019, at= -177.9735+(0-IP7OFS.B1)*DS, mech_sep= 0.2220, slot_id= 820100, from= IP7; - MBW.B6L7.B1:MBW, at= -175.0235+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52820134, from= IP7; - TCAPB.6L7.B1:TCAPB, at= -172.4885+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 820112, from= IP7; - MBW.A6L7.B1:MBW, at= -170.0885+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52820158, from= IP7; - TCSG.A6L7.B1:TCSG, at= -161.4835+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 103507, from= IP7; - TCPCV.A6L7.B1:TCPCV, at= -150.5385+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 10402980, from= IP7; - TCAPC.6L7.B1:TCAPC, at= -145.161+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 820154, from= IP7; - BPMWE.5L7.B1:BPMWE007, at= -144.4565+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 297897, from= IP7; - TCAPM.A5L7.B1:TCAPM, at= -142.316+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 53020540, assembly_id= 51085483, from= IP7; - MQWA.D5L7.B1:MQWA, at= -138.566+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241770, from= IP7; - MQWA.C5L7.B1:MQWA, at= -134.766+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241771, from= IP7; - MQWA.F5L7.B1:MQWA, at= -130.966+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52778395, from= IP7; - MQWA.B5L7.B1:MQWA, at= -127.166+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241772, from= IP7; - MQWA.A5L7.B1:MQWA, at= -123.366+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241773, from= IP7; - BPMW.5L7.B1:BPMW_014, at= -121.2515+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 297889, from= IP7; - MCBWV.5L7.B1:MCBWV, at= -119.761+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 297888, from= IP7; - TCSG.B5L7.B1:TCSG, at= -102.256+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 281859, from= IP7; - TCSG.A5L7.B1:TCSG, at= -98.256+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 281861, from= IP7; - BPMWE.4L7.B1:BPMWE009, at= -86.1665+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 297885, from= IP7; - MQWA.E4L7.B1:MQWA, at= -84.076+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241775, from= IP7; - MQWA.D4L7.B1:MQWA, at= -80.276+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241776, from= IP7; - BPTUH.D4L7.B1:BPTUH, at= -77.6115+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52502345, from= IP7; - BPTUV.D4L7.B1:BPTUV, at= -77.521+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52502326, from= IP7; - TCSG.D4L7.B1:TCSPM, at= -76.926+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52431366, from= IP7; - BPTDV.D4L7.B1:BPTDV, at= -76.331+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52502335, from= IP7; - TCPCH.A4L7.B1:TCPCH, at= -74.6635+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 10402981, from= IP7; - MQWA.C4L7.B1:MQWA, at= -71.576+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241777, from= IP7; - MQWB.4L7.B1:MQWB, at= -67.776+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241774, from= IP7; - MQWA.B4L7.B1:MQWA, at= -63.976+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241778, from= IP7; - MQWA.A4L7.B1:MQWA, at= -60.176+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241779, from= IP7; - BPMW.4L7.B1:BPMW_013, at= -58.0615+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 297875, from= IP7; - MCBWH.4L7.B1:MCBWH, at= -56.521+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 297874, from= IP7; - TCSG.B4L7.B1:TCSG, at= -7+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 281867, from= IP7; - BPTUV.B4L7.B1:BPTUV, at= -5.6855+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 50331199, assembly_id= 52430718, from= IP7; - BPTUH.B4L7.B1:BPTUH, at= -5.595+(0-IP7OFS.B1)*DS, mech_sep= 0.4480, slot_id= 50331190, assembly_id= 52430718, from= IP7; - TCSPM.B4L7.B1:TCSPM, at= -5+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52430718, from= IP7; - BPTDH.B4L7.B1:BPTDH, at= -4.405+(0-IP7OFS.B1)*DS, mech_sep= 0.4480, slot_id= 50331208, assembly_id= 52430718, from= IP7; - TCSG.A4L7.B1:TCSG, at= -3+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 281869, from= IP7; -IP7:OMK, at= pIP7+IP7OFS.B1*DS; - TCSG.A4R7.B1:TCSG, at= 1+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 103518, from= IP7; - MCBWV.4R7.B1:MCBWV, at= 54.191+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 134665, from= IP7; - BPMW.4R7.B1:BPMW_015, at= 57.9855+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 182521, from= IP7; - MQWA.A4R7.B1:MQWA, at= 60.176+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241781, from= IP7; - MQWA.B4R7.B1:MQWA, at= 63.976+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241782, from= IP7; - MQWB.4R7.B1:MQWB, at= 67.776+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241780, from= IP7; - MQWA.C4R7.B1:MQWA, at= 71.576+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 2348356, from= IP7; - MQWA.D4R7.B1:MQWA, at= 80.276+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241783, from= IP7; - MQWA.E4R7.B1:MQWA, at= 84.076+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241784, from= IP7; - BPMWE.4R7.B1:BPMWE008, at= 86.0905+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 182522, from= IP7; - TCSG.B5R7.B1:TCSG, at= 92.256+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 281877, from= IP7; - TCSG.D5R7.B1:TCSG, at= 108.256+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 281885, from= IP7; - TCSG.E5R7.B1:TCSG, at= 112.256+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 103525, from= IP7; - BPTUT.E5R7.B1:BPTUT, at= 113.5705+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52650713, assembly_id= 52430780, from= IP7; - BPTUJ.E5R7.B1:BPTUJ, at= 113.661+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 50622398, assembly_id= 52430780, from= IP7; - TCSPM.E5R7.B1:TCSPM, at= 114.256+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52430780, from= IP7; - BPTDJ.E5R7.B1:BPTDJ, at= 114.851+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52505009, assembly_id= 52430780, from= IP7; - MCBWH.5R7.B1:MCBWH, at= 117.431+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 134673, from= IP7; - BPMW.5R7.B1:BPMW_010, at= 121.1755+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 182523, from= IP7; - MQWA.A5R7.B1:MQWA, at= 123.366+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241786, from= IP7; - MQWA.B5R7.B1:MQWA, at= 127.166+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241787, from= IP7; - MQWA.F5R7.B1:MQWA, at= 130.966+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52778539, from= IP7; - MQWA.C5R7.B1:MQWA, at= 134.766+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241788, from= IP7; - MQWA.D5R7.B1:MQWA, at= 138.566+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 241789, from= IP7; - BPMWE.5R7.B1:BPMWE003, at= 144.3805+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 182524, from= IP7; - TCSG.6R7.B1:TCSG, at= 146.861+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 281887, from= IP7; - BPTUV.6R7.B1:BPTUV, at= 148.1755+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 50331470, assembly_id= 52430911, from= IP7; - BPTUH.6R7.B1:BPTUH, at= 148.266+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 50331452, assembly_id= 52430911, from= IP7; - TCSPM.6R7.B1:TCSPM, at= 148.861+(0-IP7OFS.B1)*DS, mech_sep= 0, slot_id= 52430911, from= IP7; - BPTDH.6R7.B1:BPTDH, at= 149.456+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 50331461, assembly_id= 52430911, from= IP7; - TCLA.A6R7.B1:TCLA, at= 153.927+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 691005, from= IP7; - MBW.A6R7.B1:MBW, at= 170.0885+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52820182, from= IP7; - MBW.B6R7.B1:MBW, at= 175.0235+(0-IP7OFS.B1)*DS, mech_sep= 0.2240, slot_id= 52820206, from= IP7; - TCLA.B6R7.B1:TCLA, at= 184.801+(0-IP7OFS.B1)*DS, mech_sep= 0.2148, slot_id= 691006, from= IP7; - MBW.C6R7.B1:MBW, at= 210.178+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820230, from= IP7; - MBW.D6R7.B1:MBW, at= 214.413+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52820254, from= IP7; - TCLA.C6R7.B1:TCLA, at= 218.07+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 691007, from= IP7; - TCLA.D6R7.B1:TCLA, at= 220.07+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 691008, from= IP7; - BPMR.6R7.B1:BPMR, at= 223.596+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378033, assembly_id= 103537, from= IP7; - MQTLH.A6R7.B1:MQTLH, at= 224.966+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307291, assembly_id= 103537, from= IP7; - MQTLH.B6R7.B1:MQTLH, at= 226.421+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307298, assembly_id= 103537, from= IP7; - MQTLH.C6R7.B1:MQTLH, at= 227.876+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307306, assembly_id= 103537, from= IP7; - MQTLH.D6R7.B1:MQTLH, at= 229.331+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307313, assembly_id= 103537, from= IP7; - MQTLH.E6R7.B1:MQTLH, at= 230.787+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307321, assembly_id= 103537, from= IP7; - MQTLH.F6R7.B1:MQTLH, at= 232.243+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307328, assembly_id= 103537, from= IP7; - MCBCV.6R7.B1:MCBCV, at= 233.534+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252657, assembly_id= 103537, from= IP7; - TCLA.A7R7.B1:TCLA, at= 237.698+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 691009, from= IP7; - DFBAN.7R7.B1:DFBAN, at= 259.8215+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52996851, assembly_id= 104689, from= IP7; - BPM_A.7R7.B1:BPM_A, at= 261.632+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378035, assembly_id= 103538, from= IP7; -MQ.7R7.B1:MQ, at= 264.179+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307938, assembly_id= 103538, from= IP7; - MQTLI.7R7.B1:MQTLI, at= 266.548+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348428, assembly_id= 103538, from= IP7; - MCBCH.7R7.B1:MCBCH, at= 267.838+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252658, assembly_id= 103538, from= IP7; -S.DS.R7.B1:OMK, at= 268.904+(0-IP7OFS.B1)*DS, slot_id= 100932, from= IP7; - MCO.8R7.B1:MCO_UNPLUGGED, at= 269.248+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252660, assembly_id= 103539, from= IP7; - MCD.8R7.B1:MCD, at= 269.2495+(0-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252661, assembly_id= 103539, from= IP7; - MB.A8R7.B1:MB, at= 276.734+(.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842118, assembly_id= 103539, from= IP7; - MCS.A8R7.B1:MCS, at= 284.158+(1-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247575, assembly_id= 103539, from= IP7; - MB.B8R7.B1:MB, at= 292.394+(1.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842142, assembly_id= 103540, from= IP7; - MCS.B8R7.B1:MCS, at= 299.818+(2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247578, assembly_id= 103540, from= IP7; - BPM.8R7.B1:BPM, at= 300.697+(2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247580, assembly_id= 103541, from= IP7; -MQ.8R7.B1:MQ, at= 303.244+(2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307945, assembly_id= 103541, from= IP7; - MQTLI.8R7.B1:MQTLI, at= 305.613+(2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307148, assembly_id= 103541, from= IP7; - MCBCV.8R7.B1:MCBCV, at= 306.903+(2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252664, assembly_id= 103541, from= IP7; - MCO.9R7.B1:MCO_UNPLUGGED, at= 308.313+(2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252666, assembly_id= 103542, from= IP7; - MCD.9R7.B1:MCD, at= 308.3145+(2-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252667, assembly_id= 103542, from= IP7; - MB.A9R7.B1:MB, at= 315.799+(2.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842166, assembly_id= 103542, from= IP7; - MCS.A9R7.B1:MCS, at= 323.223+(3-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247588, assembly_id= 103542, from= IP7; - MB.B9R7.B1:MB, at= 331.459+(3.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842190, assembly_id= 103543, from= IP7; - MCS.B9R7.B1:MCS, at= 338.883+(4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247591, assembly_id= 103543, from= IP7; - BPM.9R7.B1:BPM, at= 339.763+(4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247593, assembly_id= 103544, from= IP7; -MQ.9R7.B1:MQ, at= 342.31+(4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307953, assembly_id= 103544, from= IP7; - MQTLI.A9R7.B1:MQTLI, at= 344.679+(4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307155, assembly_id= 103544, from= IP7; - MQTLI.B9R7.B1:MQTLI, at= 346.134+(4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307163, assembly_id= 103544, from= IP7; - MCBCH.9R7.B1:MCBCH, at= 347.424+(4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252670, assembly_id= 103544, from= IP7; - MCO.10R7.B1:MCO_UNPLUGGED, at= 348.778+(4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252672, assembly_id= 103545, from= IP7; - MCD.10R7.B1:MCD, at= 348.7795+(4-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252673, assembly_id= 103545, from= IP7; - MB.A10R7.B1:MB, at= 356.264+(4.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842214, assembly_id= 103545, from= IP7; - MCS.A10R7.B1:MCS, at= 363.688+(5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247602, assembly_id= 103545, from= IP7; - MB.B10R7.B1:MB, at= 371.924+(5.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842238, assembly_id= 103546, from= IP7; - MCS.B10R7.B1:MCS, at= 379.348+(6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247605, assembly_id= 103546, from= IP7; - BPM.10R7.B1:BPM, at= 380.227+(6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247607, assembly_id= 103547, from= IP7; -MQ.10R7.B1:MQ, at= 382.774+(6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308648, assembly_id= 103547, from= IP7; - MQTLI.10R7.B1:MQTLI, at= 385.143+(6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307336, assembly_id= 103547, from= IP7; - MCBCV.10R7.B1:MCBCV, at= 386.433+(6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252676, assembly_id= 103547, from= IP7; - MCO.11R7.B1:MCO_UNPLUGGED, at= 387.843+(6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252678, assembly_id= 103548, from= IP7; - MCD.11R7.B1:MCD, at= 387.8445+(6-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252679, assembly_id= 103548, from= IP7; - MB.A11R7.B1:MB, at= 395.329+(6.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842262, assembly_id= 103548, from= IP7; - MCS.A11R7.B1:MCS, at= 402.753+(7-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247615, assembly_id= 103548, from= IP7; - MB.B11R7.B1:MB, at= 410.989+(7.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842286, assembly_id= 103549, from= IP7; - MCS.B11R7.B1:MCS, at= 418.413+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247618, assembly_id= 103549, from= IP7; - LEDR.11R7.B1:LEDR, at= 425.67735+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52997778, assembly_id= 103550, from= IP7; - BPM.11R7.B1:BPM, at= 433.0087+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247620, assembly_id= 103551, from= IP7; -MQ.11R7.B1:MQ, at= 435.5557+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308676, assembly_id= 103551, from= IP7; - MQTLI.11R7.B1:MQTLI, at= 437.9247+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307364, assembly_id= 103551, from= IP7; - MS.11R7.B1:MS, at= 438.9367+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252682, assembly_id= 103551, from= IP7; - MCBH.11R7.B1:MCBH, at= 439.5297+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252684, assembly_id= 103551, from= IP7; -S.ARC.78.B1:OMK, at= 440.2807+(8-IP7OFS.B1)*DS, slot_id= 100932, from= IP7; - MCO.A12R7.B1:MCO_UNPLUGGED, at= 440.6247+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252686, assembly_id= 103552, from= IP7; - MCD.A12R7.B1:MCD, at= 440.6262+(8-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252687, assembly_id= 103552, from= IP7; - MB.A12R7.B1:MB, at= 448.1107+(8.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842310, assembly_id= 103552, from= IP7; - MCS.A12R7.B1:MCS, at= 455.5347+(9-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247628, assembly_id= 103552, from= IP7; - MB.B12R7.B1:MB, at= 463.7707+(9.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842334, assembly_id= 103553, from= IP7; - MCS.B12R7.B1:MCS, at= 471.1947+(10-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247631, assembly_id= 103553, from= IP7; - MCO.B12R7.B1:MCO_UNPLUGGED, at= 471.9447+(10-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252690, assembly_id= 103554, from= IP7; - MCD.B12R7.B1:MCD, at= 471.9462+(10-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252691, assembly_id= 103554, from= IP7; - MB.C12R7.B1:MB, at= 479.4307+(10.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842358, assembly_id= 103554, from= IP7; - MCS.C12R7.B1:MCS, at= 486.8547+(11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247636, assembly_id= 103554, from= IP7; - BPM.12R7.B1:BPM, at= 487.7337+(11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247638, assembly_id= 103555, from= IP7; - MQT.12R7.B1:MQT, at= 488.4877+(11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307711, assembly_id= 103555, from= IP7; -MQ.12R7.B1:MQ, at= 490.4957+(11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308469, assembly_id= 103555, from= IP7; - MS.12R7.B1:MS, at= 492.3907+(11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252694, assembly_id= 103555, from= IP7; - MCBV.12R7.B1:MCBV, at= 492.9837+(11-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252696, assembly_id= 103555, from= IP7; - MB.A13R7.B1:MB, at= 501.5607+(11.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842382, assembly_id= 103556, from= IP7; - MCS.A13R7.B1:MCS, at= 508.9847+(12-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247644, assembly_id= 103556, from= IP7; - MCO.13R7.B1:MCO_UNPLUGGED, at= 509.7347+(12-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252698, assembly_id= 103557, from= IP7; - MCD.13R7.B1:MCD, at= 509.7362+(12-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252699, assembly_id= 103557, from= IP7; - MB.B13R7.B1:MB, at= 517.2207+(12.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842406, assembly_id= 103557, from= IP7; - MCS.B13R7.B1:MCS, at= 524.6447+(13-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247649, assembly_id= 103557, from= IP7; - MB.C13R7.B1:MB, at= 532.8807+(13.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842430, assembly_id= 103558, from= IP7; - MCS.C13R7.B1:MCS, at= 540.3047+(14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247652, assembly_id= 103558, from= IP7; - BPM.13R7.B1:BPM, at= 541.1837+(14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247654, assembly_id= 103559, from= IP7; - MQT.13R7.B1:MQT, at= 541.9377+(14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307503, assembly_id= 103559, from= IP7; -MQ.13R7.B1:MQ, at= 543.9457+(14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308499, assembly_id= 103559, from= IP7; - MS.13R7.B1:MS, at= 545.8407+(14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252702, assembly_id= 103559, from= IP7; - MCBH.13R7.B1:MCBH, at= 546.4337+(14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252704, assembly_id= 103559, from= IP7; -E.DS.R7.B1:OMK, at= 547.1807+(14-IP7OFS.B1)*DS, slot_id= 100932, from= IP7; - MCO.A14R7.B1:MCO_UNPLUGGED, at= 547.5247+(14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252706, assembly_id= 103560, from= IP7; - MCD.A14R7.B1:MCD, at= 547.5262+(14-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252707, assembly_id= 103560, from= IP7; - MB.A14R7.B1:MB, at= 555.0107+(14.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842454, assembly_id= 103560, from= IP7; - MCS.A14R7.B1:MCS, at= 562.4347+(15-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247662, assembly_id= 103560, from= IP7; - MB.B14R7.B1:MB, at= 570.6707+(15.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842478, assembly_id= 103561, from= IP7; - MCS.B14R7.B1:MCS, at= 578.0947+(16-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247665, assembly_id= 103561, from= IP7; - MCO.B14R7.B1:MCO_UNPLUGGED, at= 578.8447+(16-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252710, assembly_id= 103562, from= IP7; - MCD.B14R7.B1:MCD, at= 578.8462+(16-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252711, assembly_id= 103562, from= IP7; - MB.C14R7.B1:MB, at= 586.3307+(16.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842502, assembly_id= 103562, from= IP7; - MCS.C14R7.B1:MCS, at= 593.7547+(17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247670, assembly_id= 103562, from= IP7; - BPM.14R7.B1:BPM, at= 594.6337+(17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247672, assembly_id= 103563, from= IP7; - MQT.14R7.B1:MQT, at= 595.3877+(17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307535, assembly_id= 103563, from= IP7; -MQ.14R7.B1:MQ, at= 597.3957+(17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308528, assembly_id= 103563, from= IP7; - MS.14R7.B1:MS, at= 599.2907+(17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252714, assembly_id= 103563, from= IP7; - MCBV.14R7.B1:MCBV, at= 599.8837+(17-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252716, assembly_id= 103563, from= IP7; - MB.A15R7.B1:MB, at= 608.4607+(17.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842526, assembly_id= 103564, from= IP7; - MCS.A15R7.B1:MCS, at= 615.8847+(18-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247678, assembly_id= 103564, from= IP7; - MCO.15R7.B1:MCO_UNPLUGGED, at= 616.6347+(18-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252718, assembly_id= 103565, from= IP7; - MCD.15R7.B1:MCD, at= 616.6362+(18-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252719, assembly_id= 103565, from= IP7; - MB.B15R7.B1:MB, at= 624.1207+(18.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842550, assembly_id= 103565, from= IP7; - MCS.B15R7.B1:MCS, at= 631.5447+(19-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247683, assembly_id= 103565, from= IP7; - MB.C15R7.B1:MB, at= 639.7807+(19.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842574, assembly_id= 103566, from= IP7; - MCS.C15R7.B1:MCS, at= 647.2047+(20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247686, assembly_id= 103566, from= IP7; - BPM.15R7.B1:BPM, at= 648.0837+(20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247688, assembly_id= 103567, from= IP7; - MQT.15R7.B1:MQT, at= 648.8377+(20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307567, assembly_id= 103567, from= IP7; -MQ.15R7.B1:MQ, at= 650.8457+(20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308559, assembly_id= 103567, from= IP7; - MS.15R7.B1:MS, at= 652.7407+(20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252722, assembly_id= 103567, from= IP7; - MCBH.15R7.B1:MCBH, at= 653.3337+(20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252724, assembly_id= 103567, from= IP7; - MCO.A16R7.B1:MCO_UNPLUGGED, at= 654.4247+(20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252726, assembly_id= 103568, from= IP7; - MCD.A16R7.B1:MCD, at= 654.4262+(20-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252727, assembly_id= 103568, from= IP7; - MB.A16R7.B1:MB, at= 661.9107+(20.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842598, assembly_id= 103568, from= IP7; - MCS.A16R7.B1:MCS, at= 669.3347+(21-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247696, assembly_id= 103568, from= IP7; - MB.B16R7.B1:MB, at= 677.5707+(21.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842622, assembly_id= 103569, from= IP7; - MCS.B16R7.B1:MCS, at= 684.9947+(22-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247699, assembly_id= 103569, from= IP7; - MCO.B16R7.B1:MCO_UNPLUGGED, at= 685.7447+(22-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252730, assembly_id= 103570, from= IP7; - MCD.B16R7.B1:MCD, at= 685.7462+(22-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252731, assembly_id= 103570, from= IP7; - MB.C16R7.B1:MB, at= 693.2307+(22.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842646, assembly_id= 103570, from= IP7; - MCS.C16R7.B1:MCS, at= 700.6547+(23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247704, assembly_id= 103570, from= IP7; - BPM.16R7.B1:BPM, at= 701.5337+(23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247706, assembly_id= 103571, from= IP7; - MQT.16R7.B1:MQT, at= 702.2877+(23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307597, assembly_id= 103571, from= IP7; -MQ.16R7.B1:MQ, at= 704.2957+(23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308352, assembly_id= 103571, from= IP7; - MS.16R7.B1:MS, at= 706.1907+(23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252734, assembly_id= 103571, from= IP7; - MCBV.16R7.B1:MCBV, at= 706.7837+(23-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252736, assembly_id= 103571, from= IP7; - MB.A17R7.B1:MB, at= 715.3607+(23.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842670, assembly_id= 103572, from= IP7; - MCS.A17R7.B1:MCS, at= 722.7847+(24-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247712, assembly_id= 103572, from= IP7; - MCO.17R7.B1:MCO_UNPLUGGED, at= 723.5347+(24-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252738, assembly_id= 103573, from= IP7; - MCD.17R7.B1:MCD, at= 723.5362+(24-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252739, assembly_id= 103573, from= IP7; - MB.B17R7.B1:MB, at= 731.0207+(24.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842694, assembly_id= 103573, from= IP7; - MCS.B17R7.B1:MCS, at= 738.4447+(25-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247717, assembly_id= 103573, from= IP7; - MB.C17R7.B1:MB, at= 746.6807+(25.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842718, assembly_id= 103574, from= IP7; - MCS.C17R7.B1:MCS, at= 754.1047+(26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247720, assembly_id= 103574, from= IP7; - BPM.17R7.B1:BPM, at= 754.9837+(26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247722, assembly_id= 103575, from= IP7; - MQT.17R7.B1:MQT, at= 755.7377+(26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307391, assembly_id= 103575, from= IP7; -MQ.17R7.B1:MQ, at= 757.7457+(26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308381, assembly_id= 103575, from= IP7; - MS.17R7.B1:MS, at= 759.6407+(26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252742, assembly_id= 103575, from= IP7; - MCBH.17R7.B1:MCBH, at= 760.2337+(26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252744, assembly_id= 103575, from= IP7; - MCO.A18R7.B1:MCO_UNPLUGGED, at= 761.3247+(26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252746, assembly_id= 103576, from= IP7; - MCD.A18R7.B1:MCD, at= 761.3262+(26-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252747, assembly_id= 103576, from= IP7; - MB.A18R7.B1:MB, at= 768.8107+(26.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842742, assembly_id= 103576, from= IP7; - MCS.A18R7.B1:MCS, at= 776.2347+(27-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247730, assembly_id= 103576, from= IP7; - MB.B18R7.B1:MB, at= 784.4707+(27.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842766, assembly_id= 103577, from= IP7; - MCS.B18R7.B1:MCS, at= 791.8947+(28-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247733, assembly_id= 103577, from= IP7; - MCO.B18R7.B1:MCO_UNPLUGGED, at= 792.6447+(28-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252750, assembly_id= 103578, from= IP7; - MCD.B18R7.B1:MCD, at= 792.6462+(28-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252751, assembly_id= 103578, from= IP7; - MB.C18R7.B1:MB, at= 800.1307+(28.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842790, assembly_id= 103578, from= IP7; - MCS.C18R7.B1:MCS, at= 807.5547+(29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247738, assembly_id= 103578, from= IP7; - BPM.18R7.B1:BPM, at= 808.4337+(29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247740, assembly_id= 103579, from= IP7; - MQT.18R7.B1:MQT, at= 809.1877+(29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307423, assembly_id= 103579, from= IP7; -MQ.18R7.B1:MQ, at= 811.1957+(29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308412, assembly_id= 103579, from= IP7; - MS.18R7.B1:MS, at= 813.0907+(29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252754, assembly_id= 103579, from= IP7; - MCBV.18R7.B1:MCBV, at= 813.6837+(29-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252756, assembly_id= 103579, from= IP7; - MB.A19R7.B1:MB, at= 822.2607+(29.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842814, assembly_id= 103580, from= IP7; - MCS.A19R7.B1:MCS, at= 829.6847+(30-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247746, assembly_id= 103580, from= IP7; - MCO.19R7.B1:MCO_UNPLUGGED, at= 830.4347+(30-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252758, assembly_id= 103581, from= IP7; - MCD.19R7.B1:MCD, at= 830.4362+(30-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252759, assembly_id= 103581, from= IP7; - MB.B19R7.B1:MB, at= 837.9207+(30.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842838, assembly_id= 103581, from= IP7; - MCS.B19R7.B1:MCS, at= 845.3447+(31-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247751, assembly_id= 103581, from= IP7; - MB.C19R7.B1:MB, at= 853.5807+(31.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842862, assembly_id= 103582, from= IP7; - MCS.C19R7.B1:MCS, at= 861.0047+(32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247754, assembly_id= 103582, from= IP7; - BPM.19R7.B1:BPM, at= 861.8837+(32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247756, assembly_id= 103583, from= IP7; - MQT.19R7.B1:MQT, at= 862.6377+(32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307453, assembly_id= 103583, from= IP7; -MQ.19R7.B1:MQ, at= 864.6457+(32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308444, assembly_id= 103583, from= IP7; - MS.19R7.B1:MS, at= 866.5407+(32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252762, assembly_id= 103583, from= IP7; - MCBH.19R7.B1:MCBH, at= 867.1337+(32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252764, assembly_id= 103583, from= IP7; - MCO.A20R7.B1:MCO_UNPLUGGED, at= 868.2247+(32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252766, assembly_id= 103584, from= IP7; - MCD.A20R7.B1:MCD, at= 868.2262+(32-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252767, assembly_id= 103584, from= IP7; - MB.A20R7.B1:MB, at= 875.7107+(32.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842886, assembly_id= 103584, from= IP7; - MCS.A20R7.B1:MCS, at= 883.1347+(33-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247764, assembly_id= 103584, from= IP7; - MB.B20R7.B1:MB, at= 891.3707+(33.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842910, assembly_id= 103585, from= IP7; - MCS.B20R7.B1:MCS, at= 898.7947+(34-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247767, assembly_id= 103585, from= IP7; - MCO.B20R7.B1:MCO_UNPLUGGED, at= 899.5447+(34-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252770, assembly_id= 103586, from= IP7; - MCD.B20R7.B1:MCD, at= 899.5462+(34-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252771, assembly_id= 103586, from= IP7; - MB.C20R7.B1:MB, at= 907.0307+(34.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842934, assembly_id= 103586, from= IP7; - MCS.C20R7.B1:MCS, at= 914.4547+(35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247772, assembly_id= 103586, from= IP7; - BPM.20R7.B1:BPM, at= 915.3337+(35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247774, assembly_id= 103587, from= IP7; - MQT.20R7.B1:MQT, at= 916.0877+(35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307483, assembly_id= 103587, from= IP7; -MQ.20R7.B1:MQ, at= 918.0957+(35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308234, assembly_id= 103587, from= IP7; - MS.20R7.B1:MS, at= 919.9907+(35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252774, assembly_id= 103587, from= IP7; - MCBV.20R7.B1:MCBV, at= 920.5837+(35-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252776, assembly_id= 103587, from= IP7; - MB.A21R7.B1:MB, at= 929.1607+(35.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842958, assembly_id= 103588, from= IP7; - MCS.A21R7.B1:MCS, at= 936.5847+(36-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247780, assembly_id= 103588, from= IP7; - MCO.21R7.B1:MCO_UNPLUGGED, at= 937.3347+(36-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252778, assembly_id= 103589, from= IP7; - MCD.21R7.B1:MCD, at= 937.3362+(36-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252779, assembly_id= 103589, from= IP7; - MB.B21R7.B1:MB, at= 944.8207+(36.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52842982, assembly_id= 103589, from= IP7; - MCS.B21R7.B1:MCS, at= 952.2447+(37-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247785, assembly_id= 103589, from= IP7; - MB.C21R7.B1:MB, at= 960.4807+(37.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843006, assembly_id= 103590, from= IP7; - MCS.C21R7.B1:MCS, at= 967.9047+(38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247788, assembly_id= 103590, from= IP7; - BPM.21R7.B1:BPM, at= 968.7837+(38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247790, assembly_id= 103591, from= IP7; - MQT.21R7.B1:MQT, at= 969.5377+(38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307281, assembly_id= 103591, from= IP7; -MQ.21R7.B1:MQ, at= 971.5457+(38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308265, assembly_id= 103591, from= IP7; - MS.21R7.B1:MS, at= 973.4407+(38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252782, assembly_id= 103591, from= IP7; - MCBH.21R7.B1:MCBH, at= 974.0337+(38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252784, assembly_id= 103591, from= IP7; - MCO.A22R7.B1:MCO_UNPLUGGED, at= 975.1247+(38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252786, assembly_id= 103592, from= IP7; - MCD.A22R7.B1:MCD, at= 975.1262+(38-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252787, assembly_id= 103592, from= IP7; - MB.A22R7.B1:MB, at= 982.6107+(38.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843030, assembly_id= 103592, from= IP7; - MCS.A22R7.B1:MCS, at= 990.0347+(39-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247798, assembly_id= 103592, from= IP7; - MB.B22R7.B1:MB, at= 998.2707+(39.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843054, assembly_id= 103593, from= IP7; - MCS.B22R7.B1:MCS, at= 1005.6947+(40-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247801, assembly_id= 103593, from= IP7; - MCO.B22R7.B1:MCO_UNPLUGGED, at= 1006.4447+(40-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252790, assembly_id= 103594, from= IP7; - MCD.B22R7.B1:MCD, at= 1006.4462+(40-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252791, assembly_id= 103594, from= IP7; - MB.C22R7.B1:MB, at= 1013.9307+(40.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843078, assembly_id= 103594, from= IP7; - MCS.C22R7.B1:MCS, at= 1021.3547+(41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247806, assembly_id= 103594, from= IP7; - BPM.22R7.B1:BPM, at= 1022.2337+(41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247808, assembly_id= 103595, from= IP7; - MO.22R7.B1:MO, at= 1022.9847+(41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348503, assembly_id= 103595, from= IP7; -MQ.22R7.B1:MQ, at= 1024.9957+(41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308297, assembly_id= 103595, from= IP7; - MS.22R7.B1:MS, at= 1026.8907+(41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252794, assembly_id= 103595, from= IP7; - MCBV.22R7.B1:MCBV, at= 1027.4837+(41-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252796, assembly_id= 103595, from= IP7; - MB.A23R7.B1:MB, at= 1036.0607+(41.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843102, assembly_id= 103596, from= IP7; - MCS.A23R7.B1:MCS, at= 1043.4847+(42-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247814, assembly_id= 103596, from= IP7; - MCO.23R7.B1:MCO_UNPLUGGED, at= 1044.2347+(42-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252798, assembly_id= 103597, from= IP7; - MCD.23R7.B1:MCD, at= 1044.2362+(42-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252799, assembly_id= 103597, from= IP7; - MB.B23R7.B1:MB, at= 1051.7207+(42.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843126, assembly_id= 103597, from= IP7; - MCS.B23R7.B1:MCS, at= 1059.1447+(43-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247819, assembly_id= 103597, from= IP7; - MB.C23R7.B1:MB, at= 1067.3807+(43.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843150, assembly_id= 103598, from= IP7; - MCS.C23R7.B1:MCS, at= 1074.8047+(44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247822, assembly_id= 103598, from= IP7; - BPM.23R7.B1:BPM, at= 1075.6837+(44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247824, assembly_id= 103599, from= IP7; - MQS.23R7.B1:MQS, at= 1076.4377+(44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307647, assembly_id= 103599, from= IP7; -MQ.23R7.B1:MQ, at= 1078.4457+(44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308086, assembly_id= 103599, from= IP7; - MS.23R7.B1:MS, at= 1080.3407+(44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252802, assembly_id= 103599, from= IP7; - MCBH.23R7.B1:MCBH, at= 1080.9337+(44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252804, assembly_id= 103599, from= IP7; - MCO.A24R7.B1:MCO_UNPLUGGED, at= 1082.0247+(44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252806, assembly_id= 103600, from= IP7; - MCD.A24R7.B1:MCD, at= 1082.0262+(44-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252807, assembly_id= 103600, from= IP7; - MB.A24R7.B1:MB, at= 1089.5107+(44.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843174, assembly_id= 103600, from= IP7; - MCS.A24R7.B1:MCS, at= 1096.9347+(45-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247832, assembly_id= 103600, from= IP7; - MB.B24R7.B1:MB, at= 1105.1707+(45.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843198, assembly_id= 103601, from= IP7; - MCS.B24R7.B1:MCS, at= 1112.5947+(46-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247835, assembly_id= 103601, from= IP7; - MCO.B24R7.B1:MCO_UNPLUGGED, at= 1113.3447+(46-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252810, assembly_id= 103602, from= IP7; - MCD.B24R7.B1:MCD, at= 1113.3462+(46-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252811, assembly_id= 103602, from= IP7; - MB.C24R7.B1:MB, at= 1120.8307+(46.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843222, assembly_id= 103602, from= IP7; - MCS.C24R7.B1:MCS, at= 1128.2547+(47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247840, assembly_id= 103602, from= IP7; - BPM.24R7.B1:BPM, at= 1129.1337+(47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247842, assembly_id= 103603, from= IP7; - MO.24R7.B1:MO, at= 1129.8847+(47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308855, assembly_id= 103603, from= IP7; -MQ.24R7.B1:MQ, at= 1131.8957+(47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308118, assembly_id= 103603, from= IP7; - MS.24R7.B1:MS, at= 1133.7907+(47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252814, assembly_id= 103603, from= IP7; - MCBV.24R7.B1:MCBV, at= 1134.3837+(47-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252816, assembly_id= 103603, from= IP7; - MB.A25R7.B1:MB, at= 1142.9607+(47.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843246, assembly_id= 103604, from= IP7; - MCS.A25R7.B1:MCS, at= 1150.3847+(48-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247848, assembly_id= 103604, from= IP7; - MCO.25R7.B1:MCO_UNPLUGGED, at= 1151.1347+(48-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252818, assembly_id= 103605, from= IP7; - MCD.25R7.B1:MCD, at= 1151.1362+(48-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252819, assembly_id= 103605, from= IP7; - MB.B25R7.B1:MB, at= 1158.6207+(48.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843270, assembly_id= 103605, from= IP7; - MCS.B25R7.B1:MCS, at= 1166.0447+(49-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247853, assembly_id= 103605, from= IP7; - MB.C25R7.B1:MB, at= 1174.2807+(49.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843294, assembly_id= 103606, from= IP7; - MCS.C25R7.B1:MCS, at= 1181.7047+(50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247856, assembly_id= 103606, from= IP7; - BPM.25R7.B1:BPM, at= 1182.5837+(50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247858, assembly_id= 103607, from= IP7; - MO.25R7.B1:MO, at= 1183.3347+(50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308887, assembly_id= 103607, from= IP7; -MQ.25R7.B1:MQ, at= 1185.3457+(50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308150, assembly_id= 103607, from= IP7; - MS.25R7.B1:MS, at= 1187.2407+(50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252822, assembly_id= 103607, from= IP7; - MCBH.25R7.B1:MCBH, at= 1187.8337+(50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252824, assembly_id= 103607, from= IP7; - MCO.A26R7.B1:MCO_UNPLUGGED, at= 1188.9247+(50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252826, assembly_id= 103608, from= IP7; - MCD.A26R7.B1:MCD, at= 1188.9262+(50-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252827, assembly_id= 103608, from= IP7; - MB.A26R7.B1:MB, at= 1196.4107+(50.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843318, assembly_id= 103608, from= IP7; - MCS.A26R7.B1:MCS, at= 1203.8347+(51-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247866, assembly_id= 103608, from= IP7; - MB.B26R7.B1:MB, at= 1212.0707+(51.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843342, assembly_id= 103609, from= IP7; - MCS.B26R7.B1:MCS, at= 1219.4947+(52-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247869, assembly_id= 103609, from= IP7; - MCO.B26R7.B1:MCO_UNPLUGGED, at= 1220.2447+(52-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252830, assembly_id= 103610, from= IP7; - MCD.B26R7.B1:MCD, at= 1220.2462+(52-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252831, assembly_id= 103610, from= IP7; - MB.C26R7.B1:MB, at= 1227.7307+(52.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843366, assembly_id= 103610, from= IP7; - MCS.C26R7.B1:MCS, at= 1235.1547+(53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247874, assembly_id= 103610, from= IP7; - BPM.26R7.B1:BPM, at= 1236.0337+(53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247876, assembly_id= 103611, from= IP7; - MO.26R7.B1:MO, at= 1236.7847+(53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308918, assembly_id= 103611, from= IP7; -MQ.26R7.B1:MQ, at= 1238.7957+(53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308180, assembly_id= 103611, from= IP7; - MS.26R7.B1:MS, at= 1240.6907+(53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252834, assembly_id= 103611, from= IP7; - MCBV.26R7.B1:MCBV, at= 1241.2837+(53-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252836, assembly_id= 103611, from= IP7; - MB.A27R7.B1:MB, at= 1249.8607+(53.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843390, assembly_id= 103612, from= IP7; - MCS.A27R7.B1:MCS, at= 1257.2847+(54-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247882, assembly_id= 103612, from= IP7; - MCO.27R7.B1:MCO_UNPLUGGED, at= 1258.0347+(54-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252838, assembly_id= 103613, from= IP7; - MCD.27R7.B1:MCD, at= 1258.0362+(54-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252839, assembly_id= 103613, from= IP7; - MB.B27R7.B1:MB, at= 1265.5207+(54.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843414, assembly_id= 103613, from= IP7; - MCS.B27R7.B1:MCS, at= 1272.9447+(55-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247887, assembly_id= 103613, from= IP7; - MB.C27R7.B1:MB, at= 1281.1807+(55.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843438, assembly_id= 103614, from= IP7; - MCS.C27R7.B1:MCS, at= 1288.6047+(56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247890, assembly_id= 103614, from= IP7; - BPM.27R7.B1:BPM, at= 1289.4837+(56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247892, assembly_id= 103615, from= IP7; - MQS.27R7.B1:MQS, at= 1290.2377+(56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307679, assembly_id= 103615, from= IP7; -MQ.27R7.B1:MQ, at= 1292.2457+(56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307970, assembly_id= 103615, from= IP7; - MS.27R7.B1:MS, at= 1294.1407+(56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252842, assembly_id= 103615, from= IP7; - MCBH.27R7.B1:MCBH, at= 1294.7337+(56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252844, assembly_id= 103615, from= IP7; - MCO.A28R7.B1:MCO_UNPLUGGED, at= 1295.8247+(56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252846, assembly_id= 103616, from= IP7; - MCD.A28R7.B1:MCD, at= 1295.8262+(56-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252847, assembly_id= 103616, from= IP7; - MB.A28R7.B1:MB, at= 1303.3107+(56.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843462, assembly_id= 103616, from= IP7; - MCS.A28R7.B1:MCS, at= 1310.7347+(57-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247900, assembly_id= 103616, from= IP7; - MB.B28R7.B1:MB, at= 1318.9707+(57.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843486, assembly_id= 103617, from= IP7; - MCS.B28R7.B1:MCS, at= 1326.3947+(58-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247903, assembly_id= 103617, from= IP7; - MCO.B28R7.B1:MCO_UNPLUGGED, at= 1327.1447+(58-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252850, assembly_id= 103618, from= IP7; - MCD.B28R7.B1:MCD, at= 1327.1462+(58-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252851, assembly_id= 103618, from= IP7; - MB.C28R7.B1:MB, at= 1334.6307+(58.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843510, assembly_id= 103618, from= IP7; - MCS.C28R7.B1:MCS, at= 1342.0547+(59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247908, assembly_id= 103618, from= IP7; - BPM.28R7.B1:BPM, at= 1342.9337+(59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247910, assembly_id= 103619, from= IP7; - MO.28R7.B1:MO, at= 1343.6847+(59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308708, assembly_id= 103619, from= IP7; -MQ.28R7.B1:MQ, at= 1345.6957+(59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308002, assembly_id= 103619, from= IP7; - MS.28R7.B1:MS, at= 1347.5907+(59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252854, assembly_id= 103619, from= IP7; - MCBV.28R7.B1:MCBV, at= 1348.1837+(59-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252856, assembly_id= 103619, from= IP7; - MB.A29R7.B1:MB, at= 1356.7607+(59.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843534, assembly_id= 103620, from= IP7; - MCS.A29R7.B1:MCS, at= 1364.1847+(60-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247916, assembly_id= 103620, from= IP7; - MCO.29R7.B1:MCO_UNPLUGGED, at= 1364.9347+(60-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252858, assembly_id= 103621, from= IP7; - MCD.29R7.B1:MCD, at= 1364.9362+(60-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252859, assembly_id= 103621, from= IP7; - MB.B29R7.B1:MB, at= 1372.4207+(60.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843558, assembly_id= 103621, from= IP7; - MCS.B29R7.B1:MCS, at= 1379.8447+(61-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247921, assembly_id= 103621, from= IP7; - MB.C29R7.B1:MB, at= 1388.0807+(61.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843582, assembly_id= 103622, from= IP7; - MCS.C29R7.B1:MCS, at= 1395.5047+(62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247924, assembly_id= 103622, from= IP7; - BPM.29R7.B1:BPM, at= 1396.3837+(62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247926, assembly_id= 103623, from= IP7; - MO.29R7.B1:MO, at= 1397.1347+(62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308740, assembly_id= 103623, from= IP7; -MQ.29R7.B1:MQ, at= 1399.1457+(62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308032, assembly_id= 103623, from= IP7; - MSS.29R7.B1:MSS, at= 1401.0407+(62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252862, assembly_id= 103623, from= IP7; - MCBH.29R7.B1:MCBH, at= 1401.6337+(62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252864, assembly_id= 103623, from= IP7; - MCO.A30R7.B1:MCO_UNPLUGGED, at= 1402.7247+(62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252866, assembly_id= 103624, from= IP7; - MCD.A30R7.B1:MCD, at= 1402.7262+(62-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252867, assembly_id= 103624, from= IP7; - MB.A30R7.B1:MB, at= 1410.2107+(62.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843606, assembly_id= 103624, from= IP7; - MCS.A30R7.B1:MCS, at= 1417.6347+(63-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247934, assembly_id= 103624, from= IP7; - MB.B30R7.B1:MB, at= 1425.8707+(63.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843630, assembly_id= 103625, from= IP7; - MCS.B30R7.B1:MCS, at= 1433.2947+(64-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247937, assembly_id= 103625, from= IP7; - MCO.B30R7.B1:MCO_UNPLUGGED, at= 1434.0447+(64-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252870, assembly_id= 103626, from= IP7; - MCD.B30R7.B1:MCD, at= 1434.0462+(64-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252871, assembly_id= 103626, from= IP7; - MB.C30R7.B1:MB, at= 1441.5307+(64.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843654, assembly_id= 103626, from= IP7; - MCS.C30R7.B1:MCS, at= 1448.9547+(65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247942, assembly_id= 103626, from= IP7; - BPM.30R7.B1:BPM, at= 1449.8337+(65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247944, assembly_id= 103627, from= IP7; - MO.30R7.B1:MO, at= 1450.5847+(65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308771, assembly_id= 103627, from= IP7; -MQ.30R7.B1:MQ, at= 1452.5957+(65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308062, assembly_id= 103627, from= IP7; - MS.30R7.B1:MS, at= 1454.4907+(65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252874, assembly_id= 103627, from= IP7; - MCBV.30R7.B1:MCBV, at= 1455.0837+(65-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252876, assembly_id= 103627, from= IP7; - MB.A31R7.B1:MB, at= 1463.6607+(65.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843678, assembly_id= 103628, from= IP7; - MCS.A31R7.B1:MCS, at= 1471.0847+(66-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247950, assembly_id= 103628, from= IP7; - MCO.31R7.B1:MCO_UNPLUGGED, at= 1471.8347+(66-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252878, assembly_id= 103629, from= IP7; - MCD.31R7.B1:MCD, at= 1471.8362+(66-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252879, assembly_id= 103629, from= IP7; - MB.B31R7.B1:MB, at= 1479.3207+(66.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843702, assembly_id= 103629, from= IP7; - MCS.B31R7.B1:MCS, at= 1486.7447+(67-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247955, assembly_id= 103629, from= IP7; - MB.C31R7.B1:MB, at= 1494.9807+(67.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843726, assembly_id= 103630, from= IP7; - MCS.C31R7.B1:MCS, at= 1502.4047+(68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247958, assembly_id= 103630, from= IP7; - BPM.31R7.B1:BPM, at= 1503.2837+(68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247960, assembly_id= 103631, from= IP7; - MO.31R7.B1:MO, at= 1504.0347+(68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308800, assembly_id= 103631, from= IP7; -MQ.31R7.B1:MQ, at= 1506.0457+(68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307854, assembly_id= 103631, from= IP7; - MS.31R7.B1:MS, at= 1507.9407+(68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252882, assembly_id= 103631, from= IP7; - MCBH.31R7.B1:MCBH_UNPLUGGED, at= 1508.5337+(68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252884, assembly_id= 103631, from= IP7; -S.CELL.78.B1:OMK, at= 1509.2807+(68-IP7OFS.B1)*DS, slot_id= 100932, from= IP7; - MCO.A32R7.B1:MCO_UNPLUGGED, at= 1509.6247+(68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252886, assembly_id= 103632, from= IP7; - MCD.A32R7.B1:MCD, at= 1509.6262+(68-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252887, assembly_id= 103632, from= IP7; - MB.A32R7.B1:MB, at= 1517.1107+(68.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843750, assembly_id= 103632, from= IP7; - MCS.A32R7.B1:MCS, at= 1524.5347+(69-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247968, assembly_id= 103632, from= IP7; - MB.B32R7.B1:MB, at= 1532.7707+(69.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843774, assembly_id= 103633, from= IP7; - MCS.B32R7.B1:MCS, at= 1540.1947+(70-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247971, assembly_id= 103633, from= IP7; - MCO.B32R7.B1:MCO_UNPLUGGED, at= 1540.9447+(70-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252890, assembly_id= 103634, from= IP7; - MCD.B32R7.B1:MCD, at= 1540.9462+(70-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252891, assembly_id= 103634, from= IP7; - MB.C32R7.B1:MB, at= 1548.4307+(70.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843798, assembly_id= 103634, from= IP7; - MCS.C32R7.B1:MCS, at= 1555.8547+(71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247976, assembly_id= 103634, from= IP7; - BPM.32R7.B1:BPM, at= 1556.7337+(71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247978, assembly_id= 103635, from= IP7; - MO.32R7.B1:MO, at= 1557.4847+(71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308593, assembly_id= 103635, from= IP7; -MQ.32R7.B1:MQ, at= 1559.4957+(71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307884, assembly_id= 103635, from= IP7; - MS.32R7.B1:MS, at= 1561.3907+(71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252894, assembly_id= 103635, from= IP7; - MCBV.32R7.B1:MCBV, at= 1561.9837+(71-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252896, assembly_id= 103635, from= IP7; - MB.A33R7.B1:MB, at= 1570.5607+(71.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843822, assembly_id= 103636, from= IP7; - MCS.A33R7.B1:MCS, at= 1577.9847+(72-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247984, assembly_id= 103636, from= IP7; - MCO.33R7.B1:MCO_UNPLUGGED, at= 1578.7347+(72-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252898, assembly_id= 103637, from= IP7; - MCD.33R7.B1:MCD, at= 1578.7362+(72-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252899, assembly_id= 103637, from= IP7; - MB.B33R7.B1:MB, at= 1586.2207+(72.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843846, assembly_id= 103637, from= IP7; - MCS.B33R7.B1:MCS, at= 1593.6447+(73-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247989, assembly_id= 103637, from= IP7; - MB.C33R7.B1:MB, at= 1601.8807+(73.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843870, assembly_id= 103638, from= IP7; - MCS.C33R7.B1:MCS, at= 1609.3047+(74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247992, assembly_id= 103638, from= IP7; - BPM.33R7.B1:BPM, at= 1610.1837+(74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 247994, assembly_id= 103639, from= IP7; - MO.33R7.B1:MO, at= 1610.9347+(74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348492, assembly_id= 103639, from= IP7; -MQ.33R7.B1:MQ, at= 1612.9457+(74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348461, assembly_id= 103639, from= IP7; - MSS.33R7.B1:MSS, at= 1614.8407+(74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252902, assembly_id= 103639, from= IP7; - MCBH.33R7.B1:MCBH, at= 1615.4337+(74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252904, assembly_id= 103639, from= IP7; -E.CELL.78.B1:OMK, at= 1616.1807+(74-IP7OFS.B1)*DS, slot_id= 100932, from= IP7; - MCO.A34R7.B1:MCO_UNPLUGGED, at= 1616.5247+(74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252906, assembly_id= 103640, from= IP7; - MCD.A34R7.B1:MCD, at= 1616.5262+(74-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252907, assembly_id= 103640, from= IP7; - MB.A34R7.B1:MB, at= 1624.0107+(74.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843894, assembly_id= 103640, from= IP7; - MCS.A34R7.B1:MCS, at= 1631.4347+(75-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248002, assembly_id= 103640, from= IP7; - MB.B34R7.B1:MB, at= 1639.6707+(75.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843918, assembly_id= 103641, from= IP7; - MCS.B34R7.B1:MCS, at= 1647.0947+(76-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248005, assembly_id= 103641, from= IP7; - MCO.B34R7.B1:MCO_UNPLUGGED, at= 1647.8447+(76-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252910, assembly_id= 103642, from= IP7; - MCD.B34R7.B1:MCD, at= 1647.8462+(76-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252911, assembly_id= 103642, from= IP7; - MB.C34R7.B1:MB, at= 1655.3307+(76.5-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843942, assembly_id= 103642, from= IP7; - MCS.C34R7.B1:MCS, at= 1662.7547+(77-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248010, assembly_id= 103642, from= IP7; - BPM.34R7.B1:BPM, at= 1663.6337+(77-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248012, assembly_id= 103643, from= IP7; - MO.34R7.B1:MO, at= 1664.3847+(77-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308638, assembly_id= 103643, from= IP7; -MQ.34R7.B1:MQ, at= 1666.3957+(77-IP7OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307928, assembly_id= 103643, from= IP7; - MS.34L8.B1:MS, at= -1652.8497+(77-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252914, assembly_id= 103643, from= IP8; - MCBV.34L8.B1:MCBV, at= -1652.2567+(77-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252916, assembly_id= 103643, from= IP8; - MB.C34L8.B1:MB, at= -1643.6797+(77.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843966, assembly_id= 103644, from= IP8; - MCS.C34L8.B1:MCS, at= -1636.2557+(78-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248018, assembly_id= 103644, from= IP8; - MCO.34L8.B1:MCO_UNPLUGGED, at= -1635.5057+(78-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252918, assembly_id= 103645, from= IP8; - MCD.34L8.B1:MCD, at= -1635.5042+(78-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252919, assembly_id= 103645, from= IP8; - MB.B34L8.B1:MB, at= -1628.0197+(78.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52843990, assembly_id= 103645, from= IP8; - MCS.B34L8.B1:MCS, at= -1620.5957+(79-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248023, assembly_id= 103645, from= IP8; - MB.A34L8.B1:MB, at= -1612.3597+(79.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844014, assembly_id= 103646, from= IP8; - MCS.A34L8.B1:MCS, at= -1604.9357+(80-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248026, assembly_id= 103646, from= IP8; - BPM.33L8.B1:BPM, at= -1604.0567+(80-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248028, assembly_id= 103647, from= IP8; - MO.33L8.B1:MO, at= -1603.3057+(80-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348491, assembly_id= 103647, from= IP8; -MQ.33L8.B1:MQ, at= -1601.2947+(80-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348460, assembly_id= 103647, from= IP8; - MSS.33L8.B1:MSS, at= -1599.3997+(80-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252922, assembly_id= 103647, from= IP8; - MCBH.33L8.B1:MCBH, at= -1598.8067+(80-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252924, assembly_id= 103647, from= IP8; - MCO.B33L8.B1:MCO_UNPLUGGED, at= -1597.7157+(80-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252926, assembly_id= 103648, from= IP8; - MCD.B33L8.B1:MCD, at= -1597.7142+(80-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252927, assembly_id= 103648, from= IP8; - MB.C33L8.B1:MB, at= -1590.2297+(80.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844038, assembly_id= 103648, from= IP8; - MCS.C33L8.B1:MCS, at= -1582.8057+(81-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248036, assembly_id= 103648, from= IP8; - MB.B33L8.B1:MB, at= -1574.5697+(81.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844062, assembly_id= 103649, from= IP8; - MCS.B33L8.B1:MCS, at= -1567.1457+(82-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248039, assembly_id= 103649, from= IP8; - MCO.A33L8.B1:MCO_UNPLUGGED, at= -1566.3957+(82-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252930, assembly_id= 103650, from= IP8; - MCD.A33L8.B1:MCD, at= -1566.3942+(82-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252931, assembly_id= 103650, from= IP8; - MB.A33L8.B1:MB, at= -1558.9097+(82.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844086, assembly_id= 103650, from= IP8; - MCS.A33L8.B1:MCS, at= -1551.4857+(83-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248044, assembly_id= 103650, from= IP8; - BPM.32L8.B1:BPM, at= -1550.6067+(83-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248046, assembly_id= 103651, from= IP8; - MO.32L8.B1:MO, at= -1549.8557+(83-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308579, assembly_id= 103651, from= IP8; -MQ.32L8.B1:MQ, at= -1547.8447+(83-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307871, assembly_id= 103651, from= IP8; - MS.32L8.B1:MS, at= -1545.9497+(83-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252934, assembly_id= 103651, from= IP8; - MCBV.32L8.B1:MCBV, at= -1545.3567+(83-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252936, assembly_id= 103651, from= IP8; - MB.C32L8.B1:MB, at= -1536.7797+(83.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844110, assembly_id= 103652, from= IP8; - MCS.C32L8.B1:MCS, at= -1529.3557+(84-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248052, assembly_id= 103652, from= IP8; - MCO.32L8.B1:MCO_UNPLUGGED, at= -1528.6057+(84-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252938, assembly_id= 103653, from= IP8; - MCD.32L8.B1:MCD, at= -1528.6042+(84-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252939, assembly_id= 103653, from= IP8; - MB.B32L8.B1:MB, at= -1521.1197+(84.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844134, assembly_id= 103653, from= IP8; - MCS.B32L8.B1:MCS, at= -1513.6957+(85-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248057, assembly_id= 103653, from= IP8; - MB.A32L8.B1:MB, at= -1505.4597+(85.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844158, assembly_id= 103654, from= IP8; - MCS.A32L8.B1:MCS, at= -1498.0357+(86-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248060, assembly_id= 103654, from= IP8; - BPM.31L8.B1:BPM, at= -1497.1567+(86-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248062, assembly_id= 103655, from= IP8; - MO.31L8.B1:MO, at= -1496.4057+(86-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308787, assembly_id= 103655, from= IP8; -MQ.31L8.B1:MQ, at= -1494.3947+(86-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308079, assembly_id= 103655, from= IP8; - MS.31L8.B1:MS, at= -1492.4997+(86-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252942, assembly_id= 103655, from= IP8; - MCBH.31L8.B1:MCBH, at= -1491.9067+(86-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252944, assembly_id= 103655, from= IP8; - MCO.B31L8.B1:MCO_UNPLUGGED, at= -1490.8157+(86-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252946, assembly_id= 103656, from= IP8; - MCD.B31L8.B1:MCD, at= -1490.8142+(86-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252947, assembly_id= 103656, from= IP8; - MB.C31L8.B1:MB, at= -1483.3297+(86.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844182, assembly_id= 103656, from= IP8; - MCS.C31L8.B1:MCS, at= -1475.9057+(87-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248070, assembly_id= 103656, from= IP8; - MB.B31L8.B1:MB, at= -1467.6697+(87.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844206, assembly_id= 103657, from= IP8; - MCS.B31L8.B1:MCS, at= -1460.2457+(88-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248073, assembly_id= 103657, from= IP8; - MCO.A31L8.B1:MCO_UNPLUGGED, at= -1459.4957+(88-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252950, assembly_id= 103658, from= IP8; - MCD.A31L8.B1:MCD, at= -1459.4942+(88-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252951, assembly_id= 103658, from= IP8; - MB.A31L8.B1:MB, at= -1452.0097+(88.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844230, assembly_id= 103658, from= IP8; - MCS.A31L8.B1:MCS, at= -1444.5857+(89-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248078, assembly_id= 103658, from= IP8; - BPM.30L8.B1:BPM, at= -1443.7067+(89-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248080, assembly_id= 103659, from= IP8; - MO.30L8.B1:MO, at= -1442.9557+(89-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308758, assembly_id= 103659, from= IP8; -MQ.30L8.B1:MQ, at= -1440.9447+(89-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308049, assembly_id= 103659, from= IP8; - MS.30L8.B1:MS, at= -1439.0497+(89-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252954, assembly_id= 103659, from= IP8; - MCBV.30L8.B1:MCBV, at= -1438.4567+(89-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252956, assembly_id= 103659, from= IP8; - MB.C30L8.B1:MB, at= -1429.8797+(89.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844254, assembly_id= 103660, from= IP8; - MCS.C30L8.B1:MCS, at= -1422.4557+(90-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248086, assembly_id= 103660, from= IP8; - MCO.30L8.B1:MCO_UNPLUGGED, at= -1421.7057+(90-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252958, assembly_id= 103661, from= IP8; - MCD.30L8.B1:MCD, at= -1421.7042+(90-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252959, assembly_id= 103661, from= IP8; - MB.B30L8.B1:MB, at= -1414.2197+(90.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844278, assembly_id= 103661, from= IP8; - MCS.B30L8.B1:MCS, at= -1406.7957+(91-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248091, assembly_id= 103661, from= IP8; - MB.A30L8.B1:MB, at= -1398.5597+(91.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844302, assembly_id= 103662, from= IP8; - MCS.A30L8.B1:MCS, at= -1391.1357+(92-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248094, assembly_id= 103662, from= IP8; - BPM.29L8.B1:BPM, at= -1390.2567+(92-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248096, assembly_id= 103663, from= IP8; - MO.29L8.B1:MO, at= -1389.5057+(92-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308726, assembly_id= 103663, from= IP8; -MQ.29L8.B1:MQ, at= -1387.4947+(92-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308019, assembly_id= 103663, from= IP8; - MSS.29L8.B1:MSS, at= -1385.5997+(92-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252962, assembly_id= 103663, from= IP8; - MCBH.29L8.B1:MCBH, at= -1385.0067+(92-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252964, assembly_id= 103663, from= IP8; - MCO.B29L8.B1:MCO_UNPLUGGED, at= -1383.9157+(92-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252966, assembly_id= 103664, from= IP8; - MCD.B29L8.B1:MCD, at= -1383.9142+(92-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252967, assembly_id= 103664, from= IP8; - MB.C29L8.B1:MB, at= -1376.4297+(92.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844326, assembly_id= 103664, from= IP8; - MCS.C29L8.B1:MCS, at= -1369.0057+(93-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248104, assembly_id= 103664, from= IP8; - MB.B29L8.B1:MB, at= -1360.7697+(93.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844350, assembly_id= 103665, from= IP8; - MCS.B29L8.B1:MCS, at= -1353.3457+(94-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248107, assembly_id= 103665, from= IP8; - MCO.A29L8.B1:MCO_UNPLUGGED, at= -1352.5957+(94-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252970, assembly_id= 103666, from= IP8; - MCD.A29L8.B1:MCD, at= -1352.5942+(94-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252971, assembly_id= 103666, from= IP8; - MB.A29L8.B1:MB, at= -1345.1097+(94.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844374, assembly_id= 103666, from= IP8; - MCS.A29L8.B1:MCS, at= -1337.6857+(95-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248112, assembly_id= 103666, from= IP8; - BPM.28L8.B1:BPM, at= -1336.8067+(95-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248114, assembly_id= 103667, from= IP8; - MO.28L8.B1:MO, at= -1336.0557+(95-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308694, assembly_id= 103667, from= IP8; -MQ.28L8.B1:MQ, at= -1334.0447+(95-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307988, assembly_id= 103667, from= IP8; - MS.28L8.B1:MS, at= -1332.1497+(95-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252974, assembly_id= 103667, from= IP8; - MCBV.28L8.B1:MCBV, at= -1331.5567+(95-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252976, assembly_id= 103667, from= IP8; - MB.C28L8.B1:MB, at= -1322.9797+(95.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844398, assembly_id= 103668, from= IP8; - MCS.C28L8.B1:MCS, at= -1315.5557+(96-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248120, assembly_id= 103668, from= IP8; - MCO.28L8.B1:MCO_UNPLUGGED, at= -1314.8057+(96-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252978, assembly_id= 103669, from= IP8; - MCD.28L8.B1:MCD, at= -1314.8042+(96-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252979, assembly_id= 103669, from= IP8; - MB.B28L8.B1:MB, at= -1307.3197+(96.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844422, assembly_id= 103669, from= IP8; - MCS.B28L8.B1:MCS, at= -1299.8957+(97-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248125, assembly_id= 103669, from= IP8; - MB.A28L8.B1:MB, at= -1291.6597+(97.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844446, assembly_id= 103670, from= IP8; - MCS.A28L8.B1:MCS, at= -1284.2357+(98-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248128, assembly_id= 103670, from= IP8; - BPM.27L8.B1:BPM, at= -1283.3567+(98-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248130, assembly_id= 103671, from= IP8; - MQS.27L8.B1:MQS, at= -1282.6027+(98-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307665, assembly_id= 103671, from= IP8; -MQ.27L8.B1:MQ, at= -1280.5947+(98-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308197, assembly_id= 103671, from= IP8; - MS.27L8.B1:MS, at= -1278.6997+(98-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252982, assembly_id= 103671, from= IP8; - MCBH.27L8.B1:MCBH, at= -1278.1067+(98-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252984, assembly_id= 103671, from= IP8; - MCO.B27L8.B1:MCO_UNPLUGGED, at= -1277.0157+(98-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252986, assembly_id= 103672, from= IP8; - MCD.B27L8.B1:MCD, at= -1277.0142+(98-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252987, assembly_id= 103672, from= IP8; - MB.C27L8.B1:MB, at= -1269.5297+(98.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844470, assembly_id= 103672, from= IP8; - MCS.C27L8.B1:MCS, at= -1262.1057+(99-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248138, assembly_id= 103672, from= IP8; - MB.B27L8.B1:MB, at= -1253.8697+(99.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844494, assembly_id= 103673, from= IP8; - MCS.B27L8.B1:MCS, at= -1246.4457+(100-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248141, assembly_id= 103673, from= IP8; - MCO.A27L8.B1:MCO_UNPLUGGED, at= -1245.6957+(100-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252990, assembly_id= 103674, from= IP8; - MCD.A27L8.B1:MCD, at= -1245.6942+(100-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252991, assembly_id= 103674, from= IP8; - MB.A27L8.B1:MB, at= -1238.2097+(100.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844518, assembly_id= 103674, from= IP8; - MCS.A27L8.B1:MCS, at= -1230.7857+(101-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248146, assembly_id= 103674, from= IP8; - BPM.26L8.B1:BPM, at= -1229.9067+(101-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248148, assembly_id= 103675, from= IP8; - MO.26L8.B1:MO, at= -1229.1557+(101-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308905, assembly_id= 103675, from= IP8; -MQ.26L8.B1:MQ, at= -1227.1447+(101-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308167, assembly_id= 103675, from= IP8; - MS.26L8.B1:MS, at= -1225.2497+(101-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252994, assembly_id= 103675, from= IP8; - MCBV.26L8.B1:MCBV, at= -1224.6567+(101-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252996, assembly_id= 103675, from= IP8; - MB.C26L8.B1:MB, at= -1216.0797+(101.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844542, assembly_id= 103676, from= IP8; - MCS.C26L8.B1:MCS, at= -1208.6557+(102-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248154, assembly_id= 103676, from= IP8; - MCO.26L8.B1:MCO_UNPLUGGED, at= -1207.9057+(102-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252998, assembly_id= 103677, from= IP8; - MCD.26L8.B1:MCD, at= -1207.9042+(102-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 252999, assembly_id= 103677, from= IP8; - MB.B26L8.B1:MB, at= -1200.4197+(102.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844566, assembly_id= 103677, from= IP8; - MCS.B26L8.B1:MCS, at= -1192.9957+(103-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248159, assembly_id= 103677, from= IP8; - MB.A26L8.B1:MB, at= -1184.7597+(103.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844590, assembly_id= 103678, from= IP8; - MCS.A26L8.B1:MCS, at= -1177.3357+(104-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248162, assembly_id= 103678, from= IP8; - BPM.25L8.B1:BPM, at= -1176.4567+(104-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248164, assembly_id= 103679, from= IP8; - MO.25L8.B1:MO, at= -1175.7057+(104-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308873, assembly_id= 103679, from= IP8; -MQ.25L8.B1:MQ, at= -1173.6947+(104-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308136, assembly_id= 103679, from= IP8; - MS.25L8.B1:MS, at= -1171.7997+(104-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253002, assembly_id= 103679, from= IP8; - MCBH.25L8.B1:MCBH, at= -1171.2067+(104-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253004, assembly_id= 103679, from= IP8; - MCO.B25L8.B1:MCO_UNPLUGGED, at= -1170.1157+(104-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253006, assembly_id= 103680, from= IP8; - MCD.B25L8.B1:MCD, at= -1170.1142+(104-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253007, assembly_id= 103680, from= IP8; - MB.C25L8.B1:MB, at= -1162.6297+(104.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844614, assembly_id= 103680, from= IP8; - MCS.C25L8.B1:MCS, at= -1155.2057+(105-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248172, assembly_id= 103680, from= IP8; - MB.B25L8.B1:MB, at= -1146.9697+(105.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844638, assembly_id= 103681, from= IP8; - MCS.B25L8.B1:MCS, at= -1139.5457+(106-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248175, assembly_id= 103681, from= IP8; - MCO.A25L8.B1:MCO_UNPLUGGED, at= -1138.7957+(106-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253010, assembly_id= 103682, from= IP8; - MCD.A25L8.B1:MCD, at= -1138.7942+(106-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253011, assembly_id= 103682, from= IP8; - MB.A25L8.B1:MB, at= -1131.3097+(106.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844662, assembly_id= 103682, from= IP8; - MCS.A25L8.B1:MCS, at= -1123.8857+(107-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248180, assembly_id= 103682, from= IP8; - BPM.24L8.B1:BPM, at= -1123.0067+(107-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248182, assembly_id= 103683, from= IP8; - MO.24L8.B1:MO, at= -1122.2557+(107-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308841, assembly_id= 103683, from= IP8; -MQ.24L8.B1:MQ, at= -1120.2447+(107-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308104, assembly_id= 103683, from= IP8; - MS.24L8.B1:MS, at= -1118.3497+(107-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253014, assembly_id= 103683, from= IP8; - MCBV.24L8.B1:MCBV, at= -1117.7567+(107-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253016, assembly_id= 103683, from= IP8; - MB.C24L8.B1:MB, at= -1109.1797+(107.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844686, assembly_id= 103684, from= IP8; - MCS.C24L8.B1:MCS, at= -1101.7557+(108-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248188, assembly_id= 103684, from= IP8; - MCO.24L8.B1:MCO_UNPLUGGED, at= -1101.0057+(108-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253018, assembly_id= 103685, from= IP8; - MCD.24L8.B1:MCD, at= -1101.0042+(108-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253019, assembly_id= 103685, from= IP8; - MB.B24L8.B1:MB, at= -1093.5197+(108.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844710, assembly_id= 103685, from= IP8; - MCS.B24L8.B1:MCS, at= -1086.0957+(109-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248193, assembly_id= 103685, from= IP8; - MB.A24L8.B1:MB, at= -1077.8597+(109.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844734, assembly_id= 103686, from= IP8; - MCS.A24L8.B1:MCS, at= -1070.4357+(110-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248196, assembly_id= 103686, from= IP8; - BPM.23L8.B1:BPM, at= -1069.5567+(110-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248198, assembly_id= 103687, from= IP8; - MQS.23L8.B1:MQS, at= -1068.8027+(110-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307634, assembly_id= 103687, from= IP8; -MQ.23L8.B1:MQ, at= -1066.7947+(110-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308314, assembly_id= 103687, from= IP8; - MS.23L8.B1:MS, at= -1064.8997+(110-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253022, assembly_id= 103687, from= IP8; - MCBH.23L8.B1:MCBH, at= -1064.3067+(110-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253024, assembly_id= 103687, from= IP8; - MCO.B23L8.B1:MCO_UNPLUGGED, at= -1063.2157+(110-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253026, assembly_id= 103688, from= IP8; - MCD.B23L8.B1:MCD, at= -1063.2142+(110-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253027, assembly_id= 103688, from= IP8; - MB.C23L8.B1:MB, at= -1055.7297+(110.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844758, assembly_id= 103688, from= IP8; - MCS.C23L8.B1:MCS, at= -1048.3057+(111-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248206, assembly_id= 103688, from= IP8; - MB.B23L8.B1:MB, at= -1040.0697+(111.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844782, assembly_id= 103689, from= IP8; - MCS.B23L8.B1:MCS, at= -1032.6457+(112-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248209, assembly_id= 103689, from= IP8; - MCO.A23L8.B1:MCO_UNPLUGGED, at= -1031.8957+(112-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253030, assembly_id= 103690, from= IP8; - MCD.A23L8.B1:MCD, at= -1031.8942+(112-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253031, assembly_id= 103690, from= IP8; - MB.A23L8.B1:MB, at= -1024.4097+(112.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844806, assembly_id= 103690, from= IP8; - MCS.A23L8.B1:MCS, at= -1016.9857+(113-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248214, assembly_id= 103690, from= IP8; - BPM.22L8.B1:BPM, at= -1016.1067+(113-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248216, assembly_id= 103691, from= IP8; - MO.22L8.B1:MO, at= -1015.3557+(113-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2348502, assembly_id= 103691, from= IP8; -MQ.22L8.B1:MQ, at= -1013.3447+(113-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308283, assembly_id= 103691, from= IP8; - MS.22L8.B1:MS, at= -1011.4497+(113-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253034, assembly_id= 103691, from= IP8; - MCBV.22L8.B1:MCBV, at= -1010.8567+(113-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253036, assembly_id= 103691, from= IP8; - MB.C22L8.B1:MB, at= -1002.2797+(113.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844830, assembly_id= 103692, from= IP8; - MCS.C22L8.B1:MCS, at= -994.8557+(114-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248222, assembly_id= 103692, from= IP8; - MCO.22L8.B1:MCO_UNPLUGGED, at= -994.1057+(114-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253038, assembly_id= 103693, from= IP8; - MCD.22L8.B1:MCD, at= -994.1042+(114-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253039, assembly_id= 103693, from= IP8; - MB.B22L8.B1:MB, at= -986.6197+(114.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844854, assembly_id= 103693, from= IP8; - MCS.B22L8.B1:MCS, at= -979.1957+(115-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248227, assembly_id= 103693, from= IP8; - MB.A22L8.B1:MB, at= -970.9597+(115.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844878, assembly_id= 103694, from= IP8; - MCS.A22L8.B1:MCS, at= -963.5357+(116-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248230, assembly_id= 103694, from= IP8; - BPM.21L8.B1:BPM, at= -962.6567+(116-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248232, assembly_id= 103695, from= IP8; - MQT.21L8.B1:MQT, at= -961.9027+(116-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307267, assembly_id= 103695, from= IP8; -MQ.21L8.B1:MQ, at= -959.8947+(116-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308251, assembly_id= 103695, from= IP8; - MS.21L8.B1:MS, at= -957.9997+(116-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253042, assembly_id= 103695, from= IP8; - MCBH.21L8.B1:MCBH, at= -957.4067+(116-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253044, assembly_id= 103695, from= IP8; - MCO.B21L8.B1:MCO_UNPLUGGED, at= -956.3157+(116-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253046, assembly_id= 103696, from= IP8; - MCD.B21L8.B1:MCD, at= -956.3142+(116-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253047, assembly_id= 103696, from= IP8; - MB.C21L8.B1:MB, at= -948.8297+(116.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844902, assembly_id= 103696, from= IP8; - MCS.C21L8.B1:MCS, at= -941.4057+(117-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248240, assembly_id= 103696, from= IP8; - MB.B21L8.B1:MB, at= -933.1697+(117.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844926, assembly_id= 103697, from= IP8; - MCS.B21L8.B1:MCS, at= -925.7457+(118-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248243, assembly_id= 103697, from= IP8; - MCO.A21L8.B1:MCO_UNPLUGGED, at= -924.9957+(118-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253050, assembly_id= 103698, from= IP8; - MCD.A21L8.B1:MCD, at= -924.9942+(118-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253051, assembly_id= 103698, from= IP8; - MB.A21L8.B1:MB, at= -917.5097+(118.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844950, assembly_id= 103698, from= IP8; - MCS.A21L8.B1:MCS, at= -910.0857+(119-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248248, assembly_id= 103698, from= IP8; - BPM.20L8.B1:BPM, at= -909.2067+(119-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248250, assembly_id= 103699, from= IP8; - MQT.20L8.B1:MQT, at= -908.4527+(119-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307470, assembly_id= 103699, from= IP8; -MQ.20L8.B1:MQ, at= -906.4447+(119-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308221, assembly_id= 103699, from= IP8; - MS.20L8.B1:MS, at= -904.5497+(119-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253054, assembly_id= 103699, from= IP8; - MCBV.20L8.B1:MCBV, at= -903.9567+(119-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253056, assembly_id= 103699, from= IP8; - MB.C20L8.B1:MB, at= -895.3797+(119.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844974, assembly_id= 103700, from= IP8; - MCS.C20L8.B1:MCS, at= -887.9557+(120-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248256, assembly_id= 103700, from= IP8; - MCO.20L8.B1:MCO_UNPLUGGED, at= -887.2057+(120-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253058, assembly_id= 103701, from= IP8; - MCD.20L8.B1:MCD, at= -887.2042+(120-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253059, assembly_id= 103701, from= IP8; - MB.B20L8.B1:MB, at= -879.7197+(120.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52844998, assembly_id= 103701, from= IP8; - MCS.B20L8.B1:MCS, at= -872.2957+(121-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248261, assembly_id= 103701, from= IP8; - MB.A20L8.B1:MB, at= -864.0597+(121.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845022, assembly_id= 103702, from= IP8; - MCS.A20L8.B1:MCS, at= -856.6357+(122-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248264, assembly_id= 103702, from= IP8; - BPM.19L8.B1:BPM, at= -855.7567+(122-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248266, assembly_id= 103703, from= IP8; - MQT.19L8.B1:MQT, at= -855.0027+(122-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307440, assembly_id= 103703, from= IP8; -MQ.19L8.B1:MQ, at= -852.9947+(122-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308430, assembly_id= 103703, from= IP8; - MS.19L8.B1:MS, at= -851.0997+(122-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253062, assembly_id= 103703, from= IP8; - MCBH.19L8.B1:MCBH, at= -850.5067+(122-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253064, assembly_id= 103703, from= IP8; - MCO.B19L8.B1:MCO_UNPLUGGED, at= -849.4157+(122-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253066, assembly_id= 103704, from= IP8; - MCD.B19L8.B1:MCD, at= -849.4142+(122-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253067, assembly_id= 103704, from= IP8; - MB.C19L8.B1:MB, at= -841.9297+(122.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845046, assembly_id= 103704, from= IP8; - MCS.C19L8.B1:MCS, at= -834.5057+(123-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248274, assembly_id= 103704, from= IP8; - MB.B19L8.B1:MB, at= -826.2697+(123.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845070, assembly_id= 103705, from= IP8; - MCS.B19L8.B1:MCS, at= -818.8457+(124-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248277, assembly_id= 103705, from= IP8; - MCO.A19L8.B1:MCO_UNPLUGGED, at= -818.0957+(124-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253070, assembly_id= 103706, from= IP8; - MCD.A19L8.B1:MCD, at= -818.0942+(124-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253071, assembly_id= 103706, from= IP8; - MB.A19L8.B1:MB, at= -810.6097+(124.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845094, assembly_id= 103706, from= IP8; - MCS.A19L8.B1:MCS, at= -803.1857+(125-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248282, assembly_id= 103706, from= IP8; - BPM.18L8.B1:BPM, at= -802.3067+(125-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248284, assembly_id= 103707, from= IP8; - MQT.18L8.B1:MQT, at= -801.5527+(125-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307409, assembly_id= 103707, from= IP8; -MQ.18L8.B1:MQ, at= -799.5447+(125-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308398, assembly_id= 103707, from= IP8; - MS.18L8.B1:MS, at= -797.6497+(125-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253074, assembly_id= 103707, from= IP8; - MCBV.18L8.B1:MCBV, at= -797.0567+(125-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253076, assembly_id= 103707, from= IP8; - MB.C18L8.B1:MB, at= -788.4797+(125.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845118, assembly_id= 103708, from= IP8; - MCS.C18L8.B1:MCS, at= -781.0557+(126-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248290, assembly_id= 103708, from= IP8; - MCO.18L8.B1:MCO_UNPLUGGED, at= -780.3057+(126-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253078, assembly_id= 103709, from= IP8; - MCD.18L8.B1:MCD, at= -780.3042+(126-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253079, assembly_id= 103709, from= IP8; - MB.B18L8.B1:MB, at= -772.8197+(126.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845142, assembly_id= 103709, from= IP8; - MCS.B18L8.B1:MCS, at= -765.3957+(127-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248295, assembly_id= 103709, from= IP8; - MB.A18L8.B1:MB, at= -757.1597+(127.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845166, assembly_id= 103710, from= IP8; - MCS.A18L8.B1:MCS, at= -749.7357+(128-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248298, assembly_id= 103710, from= IP8; - BPM.17L8.B1:BPM, at= -748.8567+(128-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248300, assembly_id= 103711, from= IP8; - MQT.17L8.B1:MQT, at= -748.1027+(128-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307377, assembly_id= 103711, from= IP8; -MQ.17L8.B1:MQ, at= -746.0947+(128-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308368, assembly_id= 103711, from= IP8; - MS.17L8.B1:MS, at= -744.1997+(128-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253082, assembly_id= 103711, from= IP8; - MCBH.17L8.B1:MCBH, at= -743.6067+(128-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253084, assembly_id= 103711, from= IP8; - MCO.B17L8.B1:MCO_UNPLUGGED, at= -742.5157+(128-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253086, assembly_id= 103712, from= IP8; - MCD.B17L8.B1:MCD, at= -742.5142+(128-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253087, assembly_id= 103712, from= IP8; - MB.C17L8.B1:MB, at= -735.0297+(128.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845190, assembly_id= 103712, from= IP8; - MCS.C17L8.B1:MCS, at= -727.6057+(129-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248308, assembly_id= 103712, from= IP8; - MB.B17L8.B1:MB, at= -719.3697+(129.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845214, assembly_id= 103713, from= IP8; - MCS.B17L8.B1:MCS, at= -711.9457+(130-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248311, assembly_id= 103713, from= IP8; - MCO.A17L8.B1:MCO_UNPLUGGED, at= -711.1957+(130-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253090, assembly_id= 103714, from= IP8; - MCD.A17L8.B1:MCD, at= -711.1942+(130-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253091, assembly_id= 103714, from= IP8; - MB.A17L8.B1:MB, at= -703.7097+(130.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845238, assembly_id= 103714, from= IP8; - MCS.A17L8.B1:MCS, at= -696.2857+(131-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248316, assembly_id= 103714, from= IP8; - BPM.16L8.B1:BPM, at= -695.4067+(131-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248318, assembly_id= 103715, from= IP8; - MQT.16L8.B1:MQT, at= -694.6527+(131-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307584, assembly_id= 103715, from= IP8; -MQ.16L8.B1:MQ, at= -692.6447+(131-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308339, assembly_id= 103715, from= IP8; - MS.16L8.B1:MS, at= -690.7497+(131-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253094, assembly_id= 103715, from= IP8; - MCBV.16L8.B1:MCBV, at= -690.1567+(131-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253096, assembly_id= 103715, from= IP8; - MB.C16L8.B1:MB, at= -681.5797+(131.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845262, assembly_id= 103716, from= IP8; - MCS.C16L8.B1:MCS, at= -674.1557+(132-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248324, assembly_id= 103716, from= IP8; - MCO.16L8.B1:MCO_UNPLUGGED, at= -673.4057+(132-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253098, assembly_id= 103717, from= IP8; - MCD.16L8.B1:MCD, at= -673.4042+(132-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253099, assembly_id= 103717, from= IP8; - MB.B16L8.B1:MB, at= -665.9197+(132.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845286, assembly_id= 103717, from= IP8; - MCS.B16L8.B1:MCS, at= -658.4957+(133-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248329, assembly_id= 103717, from= IP8; - MB.A16L8.B1:MB, at= -650.2597+(133.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845310, assembly_id= 103718, from= IP8; - MCS.A16L8.B1:MCS, at= -642.8357+(134-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248332, assembly_id= 103718, from= IP8; - BPM.15L8.B1:BPM, at= -641.9567+(134-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248334, assembly_id= 103719, from= IP8; - MQT.15L8.B1:MQT, at= -641.2027+(134-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307553, assembly_id= 103719, from= IP8; -MQ.15L8.B1:MQ, at= -639.1947+(134-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308545, assembly_id= 103719, from= IP8; - MS.15L8.B1:MS, at= -637.2997+(134-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253102, assembly_id= 103719, from= IP8; - MCBH.15L8.B1:MCBH, at= -636.7067+(134-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253104, assembly_id= 103719, from= IP8; - MCO.B15L8.B1:MCO_UNPLUGGED, at= -635.6157+(134-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253106, assembly_id= 103720, from= IP8; - MCD.B15L8.B1:MCD, at= -635.6142+(134-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253107, assembly_id= 103720, from= IP8; - MB.C15L8.B1:MB, at= -628.1297+(134.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845334, assembly_id= 103720, from= IP8; - MCS.C15L8.B1:MCS, at= -620.7057+(135-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248342, assembly_id= 103720, from= IP8; - MB.B15L8.B1:MB, at= -612.4697+(135.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845358, assembly_id= 103721, from= IP8; - MCS.B15L8.B1:MCS, at= -605.0457+(136-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248345, assembly_id= 103721, from= IP8; - MCO.A15L8.B1:MCO_UNPLUGGED, at= -604.2957+(136-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253110, assembly_id= 103722, from= IP8; - MCD.A15L8.B1:MCD, at= -604.2942+(136-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253111, assembly_id= 103722, from= IP8; - MB.A15L8.B1:MB, at= -596.8097+(136.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845382, assembly_id= 103722, from= IP8; - MCS.A15L8.B1:MCS, at= -589.3857+(137-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248350, assembly_id= 103722, from= IP8; - BPM.14L8.B1:BPM, at= -588.5067+(137-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248352, assembly_id= 103723, from= IP8; - MQT.14L8.B1:MQT, at= -587.7527+(137-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307521, assembly_id= 103723, from= IP8; -MQ.14L8.B1:MQ, at= -585.7447+(137-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308515, assembly_id= 103723, from= IP8; - MS.14L8.B1:MS, at= -583.8497+(137-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253114, assembly_id= 103723, from= IP8; - MCBV.14L8.B1:MCBV, at= -583.2567+(137-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253116, assembly_id= 103723, from= IP8; - MB.C14L8.B1:MB, at= -574.6797+(137.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845406, assembly_id= 103724, from= IP8; - MCS.C14L8.B1:MCS, at= -567.2557+(138-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248358, assembly_id= 103724, from= IP8; - MCO.14L8.B1:MCO_UNPLUGGED, at= -566.5057+(138-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253118, assembly_id= 103725, from= IP8; - MCD.14L8.B1:MCD, at= -566.5042+(138-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253119, assembly_id= 103725, from= IP8; - MB.B14L8.B1:MB, at= -559.0197+(138.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845430, assembly_id= 103725, from= IP8; - MCS.B14L8.B1:MCS, at= -551.5957+(139-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248363, assembly_id= 103725, from= IP8; - MB.A14L8.B1:MB, at= -543.3597+(139.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845454, assembly_id= 103726, from= IP8; - MCS.A14L8.B1:MCS, at= -535.9357+(140-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248366, assembly_id= 103726, from= IP8; -S.DS.L8.B1:OMK, at= -535.5297+(140-IP8OFS.B1)*DS, slot_id= 100932, from= IP8; - BPM.13L8.B1:BPM, at= -535.0567+(140-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248368, assembly_id= 103727, from= IP8; - MQT.13L8.B1:MQT, at= -534.3027+(140-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307728, assembly_id= 103727, from= IP8; -MQ.13L8.B1:MQ, at= -532.2947+(140-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308486, assembly_id= 103727, from= IP8; - MS.13L8.B1:MS, at= -530.3997+(140-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253122, assembly_id= 103727, from= IP8; - MCBH.13L8.B1:MCBH, at= -529.8067+(140-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253124, assembly_id= 103727, from= IP8; - MCO.B13L8.B1:MCO_UNPLUGGED, at= -528.7157+(140-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253126, assembly_id= 103728, from= IP8; - MCD.B13L8.B1:MCD, at= -528.7142+(140-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253127, assembly_id= 103728, from= IP8; - MB.C13L8.B1:MB, at= -521.2297+(140.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845478, assembly_id= 103728, from= IP8; - MCS.C13L8.B1:MCS, at= -513.8057+(141-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248376, assembly_id= 103728, from= IP8; - MB.B13L8.B1:MB, at= -505.5697+(141.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845502, assembly_id= 103729, from= IP8; - MCS.B13L8.B1:MCS, at= -498.1457+(142-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248379, assembly_id= 103729, from= IP8; - MCO.A13L8.B1:MCO_UNPLUGGED, at= -497.3957+(142-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253130, assembly_id= 103730, from= IP8; - MCD.A13L8.B1:MCD, at= -497.3942+(142-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253131, assembly_id= 103730, from= IP8; - MB.A13L8.B1:MB, at= -489.9097+(142.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845526, assembly_id= 103730, from= IP8; - MCS.A13L8.B1:MCS, at= -482.4857+(143-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248384, assembly_id= 103730, from= IP8; - BPM.12L8.B1:BPM, at= -481.6067+(143-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248386, assembly_id= 103731, from= IP8; - MQT.12L8.B1:MQT, at= -480.8527+(143-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307697, assembly_id= 103731, from= IP8; -MQ.12L8.B1:MQ, at= -478.8447+(143-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308456, assembly_id= 103731, from= IP8; - MS.12L8.B1:MS, at= -476.9497+(143-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253134, assembly_id= 103731, from= IP8; - MCBV.12L8.B1:MCBV, at= -476.3567+(143-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253136, assembly_id= 103731, from= IP8; - MB.C12L8.B1:MB, at= -467.7797+(143.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845550, assembly_id= 103732, from= IP8; - MCS.C12L8.B1:MCS, at= -460.3557+(144-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248392, assembly_id= 103732, from= IP8; - MCO.12L8.B1:MCO_UNPLUGGED, at= -459.6057+(144-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253138, assembly_id= 103733, from= IP8; - MCD.12L8.B1:MCD, at= -459.6042+(144-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253139, assembly_id= 103733, from= IP8; - MB.B12L8.B1:MB, at= -452.1197+(144.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845574, assembly_id= 103733, from= IP8; - MCS.B12L8.B1:MCS, at= -444.6957+(145-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248397, assembly_id= 103733, from= IP8; - MB.A12L8.B1:MB, at= -436.4597+(145.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845598, assembly_id= 103734, from= IP8; - MCS.A12L8.B1:MCS, at= -429.0357+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248400, assembly_id= 103734, from= IP8; -E.ARC.78.B1:OMK, at= -428.6297+(146-IP8OFS.B1)*DS, slot_id= 100932, from= IP8; - BPM.11L8.B1:BPM, at= -428.1567+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248402, assembly_id= 103735, from= IP8; -MQ.11L8.B1:MQ, at= -425.6097+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2308663, assembly_id= 103735, from= IP8; - MQTLI.11L8.B1:MQTLI, at= -423.2407+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307351, assembly_id= 103735, from= IP8; - MS.11L8.B1:MS, at= -422.2287+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253142, assembly_id= 103735, from= IP8; - MCBH.11L8.B1:MCBH, at= -421.6357+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253144, assembly_id= 103735, from= IP8; - LEBR.11L8.B1:LEBR, at= -414.49735+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52997706, assembly_id= 103736, from= IP8; - MCO.11L8.B1:MCO_UNPLUGGED, at= -407.766+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253146, assembly_id= 103737, from= IP8; - MCD.11L8.B1:MCD, at= -407.7645+(146-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253147, assembly_id= 103737, from= IP8; - MB.B11L8.B1:MB, at= -400.28+(146.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845622, assembly_id= 103737, from= IP8; - MCS.B11L8.B1:MCS, at= -392.856+(147-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248410, assembly_id= 103737, from= IP8; - MB.A11L8.B1:MB, at= -384.62+(147.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849726, assembly_id= 103738, from= IP8; - MCS.A11L8.B1:MCS, at= -377.196+(148-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 357328, assembly_id= 103738, from= IP8; - BPM.10L8.B1:BPM, at= -376.317+(148-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378039, assembly_id= 103739, from= IP8; - MQML.10L8.B1:MQML, at= -373.172+(148-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307814, assembly_id= 103739, from= IP8; - MCBCV.10L8.B1:MCBCV, at= -370.13+(148-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378120, assembly_id= 103739, from= IP8; - MCO.10L8.B1:MCO_UNPLUGGED, at= -368.701+(148-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253152, assembly_id= 103740, from= IP8; - MCD.10L8.B1:MCD, at= -368.6995+(148-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253153, assembly_id= 103740, from= IP8; - MB.B10L8.B1:MB, at= -361.215+(148.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845646, assembly_id= 103740, from= IP8; - MCS.B10L8.B1:MCS, at= -353.791+(149-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248422, assembly_id= 103740, from= IP8; - MB.A10L8.B1:MB, at= -345.555+(149.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845670, assembly_id= 103741, from= IP8; - MCS.A10L8.B1:MCS, at= -338.131+(150-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248425, assembly_id= 103741, from= IP8; - BPM.9L8.B1:BPM, at= -337.251+(150-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378044, assembly_id= 103742, from= IP8; - MQMC.9L8.B1:MQMC, at= -335.275+(150-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307791, assembly_id= 103742, from= IP8; - MQM.9L8.B1:MQM, at= -332.009+(150-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307739, assembly_id= 103742, from= IP8; - MCBCH.9L8.B1:MCBCH, at= -329.668+(150-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378127, assembly_id= 103742, from= IP8; - MCO.9L8.B1:MCO_UNPLUGGED, at= -328.236+(150-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253158, assembly_id= 103743, from= IP8; - MCD.9L8.B1:MCD, at= -328.2345+(150-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253159, assembly_id= 103743, from= IP8; - MB.B9L8.B1:MB, at= -320.75+(150.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845694, assembly_id= 103743, from= IP8; - MCS.B9L8.B1:MCS, at= -313.326+(151-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248435, assembly_id= 103743, from= IP8; - MB.A9L8.B1:MB, at= -305.09+(151.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845718, assembly_id= 103744, from= IP8; - MCS.A9L8.B1:MCS, at= -297.666+(152-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248438, assembly_id= 103744, from= IP8; - BPM.8L8.B1:BPM, at= -296.787+(152-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378048, assembly_id= 103745, from= IP8; - MQML.8L8.B1:MQML, at= -293.642+(152-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307846, assembly_id= 103745, from= IP8; - MCBCV.8L8.B1:MCBCV, at= -290.6+(152-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 378130, assembly_id= 103745, from= IP8; - MCO.8L8.B1:MCO_UNPLUGGED, at= -289.171+(152-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253164, assembly_id= 103746, from= IP8; - MCD.8L8.B1:MCD, at= -289.1695+(152-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253165, assembly_id= 103746, from= IP8; - MB.B8L8.B1:MB, at= -281.685+(152.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52845742, assembly_id= 103746, from= IP8; - MCS.B8L8.B1:MCS, at= -274.261+(153-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248447, assembly_id= 103746, from= IP8; - MB.A8L8.B1:MB, at= -266.025+(153.5-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52849750, assembly_id= 103747, from= IP8; - MCS.A8L8.B1:MCS, at= -258.601+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 357331, assembly_id= 103747, from= IP8; -E.DS.L8.B1:OMK, at= -258.195+(154-IP8OFS.B1)*DS, slot_id= 100932, from= IP8; - BPM.7L8.B1:BPM, at= -257.72+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248452, assembly_id= 103748, from= IP8; - MQM.B7L8.B1:MQM, at= -255.275+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307772, assembly_id= 103748, from= IP8; - MQM.A7L8.B1:MQM, at= -251.508+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307757, assembly_id= 103748, from= IP8; - MCBCH.7L8.B1:MCBCH, at= -249.167+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253169, assembly_id= 103748, from= IP8; - DFBAO.7L8.B1:DFBAO, at= -246.9875+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52996875, assembly_id= 104690, from= IP8; - MCBCV.6L8.B1:MCBCV, at= -235.207+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253170, assembly_id= 103750, from= IP8; - MQML.6L8.B1:MQML, at= -232.165+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307830, assembly_id= 103750, from= IP8; - MQM.6L8.B1:MQM, at= -227.698+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2307957, assembly_id= 103750, from= IP8; - BPMR.6L8.B1:BPMR, at= -225.251+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248461, assembly_id= 103750, from= IP8; - TCLIM.6L8.B1:TCLIM, at= -223.428+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 52998872, assembly_id= 357149, from= IP8; - MCBCH.B5L8.B1:MCBCH, at= -175.742+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 298448, assembly_id= 103752, from= IP8; - MCBCV.5L8.B1:MCBCV, at= -174.595+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 298449, assembly_id= 103752, from= IP8; - MCBCH.A5L8.B1:MCBCH, at= -173.449+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 298452, assembly_id= 103752, from= IP8; - MQM.B5L8.B1:MQM, at= -171.102+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303172, assembly_id= 103752, from= IP8; - MQM.A5L8.B1:MQM, at= -167.321+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303171, assembly_id= 103752, from= IP8; - BPM.5L8.B1:BPM, at= -164.832+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 298292, assembly_id= 103752, from= IP8; - BPTX.5L8.B1:BPTX, at= -145.3615+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 104669, from= IP8; - BPMYB.4L8.B1:BPMYB, at= -144.065+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 248471, assembly_id= 103753, from= IP8; - MQY.B4L8.B1:MQY, at= -141.371+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303004, assembly_id= 103753, from= IP8; - MQY.A4L8.B1:MQY, at= -137.59+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 2303003, assembly_id= 103753, from= IP8; - MCBYV.B4L8.B1:MCBYV, at= -135.243+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253179, assembly_id= 103753, from= IP8; - MCBYH.4L8.B1:MCBYH, at= -134.096+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253181, assembly_id= 103753, from= IP8; - MCBYV.A4L8.B1:MCBYV, at= -132.95+(154-IP8OFS.B1)*DS, mech_sep= 0.1940, slot_id= 253183, assembly_id= 103753, from= IP8; - MBRC.4L8.B1:MBRC, at= -126.403+(154-IP8OFS.B1)*DS, mech_sep= 0.1880, slot_id= 52819728, assembly_id= 103754, from= IP8; - TANB.A4L8.B1:TANB, at= -119.4855+(154-IP8OFS.B1)*DS, mech_sep= 0.1740, slot_id= 52999643, assembly_id= 51650555, from= IP8; - BPTUH.A4L8.B1:BPTUH, at= -118.828+(154-IP8OFS.B1)*DS, mech_sep= 0.1720, slot_id= 6789713, assembly_id= 377640, from= IP8; - TCTPH.4L8.B1:TCTPH, at= -118.233+(154-IP8OFS.B1)*DS, mech_sep= 0.1689, slot_id= 377640, from= IP8; - BPTDH.A4L8.B1:BPTDH, at= -117.638+(154-IP8OFS.B1)*DS, mech_sep= 0.1720, slot_id= 6789715, assembly_id= 377640, from= IP8; - BPTUV.A4L8.B1:BPTUV, at= -116.828+(154-IP8OFS.B1)*DS, mech_sep= 0.1660, slot_id= 6789727, assembly_id= 6154654, from= IP8; - TCTPV.4L8.B1:TCTPV, at= -116.233+(154-IP8OFS.B1)*DS, mech_sep= 0.1629, slot_id= 6154654, from= IP8; - BPTDV.A4L8.B1:BPTDV, at= -115.638+(154-IP8OFS.B1)*DS, mech_sep= 0.1660, slot_id= 6789730, assembly_id= 6154654, from= IP8; - BPMWB.4L8.B1:BPMWB, at= -114.8685+(154-IP8OFS.B1)*DS, mech_sep= 0.1590, slot_id= 181645, assembly_id= 51650538, from= IP8; - BRANC.4L8:BRANC, at= -113.588+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 55373986, from= IP8; - TCLIA.4L8:TCLIA, at= -73.748+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 357150, from= IP8; - BPMSX.4L8.B1:BPMSX003, at= -69.5005+(154-IP8OFS.B1)*DS, mech_sep= 0.0194, slot_id= 43190480, assembly_id= 104616, from= IP8; - MBX.4L8:MBX, at= -63.108+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248483, assembly_id= 103755, from= IP8; - DFBXG.3L8:DFBXG, at= -56.3085+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 104691, from= IP8; - MCOSX.3L8:MCOSX, at= -54.297+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 282252, assembly_id= 103756, from= IP8; - MCOX.3L8:MCOX, at= -54.297+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 282251, assembly_id= 103756, from= IP8; - MCSSX.3L8:MCSSX, at= -54.297+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 282250, assembly_id= 103756, from= IP8; - MCBXH.3L8:MCBXH, at= -53.814+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253184, assembly_id= 103756, from= IP8; - MCBXV.3L8:MCBXV, at= -53.814+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253185, assembly_id= 103756, from= IP8; - MCSX.3L8:MCSX, at= -53.814+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253186, assembly_id= 103756, from= IP8; - MCTX.3L8:MCTX, at= -53.814+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253187, assembly_id= 103756, from= IP8; - MQXA.3L8:MQXA, at= -50.15+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248485, assembly_id= 103756, from= IP8; - MQSX.3L8:MQSX, at= -46.608+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 282207, assembly_id= 103756, from= IP8; - MQXB.B2L8:MQXB, at= -41.3+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248487, assembly_id= 103757, from= IP8; - MCBXH.2L8:MCBXH, at= -38.019+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253192, assembly_id= 103757, from= IP8; - MCBXV.2L8:MCBXV, at= -38.019+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253193, assembly_id= 103757, from= IP8; - MQXB.A2L8:MQXB, at= -34.8+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248489, assembly_id= 103757, from= IP8; - BPMS.2L8.B1:BPMS_003, at= -31.529+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 47564253, assembly_id= 103757, from= IP8; - MCBXH.1L8:MCBXH, at= -29.842+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253194, assembly_id= 103758, from= IP8; - MCBXV.1L8:MCBXV, at= -29.842+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253195, assembly_id= 103758, from= IP8; - MQXA.1L8:MQXA, at= -26.15+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248492, assembly_id= 103758, from= IP8; - BPMSW.1L8.B1:BPMSW002, at= -21.595+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 10428878, assembly_id= 104617, from= IP8; - BPMSW.1L8.B1_DOROS:BPMSW002, at= -21.595+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 12907565, assembly_id= 104617, from= IP8; - MBXWS.1L8:MBXWS, at= -20.765+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 103997, from= IP8; - MBXWH.1L8:MBXWH, at= -5.25+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 103998, from= IP8; -IP8:OMK, at= pIP8+IP8OFS.B1*DS; - MBLW.1R8:MBLW, at= 5.25+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 104001, from= IP8; - MBXWS.1R8:MBXWS, at= 20.765+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 103999, from= IP8; - BPMSW.1R8.B1:BPMSW002, at= 21.595+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 10428864, assembly_id= 104618, from= IP8; - BPMSW.1R8.B1_DOROS:BPMSW002, at= 21.595+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 12907557, assembly_id= 104618, from= IP8; - MQXA.1R8:MQXA, at= 26.15+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248498, assembly_id= 103759, from= IP8; - MCBXH.1R8:MCBXH, at= 29.842+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253196, assembly_id= 103759, from= IP8; - MCBXV.1R8:MCBXV, at= 29.842+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253197, assembly_id= 103759, from= IP8; - BPMS.2R8.B1:BPMS_003, at= 31.529+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 47564243, assembly_id= 103760, from= IP8; - MQXB.A2R8:MQXB, at= 34.8+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248501, assembly_id= 103760, from= IP8; - MCBXH.2R8:MCBXH, at= 38.019+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253198, assembly_id= 103760, from= IP8; - MCBXV.2R8:MCBXV, at= 38.019+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253199, assembly_id= 103760, from= IP8; - MQXB.B2R8:MQXB, at= 41.3+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248503, assembly_id= 103760, from= IP8; - MQSX.3R8:MQSX, at= 46.608+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 282208, assembly_id= 103761, from= IP8; - MQXA.3R8:MQXA, at= 50.15+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248505, assembly_id= 103761, from= IP8; - MCBXH.3R8:MCBXH, at= 53.814+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253204, assembly_id= 103761, from= IP8; - MCBXV.3R8:MCBXV, at= 53.814+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253205, assembly_id= 103761, from= IP8; - MCSX.3R8:MCSX, at= 53.814+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253206, assembly_id= 103761, from= IP8; - MCTX.3R8:MCTX, at= 53.814+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 253207, assembly_id= 103761, from= IP8; - MCOSX.3R8:MCOSX, at= 54.297+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 282255, assembly_id= 103761, from= IP8; - MCOX.3R8:MCOX, at= 54.297+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 282254, assembly_id= 103761, from= IP8; - MCSSX.3R8:MCSSX, at= 54.297+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 282253, assembly_id= 103761, from= IP8; - DFBXH.3R8:DFBXH, at= 56.3085+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 104692, from= IP8; - MBX.4R8:MBX, at= 63.108+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 248507, assembly_id= 103762, from= IP8; - BPMSX.4R8.B1:BPMSX003, at= 69.3805+(154-IP8OFS.B1)*DS, mech_sep= -0.0194, slot_id= 43190481, assembly_id= 104619, from= IP8; - TCDDM.4R8:TCDDM, at= 71.358+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 103763, from= IP8; - BTVST.A4R8:BTVST064, at= 85.441+(154-IP8OFS.B1)*DS, mech_sep= -0.0800, slot_id= 181630, from= IP8; - BRANC.4R8:BRANC, at= 113.588+(154-IP8OFS.B1)*DS, mech_sep= 0, slot_id= 55374023, from= IP8; - BPMWB.4R8.B1:BPMWB, at= 114.7925+(154-IP8OFS.B1)*DS, mech_sep= -0.1740, slot_id= 181646, assembly_id= 51710752, from= IP8; - TANB.A4R8.B1:TANB, at= 119.4855+(154-IP8OFS.B1)*DS, mech_sep= -0.1740, slot_id= 52999667, assembly_id= 51710761, from= IP8; - MBRC.4R8.B1:MBRC, at= 126.403+(154-IP8OFS.B1)*DS, mech_sep= -0.1880, slot_id= 52819752, assembly_id= 103765, from= IP8; - MCBYH.A4R8.B1:MCBYH, at= 132.95+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253209, assembly_id= 103766, from= IP8; - MCBYV.4R8.B1:MCBYV, at= 134.096+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253211, assembly_id= 103766, from= IP8; - MCBYH.B4R8.B1:MCBYH, at= 135.243+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253213, assembly_id= 103766, from= IP8; - MQY.A4R8.B1:MQY, at= 137.59+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303145, assembly_id= 103766, from= IP8; - MQY.B4R8.B1:MQY, at= 141.371+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303144, assembly_id= 103766, from= IP8; - BPMYB.4R8.B1:BPMYB, at= 144.065+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248521, assembly_id= 103766, from= IP8; - BPMYB.5R8.B1:BPMYB, at= 164.642+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248523, assembly_id= 103768, from= IP8; - MQY.A5R8.B1:MQY, at= 167.336+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303010, assembly_id= 103768, from= IP8; - MQY.B5R8.B1:MQY, at= 171.117+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303009, assembly_id= 103768, from= IP8; - MCBYV.A5R8.B1:MCBYV, at= 173.464+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253214, assembly_id= 103768, from= IP8; - MCBYH.5R8.B1:MCBYH, at= 174.61+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253216, assembly_id= 103768, from= IP8; - MCBYV.B5R8.B1:MCBYV, at= 175.757+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253218, assembly_id= 103768, from= IP8; - MSIA.A6R8.B1:MSIA, at= 194.923+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849898, assembly_id= 134685, from= IP8; - MSIA.B6R8.B1:MSIA, at= 199.373+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849924, assembly_id= 134686, from= IP8; - MSIB.A6R8.B1:MSIB, at= 203.823+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52850028, assembly_id= 134687, from= IP8; - MSIB.B6R8.B1:MSIB, at= 208.273+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52850054, assembly_id= 134688, from= IP8; - MSIB.C6R8.B1:MSIB, at= 212.723+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52850080, assembly_id= 134689, from= IP8; - MCBCH.6R8.B1:MCBCH, at= 238.794+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253221, assembly_id= 103770, from= IP8; - MQML.6R8.B1:MQML, at= 241.836+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307834, assembly_id= 103770, from= IP8; - MQM.6R8.B1:MQM, at= 246.303+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307961, assembly_id= 103770, from= IP8; - BPM.6R8.B1:BPM, at= 248.75+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 298296, assembly_id= 103770, from= IP8; - DFBAP.7R8.B1:DFBAP, at= 269.1775+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52996899, assembly_id= 104693, from= IP8; - BPM_A.7R8.B1:BPM_A, at= 270.99+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 378057, assembly_id= 103771, from= IP8; - MQM.A7R8.B1:MQM, at= 273.435+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307765, assembly_id= 103771, from= IP8; - MQM.B7R8.B1:MQM, at= 277.202+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307780, assembly_id= 103771, from= IP8; - MCBCV.7R8.B1:MCBCV, at= 279.543+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253222, assembly_id= 103771, from= IP8; -S.DS.R8.B1:OMK, at= 280.635+(154-IP8OFS.B1)*DS, slot_id= 100932, from= IP8; - MCO.8R8.B1:MCO, at= 280.979+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253226, assembly_id= 103772, from= IP8; - MCD.8R8.B1:MCD, at= 280.9805+(154-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253227, assembly_id= 103772, from= IP8; - MB.A8R8.B1:MB, at= 288.465+(153.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845766, assembly_id= 103772, from= IP8; - MCS.A8R8.B1:MCS, at= 295.889+(153-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248543, assembly_id= 103772, from= IP8; - MB.B8R8.B1:MB, at= 304.125+(152.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845790, assembly_id= 103773, from= IP8; - MCS.B8R8.B1:MCS, at= 311.549+(152-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248546, assembly_id= 103773, from= IP8; - BPM.8R8.B1:BPM, at= 312.428+(152-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248548, assembly_id= 103774, from= IP8; - MQML.8R8.B1:MQML, at= 315.573+(152-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307619, assembly_id= 103774, from= IP8; - MCBCH.8R8.B1:MCBCH, at= 318.615+(152-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253228, assembly_id= 103774, from= IP8; - MCO.9R8.B1:MCO, at= 320.044+(152-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253232, assembly_id= 103775, from= IP8; - MCD.9R8.B1:MCD, at= 320.0455+(152-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253233, assembly_id= 103775, from= IP8; - MB.A9R8.B1:MB, at= 327.53+(151.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845814, assembly_id= 103775, from= IP8; - MCS.A9R8.B1:MCS, at= 334.954+(151-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248555, assembly_id= 103775, from= IP8; - MB.B9R8.B1:MB, at= 343.19+(150.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845838, assembly_id= 103776, from= IP8; - MCS.B9R8.B1:MCS, at= 350.614+(150-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248558, assembly_id= 103776, from= IP8; - BPM.9R8.B1:BPM, at= 351.494+(150-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248560, assembly_id= 103777, from= IP8; - MQMC.9R8.B1:MQMC, at= 353.47+(150-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307802, assembly_id= 103777, from= IP8; - MQM.9R8.B1:MQM, at= 356.736+(150-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307750, assembly_id= 103777, from= IP8; - MCBCV.9R8.B1:MCBCV, at= 359.077+(150-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253234, assembly_id= 103777, from= IP8; - MCO.10R8.B1:MCO, at= 360.509+(150-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253238, assembly_id= 103778, from= IP8; - MCD.10R8.B1:MCD, at= 360.5105+(150-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253239, assembly_id= 103778, from= IP8; - MB.A10R8.B1:MB, at= 367.995+(149.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845862, assembly_id= 103778, from= IP8; - MCS.A10R8.B1:MCS, at= 375.419+(149-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248568, assembly_id= 103778, from= IP8; - MB.B10R8.B1:MB, at= 383.655+(148.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845886, assembly_id= 103779, from= IP8; - MCS.B10R8.B1:MCS, at= 391.079+(148-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248571, assembly_id= 103779, from= IP8; - BPM.10R8.B1:BPM, at= 391.958+(148-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248573, assembly_id= 103780, from= IP8; - MQML.10R8.B1:MQML, at= 395.103+(148-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307826, assembly_id= 103780, from= IP8; - MCBCH.10R8.B1:MCBCH, at= 398.145+(148-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253240, assembly_id= 103780, from= IP8; - MCO.11R8.B1:MCO, at= 399.574+(148-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253244, assembly_id= 103781, from= IP8; - MCD.11R8.B1:MCD, at= 399.5755+(148-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253245, assembly_id= 103781, from= IP8; - MB.A11R8.B1:MB, at= 407.06+(147.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845910, assembly_id= 103781, from= IP8; - MCS.A11R8.B1:MCS, at= 414.484+(147-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248580, assembly_id= 103781, from= IP8; - MB.B11R8.B1:MB, at= 422.72+(146.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849774, assembly_id= 103782, from= IP8; - MCS.B11R8.B1:MCS, at= 430.144+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357341, assembly_id= 103782, from= IP8; - LECL.11R8.B1:LECL, at= 436.93735+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52997754, assembly_id= 103783, from= IP8; - BPM.11R8.B1:BPM, at= 443.7977+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248585, assembly_id= 103784, from= IP8; -MQ.11R8.B1:MQ, at= 446.3447+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308677, assembly_id= 103784, from= IP8; - MQTLI.11R8.B1:MQTLI, at= 448.7137+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307366, assembly_id= 103784, from= IP8; - MS.11R8.B1:MS, at= 449.7257+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253247, assembly_id= 103784, from= IP8; - MCBV.11R8.B1:MCBV, at= 450.3187+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253249, assembly_id= 103784, from= IP8; -S.ARC.81.B1:OMK, at= 451.0697+(146-IP8OFS.B1)*DS, slot_id= 100932, from= IP8; - MCO.A12R8.B1:MCO, at= 451.4137+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253252, assembly_id= 103785, from= IP8; - MCD.A12R8.B1:MCD, at= 451.4152+(146-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253253, assembly_id= 103785, from= IP8; - MB.A12R8.B1:MB, at= 458.8997+(145.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845934, assembly_id= 103785, from= IP8; - MCS.A12R8.B1:MCS, at= 466.3237+(145-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248593, assembly_id= 103785, from= IP8; - MB.B12R8.B1:MB, at= 474.5597+(144.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845958, assembly_id= 103786, from= IP8; - MCS.B12R8.B1:MCS, at= 481.9837+(144-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248596, assembly_id= 103786, from= IP8; - MCO.B12R8.B1:MCO, at= 482.7337+(144-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253256, assembly_id= 103787, from= IP8; - MCD.B12R8.B1:MCD, at= 482.7352+(144-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253257, assembly_id= 103787, from= IP8; - MB.C12R8.B1:MB, at= 490.2197+(143.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52845982, assembly_id= 103787, from= IP8; - MCS.C12R8.B1:MCS, at= 497.6437+(143-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248601, assembly_id= 103787, from= IP8; - BPM.12R8.B1:BPM, at= 498.5227+(143-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248603, assembly_id= 103788, from= IP8; - MQT.12R8.B1:MQT, at= 499.2767+(143-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307713, assembly_id= 103788, from= IP8; -MQ.12R8.B1:MQ, at= 501.2847+(143-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308471, assembly_id= 103788, from= IP8; - MS.12R8.B1:MS, at= 503.1797+(143-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253259, assembly_id= 103788, from= IP8; - MCBH.12R8.B1:MCBH, at= 503.7727+(143-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253261, assembly_id= 103788, from= IP8; - MB.A13R8.B1:MB, at= 512.3497+(142.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846006, assembly_id= 103789, from= IP8; - MCS.A13R8.B1:MCS, at= 519.7737+(142-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248609, assembly_id= 103789, from= IP8; - MCO.13R8.B1:MCO, at= 520.5237+(142-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253264, assembly_id= 103790, from= IP8; - MCD.13R8.B1:MCD, at= 520.5252+(142-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253265, assembly_id= 103790, from= IP8; - MB.B13R8.B1:MB, at= 528.0097+(141.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846030, assembly_id= 103790, from= IP8; - MCS.B13R8.B1:MCS, at= 535.4337+(141-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248614, assembly_id= 103790, from= IP8; - MB.C13R8.B1:MB, at= 543.6697+(140.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846054, assembly_id= 103791, from= IP8; - MCS.C13R8.B1:MCS, at= 551.0937+(140-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248617, assembly_id= 103791, from= IP8; - BPM.13R8.B1:BPM, at= 551.9727+(140-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248619, assembly_id= 103792, from= IP8; - MQT.13R8.B1:MQT, at= 552.7267+(140-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307505, assembly_id= 103792, from= IP8; -MQ.13R8.B1:MQ, at= 554.7347+(140-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348487, assembly_id= 103792, from= IP8; - MS.13R8.B1:MS, at= 556.6297+(140-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253267, assembly_id= 103792, from= IP8; - MCBV.13R8.B1:MCBV, at= 557.2227+(140-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253269, assembly_id= 103792, from= IP8; -E.DS.R8.B1:OMK, at= 557.9697+(140-IP8OFS.B1)*DS, slot_id= 100932, from= IP8; - MCO.A14R8.B1:MCO, at= 558.3137+(140-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253272, assembly_id= 103793, from= IP8; - MCD.A14R8.B1:MCD, at= 558.3152+(140-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253273, assembly_id= 103793, from= IP8; - MB.A14R8.B1:MB, at= 565.7997+(139.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846078, assembly_id= 103793, from= IP8; - MCS.A14R8.B1:MCS, at= 573.2237+(139-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248627, assembly_id= 103793, from= IP8; - MB.B14R8.B1:MB, at= 581.4597+(138.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846102, assembly_id= 103794, from= IP8; - MCS.B14R8.B1:MCS, at= 588.8837+(138-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248630, assembly_id= 103794, from= IP8; - MCO.B14R8.B1:MCO, at= 589.6337+(138-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253276, assembly_id= 103795, from= IP8; - MCD.B14R8.B1:MCD, at= 589.6352+(138-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253277, assembly_id= 103795, from= IP8; - MB.C14R8.B1:MB, at= 597.1197+(137.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846126, assembly_id= 103795, from= IP8; - MCS.C14R8.B1:MCS, at= 604.5437+(137-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248635, assembly_id= 103795, from= IP8; - BPM.14R8.B1:BPM, at= 605.4227+(137-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248637, assembly_id= 103796, from= IP8; - MQT.14R8.B1:MQT, at= 606.1767+(137-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307537, assembly_id= 103796, from= IP8; -MQ.14R8.B1:MQ, at= 608.1847+(137-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308530, assembly_id= 103796, from= IP8; - MS.14R8.B1:MS, at= 610.0797+(137-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253279, assembly_id= 103796, from= IP8; - MCBH.14R8.B1:MCBH, at= 610.6727+(137-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253281, assembly_id= 103796, from= IP8; - MB.A15R8.B1:MB, at= 619.2497+(136.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846150, assembly_id= 103797, from= IP8; - MCS.A15R8.B1:MCS, at= 626.6737+(136-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248643, assembly_id= 103797, from= IP8; - MCO.15R8.B1:MCO, at= 627.4237+(136-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253284, assembly_id= 103798, from= IP8; - MCD.15R8.B1:MCD, at= 627.4252+(136-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253285, assembly_id= 103798, from= IP8; - MB.B15R8.B1:MB, at= 634.9097+(135.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846174, assembly_id= 103798, from= IP8; - MCS.B15R8.B1:MCS, at= 642.3337+(135-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248648, assembly_id= 103798, from= IP8; - MB.C15R8.B1:MB, at= 650.5697+(134.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846198, assembly_id= 103799, from= IP8; - MCS.C15R8.B1:MCS, at= 657.9937+(134-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248651, assembly_id= 103799, from= IP8; - BPM.15R8.B1:BPM, at= 658.8727+(134-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248653, assembly_id= 103800, from= IP8; - MQT.15R8.B1:MQT, at= 659.6267+(134-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307569, assembly_id= 103800, from= IP8; -MQ.15R8.B1:MQ, at= 661.6347+(134-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308561, assembly_id= 103800, from= IP8; - MS.15R8.B1:MS, at= 663.5297+(134-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253287, assembly_id= 103800, from= IP8; - MCBV.15R8.B1:MCBV, at= 664.1227+(134-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253289, assembly_id= 103800, from= IP8; - MCO.A16R8.B1:MCO, at= 665.2137+(134-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253292, assembly_id= 103801, from= IP8; - MCD.A16R8.B1:MCD, at= 665.2152+(134-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253293, assembly_id= 103801, from= IP8; - MB.A16R8.B1:MB, at= 672.6997+(133.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846222, assembly_id= 103801, from= IP8; - MCS.A16R8.B1:MCS, at= 680.1237+(133-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248661, assembly_id= 103801, from= IP8; - MB.B16R8.B1:MB, at= 688.3597+(132.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846246, assembly_id= 103802, from= IP8; - MCS.B16R8.B1:MCS, at= 695.7837+(132-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248664, assembly_id= 103802, from= IP8; - MCO.B16R8.B1:MCO, at= 696.5337+(132-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253296, assembly_id= 103803, from= IP8; - MCD.B16R8.B1:MCD, at= 696.5352+(132-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253297, assembly_id= 103803, from= IP8; - MB.C16R8.B1:MB, at= 704.0197+(131.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846270, assembly_id= 103803, from= IP8; - MCS.C16R8.B1:MCS, at= 711.4437+(131-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248669, assembly_id= 103803, from= IP8; - BPM.16R8.B1:BPM, at= 712.3227+(131-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248671, assembly_id= 103804, from= IP8; - MQT.16R8.B1:MQT, at= 713.0767+(131-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307598, assembly_id= 103804, from= IP8; -MQ.16R8.B1:MQ, at= 715.0847+(131-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308353, assembly_id= 103804, from= IP8; - MS.16R8.B1:MS, at= 716.9797+(131-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253299, assembly_id= 103804, from= IP8; - MCBH.16R8.B1:MCBH, at= 717.5727+(131-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253301, assembly_id= 103804, from= IP8; - MB.A17R8.B1:MB, at= 726.1497+(130.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846294, assembly_id= 103805, from= IP8; - MCS.A17R8.B1:MCS, at= 733.5737+(130-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248677, assembly_id= 103805, from= IP8; - MCO.17R8.B1:MCO, at= 734.3237+(130-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253304, assembly_id= 103806, from= IP8; - MCD.17R8.B1:MCD, at= 734.3252+(130-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253305, assembly_id= 103806, from= IP8; - MB.B17R8.B1:MB, at= 741.8097+(129.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846318, assembly_id= 103806, from= IP8; - MCS.B17R8.B1:MCS, at= 749.2337+(129-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248682, assembly_id= 103806, from= IP8; - MB.C17R8.B1:MB, at= 757.4697+(128.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846342, assembly_id= 103807, from= IP8; - MCS.C17R8.B1:MCS, at= 764.8937+(128-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248685, assembly_id= 103807, from= IP8; - BPM.17R8.B1:BPM, at= 765.7727+(128-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248687, assembly_id= 103808, from= IP8; - MQT.17R8.B1:MQT, at= 766.5267+(128-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307393, assembly_id= 103808, from= IP8; -MQ.17R8.B1:MQ, at= 768.5347+(128-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308383, assembly_id= 103808, from= IP8; - MS.17R8.B1:MS, at= 770.4297+(128-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253307, assembly_id= 103808, from= IP8; - MCBV.17R8.B1:MCBV, at= 771.0227+(128-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253309, assembly_id= 103808, from= IP8; - MCO.A18R8.B1:MCO, at= 772.1137+(128-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253312, assembly_id= 103809, from= IP8; - MCD.A18R8.B1:MCD, at= 772.1152+(128-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253313, assembly_id= 103809, from= IP8; - MB.A18R8.B1:MB, at= 779.5997+(127.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846366, assembly_id= 103809, from= IP8; - MCS.A18R8.B1:MCS, at= 787.0237+(127-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248695, assembly_id= 103809, from= IP8; - MB.B18R8.B1:MB, at= 795.2597+(126.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846390, assembly_id= 103810, from= IP8; - MCS.B18R8.B1:MCS, at= 802.6837+(126-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248698, assembly_id= 103810, from= IP8; - MCO.B18R8.B1:MCO, at= 803.4337+(126-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253316, assembly_id= 103811, from= IP8; - MCD.B18R8.B1:MCD, at= 803.4352+(126-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253317, assembly_id= 103811, from= IP8; - MB.C18R8.B1:MB, at= 810.9197+(125.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846414, assembly_id= 103811, from= IP8; - MCS.C18R8.B1:MCS, at= 818.3437+(125-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248703, assembly_id= 103811, from= IP8; - BPM.18R8.B1:BPM, at= 819.2227+(125-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248705, assembly_id= 103812, from= IP8; - MQT.18R8.B1:MQT, at= 819.9767+(125-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307425, assembly_id= 103812, from= IP8; -MQ.18R8.B1:MQ, at= 821.9847+(125-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308414, assembly_id= 103812, from= IP8; - MS.18R8.B1:MS, at= 823.8797+(125-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253319, assembly_id= 103812, from= IP8; - MCBH.18R8.B1:MCBH, at= 824.4727+(125-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253321, assembly_id= 103812, from= IP8; - MB.A19R8.B1:MB, at= 833.0497+(124.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846438, assembly_id= 103813, from= IP8; - MCS.A19R8.B1:MCS, at= 840.4737+(124-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248711, assembly_id= 103813, from= IP8; - MCO.19R8.B1:MCO, at= 841.2237+(124-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253324, assembly_id= 103814, from= IP8; - MCD.19R8.B1:MCD, at= 841.2252+(124-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253325, assembly_id= 103814, from= IP8; - MB.B19R8.B1:MB, at= 848.7097+(123.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846462, assembly_id= 103814, from= IP8; - MCS.B19R8.B1:MCS, at= 856.1337+(123-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248716, assembly_id= 103814, from= IP8; - MB.C19R8.B1:MB, at= 864.3697+(122.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846486, assembly_id= 103815, from= IP8; - MCS.C19R8.B1:MCS, at= 871.7937+(122-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248719, assembly_id= 103815, from= IP8; - BPM.19R8.B1:BPM, at= 872.6727+(122-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248721, assembly_id= 103816, from= IP8; - MQT.19R8.B1:MQT, at= 873.4267+(122-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307455, assembly_id= 103816, from= IP8; -MQ.19R8.B1:MQ, at= 875.4347+(122-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308446, assembly_id= 103816, from= IP8; - MS.19R8.B1:MS, at= 877.3297+(122-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253327, assembly_id= 103816, from= IP8; - MCBV.19R8.B1:MCBV, at= 877.9227+(122-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253329, assembly_id= 103816, from= IP8; - MCO.A20R8.B1:MCO, at= 879.0137+(122-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253332, assembly_id= 103817, from= IP8; - MCD.A20R8.B1:MCD, at= 879.0152+(122-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253333, assembly_id= 103817, from= IP8; - MB.A20R8.B1:MB, at= 886.4997+(121.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846510, assembly_id= 103817, from= IP8; - MCS.A20R8.B1:MCS, at= 893.9237+(121-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248729, assembly_id= 103817, from= IP8; - MB.B20R8.B1:MB, at= 902.1597+(120.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846534, assembly_id= 103818, from= IP8; - MCS.B20R8.B1:MCS, at= 909.5837+(120-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248732, assembly_id= 103818, from= IP8; - MCO.B20R8.B1:MCO, at= 910.3337+(120-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253336, assembly_id= 103819, from= IP8; - MCD.B20R8.B1:MCD, at= 910.3352+(120-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253337, assembly_id= 103819, from= IP8; - MB.C20R8.B1:MB, at= 917.8197+(119.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846558, assembly_id= 103819, from= IP8; - MCS.C20R8.B1:MCS, at= 925.2437+(119-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248737, assembly_id= 103819, from= IP8; - BPM.20R8.B1:BPM, at= 926.1227+(119-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248739, assembly_id= 103820, from= IP8; - MQT.20R8.B1:MQT, at= 926.8767+(119-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307485, assembly_id= 103820, from= IP8; -MQ.20R8.B1:MQ, at= 928.8847+(119-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308236, assembly_id= 103820, from= IP8; - MS.20R8.B1:MS, at= 930.7797+(119-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253339, assembly_id= 103820, from= IP8; - MCBH.20R8.B1:MCBH, at= 931.3727+(119-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253341, assembly_id= 103820, from= IP8; - MB.A21R8.B1:MB, at= 939.9497+(118.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846582, assembly_id= 103821, from= IP8; - MCS.A21R8.B1:MCS, at= 947.3737+(118-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248745, assembly_id= 103821, from= IP8; - MCO.21R8.B1:MCO, at= 948.1237+(118-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253344, assembly_id= 103822, from= IP8; - MCD.21R8.B1:MCD, at= 948.1252+(118-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253345, assembly_id= 103822, from= IP8; - MB.B21R8.B1:MB, at= 955.6097+(117.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846606, assembly_id= 103822, from= IP8; - MCS.B21R8.B1:MCS, at= 963.0337+(117-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248750, assembly_id= 103822, from= IP8; - MB.C21R8.B1:MB, at= 971.2697+(116.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846630, assembly_id= 103823, from= IP8; - MCS.C21R8.B1:MCS, at= 978.6937+(116-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248753, assembly_id= 103823, from= IP8; - BPM.21R8.B1:BPM, at= 979.5727+(116-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248755, assembly_id= 103824, from= IP8; - MQT.21R8.B1:MQT, at= 980.3267+(116-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307283, assembly_id= 103824, from= IP8; -MQ.21R8.B1:MQ, at= 982.3347+(116-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308267, assembly_id= 103824, from= IP8; - MS.21R8.B1:MS, at= 984.2297+(116-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253347, assembly_id= 103824, from= IP8; - MCBV.21R8.B1:MCBV, at= 984.8227+(116-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253349, assembly_id= 103824, from= IP8; - MCO.A22R8.B1:MCO, at= 985.9137+(116-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253352, assembly_id= 103825, from= IP8; - MCD.A22R8.B1:MCD, at= 985.9152+(116-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253353, assembly_id= 103825, from= IP8; - MB.A22R8.B1:MB, at= 993.3997+(115.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846654, assembly_id= 103825, from= IP8; - MCS.A22R8.B1:MCS, at= 1000.8237+(115-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248763, assembly_id= 103825, from= IP8; - MB.B22R8.B1:MB, at= 1009.0597+(114.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846678, assembly_id= 103826, from= IP8; - MCS.B22R8.B1:MCS, at= 1016.4837+(114-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248766, assembly_id= 103826, from= IP8; - MCO.B22R8.B1:MCO, at= 1017.2337+(114-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253356, assembly_id= 103827, from= IP8; - MCD.B22R8.B1:MCD, at= 1017.2352+(114-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253357, assembly_id= 103827, from= IP8; - MB.C22R8.B1:MB, at= 1024.7197+(113.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846702, assembly_id= 103827, from= IP8; - MCS.C22R8.B1:MCS, at= 1032.1437+(113-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248771, assembly_id= 103827, from= IP8; - BPM.22R8.B1:BPM, at= 1033.0227+(113-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248773, assembly_id= 103828, from= IP8; - MO.22R8.B1:MO, at= 1033.7737+(113-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308826, assembly_id= 103828, from= IP8; -MQ.22R8.B1:MQ, at= 1035.7847+(113-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308299, assembly_id= 103828, from= IP8; - MS.22R8.B1:MS, at= 1037.6797+(113-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253359, assembly_id= 103828, from= IP8; - MCBH.22R8.B1:MCBH, at= 1038.2727+(113-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253361, assembly_id= 103828, from= IP8; - MB.A23R8.B1:MB, at= 1046.8497+(112.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846726, assembly_id= 103829, from= IP8; - MCS.A23R8.B1:MCS, at= 1054.2737+(112-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248779, assembly_id= 103829, from= IP8; - MCO.23R8.B1:MCO, at= 1055.0237+(112-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253364, assembly_id= 103830, from= IP8; - MCD.23R8.B1:MCD, at= 1055.0252+(112-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253365, assembly_id= 103830, from= IP8; - MB.B23R8.B1:MB, at= 1062.5097+(111.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846750, assembly_id= 103830, from= IP8; - MCS.B23R8.B1:MCS, at= 1069.9337+(111-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248784, assembly_id= 103830, from= IP8; - MB.C23R8.B1:MB, at= 1078.1697+(110.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846774, assembly_id= 103831, from= IP8; - MCS.C23R8.B1:MCS, at= 1085.5937+(110-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248787, assembly_id= 103831, from= IP8; - BPM.23R8.B1:BPM, at= 1086.4727+(110-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266509, assembly_id= 103832, from= IP8; - MQS.23R8.B1:MQS, at= 1087.2267+(110-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307649, assembly_id= 103832, from= IP8; -MQ.23R8.B1:MQ, at= 1089.2347+(110-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308088, assembly_id= 103832, from= IP8; - MS.23R8.B1:MS, at= 1091.1297+(110-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253367, assembly_id= 103832, from= IP8; - MCBV.23R8.B1:MCBV, at= 1091.7227+(110-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253369, assembly_id= 103832, from= IP8; - MCO.A24R8.B1:MCO, at= 1092.8137+(110-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253372, assembly_id= 103833, from= IP8; - MCD.A24R8.B1:MCD, at= 1092.8152+(110-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253373, assembly_id= 103833, from= IP8; - MB.A24R8.B1:MB, at= 1100.2997+(109.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846798, assembly_id= 103833, from= IP8; - MCS.A24R8.B1:MCS, at= 1107.7237+(109-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248795, assembly_id= 103833, from= IP8; - MB.B24R8.B1:MB, at= 1115.9597+(108.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846822, assembly_id= 103834, from= IP8; - MCS.B24R8.B1:MCS, at= 1123.3837+(108-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248798, assembly_id= 103834, from= IP8; - MCO.B24R8.B1:MCO, at= 1124.1337+(108-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253376, assembly_id= 103835, from= IP8; - MCD.B24R8.B1:MCD, at= 1124.1352+(108-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253377, assembly_id= 103835, from= IP8; - MB.C24R8.B1:MB, at= 1131.6197+(107.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846846, assembly_id= 103835, from= IP8; - MCS.C24R8.B1:MCS, at= 1139.0437+(107-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248803, assembly_id= 103835, from= IP8; - BPM.24R8.B1:BPM, at= 1139.9227+(107-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248805, assembly_id= 103836, from= IP8; - MO.24R8.B1:MO, at= 1140.6737+(107-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308857, assembly_id= 103836, from= IP8; -MQ.24R8.B1:MQ, at= 1142.6847+(107-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308120, assembly_id= 103836, from= IP8; - MS.24R8.B1:MS, at= 1144.5797+(107-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253379, assembly_id= 103836, from= IP8; - MCBH.24R8.B1:MCBH, at= 1145.1727+(107-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253381, assembly_id= 103836, from= IP8; - MB.A25R8.B1:MB, at= 1153.7497+(106.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846870, assembly_id= 103837, from= IP8; - MCS.A25R8.B1:MCS, at= 1161.1737+(106-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248811, assembly_id= 103837, from= IP8; - MCO.25R8.B1:MCO, at= 1161.9237+(106-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253384, assembly_id= 103838, from= IP8; - MCD.25R8.B1:MCD, at= 1161.9252+(106-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253385, assembly_id= 103838, from= IP8; - MB.B25R8.B1:MB, at= 1169.4097+(105.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846894, assembly_id= 103838, from= IP8; - MCS.B25R8.B1:MCS, at= 1176.8337+(105-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248816, assembly_id= 103838, from= IP8; - MB.C25R8.B1:MB, at= 1185.0697+(104.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846918, assembly_id= 103839, from= IP8; - MCS.C25R8.B1:MCS, at= 1192.4937+(104-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248819, assembly_id= 103839, from= IP8; - BPM.25R8.B1:BPM, at= 1193.3727+(104-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248821, assembly_id= 103840, from= IP8; - MO.25R8.B1:MO, at= 1194.1237+(104-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308889, assembly_id= 103840, from= IP8; -MQ.25R8.B1:MQ, at= 1196.1347+(104-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308152, assembly_id= 103840, from= IP8; - MS.25R8.B1:MS, at= 1198.0297+(104-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253387, assembly_id= 103840, from= IP8; - MCBV.25R8.B1:MCBV, at= 1198.6227+(104-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253389, assembly_id= 103840, from= IP8; - MCO.A26R8.B1:MCO, at= 1199.7137+(104-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253392, assembly_id= 103841, from= IP8; - MCD.A26R8.B1:MCD, at= 1199.7152+(104-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253393, assembly_id= 103841, from= IP8; - MB.A26R8.B1:MB, at= 1207.1997+(103.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846942, assembly_id= 103841, from= IP8; - MCS.A26R8.B1:MCS, at= 1214.6237+(103-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248829, assembly_id= 103841, from= IP8; - MB.B26R8.B1:MB, at= 1222.8597+(102.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846966, assembly_id= 103842, from= IP8; - MCS.B26R8.B1:MCS, at= 1230.2837+(102-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248832, assembly_id= 103842, from= IP8; - MCO.B26R8.B1:MCO, at= 1231.0337+(102-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253396, assembly_id= 103843, from= IP8; - MCD.B26R8.B1:MCD, at= 1231.0352+(102-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253397, assembly_id= 103843, from= IP8; - MB.C26R8.B1:MB, at= 1238.5197+(101.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52846990, assembly_id= 103843, from= IP8; - MCS.C26R8.B1:MCS, at= 1245.9437+(101-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248837, assembly_id= 103843, from= IP8; - BPM.26R8.B1:BPM, at= 1246.8227+(101-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248839, assembly_id= 103844, from= IP8; - MO.26R8.B1:MO, at= 1247.5737+(101-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308920, assembly_id= 103844, from= IP8; -MQ.26R8.B1:MQ, at= 1249.5847+(101-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308182, assembly_id= 103844, from= IP8; - MS.26R8.B1:MS, at= 1251.4797+(101-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253399, assembly_id= 103844, from= IP8; - MCBH.26R8.B1:MCBH, at= 1252.0727+(101-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253401, assembly_id= 103844, from= IP8; - MB.A27R8.B1:MB, at= 1260.6497+(100.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847014, assembly_id= 103845, from= IP8; - MCS.A27R8.B1:MCS, at= 1268.0737+(100-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248845, assembly_id= 103845, from= IP8; - MCO.27R8.B1:MCO, at= 1268.8237+(100-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253404, assembly_id= 103846, from= IP8; - MCD.27R8.B1:MCD, at= 1268.8252+(100-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253405, assembly_id= 103846, from= IP8; - MB.B27R8.B1:MB, at= 1276.3097+(99.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847038, assembly_id= 103846, from= IP8; - MCS.B27R8.B1:MCS, at= 1283.7337+(99-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248850, assembly_id= 103846, from= IP8; - MB.C27R8.B1:MB, at= 1291.9697+(98.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847062, assembly_id= 103847, from= IP8; - MCS.C27R8.B1:MCS, at= 1299.3937+(98-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248853, assembly_id= 103847, from= IP8; - BPM.27R8.B1:BPM, at= 1300.2727+(98-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266511, assembly_id= 103848, from= IP8; - MQS.27R8.B1:MQS, at= 1301.0267+(98-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307681, assembly_id= 103848, from= IP8; -MQ.27R8.B1:MQ, at= 1303.0347+(98-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307972, assembly_id= 103848, from= IP8; - MS.27R8.B1:MS, at= 1304.9297+(98-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253407, assembly_id= 103848, from= IP8; - MCBV.27R8.B1:MCBV, at= 1305.5227+(98-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253409, assembly_id= 103848, from= IP8; - MCO.A28R8.B1:MCO, at= 1306.6137+(98-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253412, assembly_id= 103849, from= IP8; - MCD.A28R8.B1:MCD, at= 1306.6152+(98-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253413, assembly_id= 103849, from= IP8; - MB.A28R8.B1:MB, at= 1314.0997+(97.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847086, assembly_id= 103849, from= IP8; - MCS.A28R8.B1:MCS, at= 1321.5237+(97-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248861, assembly_id= 103849, from= IP8; - MB.B28R8.B1:MB, at= 1329.7597+(96.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847110, assembly_id= 103850, from= IP8; - MCS.B28R8.B1:MCS, at= 1337.1837+(96-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248864, assembly_id= 103850, from= IP8; - MCO.B28R8.B1:MCO, at= 1337.9337+(96-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253416, assembly_id= 103851, from= IP8; - MCD.B28R8.B1:MCD, at= 1337.9352+(96-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253417, assembly_id= 103851, from= IP8; - MB.C28R8.B1:MB, at= 1345.4197+(95.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847134, assembly_id= 103851, from= IP8; - MCS.C28R8.B1:MCS, at= 1352.8437+(95-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248869, assembly_id= 103851, from= IP8; - BPM.28R8.B1:BPM, at= 1353.7227+(95-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248871, assembly_id= 103852, from= IP8; - MO.28R8.B1:MO, at= 1354.4737+(95-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308710, assembly_id= 103852, from= IP8; -MQ.28R8.B1:MQ, at= 1356.4847+(95-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308004, assembly_id= 103852, from= IP8; - MS.28R8.B1:MS, at= 1358.3797+(95-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253419, assembly_id= 103852, from= IP8; - MCBH.28R8.B1:MCBH, at= 1358.9727+(95-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253421, assembly_id= 103852, from= IP8; - MB.A29R8.B1:MB, at= 1367.5497+(94.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847158, assembly_id= 103853, from= IP8; - MCS.A29R8.B1:MCS, at= 1374.9737+(94-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248877, assembly_id= 103853, from= IP8; - MCO.29R8.B1:MCO, at= 1375.7237+(94-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253424, assembly_id= 103854, from= IP8; - MCD.29R8.B1:MCD, at= 1375.7252+(94-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253425, assembly_id= 103854, from= IP8; - MB.B29R8.B1:MB, at= 1383.2097+(93.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847182, assembly_id= 103854, from= IP8; - MCS.B29R8.B1:MCS, at= 1390.6337+(93-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248882, assembly_id= 103854, from= IP8; - MB.C29R8.B1:MB, at= 1398.8697+(92.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847206, assembly_id= 103855, from= IP8; - MCS.C29R8.B1:MCS, at= 1406.2937+(92-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248885, assembly_id= 103855, from= IP8; - BPM.29R8.B1:BPM, at= 1407.1727+(92-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248887, assembly_id= 103856, from= IP8; - MO.29R8.B1:MO, at= 1407.9237+(92-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308742, assembly_id= 103856, from= IP8; -MQ.29R8.B1:MQ, at= 1409.9347+(92-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308034, assembly_id= 103856, from= IP8; - MS.29R8.B1:MS, at= 1411.8297+(92-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253427, assembly_id= 103856, from= IP8; - MCBV.29R8.B1:MCBV, at= 1412.4227+(92-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253429, assembly_id= 103856, from= IP8; - MCO.A30R8.B1:MCO, at= 1413.5137+(92-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253432, assembly_id= 103857, from= IP8; - MCD.A30R8.B1:MCD, at= 1413.5152+(92-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253433, assembly_id= 103857, from= IP8; - MB.A30R8.B1:MB, at= 1420.9997+(91.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847230, assembly_id= 103857, from= IP8; - MCS.A30R8.B1:MCS, at= 1428.4237+(91-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248895, assembly_id= 103857, from= IP8; - MB.B30R8.B1:MB, at= 1436.6597+(90.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847254, assembly_id= 103858, from= IP8; - MCS.B30R8.B1:MCS, at= 1444.0837+(90-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248898, assembly_id= 103858, from= IP8; - MCO.B30R8.B1:MCO, at= 1444.8337+(90-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253436, assembly_id= 103859, from= IP8; - MCD.B30R8.B1:MCD, at= 1444.8352+(90-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253437, assembly_id= 103859, from= IP8; - MB.C30R8.B1:MB, at= 1452.3197+(89.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847278, assembly_id= 103859, from= IP8; - MCS.C30R8.B1:MCS, at= 1459.7437+(89-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248903, assembly_id= 103859, from= IP8; - BPM.30R8.B1:BPM, at= 1460.6227+(89-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248905, assembly_id= 103860, from= IP8; - MO.30R8.B1:MO, at= 1461.3737+(89-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308772, assembly_id= 103860, from= IP8; -MQ.30R8.B1:MQ, at= 1463.3847+(89-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308064, assembly_id= 103860, from= IP8; - MSS.30R8.B1:MSS, at= 1465.2797+(89-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253439, assembly_id= 103860, from= IP8; - MCBH.30R8.B1:MCBH, at= 1465.8727+(89-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253441, assembly_id= 103860, from= IP8; - MB.A31R8.B1:MB, at= 1474.4497+(88.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847302, assembly_id= 103861, from= IP8; - MCS.A31R8.B1:MCS, at= 1481.8737+(88-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248911, assembly_id= 103861, from= IP8; - MCO.31R8.B1:MCO, at= 1482.6237+(88-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253444, assembly_id= 103862, from= IP8; - MCD.31R8.B1:MCD, at= 1482.6252+(88-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253445, assembly_id= 103862, from= IP8; - MB.B31R8.B1:MB, at= 1490.1097+(87.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847326, assembly_id= 103862, from= IP8; - MCS.B31R8.B1:MCS, at= 1497.5337+(87-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248916, assembly_id= 103862, from= IP8; - MB.C31R8.B1:MB, at= 1505.7697+(86.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847350, assembly_id= 103863, from= IP8; - MCS.C31R8.B1:MCS, at= 1513.1937+(86-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248919, assembly_id= 103863, from= IP8; - BPM.31R8.B1:BPM, at= 1514.0727+(86-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248921, assembly_id= 103864, from= IP8; - MO.31R8.B1:MO, at= 1514.8237+(86-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308802, assembly_id= 103864, from= IP8; -MQ.31R8.B1:MQ, at= 1516.8347+(86-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307856, assembly_id= 103864, from= IP8; - MS.31R8.B1:MS, at= 1518.7297+(86-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253447, assembly_id= 103864, from= IP8; - MCBV.31R8.B1:MCBV, at= 1519.3227+(86-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253449, assembly_id= 103864, from= IP8; -S.CELL.81.B1:OMK, at= 1520.0697+(86-IP8OFS.B1)*DS, slot_id= 100932, from= IP8; - MCO.A32R8.B1:MCO, at= 1520.4137+(86-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253452, assembly_id= 103865, from= IP8; - MCD.A32R8.B1:MCD, at= 1520.4152+(86-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253453, assembly_id= 103865, from= IP8; - MB.A32R8.B1:MB, at= 1527.8997+(85.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847374, assembly_id= 103865, from= IP8; - MCS.A32R8.B1:MCS, at= 1535.3237+(85-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248929, assembly_id= 103865, from= IP8; - MB.B32R8.B1:MB, at= 1543.5597+(84.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847398, assembly_id= 103866, from= IP8; - MCS.B32R8.B1:MCS, at= 1550.9837+(84-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248932, assembly_id= 103866, from= IP8; - MCO.B32R8.B1:MCO, at= 1551.7337+(84-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253456, assembly_id= 103867, from= IP8; - MCD.B32R8.B1:MCD, at= 1551.7352+(84-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253457, assembly_id= 103867, from= IP8; - MB.C32R8.B1:MB, at= 1559.2197+(83.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847422, assembly_id= 103867, from= IP8; - MCS.C32R8.B1:MCS, at= 1566.6437+(83-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248937, assembly_id= 103867, from= IP8; - BPM.32R8.B1:BPM, at= 1567.5227+(83-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248939, assembly_id= 103868, from= IP8; - MO.32R8.B1:MO, at= 1568.2737+(83-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308595, assembly_id= 103868, from= IP8; -MQ.32R8.B1:MQ, at= 1570.2847+(83-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307886, assembly_id= 103868, from= IP8; - MS.32R8.B1:MS, at= 1572.1797+(83-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253459, assembly_id= 103868, from= IP8; - MCBH.32R8.B1:MCBH, at= 1572.7727+(83-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253461, assembly_id= 103868, from= IP8; - MB.A33R8.B1:MB, at= 1581.3497+(82.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847446, assembly_id= 103869, from= IP8; - MCS.A33R8.B1:MCS, at= 1588.7737+(82-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248945, assembly_id= 103869, from= IP8; - MCO.33R8.B1:MCO, at= 1589.5237+(82-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253464, assembly_id= 103870, from= IP8; - MCD.33R8.B1:MCD, at= 1589.5252+(82-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253465, assembly_id= 103870, from= IP8; - MB.B33R8.B1:MB, at= 1597.0097+(81.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847470, assembly_id= 103870, from= IP8; - MCS.B33R8.B1:MCS, at= 1604.4337+(81-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248950, assembly_id= 103870, from= IP8; - MB.C33R8.B1:MB, at= 1612.6697+(80.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847494, assembly_id= 103871, from= IP8; - MCS.C33R8.B1:MCS, at= 1620.0937+(80-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248953, assembly_id= 103871, from= IP8; - BPM.33R8.B1:BPM, at= 1620.9727+(80-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248955, assembly_id= 103872, from= IP8; - MO.33R8.B1:MO, at= 1621.7237+(80-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308625, assembly_id= 103872, from= IP8; -MQ.33R8.B1:MQ, at= 1623.7347+(80-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307915, assembly_id= 103872, from= IP8; - MS.33R8.B1:MS, at= 1625.6297+(80-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253467, assembly_id= 103872, from= IP8; - MCBV.33R8.B1:MCBV, at= 1626.2227+(80-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253469, assembly_id= 103872, from= IP8; -E.CELL.81.B1:OMK, at= 1626.9697+(80-IP8OFS.B1)*DS, slot_id= 100932, from= IP8; - MCO.A34R8.B1:MCO, at= 1627.3137+(80-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253472, assembly_id= 103873, from= IP8; - MCD.A34R8.B1:MCD, at= 1627.3152+(80-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253473, assembly_id= 103873, from= IP8; - MB.A34R8.B1:MB, at= 1634.7997+(79.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847518, assembly_id= 103873, from= IP8; - MCS.A34R8.B1:MCS, at= 1642.2237+(79-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248963, assembly_id= 103873, from= IP8; - MB.B34R8.B1:MB, at= 1650.4597+(78.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847542, assembly_id= 103874, from= IP8; - MCS.B34R8.B1:MCS, at= 1657.8837+(78-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248966, assembly_id= 103874, from= IP8; - MCO.B34R8.B1:MCO, at= 1658.6337+(78-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253476, assembly_id= 103875, from= IP8; - MCD.B34R8.B1:MCD, at= 1658.6352+(78-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253477, assembly_id= 103875, from= IP8; - MB.C34R8.B1:MB, at= 1666.1197+(77.5-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847566, assembly_id= 103875, from= IP8; - MCS.C34R8.B1:MCS, at= 1673.5437+(77-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248971, assembly_id= 103875, from= IP8; - BPM.34R8.B1:BPM, at= 1674.4227+(77-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248973, assembly_id= 103876, from= IP8; - MO.34R8.B1:MO, at= 1675.1737+(77-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308640, assembly_id= 103876, from= IP8; -MQ.34R8.B1:MQ, at= 1677.1847+(77-IP8OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307930, assembly_id= 103876, from= IP8; - MSS.34L1.B1:MSS, at= -1664.5007+(77-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253479, assembly_id= 103876, from= IP1.L1; - MCBH.34L1.B1:MCBH, at= -1663.9077+(77-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253481, assembly_id= 103876, from= IP1.L1; - MB.C34L1.B1:MB, at= -1655.3307+(76.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847590, assembly_id= 103877, from= IP1.L1; - MCS.C34L1.B1:MCS, at= -1647.9067+(76-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248979, assembly_id= 103877, from= IP1.L1; - MCO.34L1.B1:MCO, at= -1647.1567+(76-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253484, assembly_id= 103878, from= IP1.L1; - MCD.34L1.B1:MCD, at= -1647.1552+(76-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253485, assembly_id= 103878, from= IP1.L1; - MB.B34L1.B1:MB, at= -1639.6707+(75.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847614, assembly_id= 103878, from= IP1.L1; - MCS.B34L1.B1:MCS, at= -1632.2467+(75-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248984, assembly_id= 103878, from= IP1.L1; - MB.A34L1.B1:MB, at= -1624.0107+(74.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847638, assembly_id= 103879, from= IP1.L1; - MCS.A34L1.B1:MCS, at= -1616.5867+(74-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248987, assembly_id= 103879, from= IP1.L1; - BPM.33L1.B1:BPM, at= -1615.7077+(74-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248989, assembly_id= 103880, from= IP1.L1; - MO.33L1.B1:MO, at= -1614.9567+(74-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308597, assembly_id= 103880, from= IP1.L1; -MQ.33L1.B1:MQ, at= -1612.9457+(74-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348459, assembly_id= 103880, from= IP1.L1; - MS.33L1.B1:MS, at= -1611.0507+(74-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253487, assembly_id= 103880, from= IP1.L1; - MCBV.33L1.B1:MCBV, at= -1610.4577+(74-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253489, assembly_id= 103880, from= IP1.L1; - MCO.B33L1.B1:MCO, at= -1609.3667+(74-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253492, assembly_id= 103881, from= IP1.L1; - MCD.B33L1.B1:MCD, at= -1609.3652+(74-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253493, assembly_id= 103881, from= IP1.L1; - MB.C33L1.B1:MB, at= -1601.8807+(73.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847662, assembly_id= 103881, from= IP1.L1; - MCS.C33L1.B1:MCS, at= -1594.4567+(73-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 248997, assembly_id= 103881, from= IP1.L1; - MB.B33L1.B1:MB, at= -1586.2207+(72.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847686, assembly_id= 103882, from= IP1.L1; - MCS.B33L1.B1:MCS, at= -1578.7967+(72-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249000, assembly_id= 103882, from= IP1.L1; - MCO.A33L1.B1:MCO, at= -1578.0467+(72-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253496, assembly_id= 103883, from= IP1.L1; - MCD.A33L1.B1:MCD, at= -1578.0452+(72-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253497, assembly_id= 103883, from= IP1.L1; - MB.A33L1.B1:MB, at= -1570.5607+(71.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847710, assembly_id= 103883, from= IP1.L1; - MCS.A33L1.B1:MCS, at= -1563.1367+(71-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249005, assembly_id= 103883, from= IP1.L1; - BPM.32L1.B1:BPM, at= -1562.2577+(71-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249007, assembly_id= 103884, from= IP1.L1; - MO.32L1.B1:MO, at= -1561.5067+(71-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308565, assembly_id= 103884, from= IP1.L1; -MQ.32L1.B1:MQ, at= -1559.4957+(71-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307858, assembly_id= 103884, from= IP1.L1; - MSS.32L1.B1:MSS, at= -1557.6007+(71-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253499, assembly_id= 103884, from= IP1.L1; - MCBH.32L1.B1:MCBH, at= -1557.0077+(71-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253501, assembly_id= 103884, from= IP1.L1; - MB.C32L1.B1:MB, at= -1548.4307+(70.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847734, assembly_id= 103885, from= IP1.L1; - MCS.C32L1.B1:MCS, at= -1541.0067+(70-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249013, assembly_id= 103885, from= IP1.L1; - MCO.32L1.B1:MCO, at= -1540.2567+(70-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253504, assembly_id= 103886, from= IP1.L1; - MCD.32L1.B1:MCD, at= -1540.2552+(70-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253505, assembly_id= 103886, from= IP1.L1; - MB.B32L1.B1:MB, at= -1532.7707+(69.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847758, assembly_id= 103886, from= IP1.L1; - MCS.B32L1.B1:MCS, at= -1525.3467+(69-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249018, assembly_id= 103886, from= IP1.L1; - MB.A32L1.B1:MB, at= -1517.1107+(68.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847782, assembly_id= 103887, from= IP1.L1; - MCS.A32L1.B1:MCS, at= -1509.6867+(68-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249021, assembly_id= 103887, from= IP1.L1; - BPM.31L1.B1:BPM, at= -1508.8077+(68-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249023, assembly_id= 103888, from= IP1.L1; - MO.31L1.B1:MO, at= -1508.0567+(68-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308774, assembly_id= 103888, from= IP1.L1; -MQ.31L1.B1:MQ, at= -1506.0457+(68-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308066, assembly_id= 103888, from= IP1.L1; - MS.31L1.B1:MS, at= -1504.1507+(68-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253507, assembly_id= 103888, from= IP1.L1; - MCBV.31L1.B1:MCBV, at= -1503.5577+(68-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253509, assembly_id= 103888, from= IP1.L1; - MCO.B31L1.B1:MCO, at= -1502.4667+(68-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253512, assembly_id= 103889, from= IP1.L1; - MCD.B31L1.B1:MCD, at= -1502.4652+(68-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253513, assembly_id= 103889, from= IP1.L1; - MB.C31L1.B1:MB, at= -1494.9807+(67.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847806, assembly_id= 103889, from= IP1.L1; - MCS.C31L1.B1:MCS, at= -1487.5567+(67-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249031, assembly_id= 103889, from= IP1.L1; - MB.B31L1.B1:MB, at= -1479.3207+(66.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847830, assembly_id= 103890, from= IP1.L1; - MCS.B31L1.B1:MCS, at= -1471.8967+(66-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249034, assembly_id= 103890, from= IP1.L1; - MCO.A31L1.B1:MCO, at= -1471.1467+(66-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253516, assembly_id= 103891, from= IP1.L1; - MCD.A31L1.B1:MCD, at= -1471.1452+(66-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253517, assembly_id= 103891, from= IP1.L1; - MB.A31L1.B1:MB, at= -1463.6607+(65.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847854, assembly_id= 103891, from= IP1.L1; - MCS.A31L1.B1:MCS, at= -1456.2367+(65-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249039, assembly_id= 103891, from= IP1.L1; - BPM.30L1.B1:BPM, at= -1455.3577+(65-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249041, assembly_id= 103892, from= IP1.L1; - MO.30L1.B1:MO, at= -1454.6067+(65-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308744, assembly_id= 103892, from= IP1.L1; -MQ.30L1.B1:MQ, at= -1452.5957+(65-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308036, assembly_id= 103892, from= IP1.L1; - MS.30L1.B1:MS, at= -1450.7007+(65-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253519, assembly_id= 103892, from= IP1.L1; - MCBH.30L1.B1:MCBH, at= -1450.1077+(65-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253521, assembly_id= 103892, from= IP1.L1; - MB.C30L1.B1:MB, at= -1441.5307+(64.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847878, assembly_id= 103893, from= IP1.L1; - MCS.C30L1.B1:MCS, at= -1434.1067+(64-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249047, assembly_id= 103893, from= IP1.L1; - MCO.30L1.B1:MCO, at= -1433.3567+(64-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253524, assembly_id= 103894, from= IP1.L1; - MCD.30L1.B1:MCD, at= -1433.3552+(64-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253525, assembly_id= 103894, from= IP1.L1; - MB.B30L1.B1:MB, at= -1425.8707+(63.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847902, assembly_id= 103894, from= IP1.L1; - MCS.B30L1.B1:MCS, at= -1418.4467+(63-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249052, assembly_id= 103894, from= IP1.L1; - MB.A30L1.B1:MB, at= -1410.2107+(62.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847926, assembly_id= 103895, from= IP1.L1; - MCS.A30L1.B1:MCS, at= -1402.7867+(62-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249055, assembly_id= 103895, from= IP1.L1; - BPM.29L1.B1:BPM, at= -1401.9077+(62-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249057, assembly_id= 103896, from= IP1.L1; - MO.29L1.B1:MO, at= -1401.1567+(62-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308712, assembly_id= 103896, from= IP1.L1; -MQ.29L1.B1:MQ, at= -1399.1457+(62-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308006, assembly_id= 103896, from= IP1.L1; - MS.29L1.B1:MS, at= -1397.2507+(62-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253527, assembly_id= 103896, from= IP1.L1; - MCBV.29L1.B1:MCBV, at= -1396.6577+(62-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253529, assembly_id= 103896, from= IP1.L1; - MCO.B29L1.B1:MCO, at= -1395.5667+(62-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253532, assembly_id= 103897, from= IP1.L1; - MCD.B29L1.B1:MCD, at= -1395.5652+(62-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253533, assembly_id= 103897, from= IP1.L1; - MB.C29L1.B1:MB, at= -1388.0807+(61.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847950, assembly_id= 103897, from= IP1.L1; - MCS.C29L1.B1:MCS, at= -1380.6567+(61-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249065, assembly_id= 103897, from= IP1.L1; - MB.B29L1.B1:MB, at= -1372.4207+(60.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847974, assembly_id= 103898, from= IP1.L1; - MCS.B29L1.B1:MCS, at= -1364.9967+(60-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249068, assembly_id= 103898, from= IP1.L1; - MCO.A29L1.B1:MCO, at= -1364.2467+(60-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253536, assembly_id= 103899, from= IP1.L1; - MCD.A29L1.B1:MCD, at= -1364.2452+(60-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253537, assembly_id= 103899, from= IP1.L1; - MB.A29L1.B1:MB, at= -1356.7607+(59.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52847998, assembly_id= 103899, from= IP1.L1; - MCS.A29L1.B1:MCS, at= -1349.3367+(59-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249073, assembly_id= 103899, from= IP1.L1; - BPM.28L1.B1:BPM, at= -1348.4577+(59-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249075, assembly_id= 103900, from= IP1.L1; - MO.28L1.B1:MO, at= -1347.7067+(59-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308922, assembly_id= 103900, from= IP1.L1; -MQ.28L1.B1:MQ, at= -1345.6957+(59-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307974, assembly_id= 103900, from= IP1.L1; - MSS.28L1.B1:MSS, at= -1343.8007+(59-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253539, assembly_id= 103900, from= IP1.L1; - MCBH.28L1.B1:MCBH, at= -1343.2077+(59-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253541, assembly_id= 103900, from= IP1.L1; - MB.C28L1.B1:MB, at= -1334.6307+(58.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848022, assembly_id= 103901, from= IP1.L1; - MCS.C28L1.B1:MCS, at= -1327.2067+(58-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249081, assembly_id= 103901, from= IP1.L1; - MCO.28L1.B1:MCO, at= -1326.4567+(58-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253544, assembly_id= 103902, from= IP1.L1; - MCD.28L1.B1:MCD, at= -1326.4552+(58-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253545, assembly_id= 103902, from= IP1.L1; - MB.B28L1.B1:MB, at= -1318.9707+(57.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848046, assembly_id= 103902, from= IP1.L1; - MCS.B28L1.B1:MCS, at= -1311.5467+(57-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249086, assembly_id= 103902, from= IP1.L1; - MB.A28L1.B1:MB, at= -1303.3107+(56.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848070, assembly_id= 103903, from= IP1.L1; - MCS.A28L1.B1:MCS, at= -1295.8867+(56-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249089, assembly_id= 103903, from= IP1.L1; - BPM.27L1.B1:BPM, at= -1295.0077+(56-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266513, assembly_id= 103904, from= IP1.L1; - MQS.27L1.B1:MQS, at= -1294.2537+(56-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307651, assembly_id= 103904, from= IP1.L1; -MQ.27L1.B1:MQ, at= -1292.2457+(56-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308184, assembly_id= 103904, from= IP1.L1; - MS.27L1.B1:MS, at= -1290.3507+(56-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253547, assembly_id= 103904, from= IP1.L1; - MCBV.27L1.B1:MCBV, at= -1289.7577+(56-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253549, assembly_id= 103904, from= IP1.L1; - MCO.B27L1.B1:MCO, at= -1288.6667+(56-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253552, assembly_id= 103905, from= IP1.L1; - MCD.B27L1.B1:MCD, at= -1288.6652+(56-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253553, assembly_id= 103905, from= IP1.L1; - MB.C27L1.B1:MB, at= -1281.1807+(55.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848094, assembly_id= 103905, from= IP1.L1; - MCS.C27L1.B1:MCS, at= -1273.7567+(55-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249097, assembly_id= 103905, from= IP1.L1; - MB.B27L1.B1:MB, at= -1265.5207+(54.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848118, assembly_id= 103906, from= IP1.L1; - MCS.B27L1.B1:MCS, at= -1258.0967+(54-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249100, assembly_id= 103906, from= IP1.L1; - MCO.A27L1.B1:MCO, at= -1257.3467+(54-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253556, assembly_id= 103907, from= IP1.L1; - MCD.A27L1.B1:MCD, at= -1257.3452+(54-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253557, assembly_id= 103907, from= IP1.L1; - MB.A27L1.B1:MB, at= -1249.8607+(53.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848142, assembly_id= 103907, from= IP1.L1; - MCS.A27L1.B1:MCS, at= -1242.4367+(53-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249105, assembly_id= 103907, from= IP1.L1; - BPM.26L1.B1:BPM, at= -1241.5577+(53-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249107, assembly_id= 103908, from= IP1.L1; - MO.26L1.B1:MO, at= -1240.8067+(53-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308891, assembly_id= 103908, from= IP1.L1; -MQ.26L1.B1:MQ, at= -1238.7957+(53-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308154, assembly_id= 103908, from= IP1.L1; - MS.26L1.B1:MS, at= -1236.9007+(53-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253559, assembly_id= 103908, from= IP1.L1; - MCBH.26L1.B1:MCBH, at= -1236.3077+(53-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253561, assembly_id= 103908, from= IP1.L1; - MB.C26L1.B1:MB, at= -1227.7307+(52.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848166, assembly_id= 103909, from= IP1.L1; - MCS.C26L1.B1:MCS, at= -1220.3067+(52-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249113, assembly_id= 103909, from= IP1.L1; - MCO.26L1.B1:MCO, at= -1219.5567+(52-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253564, assembly_id= 103910, from= IP1.L1; - MCD.26L1.B1:MCD, at= -1219.5552+(52-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253565, assembly_id= 103910, from= IP1.L1; - MB.B26L1.B1:MB, at= -1212.0707+(51.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848190, assembly_id= 103910, from= IP1.L1; - MCS.B26L1.B1:MCS, at= -1204.6467+(51-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249118, assembly_id= 103910, from= IP1.L1; - MB.A26L1.B1:MB, at= -1196.4107+(50.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848214, assembly_id= 103911, from= IP1.L1; - MCS.A26L1.B1:MCS, at= -1188.9867+(50-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249121, assembly_id= 103911, from= IP1.L1; - BPM.25L1.B1:BPM, at= -1188.1077+(50-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249123, assembly_id= 103912, from= IP1.L1; - MO.25L1.B1:MO, at= -1187.3567+(50-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308859, assembly_id= 103912, from= IP1.L1; -MQ.25L1.B1:MQ, at= -1185.3457+(50-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308122, assembly_id= 103912, from= IP1.L1; - MS.25L1.B1:MS, at= -1183.4507+(50-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253567, assembly_id= 103912, from= IP1.L1; - MCBV.25L1.B1:MCBV, at= -1182.8577+(50-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253569, assembly_id= 103912, from= IP1.L1; - MCO.B25L1.B1:MCO, at= -1181.7667+(50-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253572, assembly_id= 103913, from= IP1.L1; - MCD.B25L1.B1:MCD, at= -1181.7652+(50-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253573, assembly_id= 103913, from= IP1.L1; - MB.C25L1.B1:MB, at= -1174.2807+(49.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848238, assembly_id= 103913, from= IP1.L1; - MCS.C25L1.B1:MCS, at= -1166.8567+(49-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249131, assembly_id= 103913, from= IP1.L1; - MB.B25L1.B1:MB, at= -1158.6207+(48.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848262, assembly_id= 103914, from= IP1.L1; - MCS.B25L1.B1:MCS, at= -1151.1967+(48-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249134, assembly_id= 103914, from= IP1.L1; - MCO.A25L1.B1:MCO, at= -1150.4467+(48-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253576, assembly_id= 103915, from= IP1.L1; - MCD.A25L1.B1:MCD, at= -1150.4452+(48-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253577, assembly_id= 103915, from= IP1.L1; - MB.A25L1.B1:MB, at= -1142.9607+(47.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848286, assembly_id= 103915, from= IP1.L1; - MCS.A25L1.B1:MCS, at= -1135.5367+(47-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249139, assembly_id= 103915, from= IP1.L1; - BPM.24L1.B1:BPM, at= -1134.6577+(47-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249141, assembly_id= 103916, from= IP1.L1; - MO.24L1.B1:MO, at= -1133.9067+(47-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308828, assembly_id= 103916, from= IP1.L1; -MQ.24L1.B1:MQ, at= -1131.8957+(47-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308090, assembly_id= 103916, from= IP1.L1; - MS.24L1.B1:MS, at= -1130.0007+(47-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253579, assembly_id= 103916, from= IP1.L1; - MCBH.24L1.B1:MCBH, at= -1129.4077+(47-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253581, assembly_id= 103916, from= IP1.L1; - MB.C24L1.B1:MB, at= -1120.8307+(46.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848310, assembly_id= 103917, from= IP1.L1; - MCS.C24L1.B1:MCS, at= -1113.4067+(46-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249147, assembly_id= 103917, from= IP1.L1; - MCO.24L1.B1:MCO, at= -1112.6567+(46-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253584, assembly_id= 103918, from= IP1.L1; - MCD.24L1.B1:MCD, at= -1112.6552+(46-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253585, assembly_id= 103918, from= IP1.L1; - MB.B24L1.B1:MB, at= -1105.1707+(45.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848334, assembly_id= 103918, from= IP1.L1; - MCS.B24L1.B1:MCS, at= -1097.7467+(45-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249152, assembly_id= 103918, from= IP1.L1; - MB.A24L1.B1:MB, at= -1089.5107+(44.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848358, assembly_id= 103919, from= IP1.L1; - MCS.A24L1.B1:MCS, at= -1082.0867+(44-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249155, assembly_id= 103919, from= IP1.L1; - BPM.23L1.B1:BPM, at= -1081.2077+(44-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 266515, assembly_id= 103920, from= IP1.L1; - MQS.23L1.B1:MQS, at= -1080.4537+(44-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307621, assembly_id= 103920, from= IP1.L1; -MQ.23L1.B1:MQ, at= -1078.4457+(44-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308301, assembly_id= 103920, from= IP1.L1; - MS.23L1.B1:MS, at= -1076.5507+(44-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253587, assembly_id= 103920, from= IP1.L1; - MCBV.23L1.B1:MCBV, at= -1075.9577+(44-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253589, assembly_id= 103920, from= IP1.L1; - MCO.B23L1.B1:MCO, at= -1074.8667+(44-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253592, assembly_id= 103921, from= IP1.L1; - MCD.B23L1.B1:MCD, at= -1074.8652+(44-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253593, assembly_id= 103921, from= IP1.L1; - MB.C23L1.B1:MB, at= -1067.3807+(43.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848382, assembly_id= 103921, from= IP1.L1; - MCS.C23L1.B1:MCS, at= -1059.9567+(43-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249163, assembly_id= 103921, from= IP1.L1; - MB.B23L1.B1:MB, at= -1051.7207+(42.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848406, assembly_id= 103922, from= IP1.L1; - MCS.B23L1.B1:MCS, at= -1044.2967+(42-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249166, assembly_id= 103922, from= IP1.L1; - MCO.A23L1.B1:MCO, at= -1043.5467+(42-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253596, assembly_id= 103923, from= IP1.L1; - MCD.A23L1.B1:MCD, at= -1043.5452+(42-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253597, assembly_id= 103923, from= IP1.L1; - MB.A23L1.B1:MB, at= -1036.0607+(41.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848430, assembly_id= 103923, from= IP1.L1; - MCS.A23L1.B1:MCS, at= -1028.6367+(41-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249171, assembly_id= 103923, from= IP1.L1; - BPM.22L1.B1:BPM, at= -1027.7577+(41-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249173, assembly_id= 103924, from= IP1.L1; - MO.22L1.B1:MO, at= -1027.0067+(41-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2309035, assembly_id= 103924, from= IP1.L1; -MQ.22L1.B1:MQ, at= -1024.9957+(41-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308269, assembly_id= 103924, from= IP1.L1; - MS.22L1.B1:MS, at= -1023.1007+(41-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253599, assembly_id= 103924, from= IP1.L1; - MCBH.22L1.B1:MCBH, at= -1022.5077+(41-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253601, assembly_id= 103924, from= IP1.L1; - MB.C22L1.B1:MB, at= -1013.9307+(40.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848454, assembly_id= 103925, from= IP1.L1; - MCS.C22L1.B1:MCS, at= -1006.5067+(40-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249179, assembly_id= 103925, from= IP1.L1; - MCO.22L1.B1:MCO, at= -1005.7567+(40-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253604, assembly_id= 103926, from= IP1.L1; - MCD.22L1.B1:MCD, at= -1005.7552+(40-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253605, assembly_id= 103926, from= IP1.L1; - MB.B22L1.B1:MB, at= -998.2707+(39.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848478, assembly_id= 103926, from= IP1.L1; - MCS.B22L1.B1:MCS, at= -990.8467+(39-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249184, assembly_id= 103926, from= IP1.L1; - MB.A22L1.B1:MB, at= -982.6107+(38.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848502, assembly_id= 103927, from= IP1.L1; - MCS.A22L1.B1:MCS, at= -975.1867+(38-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249187, assembly_id= 103927, from= IP1.L1; - BPM.21L1.B1:BPM, at= -974.3077+(38-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249189, assembly_id= 103928, from= IP1.L1; - MQT.21L1.B1:MQT, at= -973.5537+(38-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307486, assembly_id= 103928, from= IP1.L1; -MQ.21L1.B1:MQ, at= -971.5457+(38-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308238, assembly_id= 103928, from= IP1.L1; - MS.21L1.B1:MS, at= -969.6507+(38-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253607, assembly_id= 103928, from= IP1.L1; - MCBV.21L1.B1:MCBV, at= -969.0577+(38-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253609, assembly_id= 103928, from= IP1.L1; - MCO.B21L1.B1:MCO, at= -967.9667+(38-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253612, assembly_id= 103929, from= IP1.L1; - MCD.B21L1.B1:MCD, at= -967.9652+(38-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253613, assembly_id= 103929, from= IP1.L1; - MB.C21L1.B1:MB, at= -960.4807+(37.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848526, assembly_id= 103929, from= IP1.L1; - MCS.C21L1.B1:MCS, at= -953.0567+(37-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249197, assembly_id= 103929, from= IP1.L1; - MB.B21L1.B1:MB, at= -944.8207+(36.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848550, assembly_id= 103930, from= IP1.L1; - MCS.B21L1.B1:MCS, at= -937.3967+(36-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249200, assembly_id= 103930, from= IP1.L1; - MCO.A21L1.B1:MCO, at= -936.6467+(36-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253616, assembly_id= 103931, from= IP1.L1; - MCD.A21L1.B1:MCD, at= -936.6452+(36-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253617, assembly_id= 103931, from= IP1.L1; - MB.A21L1.B1:MB, at= -929.1607+(35.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848574, assembly_id= 103931, from= IP1.L1; - MCS.A21L1.B1:MCS, at= -921.7367+(35-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249205, assembly_id= 103931, from= IP1.L1; - BPM.20L1.B1:BPM, at= -920.8577+(35-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249207, assembly_id= 103932, from= IP1.L1; - MQT.20L1.B1:MQT_UNPLUGGED, at= -920.1037+(35-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307457, assembly_id= 103932, from= IP1.L1; -MQ.20L1.B1:MQ, at= -918.0957+(35-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308208, assembly_id= 103932, from= IP1.L1; - MS.20L1.B1:MS, at= -916.2007+(35-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253619, assembly_id= 103932, from= IP1.L1; - MCBH.20L1.B1:MCBH, at= -915.6077+(35-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253621, assembly_id= 103932, from= IP1.L1; - MB.C20L1.B1:MB, at= -907.0307+(34.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848598, assembly_id= 103933, from= IP1.L1; - MCS.C20L1.B1:MCS, at= -899.6067+(34-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249213, assembly_id= 103933, from= IP1.L1; - MCO.20L1.B1:MCO, at= -898.8567+(34-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253624, assembly_id= 103934, from= IP1.L1; - MCD.20L1.B1:MCD, at= -898.8552+(34-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253625, assembly_id= 103934, from= IP1.L1; - MB.B20L1.B1:MB, at= -891.3707+(33.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848622, assembly_id= 103934, from= IP1.L1; - MCS.B20L1.B1:MCS, at= -883.9467+(33-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249218, assembly_id= 103934, from= IP1.L1; - MB.A20L1.B1:MB, at= -875.7107+(32.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848646, assembly_id= 103935, from= IP1.L1; - MCS.A20L1.B1:MCS, at= -868.2867+(32-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249221, assembly_id= 103935, from= IP1.L1; - BPM.19L1.B1:BPM, at= -867.4077+(32-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249223, assembly_id= 103936, from= IP1.L1; - MQT.19L1.B1:MQT, at= -866.6537+(32-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307427, assembly_id= 103936, from= IP1.L1; -MQ.19L1.B1:MQ, at= -864.6457+(32-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308416, assembly_id= 103936, from= IP1.L1; - MS.19L1.B1:MS, at= -862.7507+(32-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253627, assembly_id= 103936, from= IP1.L1; - MCBV.19L1.B1:MCBV, at= -862.1577+(32-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253629, assembly_id= 103936, from= IP1.L1; - MCO.B19L1.B1:MCO, at= -861.0667+(32-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253632, assembly_id= 103937, from= IP1.L1; - MCD.B19L1.B1:MCD, at= -861.0652+(32-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253633, assembly_id= 103937, from= IP1.L1; - MB.C19L1.B1:MB, at= -853.5807+(31.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848670, assembly_id= 103937, from= IP1.L1; - MCS.C19L1.B1:MCS, at= -846.1567+(31-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249231, assembly_id= 103937, from= IP1.L1; - MB.B19L1.B1:MB, at= -837.9207+(30.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848694, assembly_id= 103938, from= IP1.L1; - MCS.B19L1.B1:MCS, at= -830.4967+(30-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249234, assembly_id= 103938, from= IP1.L1; - MCO.A19L1.B1:MCO, at= -829.7467+(30-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253636, assembly_id= 103939, from= IP1.L1; - MCD.A19L1.B1:MCD, at= -829.7452+(30-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253637, assembly_id= 103939, from= IP1.L1; - MB.A19L1.B1:MB, at= -822.2607+(29.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848718, assembly_id= 103939, from= IP1.L1; - MCS.A19L1.B1:MCS, at= -814.8367+(29-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249239, assembly_id= 103939, from= IP1.L1; - BPM.18L1.B1:BPM, at= -813.9577+(29-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249241, assembly_id= 103940, from= IP1.L1; - MQT.18L1.B1:MQT_UNPLUGGED, at= -813.2037+(29-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307395, assembly_id= 103940, from= IP1.L1; -MQ.18L1.B1:MQ, at= -811.1957+(29-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308385, assembly_id= 103940, from= IP1.L1; - MS.18L1.B1:MS, at= -809.3007+(29-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253639, assembly_id= 103940, from= IP1.L1; - MCBH.18L1.B1:MCBH, at= -808.7077+(29-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253641, assembly_id= 103940, from= IP1.L1; - MB.C18L1.B1:MB, at= -800.1307+(28.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848742, assembly_id= 103941, from= IP1.L1; - MCS.C18L1.B1:MCS, at= -792.7067+(28-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249247, assembly_id= 103941, from= IP1.L1; - MCO.18L1.B1:MCO, at= -791.9567+(28-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253644, assembly_id= 103942, from= IP1.L1; - MCD.18L1.B1:MCD, at= -791.9552+(28-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253645, assembly_id= 103942, from= IP1.L1; - MB.B18L1.B1:MB, at= -784.4707+(27.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848766, assembly_id= 103942, from= IP1.L1; - MCS.B18L1.B1:MCS, at= -777.0467+(27-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249252, assembly_id= 103942, from= IP1.L1; - MB.A18L1.B1:MB, at= -768.8107+(26.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848790, assembly_id= 103943, from= IP1.L1; - MCS.A18L1.B1:MCS, at= -761.3867+(26-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249255, assembly_id= 103943, from= IP1.L1; - BPM.17L1.B1:BPM, at= -760.5077+(26-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249257, assembly_id= 103944, from= IP1.L1; - MQT.17L1.B1:MQT, at= -759.7537+(26-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307600, assembly_id= 103944, from= IP1.L1; -MQ.17L1.B1:MQ, at= -757.7457+(26-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308355, assembly_id= 103944, from= IP1.L1; - MS.17L1.B1:MS, at= -755.8507+(26-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253647, assembly_id= 103944, from= IP1.L1; - MCBV.17L1.B1:MCBV, at= -755.2577+(26-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253649, assembly_id= 103944, from= IP1.L1; - MCO.B17L1.B1:MCO, at= -754.1667+(26-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253652, assembly_id= 103945, from= IP1.L1; - MCD.B17L1.B1:MCD, at= -754.1652+(26-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253653, assembly_id= 103945, from= IP1.L1; - MB.C17L1.B1:MB, at= -746.6807+(25.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848814, assembly_id= 103945, from= IP1.L1; - MCS.C17L1.B1:MCS, at= -739.2567+(25-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249265, assembly_id= 103945, from= IP1.L1; - MB.B17L1.B1:MB, at= -731.0207+(24.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848838, assembly_id= 103946, from= IP1.L1; - MCS.B17L1.B1:MCS, at= -723.5967+(24-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249268, assembly_id= 103946, from= IP1.L1; - MCO.A17L1.B1:MCO, at= -722.8467+(24-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253656, assembly_id= 103947, from= IP1.L1; - MCD.A17L1.B1:MCD, at= -722.8452+(24-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253657, assembly_id= 103947, from= IP1.L1; - MB.A17L1.B1:MB, at= -715.3607+(23.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848862, assembly_id= 103947, from= IP1.L1; - MCS.A17L1.B1:MCS, at= -707.9367+(23-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249273, assembly_id= 103947, from= IP1.L1; - BPM.16L1.B1:BPM, at= -707.0577+(23-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249275, assembly_id= 103948, from= IP1.L1; - MQT.16L1.B1:MQT_UNPLUGGED, at= -706.3037+(23-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348445, assembly_id= 103948, from= IP1.L1; -MQ.16L1.B1:MQ, at= -704.2957+(23-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308563, assembly_id= 103948, from= IP1.L1; - MS.16L1.B1:MS, at= -702.4007+(23-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253659, assembly_id= 103948, from= IP1.L1; - MCBH.16L1.B1:MCBH, at= -701.8077+(23-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253661, assembly_id= 103948, from= IP1.L1; - MB.C16L1.B1:MB, at= -693.2307+(22.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848886, assembly_id= 103949, from= IP1.L1; - MCS.C16L1.B1:MCS, at= -685.8067+(22-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249281, assembly_id= 103949, from= IP1.L1; - MCO.16L1.B1:MCO, at= -685.0567+(22-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253664, assembly_id= 103950, from= IP1.L1; - MCD.16L1.B1:MCD, at= -685.0552+(22-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253665, assembly_id= 103950, from= IP1.L1; - MB.B16L1.B1:MB, at= -677.5707+(21.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848910, assembly_id= 103950, from= IP1.L1; - MCS.B16L1.B1:MCS, at= -670.1467+(21-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249286, assembly_id= 103950, from= IP1.L1; - MB.A16L1.B1:MB, at= -661.9107+(20.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848934, assembly_id= 103951, from= IP1.L1; - MCS.A16L1.B1:MCS, at= -654.4867+(20-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249289, assembly_id= 103951, from= IP1.L1; - BPM.15L1.B1:BPM, at= -653.6077+(20-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249291, assembly_id= 103952, from= IP1.L1; - MQT.15L1.B1:MQT, at= -652.8537+(20-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307539, assembly_id= 103952, from= IP1.L1; -MQ.15L1.B1:MQ, at= -650.8457+(20-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308532, assembly_id= 103952, from= IP1.L1; - MS.15L1.B1:MS, at= -648.9507+(20-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253667, assembly_id= 103952, from= IP1.L1; - MCBV.15L1.B1:MCBV, at= -648.3577+(20-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253669, assembly_id= 103952, from= IP1.L1; - MCO.B15L1.B1:MCO, at= -647.2667+(20-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253672, assembly_id= 103953, from= IP1.L1; - MCD.B15L1.B1:MCD, at= -647.2652+(20-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253673, assembly_id= 103953, from= IP1.L1; - MB.C15L1.B1:MB, at= -639.7807+(19.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848958, assembly_id= 103953, from= IP1.L1; - MCS.C15L1.B1:MCS, at= -632.3567+(19-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249299, assembly_id= 103953, from= IP1.L1; - MB.B15L1.B1:MB, at= -624.1207+(18.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52848982, assembly_id= 103954, from= IP1.L1; - MCS.B15L1.B1:MCS, at= -616.6967+(18-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249302, assembly_id= 103954, from= IP1.L1; - MCO.A15L1.B1:MCO, at= -615.9467+(18-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253676, assembly_id= 103955, from= IP1.L1; - MCD.A15L1.B1:MCD, at= -615.9452+(18-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253677, assembly_id= 103955, from= IP1.L1; - MB.A15L1.B1:MB, at= -608.4607+(17.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849006, assembly_id= 103955, from= IP1.L1; - MCS.A15L1.B1:MCS, at= -601.0367+(17-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249307, assembly_id= 103955, from= IP1.L1; - BPM.14L1.B1:BPM, at= -600.1577+(17-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249309, assembly_id= 103956, from= IP1.L1; - MQT.14L1.B1:MQT_UNPLUGGED, at= -599.4037+(17-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307507, assembly_id= 103956, from= IP1.L1; -MQ.14L1.B1:MQ, at= -597.3957+(17-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308502, assembly_id= 103956, from= IP1.L1; - MS.14L1.B1:MS, at= -595.5007+(17-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253679, assembly_id= 103956, from= IP1.L1; - MCBH.14L1.B1:MCBH, at= -594.9077+(17-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253681, assembly_id= 103956, from= IP1.L1; - MB.C14L1.B1:MB, at= -586.3307+(16.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849030, assembly_id= 103957, from= IP1.L1; - MCS.C14L1.B1:MCS, at= -578.9067+(16-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249315, assembly_id= 103957, from= IP1.L1; - MCO.14L1.B1:MCO, at= -578.1567+(16-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253684, assembly_id= 103958, from= IP1.L1; - MCD.14L1.B1:MCD, at= -578.1552+(16-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253685, assembly_id= 103958, from= IP1.L1; - MB.B14L1.B1:MB, at= -570.6707+(15.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849054, assembly_id= 103958, from= IP1.L1; - MCS.B14L1.B1:MCS, at= -563.2467+(15-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249320, assembly_id= 103958, from= IP1.L1; - MB.A14L1.B1:MB, at= -555.0107+(14.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849078, assembly_id= 103959, from= IP1.L1; - MCS.A14L1.B1:MCS, at= -547.5867+(14-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249323, assembly_id= 103959, from= IP1.L1; -S.DS.L1.B1:OMK, at= -547.1807+(14-IP1OFS.B1)*DS, slot_id= 100932, from= IP1.L1; - BPM.13L1.B1:BPM, at= -546.7077+(14-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249325, assembly_id= 103960, from= IP1.L1; - MQT.13L1.B1:MQT, at= -545.9537+(14-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307715, assembly_id= 103960, from= IP1.L1; -MQ.13L1.B1:MQ, at= -543.9457+(14-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308473, assembly_id= 103960, from= IP1.L1; - MS.13L1.B1:MS, at= -542.0507+(14-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253687, assembly_id= 103960, from= IP1.L1; - MCBV.13L1.B1:MCBV, at= -541.4577+(14-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253689, assembly_id= 103960, from= IP1.L1; - MCO.B13L1.B1:MCO, at= -540.3667+(14-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253692, assembly_id= 103961, from= IP1.L1; - MCD.B13L1.B1:MCD, at= -540.3652+(14-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253693, assembly_id= 103961, from= IP1.L1; - MB.C13L1.B1:MB, at= -532.8807+(13.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849102, assembly_id= 103961, from= IP1.L1; - MCS.C13L1.B1:MCS, at= -525.4567+(13-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249333, assembly_id= 103961, from= IP1.L1; - MB.B13L1.B1:MB, at= -517.2207+(12.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849126, assembly_id= 103962, from= IP1.L1; - MCS.B13L1.B1:MCS, at= -509.7967+(12-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249336, assembly_id= 103962, from= IP1.L1; - MCO.A13L1.B1:MCO, at= -509.0467+(12-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253696, assembly_id= 103963, from= IP1.L1; - MCD.A13L1.B1:MCD, at= -509.0452+(12-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253697, assembly_id= 103963, from= IP1.L1; - MB.A13L1.B1:MB, at= -501.5607+(11.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849150, assembly_id= 103963, from= IP1.L1; - MCS.A13L1.B1:MCS, at= -494.1367+(11-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249341, assembly_id= 103963, from= IP1.L1; - BPM.12L1.B1:BPM, at= -493.2577+(11-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249343, assembly_id= 103964, from= IP1.L1; - MQT.12L1.B1:MQT, at= -492.5037+(11-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307683, assembly_id= 103964, from= IP1.L1; -MQ.12L1.B1:MQ, at= -490.4957+(11-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308679, assembly_id= 103964, from= IP1.L1; - MS.12L1.B1:MS, at= -488.6007+(11-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253699, assembly_id= 103964, from= IP1.L1; - MCBH.12L1.B1:MCBH, at= -488.0077+(11-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253701, assembly_id= 103964, from= IP1.L1; - MB.C12L1.B1:MB, at= -479.4307+(10.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849174, assembly_id= 103965, from= IP1.L1; - MCS.C12L1.B1:MCS, at= -472.0067+(10-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249349, assembly_id= 103965, from= IP1.L1; - MCO.12L1.B1:MCO, at= -471.2567+(10-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253704, assembly_id= 103966, from= IP1.L1; - MCD.12L1.B1:MCD, at= -471.2552+(10-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253705, assembly_id= 103966, from= IP1.L1; - MB.B12L1.B1:MB, at= -463.7707+(9.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849198, assembly_id= 103966, from= IP1.L1; - MCS.B12L1.B1:MCS, at= -456.3467+(9-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249354, assembly_id= 103966, from= IP1.L1; - MB.A12L1.B1:MB, at= -448.1107+(8.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849222, assembly_id= 103967, from= IP1.L1; - MCS.A12L1.B1:MCS, at= -440.6867+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249357, assembly_id= 103967, from= IP1.L1; -E.ARC.81.B1:OMK, at= -440.2807+(8-IP1OFS.B1)*DS, slot_id= 100932, from= IP1.L1; - BPM.11L1.B1:BPM, at= -439.8077+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249359, assembly_id= 103968, from= IP1.L1; -MQ.11L1.B1:MQ, at= -437.2607+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2308650, assembly_id= 103968, from= IP1.L1; - MQTLI.11L1.B1:MQTLI, at= -434.8917+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307338, assembly_id= 103968, from= IP1.L1; - MS.11L1.B1:MS, at= -433.8797+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253707, assembly_id= 103968, from= IP1.L1; - MCBV.11L1.B1:MCBV, at= -433.2867+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253709, assembly_id= 103968, from= IP1.L1; - LEFL.11L1.B1:LEFL, at= -425.67735+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52997874, assembly_id= 103969, from= IP1.L1; - MCO.11L1.B1:MCO, at= -418.475+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253712, assembly_id= 103970, from= IP1.L1; - MCD.11L1.B1:MCD, at= -418.4735+(8-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253713, assembly_id= 103970, from= IP1.L1; - MB.B11L1.B1:MB, at= -410.989+(7.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849246, assembly_id= 103970, from= IP1.L1; - MCS.B11L1.B1:MCS, at= -403.565+(7-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249367, assembly_id= 103970, from= IP1.L1; - MB.A11L1.B1:MB, at= -395.329+(6.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849798, assembly_id= 103971, from= IP1.L1; - MCS.A11L1.B1:MCS, at= -387.905+(6-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357343, assembly_id= 103971, from= IP1.L1; - BPM.10L1.B1:BPM, at= -387.026+(6-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249372, assembly_id= 103972, from= IP1.L1; - MQML.10L1.B1:MQML, at= -383.881+(6-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307804, assembly_id= 103972, from= IP1.L1; - MCBCH.10L1.B1:MCBCH, at= -380.839+(6-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253714, assembly_id= 103972, from= IP1.L1; - MCO.10L1.B1:MCO, at= -379.41+(6-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253718, assembly_id= 103973, from= IP1.L1; - MCD.10L1.B1:MCD, at= -379.4085+(6-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253719, assembly_id= 103973, from= IP1.L1; - MB.B10L1.B1:MB, at= -371.924+(5.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849270, assembly_id= 103973, from= IP1.L1; - MCS.B10L1.B1:MCS, at= -364.5+(5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249379, assembly_id= 103973, from= IP1.L1; - MB.A10L1.B1:MB, at= -356.264+(4.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849294, assembly_id= 103974, from= IP1.L1; - MCS.A10L1.B1:MCS, at= -348.84+(4-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249382, assembly_id= 103974, from= IP1.L1; - BPM.9L1.B1:BPM, at= -347.96+(4-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249384, assembly_id= 103975, from= IP1.L1; - MQMC.9L1.B1:MQMC, at= -345.984+(4-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307781, assembly_id= 103975, from= IP1.L1; - MQM.9L1.B1:MQM, at= -342.718+(4-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307729, assembly_id= 103975, from= IP1.L1; - MCBCV.9L1.B1:MCBCV, at= -340.377+(4-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253720, assembly_id= 103975, from= IP1.L1; - MCO.9L1.B1:MCO, at= -338.945+(4-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253724, assembly_id= 103976, from= IP1.L1; - MCD.9L1.B1:MCD, at= -338.9435+(4-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253725, assembly_id= 103976, from= IP1.L1; - MB.B9L1.B1:MB, at= -331.459+(3.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849318, assembly_id= 103976, from= IP1.L1; - MCS.B9L1.B1:MCS, at= -324.035+(3-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249392, assembly_id= 103976, from= IP1.L1; - MB.A9L1.B1:MB, at= -315.799+(2.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849342, assembly_id= 103977, from= IP1.L1; - MCS.A9L1.B1:MCS, at= -308.375+(2-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249395, assembly_id= 103977, from= IP1.L1; - BPM.8L1.B1:BPM, at= -307.496+(2-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249397, assembly_id= 103978, from= IP1.L1; - MQML.8L1.B1:MQML, at= -304.351+(2-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307836, assembly_id= 103978, from= IP1.L1; - MCBCH.8L1.B1:MCBCH, at= -301.309+(2-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253726, assembly_id= 103978, from= IP1.L1; - MCO.8L1.B1:MCO, at= -299.88+(2-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253730, assembly_id= 103979, from= IP1.L1; - MCD.8L1.B1:MCD, at= -299.8785+(2-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253731, assembly_id= 103979, from= IP1.L1; - MB.B8L1.B1:MB, at= -292.394+(1.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849366, assembly_id= 103979, from= IP1.L1; - MCS.B8L1.B1:MCS, at= -284.97+(1-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249404, assembly_id= 103979, from= IP1.L1; - MB.A8L1.B1:MB, at= -276.734+(.5-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52849822, assembly_id= 103980, from= IP1.L1; - MCS.A8L1.B1:MCS, at= -269.31+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 357346, assembly_id= 103980, from= IP1.L1; -E.DS.L1.B1:OMK, at= -268.904+(0-IP1OFS.B1)*DS, slot_id= 100932, from= IP1.L1; - BPMR.7L1.B1:BPMR, at= -268.429+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 378062, assembly_id= 103981, from= IP1.L1; - MQM.B7L1.B1:MQM, at= -265.984+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2348454, assembly_id= 103981, from= IP1.L1; - MQM.A7L1.B1:MQM, at= -262.217+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2307752, assembly_id= 103981, from= IP1.L1; - MCBCV.7L1.B1:MCBCV, at= -259.876+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 378136, assembly_id= 103981, from= IP1.L1; - DFBAA.7L1.B1:DFBAA, at= -257.6965+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 52996539, assembly_id= 104694, from= IP1.L1; - MCBCH.6L1.B1:MCBCH, at= -231.432+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253735, assembly_id= 103982, from= IP1.L1; - MQML.6L1.B1:MQML, at= -228.39+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303177, assembly_id= 103982, from= IP1.L1; - BPM.6L1.B1:BPM, at= -225.245+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 378064, assembly_id= 103982, from= IP1.L1; - MCBCV.5L1.B1:MCBCV, at= -199.532+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253737, assembly_id= 103983, from= IP1.L1; - MQML.5L1.B1:MQML, at= -196.49+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303181, assembly_id= 103983, from= IP1.L1; - BPMR.5L1.B1:BPMR, at= -193.345+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 378066, assembly_id= 103983, from= IP1.L1; - BPTX.5L1.B1:BPTX, at= -174.6425+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 104671, from= IP1.L1; - BPMYA.4L1.B1:BPMYA, at= -172.227+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 249423, assembly_id= 103985, from= IP1.L1; - MQY.4L1.B1:MQY, at= -169.553+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 2303022, assembly_id= 103985, from= IP1.L1; - MCBYH.B4L1.B1:MCBYH, at= -167.031+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253738, assembly_id= 103985, from= IP1.L1; - MCBYV.4L1.B1:MCBYV, at= -165.735+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253740, assembly_id= 103985, from= IP1.L1; - MCBYH.A4L1.B1:MCBYH, at= -164.439+(0-IP1OFS.B1)*DS, mech_sep= -0.1940, slot_id= 253742, assembly_id= 103985, from= IP1.L1; - MBRC.4L1.B1:MBRC, at= -157.9+(0-IP1OFS.B1)*DS, mech_sep= -0.1880, slot_id= 52819774, assembly_id= 103986, from= IP1.L1; - BPMWB.4L1.B1:BPMWB, at= -151.0945+(0-IP1OFS.B1)*DS, mech_sep= -0.1780, slot_id= 104621, from= IP1.L1; - BPTUH.A4L1.B1:BPTUH, at= -148.54+(0-IP1OFS.B1)*DS, mech_sep= -0.1762, slot_id= 10402640, assembly_id= 377649, from= IP1.L1; - TCTPH.4L1.B1:TCTPH, at= -147.945+(0-IP1OFS.B1)*DS, mech_sep= -0.1715, slot_id= 377649, from= IP1.L1; - BPTDH.A4L1.B1:BPTDH, at= -147.35+(0-IP1OFS.B1)*DS, mech_sep= -0.1735, slot_id= 10402643, assembly_id= 377649, from= IP1.L1; - BBCWB.A4L1.U.B1:BBCWB, at= -146.54+(0-IP1OFS.B1)*DS, mech_sep= -0.1680, slot_id= 52668829, assembly_id= 52657542, from= IP1.L1; - BBCWT.A4L1.U.B1:BBCWT, at= -146.54+(0-IP1OFS.B1)*DS, mech_sep= -0.1680, slot_id= 52668814, assembly_id= 52657542, from= IP1.L1; - BPTUV.A4L1.B1:BPTUV, at= -146.49+(0-IP1OFS.B1)*DS, mech_sep= -0.1683, slot_id= 52668853, assembly_id= 52657542, from= IP1.L1; - TCTPV.4L1.B1:TCTWV, at= -145.945+(0-IP1OFS.B1)*DS, mech_sep= -0.1670, slot_id= 52657542, from= IP1.L1; - BPTDV.A4L1.B1:BPTDV, at= -145.4+(0-IP1OFS.B1)*DS, mech_sep= -0.1658, slot_id= 52668844, assembly_id= 52657542, from= IP1.L1; - BBCWB.A4L1.D.B1:BBCWB, at= -145.35+(0-IP1OFS.B1)*DS, mech_sep= -0.1660, slot_id= 52668799, assembly_id= 52657542, from= IP1.L1; - BBCWT.A4L1.D.B1:BBCWT, at= -145.35+(0-IP1OFS.B1)*DS, mech_sep= -0.1660, slot_id= 52668784, assembly_id= 52657542, from= IP1.L1; -E.TAN_C.4L1:OMK, at= -144.5+(0-IP1OFS.B1)*DS, slot_id= 103988, from= IP1.L1; -E.TAN_I.4L1:OMK, at= -144.5+(0-IP1OFS.B1)*DS, slot_id= 103988, from= IP1.L1; - TANAL.4L1:TANAL, at= -142.754+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 103988, from= IP1.L1; -E.TAN_D.4L1:OMK, at= -142.019+(0-IP1OFS.B1)*DS, slot_id= 103988, from= IP1.L1; - X1ZDC.A4L1:X1ZDC001, at= -141.71+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 2019579, assembly_id= 103988, from= IP1.L1; - BRANA.4L1:BRANA, at= -141.36+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 883499, assembly_id= 103988, from= IP1.L1; - X1ZDC.B4L1:X1ZDC002, at= -141.16+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 2019582, assembly_id= 103988, from= IP1.L1; -S.TAN_D.4L1:OMK, at= -141.019+(0-IP1OFS.B1)*DS, slot_id= 103988, from= IP1.L1; -S.TAN_C.4L1:OMK, at= -141.008+(0-IP1OFS.B1)*DS, slot_id= 103988, from= IP1.L1; -E.TAN_M.4L1:OMK, at= -140.7+(0-IP1OFS.B1)*DS, slot_id= 103988, from= IP1.L1; -S.TAN_I.4L1:OMK, at= -140.7+(0-IP1OFS.B1)*DS, slot_id= 103988, from= IP1.L1; -S.TAN_M.4L1:OMK, at= -140.25+(0-IP1OFS.B1)*DS, slot_id= 103988, from= IP1.L1; - MBXW.F4L1:MBXW, at= -82.652+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134690, from= IP1.L1; - MBXW.E4L1:MBXW, at= -78.386+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134691, from= IP1.L1; - MBXW.D4L1:MBXW, at= -74.12+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134692, from= IP1.L1; - MBXW.C4L1:MBXW, at= -69.854+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134693, from= IP1.L1; - MBXW.B4L1:MBXW, at= -65.588+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134694, from= IP1.L1; - MBXW.A4L1:MBXW, at= -61.322+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 134695, from= IP1.L1; - BPMSY.4L1.B1:BPMSY002, at= -58.3745+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 47562520, assembly_id= 104622, from= IP1.L1; - DFBXA.3L1:DFBXA, at= -56.427+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 104695, from= IP1.L1; - MCOSX.3L1:MCOSX_UNPLUGGED, at= -54.297+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282258, assembly_id= 103990, from= IP1.L1; - MCOX.3L1:MCOX, at= -54.297+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282257, assembly_id= 103990, from= IP1.L1; - MCSSX.3L1:MCSSX, at= -54.297+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282256, assembly_id= 103990, from= IP1.L1; - MCBXH.3L1:MCBXH, at= -53.814+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 253744, assembly_id= 103990, from= IP1.L1; - MCBXV.3L1:MCBXV, at= -53.814+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 253745, assembly_id= 103990, from= IP1.L1; - MCSX.3L1:MCSX, at= -53.814+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 253746, assembly_id= 103990, from= IP1.L1; - MCTX.3L1:MCTX, at= -53.814+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 253747, assembly_id= 103990, from= IP1.L1; - MQXA.3L1:MQXA, at= -50.15+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249436, assembly_id= 103990, from= IP1.L1; - MQSX.3L1:MQSX, at= -46.608+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282209, assembly_id= 103990, from= IP1.L1; - TASB.3L1:TASB, at= -45.342+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249438, assembly_id= 103990, from= IP1.L1; - MQXB.B2L1:MQXB, at= -41.3+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249439, assembly_id= 103991, from= IP1.L1; - MCBXH.2L1:MCBXH, at= -38.019+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 253752, assembly_id= 103991, from= IP1.L1; - MCBXV.2L1:MCBXV, at= -38.019+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 253753, assembly_id= 103991, from= IP1.L1; - MQXB.A2L1:MQXB, at= -34.8+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 249441, assembly_id= 103991, from= IP1.L1; - BPMS.2L1.B1:BPMS_003, at= -31.529+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 47564255, assembly_id= 103991, from= IP1.L1; - MCBXH.1L1:MCBXH, at= -29.842+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282219, assembly_id= 103992, from= IP1.L1; - MCBXV.1L1:MCBXV, at= -29.842+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282218, assembly_id= 103992, from= IP1.L1; - MQXA.1L1:MQXA, at= -26.15+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 282210, assembly_id= 103992, from= IP1.L1; - BPMWF.A1L1.B1:BPMWF, at= -21.766+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 6080255, assembly_id= 6080223, from= IP1.L1; - BPMSW.1L1.B1:BPMSW002, at= -21.579+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 6080251, assembly_id= 6080223, from= IP1.L1; - BPMSW.1L1.B1_DOROS:BPMSW002, at= -21.579+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 10429438, assembly_id= 6080223, from= IP1.L1; - TAS.1L1:TAS, at= -19.979+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 103993, from= IP1.L1; - MBAS2.1L1:MBAS2, at= -1.5+(0-IP1OFS.B1)*DS, mech_sep= 0, slot_id= 51937873, from= IP1.L1; -IP1.L1:OMK, at= pIP1.L1+IP1OFS.B1*DS; -ENDSEQUENCE; - -LHCB2 : SEQUENCE, refer = centre, L = LHCLENGTH; -IP1:OMK, at= pIP1+IP1OFS.B2*DS; - MBAS2.1R1:MBAS2, at= 1.5+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 51937884, from= IP1; - TAS.1R1:TAS, at= 19.95+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 102103, from= IP1; - BPMSW.1R1.B2:BPMSW002, at= 21.564+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 6080260, assembly_id= 6080224, from= IP1; - BPMSW.1R1.B2_DOROS:BPMSW002, at= 21.564+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 10429421, assembly_id= 6080224, from= IP1; - BPMWF.A1R1.B2:BPMWF, at= 21.697+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 6080268, assembly_id= 6080224, from= IP1; - MQXA.1R1:MQXA, at= 26.15+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282126, assembly_id= 102104, from= IP1; - MCBXH.1R1:MCBXH, at= 29.842+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282213, assembly_id= 102104, from= IP1; - MCBXV.1R1:MCBXV, at= 29.842+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282212, assembly_id= 102104, from= IP1; - BPMS.2R1.B2:BPMS_003, at= 31.529+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 47564245, assembly_id= 102105, from= IP1; - MQXB.A2R1:MQXB, at= 34.8+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 241890, assembly_id= 102105, from= IP1; - MCBXH.2R1:MCBXH, at= 38.019+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249450, assembly_id= 102105, from= IP1; - MCBXV.2R1:MCBXV, at= 38.019+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249451, assembly_id= 102105, from= IP1; - MQXB.B2R1:MQXB, at= 41.3+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 241892, assembly_id= 102105, from= IP1; - TASB.3R1:TASB, at= 45.342+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 241893, assembly_id= 102106, from= IP1; - MQSX.3R1:MQSX, at= 46.608+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282127, assembly_id= 102106, from= IP1; - MQXA.3R1:MQXA, at= 50.15+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 241895, assembly_id= 102106, from= IP1; - MCBXH.3R1:MCBXH, at= 53.814+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249456, assembly_id= 102106, from= IP1; - MCBXV.3R1:MCBXV, at= 53.814+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249457, assembly_id= 102106, from= IP1; - MCSX.3R1:MCSX, at= 53.814+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249458, assembly_id= 102106, from= IP1; - MCTX.3R1:MCTX, at= 53.814+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249459, assembly_id= 102106, from= IP1; - MCOSX.3R1:MCOSX, at= 54.297+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282237, assembly_id= 102106, from= IP1; - MCOX.3R1:MCOX, at= 54.297+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282236, assembly_id= 102106, from= IP1; - MCSSX.3R1:MCSSX, at= 54.297+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282235, assembly_id= 102106, from= IP1; - DFBXB.3R1:DFBXB, at= 56.427+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 104672, from= IP1; - BPMSY.4R1.B2:BPMSY002, at= 58.3745+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 47562522, assembly_id= 104595, from= IP1; - MBXW.A4R1:MBXW, at= 61.322+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134500, from= IP1; - MBXW.B4R1:MBXW, at= 65.588+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134501, from= IP1; - MBXW.C4R1:MBXW, at= 69.854+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134502, from= IP1; - MBXW.D4R1:MBXW, at= 74.12+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134503, from= IP1; - MBXW.E4R1:MBXW, at= 78.386+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134504, from= IP1; - MBXW.F4R1:MBXW, at= 82.652+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134505, from= IP1; - X1ZDC.B4R1:X1ZDC002, at= 141.16+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 2019588, assembly_id= 102108, from= IP1; - BRAND.4R1:BRAND, at= 141.476+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 55374060, assembly_id= 102108, from= IP1; - X1ZDC.A4R1:X1ZDC001, at= 141.71+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 2019586, assembly_id= 102108, from= IP1; - TANAR.4R1:TANAR, at= 142.754+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 102108, from= IP1; - BBCWB.A4R1.D.B2:BBCWB, at= 145.35+(0-IP1OFS.B2)*DS, mech_sep= -0.1660, slot_id= 42859748, assembly_id= 54973368, from= IP1; - BBCWT.A4R1.D.B2:BBCWT, at= 145.35+(0-IP1OFS.B2)*DS, mech_sep= -0.1660, slot_id= 42859744, assembly_id= 54973368, from= IP1; - BPTDV.A4R1.B2:BPTDV, at= 145.35+(0-IP1OFS.B2)*DS, mech_sep= -0.1654, slot_id= 10402725, assembly_id= 54973368, from= IP1; - TCTPV.4R1.B2:TCTWV, at= 145.945+(0-IP1OFS.B2)*DS, mech_sep= -0.1670, slot_id= 54973368, from= IP1; - BBCWB.A4R1.U.B2:BBCWB, at= 146.54+(0-IP1OFS.B2)*DS, mech_sep= -0.1660, slot_id= 42859760, assembly_id= 54973368, from= IP1; - BBCWT.A4R1.U.B2:BBCWT, at= 146.54+(0-IP1OFS.B2)*DS, mech_sep= -0.1660, slot_id= 42859757, assembly_id= 54973368, from= IP1; - BPTUV.A4R1.B2:BPTUV, at= 146.54+(0-IP1OFS.B2)*DS, mech_sep= -0.1654, slot_id= 10402716, assembly_id= 54973368, from= IP1; - BPTDH.A4R1.B2:BPTDH, at= 147.35+(0-IP1OFS.B2)*DS, mech_sep= -0.1660, slot_id= 10402636, assembly_id= 377590, from= IP1; - TCTPH.4R1.B2:TCTPH, at= 147.945+(0-IP1OFS.B2)*DS, mech_sep= -0.1715, slot_id= 377590, from= IP1; - BPTUH.A4R1.B2:BPTUH, at= 148.54+(0-IP1OFS.B2)*DS, mech_sep= -0.1700, slot_id= 10402633, assembly_id= 377590, from= IP1; - BPMWB.4R1.B2:BPMWB, at= 151.1705+(0-IP1OFS.B2)*DS, mech_sep= -0.1780, slot_id= 104596, from= IP1; - MBRC.4R1.B2:MBRC, at= 157.9+(0-IP1OFS.B2)*DS, mech_sep= -0.1880, slot_id= 52819625, assembly_id= 102110, from= IP1; - MCBYH.A4R1.B2:MCBYH, at= 164.439+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249461, assembly_id= 102111, from= IP1; - MCBYV.4R1.B2:MCBYV, at= 165.735+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249463, assembly_id= 102111, from= IP1; - MCBYH.B4R1.B2:MCBYH, at= 167.031+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249465, assembly_id= 102111, from= IP1; - MQY.4R1.B2:MQY, at= 169.553+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2302957, assembly_id= 102111, from= IP1; - BPMYA.4R1.B2:BPMYA, at= 172.227+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241909, assembly_id= 102111, from= IP1; - BPTX.5R1.B2:BPTX, at= 174.7185+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 104664, from= IP1; - MCBCV.5R1.B2:MCBCV, at= 193.448+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249467, assembly_id= 102113, from= IP1; - MQML.5R1.B2:MQML, at= 196.49+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2302965, assembly_id= 102113, from= IP1; - BPMR.5R1.B2:BPMR, at= 199.635+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377900, assembly_id= 102113, from= IP1; - MCBCH.6R1.B2:MCBCH, at= 225.348+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249469, assembly_id= 102114, from= IP1; - MQML.6R1.B2:MQML, at= 228.39+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303153, assembly_id= 102114, from= IP1; - BPM.6R1.B2:BPM, at= 231.535+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377902, assembly_id= 102114, from= IP1; - DFBAB.7R1.B2:DFBAB, at= 257.4465+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52996575, assembly_id= 104673, from= IP1; - BPMRA.7R1.B2:BPMRA, at= 259.259+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377906, assembly_id= 102115, from= IP1; - MQM.A7R1.B2:MQM, at= 261.704+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307760, assembly_id= 102115, from= IP1; - MQM.B7R1.B2:MQM, at= 265.471+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307775, assembly_id= 102115, from= IP1; - MCBCV.7R1.B2:MCBCV, at= 267.812+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378076, assembly_id= 102115, from= IP1; -S.DS.R1.B2:OMK, at= 268.904+(0-IP1OFS.B2)*DS, slot_id= 100932, from= IP1; - MCO.8R1.B2:MCO, at= 269.248+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249474, assembly_id= 102116, from= IP1; - MCD.8R1.B2:MCD, at= 269.2495+(0-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249475, assembly_id= 102116, from= IP1; - MB.A8R1.B2:MB, at= 276.734+(-.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820290, assembly_id= 102116, from= IP1; - MCS.A8R1.B2:MCS, at= 284.158+(-1-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241928, assembly_id= 102116, from= IP1; - MB.B8R1.B2:MB, at= 292.394+(-1.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820314, assembly_id= 102117, from= IP1; - MCS.B8R1.B2:MCS, at= 299.818+(-2-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241931, assembly_id= 102117, from= IP1; - BPM.8R1.B2:BPM, at= 300.697+(-2-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377912, assembly_id= 102118, from= IP1; - MQML.8R1.B2:MQML, at= 303.842+(-2-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307611, assembly_id= 102118, from= IP1; - MCBCH.8R1.B2:MCBCH, at= 306.884+(-2-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378081, assembly_id= 102118, from= IP1; - MCO.9R1.B2:MCO, at= 308.313+(-2-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249480, assembly_id= 102119, from= IP1; - MCD.9R1.B2:MCD, at= 308.3145+(-2-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249481, assembly_id= 102119, from= IP1; - MB.A9R1.B2:MB, at= 315.799+(-2.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820338, assembly_id= 102119, from= IP1; - MCS.A9R1.B2:MCS, at= 323.223+(-3-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241940, assembly_id= 102119, from= IP1; - MB.B9R1.B2:MB, at= 331.459+(-3.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820362, assembly_id= 102120, from= IP1; - MCS.B9R1.B2:MCS, at= 338.883+(-4-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241943, assembly_id= 102120, from= IP1; - BPM.9R1.B2:BPM, at= 339.763+(-4-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377915, assembly_id= 102121, from= IP1; - MQMC.9R1.B2:MQMC, at= 341.739+(-4-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348456, assembly_id= 102121, from= IP1; - MQM.9R1.B2:MQM, at= 345.005+(-4-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307741, assembly_id= 102121, from= IP1; - MCBCV.9R1.B2:MCBCV, at= 347.346+(-4-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378086, assembly_id= 102121, from= IP1; - MCO.10R1.B2:MCO, at= 348.778+(-4-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249486, assembly_id= 102122, from= IP1; - MCD.10R1.B2:MCD, at= 348.7795+(-4-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249487, assembly_id= 102122, from= IP1; - MB.A10R1.B2:MB, at= 356.264+(-4.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820386, assembly_id= 102122, from= IP1; - MCS.A10R1.B2:MCS, at= 363.688+(-5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241953, assembly_id= 102122, from= IP1; - MB.B10R1.B2:MB, at= 371.924+(-5.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820410, assembly_id= 102123, from= IP1; - MCS.B10R1.B2:MCS, at= 379.348+(-6-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241956, assembly_id= 102123, from= IP1; - BPM.10R1.B2:BPM, at= 380.227+(-6-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377921, assembly_id= 102124, from= IP1; - MQML.10R1.B2:MQML, at= 383.372+(-6-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307817, assembly_id= 102124, from= IP1; - MCBCH.10R1.B2:MCBCH, at= 386.414+(-6-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378091, assembly_id= 102124, from= IP1; - MCO.11R1.B2:MCO, at= 387.843+(-6-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249492, assembly_id= 102125, from= IP1; - MCD.11R1.B2:MCD, at= 387.8445+(-6-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249493, assembly_id= 102125, from= IP1; - MB.A11R1.B2:MB, at= 395.329+(-6.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820434, assembly_id= 102125, from= IP1; - MCS.A11R1.B2:MCS, at= 402.753+(-7-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241965, assembly_id= 102125, from= IP1; - MB.B11R1.B2:MB, at= 410.989+(-7.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849402, assembly_id= 102126, from= IP1; - MCS.B11R1.B2:MCS, at= 418.413+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 357282, assembly_id= 102126, from= IP1; - LEHR.11R1.B2:LEHR, at= 425.67735+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52997934, assembly_id= 102127, from= IP1; - BPM.11R1.B2:BPM, at= 433.0087+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241970, assembly_id= 102128, from= IP1; -MQ.11R1.B2:MQ, at= 435.5557+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308665, assembly_id= 102128, from= IP1; - MQTLI.11R1.B2:MQTLI, at= 437.9247+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348438, assembly_id= 102128, from= IP1; - MS.11R1.B2:MS, at= 438.9367+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249495, assembly_id= 102128, from= IP1; - MCBV.11R1.B2:MCBV, at= 439.5297+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249497, assembly_id= 102128, from= IP1; -S.ARC.12.B2:OMK, at= 440.2807+(-8-IP1OFS.B2)*DS, slot_id= 100932, from= IP1; - MCO.A12R1.B2:MCO, at= 440.6247+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249500, assembly_id= 102129, from= IP1; - MCD.A12R1.B2:MCD, at= 440.6262+(-8-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249501, assembly_id= 102129, from= IP1; - MB.A12R1.B2:MB, at= 448.1107+(-8.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820458, assembly_id= 102129, from= IP1; - MCS.A12R1.B2:MCS, at= 455.5347+(-9-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241978, assembly_id= 102129, from= IP1; - MB.B12R1.B2:MB, at= 463.7707+(-9.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820482, assembly_id= 102130, from= IP1; - MCS.B12R1.B2:MCS, at= 471.1947+(-10-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241981, assembly_id= 102130, from= IP1; - MCO.B12R1.B2:MCO, at= 471.9447+(-10-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249504, assembly_id= 102131, from= IP1; - MCD.B12R1.B2:MCD, at= 471.9462+(-10-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249505, assembly_id= 102131, from= IP1; - MB.C12R1.B2:MB, at= 479.4307+(-10.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820506, assembly_id= 102131, from= IP1; - MCS.C12R1.B2:MCS, at= 486.8547+(-11-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241986, assembly_id= 102131, from= IP1; - BPM.12R1.B2:BPM, at= 487.7337+(-11-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241988, assembly_id= 102132, from= IP1; - MQT.12R1.B2:MQT, at= 488.4877+(-11-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307700, assembly_id= 102132, from= IP1; -MQ.12R1.B2:MQ, at= 490.4957+(-11-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308459, assembly_id= 102132, from= IP1; - MS.12R1.B2:MS, at= 492.3907+(-11-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249507, assembly_id= 102132, from= IP1; - MCBH.12R1.B2:MCBH, at= 492.9837+(-11-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249509, assembly_id= 102132, from= IP1; - MB.A13R1.B2:MB, at= 501.5607+(-11.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820530, assembly_id= 102133, from= IP1; - MCS.A13R1.B2:MCS, at= 508.9847+(-12-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241994, assembly_id= 102133, from= IP1; - MCO.13R1.B2:MCO, at= 509.7347+(-12-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249512, assembly_id= 102134, from= IP1; - MCD.13R1.B2:MCD, at= 509.7362+(-12-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249513, assembly_id= 102134, from= IP1; - MB.B13R1.B2:MB, at= 517.2207+(-12.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820554, assembly_id= 102134, from= IP1; - MCS.B13R1.B2:MCS, at= 524.6447+(-13-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241999, assembly_id= 102134, from= IP1; - MB.C13R1.B2:MB, at= 532.8807+(-13.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820578, assembly_id= 102135, from= IP1; - MCS.C13R1.B2:MCS, at= 540.3047+(-14-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242002, assembly_id= 102135, from= IP1; - BPM.13R1.B2:BPM, at= 541.1837+(-14-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242004, assembly_id= 102136, from= IP1; - MQT.13R1.B2:MQT, at= 541.9377+(-14-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307493, assembly_id= 102136, from= IP1; -MQ.13R1.B2:MQ, at= 543.9457+(-14-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308488, assembly_id= 102136, from= IP1; - MS.13R1.B2:MS, at= 545.8407+(-14-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249515, assembly_id= 102136, from= IP1; - MCBV.13R1.B2:MCBV, at= 546.4337+(-14-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249517, assembly_id= 102136, from= IP1; -E.DS.R1.B2:OMK, at= 547.1807+(-14-IP1OFS.B2)*DS, slot_id= 100932, from= IP1; - MCO.A14R1.B2:MCO, at= 547.5247+(-14-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249520, assembly_id= 102137, from= IP1; - MCD.A14R1.B2:MCD, at= 547.5262+(-14-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249521, assembly_id= 102137, from= IP1; - MB.A14R1.B2:MB, at= 555.0107+(-14.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820602, assembly_id= 102137, from= IP1; - MCS.A14R1.B2:MCS, at= 562.4347+(-15-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242012, assembly_id= 102137, from= IP1; - MB.B14R1.B2:MB, at= 570.6707+(-15.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820626, assembly_id= 102138, from= IP1; - MCS.B14R1.B2:MCS, at= 578.0947+(-16-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242015, assembly_id= 102138, from= IP1; - MCO.B14R1.B2:MCO, at= 578.8447+(-16-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249524, assembly_id= 102139, from= IP1; - MCD.B14R1.B2:MCD, at= 578.8462+(-16-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249525, assembly_id= 102139, from= IP1; - MB.C14R1.B2:MB, at= 586.3307+(-16.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820650, assembly_id= 102139, from= IP1; - MCS.C14R1.B2:MCS, at= 593.7547+(-17-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242020, assembly_id= 102139, from= IP1; - BPM.14R1.B2:BPM, at= 594.6337+(-17-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242022, assembly_id= 102140, from= IP1; - MQT.14R1.B2:MQT, at= 595.3877+(-17-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307524, assembly_id= 102140, from= IP1; -MQ.14R1.B2:MQ, at= 597.3957+(-17-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308518, assembly_id= 102140, from= IP1; - MS.14R1.B2:MS, at= 599.2907+(-17-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249527, assembly_id= 102140, from= IP1; - MCBH.14R1.B2:MCBH, at= 599.8837+(-17-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249529, assembly_id= 102140, from= IP1; - MB.A15R1.B2:MB, at= 608.4607+(-17.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820674, assembly_id= 102141, from= IP1; - MCS.A15R1.B2:MCS, at= 615.8847+(-18-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242028, assembly_id= 102141, from= IP1; - MCO.15R1.B2:MCO, at= 616.6347+(-18-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249532, assembly_id= 102142, from= IP1; - MCD.15R1.B2:MCD, at= 616.6362+(-18-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249533, assembly_id= 102142, from= IP1; - MB.B15R1.B2:MB, at= 624.1207+(-18.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820698, assembly_id= 102142, from= IP1; - MCS.B15R1.B2:MCS, at= 631.5447+(-19-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242033, assembly_id= 102142, from= IP1; - MB.C15R1.B2:MB, at= 639.7807+(-19.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820722, assembly_id= 102143, from= IP1; - MCS.C15R1.B2:MCS, at= 647.2047+(-20-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242036, assembly_id= 102143, from= IP1; - BPM.15R1.B2:BPM, at= 648.0837+(-20-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242038, assembly_id= 102144, from= IP1; - MQT.15R1.B2:MQT, at= 648.8377+(-20-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307556, assembly_id= 102144, from= IP1; -MQ.15R1.B2:MQ, at= 650.8457+(-20-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308548, assembly_id= 102144, from= IP1; - MS.15R1.B2:MS, at= 652.7407+(-20-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249535, assembly_id= 102144, from= IP1; - MCBV.15R1.B2:MCBV, at= 653.3337+(-20-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249537, assembly_id= 102144, from= IP1; - MCO.A16R1.B2:MCO, at= 654.4247+(-20-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249540, assembly_id= 102145, from= IP1; - MCD.A16R1.B2:MCD, at= 654.4262+(-20-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249541, assembly_id= 102145, from= IP1; - MB.A16R1.B2:MB, at= 661.9107+(-20.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820746, assembly_id= 102145, from= IP1; - MCS.A16R1.B2:MCS, at= 669.3347+(-21-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242046, assembly_id= 102145, from= IP1; - MB.B16R1.B2:MB, at= 677.5707+(-21.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820770, assembly_id= 102146, from= IP1; - MCS.B16R1.B2:MCS, at= 684.9947+(-22-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242049, assembly_id= 102146, from= IP1; - MCO.B16R1.B2:MCO, at= 685.7447+(-22-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249544, assembly_id= 102147, from= IP1; - MCD.B16R1.B2:MCD, at= 685.7462+(-22-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249545, assembly_id= 102147, from= IP1; - MB.C16R1.B2:MB, at= 693.2307+(-22.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820794, assembly_id= 102147, from= IP1; - MCS.C16R1.B2:MCS, at= 700.6547+(-23-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242054, assembly_id= 102147, from= IP1; - BPM.16R1.B2:BPM, at= 701.5337+(-23-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242056, assembly_id= 102148, from= IP1; - MQT.16R1.B2:MQT, at= 702.2877+(-23-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307586, assembly_id= 102148, from= IP1; -MQ.16R1.B2:MQ, at= 704.2957+(-23-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308341, assembly_id= 102148, from= IP1; - MS.16R1.B2:MS, at= 706.1907+(-23-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249547, assembly_id= 102148, from= IP1; - MCBH.16R1.B2:MCBH, at= 706.7837+(-23-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249549, assembly_id= 102148, from= IP1; - MB.A17R1.B2:MB, at= 715.3607+(-23.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820818, assembly_id= 102149, from= IP1; - MCS.A17R1.B2:MCS, at= 722.7847+(-24-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242062, assembly_id= 102149, from= IP1; - MCO.17R1.B2:MCO, at= 723.5347+(-24-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249552, assembly_id= 102150, from= IP1; - MCD.17R1.B2:MCD, at= 723.5362+(-24-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249553, assembly_id= 102150, from= IP1; - MB.B17R1.B2:MB, at= 731.0207+(-24.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820842, assembly_id= 102150, from= IP1; - MCS.B17R1.B2:MCS, at= 738.4447+(-25-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242067, assembly_id= 102150, from= IP1; - MB.C17R1.B2:MB, at= 746.6807+(-25.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820866, assembly_id= 102151, from= IP1; - MCS.C17R1.B2:MCS, at= 754.1047+(-26-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242070, assembly_id= 102151, from= IP1; - BPM.17R1.B2:BPM, at= 754.9837+(-26-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242072, assembly_id= 102152, from= IP1; - MQT.17R1.B2:MQT, at= 755.7377+(-26-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307380, assembly_id= 102152, from= IP1; -MQ.17R1.B2:MQ, at= 757.7457+(-26-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308371, assembly_id= 102152, from= IP1; - MS.17R1.B2:MS, at= 759.6407+(-26-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249555, assembly_id= 102152, from= IP1; - MCBV.17R1.B2:MCBV, at= 760.2337+(-26-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249557, assembly_id= 102152, from= IP1; - MCO.A18R1.B2:MCO, at= 761.3247+(-26-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249560, assembly_id= 102153, from= IP1; - MCD.A18R1.B2:MCD, at= 761.3262+(-26-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249561, assembly_id= 102153, from= IP1; - MB.A18R1.B2:MB, at= 768.8107+(-26.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820890, assembly_id= 102153, from= IP1; - MCS.A18R1.B2:MCS, at= 776.2347+(-27-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242080, assembly_id= 102153, from= IP1; - MB.B18R1.B2:MB, at= 784.4707+(-27.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820914, assembly_id= 102154, from= IP1; - MCS.B18R1.B2:MCS, at= 791.8947+(-28-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242083, assembly_id= 102154, from= IP1; - MCO.B18R1.B2:MCO, at= 792.6447+(-28-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249564, assembly_id= 102155, from= IP1; - MCD.B18R1.B2:MCD, at= 792.6462+(-28-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249565, assembly_id= 102155, from= IP1; - MB.C18R1.B2:MB, at= 800.1307+(-28.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820938, assembly_id= 102155, from= IP1; - MCS.C18R1.B2:MCS, at= 807.5547+(-29-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242088, assembly_id= 102155, from= IP1; - BPM.18R1.B2:BPM, at= 808.4337+(-29-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242090, assembly_id= 102156, from= IP1; - MQT.18R1.B2:MQT, at= 809.1877+(-29-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307412, assembly_id= 102156, from= IP1; -MQ.18R1.B2:MQ, at= 811.1957+(-29-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308401, assembly_id= 102156, from= IP1; - MS.18R1.B2:MS, at= 813.0907+(-29-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249567, assembly_id= 102156, from= IP1; - MCBH.18R1.B2:MCBH, at= 813.6837+(-29-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249569, assembly_id= 102156, from= IP1; - MB.A19R1.B2:MB, at= 822.2607+(-29.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820962, assembly_id= 102157, from= IP1; - MCS.A19R1.B2:MCS_UNPLUGGED, at= 829.6847+(-30-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242096, assembly_id= 102157, from= IP1; - MCO.19R1.B2:MCO, at= 830.4347+(-30-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249572, assembly_id= 102158, from= IP1; - MCD.19R1.B2:MCD, at= 830.4362+(-30-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249573, assembly_id= 102158, from= IP1; - MB.B19R1.B2:MB, at= 837.9207+(-30.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820986, assembly_id= 102158, from= IP1; - MCS.B19R1.B2:MCS, at= 845.3447+(-31-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242101, assembly_id= 102158, from= IP1; - MB.C19R1.B2:MB, at= 853.5807+(-31.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821010, assembly_id= 102159, from= IP1; - MCS.C19R1.B2:MCS, at= 861.0047+(-32-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242104, assembly_id= 102159, from= IP1; - BPM.19R1.B2:BPM, at= 861.8837+(-32-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242106, assembly_id= 102160, from= IP1; - MQT.19R1.B2:MQT, at= 862.6377+(-32-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307443, assembly_id= 102160, from= IP1; -MQ.19R1.B2:MQ, at= 864.6457+(-32-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308433, assembly_id= 102160, from= IP1; - MS.19R1.B2:MS, at= 866.5407+(-32-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249575, assembly_id= 102160, from= IP1; - MCBV.19R1.B2:MCBV, at= 867.1337+(-32-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249577, assembly_id= 102160, from= IP1; - MCO.A20R1.B2:MCO, at= 868.2247+(-32-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249580, assembly_id= 102161, from= IP1; - MCD.A20R1.B2:MCD, at= 868.2262+(-32-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249581, assembly_id= 102161, from= IP1; - MB.A20R1.B2:MB, at= 875.7107+(-32.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821034, assembly_id= 102161, from= IP1; - MCS.A20R1.B2:MCS, at= 883.1347+(-33-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242114, assembly_id= 102161, from= IP1; - MB.B20R1.B2:MB, at= 891.3707+(-33.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821058, assembly_id= 102162, from= IP1; - MCS.B20R1.B2:MCS, at= 898.7947+(-34-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242117, assembly_id= 102162, from= IP1; - MCO.B20R1.B2:MCO, at= 899.5447+(-34-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249584, assembly_id= 102163, from= IP1; - MCD.B20R1.B2:MCD, at= 899.5462+(-34-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249585, assembly_id= 102163, from= IP1; - MB.C20R1.B2:MB, at= 907.0307+(-34.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821082, assembly_id= 102163, from= IP1; - MCS.C20R1.B2:MCS, at= 914.4547+(-35-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242122, assembly_id= 102163, from= IP1; - BPM.20R1.B2:BPM, at= 915.3337+(-35-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242124, assembly_id= 102164, from= IP1; - MQT.20R1.B2:MQT, at= 916.0877+(-35-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348442, assembly_id= 102164, from= IP1; -MQ.20R1.B2:MQ, at= 918.0957+(-35-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308224, assembly_id= 102164, from= IP1; - MS.20R1.B2:MS, at= 919.9907+(-35-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249587, assembly_id= 102164, from= IP1; - MCBH.20R1.B2:MCBH, at= 920.5837+(-35-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249589, assembly_id= 102164, from= IP1; - MB.A21R1.B2:MB, at= 929.1607+(-35.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821106, assembly_id= 102165, from= IP1; - MCS.A21R1.B2:MCS, at= 936.5847+(-36-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242130, assembly_id= 102165, from= IP1; - MCO.21R1.B2:MCO, at= 937.3347+(-36-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249592, assembly_id= 102166, from= IP1; - MCD.21R1.B2:MCD, at= 937.3362+(-36-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249593, assembly_id= 102166, from= IP1; - MB.B21R1.B2:MB, at= 944.8207+(-36.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821130, assembly_id= 102166, from= IP1; - MCS.B21R1.B2:MCS, at= 952.2447+(-37-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242135, assembly_id= 102166, from= IP1; - MB.C21R1.B2:MB, at= 960.4807+(-37.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821154, assembly_id= 102167, from= IP1; - MCS.C21R1.B2:MCS, at= 967.9047+(-38-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242138, assembly_id= 102167, from= IP1; - BPM.21R1.B2:BPM, at= 968.7837+(-38-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242140, assembly_id= 102168, from= IP1; - MQT.21R1.B2:MQT, at= 969.5377+(-38-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307270, assembly_id= 102168, from= IP1; -MQ.21R1.B2:MQ, at= 971.5457+(-38-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308254, assembly_id= 102168, from= IP1; - MS.21R1.B2:MS, at= 973.4407+(-38-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249595, assembly_id= 102168, from= IP1; - MCBV.21R1.B2:MCBV, at= 974.0337+(-38-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249597, assembly_id= 102168, from= IP1; - MCO.A22R1.B2:MCO, at= 975.1247+(-38-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249600, assembly_id= 102169, from= IP1; - MCD.A22R1.B2:MCD, at= 975.1262+(-38-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249601, assembly_id= 102169, from= IP1; - MB.A22R1.B2:MB, at= 982.6107+(-38.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821178, assembly_id= 102169, from= IP1; - MCS.A22R1.B2:MCS, at= 990.0347+(-39-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242148, assembly_id= 102169, from= IP1; - MB.B22R1.B2:MB, at= 998.2707+(-39.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821202, assembly_id= 102170, from= IP1; - MCS.B22R1.B2:MCS, at= 1005.6947+(-40-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242151, assembly_id= 102170, from= IP1; - MCO.B22R1.B2:MCO, at= 1006.4447+(-40-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249604, assembly_id= 102171, from= IP1; - MCD.B22R1.B2:MCD, at= 1006.4462+(-40-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249605, assembly_id= 102171, from= IP1; - MB.C22R1.B2:MB, at= 1013.9307+(-40.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821226, assembly_id= 102171, from= IP1; - MCS.C22R1.B2:MCS, at= 1021.3547+(-41-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242156, assembly_id= 102171, from= IP1; - BPM.22R1.B2:BPM, at= 1022.2337+(-41-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242158, assembly_id= 102172, from= IP1; - MO.22R1.B2:MO, at= 1022.9847+(-41-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308814, assembly_id= 102172, from= IP1; -MQ.22R1.B2:MQ, at= 1024.9957+(-41-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308286, assembly_id= 102172, from= IP1; - MS.22R1.B2:MS, at= 1026.8907+(-41-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249607, assembly_id= 102172, from= IP1; - MCBH.22R1.B2:MCBH, at= 1027.4837+(-41-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249609, assembly_id= 102172, from= IP1; - MB.A23R1.B2:MB, at= 1036.0607+(-41.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821250, assembly_id= 102173, from= IP1; - MCS.A23R1.B2:MCS, at= 1043.4847+(-42-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242164, assembly_id= 102173, from= IP1; - MCO.23R1.B2:MCO, at= 1044.2347+(-42-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249612, assembly_id= 102174, from= IP1; - MCD.23R1.B2:MCD, at= 1044.2362+(-42-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249613, assembly_id= 102174, from= IP1; - MB.B23R1.B2:MB, at= 1051.7207+(-42.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821274, assembly_id= 102174, from= IP1; - MCS.B23R1.B2:MCS, at= 1059.1447+(-43-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242169, assembly_id= 102174, from= IP1; - MB.C23R1.B2:MB, at= 1067.3807+(-43.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821298, assembly_id= 102175, from= IP1; - MCS.C23R1.B2:MCS, at= 1074.8047+(-44-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242172, assembly_id= 102175, from= IP1; - BPM.23R1.B2:BPM, at= 1075.6837+(-44-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242174, assembly_id= 102176, from= IP1; - MQS.23R1.B2:MQS, at= 1076.4377+(-44-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307637, assembly_id= 102176, from= IP1; -MQ.23R1.B2:MQ, at= 1078.4457+(-44-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308317, assembly_id= 102176, from= IP1; - MS.23R1.B2:MS, at= 1080.3407+(-44-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249615, assembly_id= 102176, from= IP1; - MCBV.23R1.B2:MCBV, at= 1080.9337+(-44-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249617, assembly_id= 102176, from= IP1; - MCO.A24R1.B2:MCO, at= 1082.0247+(-44-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249620, assembly_id= 102177, from= IP1; - MCD.A24R1.B2:MCD, at= 1082.0262+(-44-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249621, assembly_id= 102177, from= IP1; - MB.A24R1.B2:MB, at= 1089.5107+(-44.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821322, assembly_id= 102177, from= IP1; - MCS.A24R1.B2:MCS, at= 1096.9347+(-45-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242182, assembly_id= 102177, from= IP1; - MB.B24R1.B2:MB, at= 1105.1707+(-45.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821346, assembly_id= 102178, from= IP1; - MCS.B24R1.B2:MCS, at= 1112.5947+(-46-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242185, assembly_id= 102178, from= IP1; - MCO.B24R1.B2:MCO, at= 1113.3447+(-46-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249624, assembly_id= 102179, from= IP1; - MCD.B24R1.B2:MCD, at= 1113.3462+(-46-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249625, assembly_id= 102179, from= IP1; - MB.C24R1.B2:MB, at= 1120.8307+(-46.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821370, assembly_id= 102179, from= IP1; - MCS.C24R1.B2:MCS, at= 1128.2547+(-47-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242190, assembly_id= 102179, from= IP1; - BPM.24R1.B2:BPM, at= 1129.1337+(-47-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242192, assembly_id= 102180, from= IP1; - MO.24R1.B2:MO, at= 1129.8847+(-47-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308844, assembly_id= 102180, from= IP1; -MQ.24R1.B2:MQ, at= 1131.8957+(-47-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308107, assembly_id= 102180, from= IP1; - MS.24R1.B2:MS, at= 1133.7907+(-47-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249627, assembly_id= 102180, from= IP1; - MCBH.24R1.B2:MCBH, at= 1134.3837+(-47-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249629, assembly_id= 102180, from= IP1; - MB.A25R1.B2:MB, at= 1142.9607+(-47.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821394, assembly_id= 102181, from= IP1; - MCS.A25R1.B2:MCS, at= 1150.3847+(-48-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242198, assembly_id= 102181, from= IP1; - MCO.25R1.B2:MCO, at= 1151.1347+(-48-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249632, assembly_id= 102182, from= IP1; - MCD.25R1.B2:MCD, at= 1151.1362+(-48-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249633, assembly_id= 102182, from= IP1; - MB.B25R1.B2:MB, at= 1158.6207+(-48.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821418, assembly_id= 102182, from= IP1; - MCS.B25R1.B2:MCS, at= 1166.0447+(-49-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242203, assembly_id= 102182, from= IP1; - MB.C25R1.B2:MB, at= 1174.2807+(-49.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821442, assembly_id= 102183, from= IP1; - MCS.C25R1.B2:MCS, at= 1181.7047+(-50-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242206, assembly_id= 102183, from= IP1; - BPM.25R1.B2:BPM, at= 1182.5837+(-50-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242208, assembly_id= 102184, from= IP1; - MO.25R1.B2:MO, at= 1183.3347+(-50-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308876, assembly_id= 102184, from= IP1; -MQ.25R1.B2:MQ, at= 1185.3457+(-50-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308139, assembly_id= 102184, from= IP1; - MS.25R1.B2:MS, at= 1187.2407+(-50-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249635, assembly_id= 102184, from= IP1; - MCBV.25R1.B2:MCBV, at= 1187.8337+(-50-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249637, assembly_id= 102184, from= IP1; - MCO.A26R1.B2:MCO, at= 1188.9247+(-50-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249640, assembly_id= 102185, from= IP1; - MCD.A26R1.B2:MCD, at= 1188.9262+(-50-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249641, assembly_id= 102185, from= IP1; - MB.A26R1.B2:MB, at= 1196.4107+(-50.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821466, assembly_id= 102185, from= IP1; - MCS.A26R1.B2:MCS, at= 1203.8347+(-51-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242216, assembly_id= 102185, from= IP1; - MB.B26R1.B2:MB, at= 1212.0707+(-51.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821490, assembly_id= 102186, from= IP1; - MCS.B26R1.B2:MCS, at= 1219.4947+(-52-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242219, assembly_id= 102186, from= IP1; - MCO.B26R1.B2:MCO, at= 1220.2447+(-52-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249644, assembly_id= 102187, from= IP1; - MCD.B26R1.B2:MCD, at= 1220.2462+(-52-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249645, assembly_id= 102187, from= IP1; - MB.C26R1.B2:MB, at= 1227.7307+(-52.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821514, assembly_id= 102187, from= IP1; - MCS.C26R1.B2:MCS, at= 1235.1547+(-53-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242224, assembly_id= 102187, from= IP1; - BPM.26R1.B2:BPM, at= 1236.0337+(-53-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242226, assembly_id= 102188, from= IP1; - MO.26R1.B2:MO, at= 1236.7847+(-53-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308908, assembly_id= 102188, from= IP1; -MQ.26R1.B2:MQ, at= 1238.7957+(-53-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308170, assembly_id= 102188, from= IP1; - MS.26R1.B2:MS, at= 1240.6907+(-53-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249647, assembly_id= 102188, from= IP1; - MCBH.26R1.B2:MCBH, at= 1241.2837+(-53-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249649, assembly_id= 102188, from= IP1; - MB.A27R1.B2:MB, at= 1249.8607+(-53.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821538, assembly_id= 102189, from= IP1; - MCS.A27R1.B2:MCS, at= 1257.2847+(-54-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242232, assembly_id= 102189, from= IP1; - MCO.27R1.B2:MCO, at= 1258.0347+(-54-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249652, assembly_id= 102190, from= IP1; - MCD.27R1.B2:MCD, at= 1258.0362+(-54-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249653, assembly_id= 102190, from= IP1; - MB.B27R1.B2:MB, at= 1265.5207+(-54.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821562, assembly_id= 102190, from= IP1; - MCS.B27R1.B2:MCS, at= 1272.9447+(-55-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242237, assembly_id= 102190, from= IP1; - MB.C27R1.B2:MB, at= 1281.1807+(-55.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821586, assembly_id= 102191, from= IP1; - MCS.C27R1.B2:MCS, at= 1288.6047+(-56-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242240, assembly_id= 102191, from= IP1; - BPM.27R1.B2:BPM, at= 1289.4837+(-56-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242242, assembly_id= 102192, from= IP1; - MQS.27R1.B2:MQS, at= 1290.2377+(-56-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307668, assembly_id= 102192, from= IP1; -MQ.27R1.B2:MQ, at= 1292.2457+(-56-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308200, assembly_id= 102192, from= IP1; - MS.27R1.B2:MS, at= 1294.1407+(-56-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249655, assembly_id= 102192, from= IP1; - MCBV.27R1.B2:MCBV, at= 1294.7337+(-56-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249657, assembly_id= 102192, from= IP1; - MCO.A28R1.B2:MCO, at= 1295.8247+(-56-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249660, assembly_id= 102193, from= IP1; - MCD.A28R1.B2:MCD, at= 1295.8262+(-56-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249661, assembly_id= 102193, from= IP1; - MB.A28R1.B2:MB, at= 1303.3107+(-56.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821610, assembly_id= 102193, from= IP1; - MCS.A28R1.B2:MCS, at= 1310.7347+(-57-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242250, assembly_id= 102193, from= IP1; - MB.B28R1.B2:MB, at= 1318.9707+(-57.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821634, assembly_id= 102194, from= IP1; - MCS.B28R1.B2:MCS, at= 1326.3947+(-58-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242253, assembly_id= 102194, from= IP1; - MCO.B28R1.B2:MCO, at= 1327.1447+(-58-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249664, assembly_id= 102195, from= IP1; - MCD.B28R1.B2:MCD, at= 1327.1462+(-58-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249665, assembly_id= 102195, from= IP1; - MB.C28R1.B2:MB, at= 1334.6307+(-58.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821658, assembly_id= 102195, from= IP1; - MCS.C28R1.B2:MCS, at= 1342.0547+(-59-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242258, assembly_id= 102195, from= IP1; - BPM.28R1.B2:BPM, at= 1342.9337+(-59-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242260, assembly_id= 102196, from= IP1; - MO.28R1.B2:MO, at= 1343.6847+(-59-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308697, assembly_id= 102196, from= IP1; -MQ.28R1.B2:MQ, at= 1345.6957+(-59-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307991, assembly_id= 102196, from= IP1; - MS.28R1.B2:MS, at= 1347.5907+(-59-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249667, assembly_id= 102196, from= IP1; - MCBH.28R1.B2:MCBH, at= 1348.1837+(-59-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249669, assembly_id= 102196, from= IP1; - MB.A29R1.B2:MB, at= 1356.7607+(-59.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821682, assembly_id= 102197, from= IP1; - MCS.A29R1.B2:MCS, at= 1364.1847+(-60-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242266, assembly_id= 102197, from= IP1; - MCO.29R1.B2:MCO, at= 1364.9347+(-60-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249672, assembly_id= 102198, from= IP1; - MCD.29R1.B2:MCD, at= 1364.9362+(-60-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249673, assembly_id= 102198, from= IP1; - MB.B29R1.B2:MB, at= 1372.4207+(-60.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821706, assembly_id= 102198, from= IP1; - MCS.B29R1.B2:MCS, at= 1379.8447+(-61-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242271, assembly_id= 102198, from= IP1; - MB.C29R1.B2:MB, at= 1388.0807+(-61.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821730, assembly_id= 102199, from= IP1; - MCS.C29R1.B2:MCS, at= 1395.5047+(-62-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242274, assembly_id= 102199, from= IP1; - BPM.29R1.B2:BPM, at= 1396.3837+(-62-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242276, assembly_id= 102200, from= IP1; - MO.29R1.B2:MO, at= 1397.1347+(-62-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308729, assembly_id= 102200, from= IP1; -MQ.29R1.B2:MQ, at= 1399.1457+(-62-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308022, assembly_id= 102200, from= IP1; - MS.29R1.B2:MS, at= 1401.0407+(-62-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249675, assembly_id= 102200, from= IP1; - MCBV.29R1.B2:MCBV, at= 1401.6337+(-62-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249677, assembly_id= 102200, from= IP1; - MCO.A30R1.B2:MCO, at= 1402.7247+(-62-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249680, assembly_id= 102201, from= IP1; - MCD.A30R1.B2:MCD, at= 1402.7262+(-62-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249681, assembly_id= 102201, from= IP1; - MB.A30R1.B2:MB, at= 1410.2107+(-62.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821754, assembly_id= 102201, from= IP1; - MCS.A30R1.B2:MCS, at= 1417.6347+(-63-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242284, assembly_id= 102201, from= IP1; - MB.B30R1.B2:MB, at= 1425.8707+(-63.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821778, assembly_id= 102202, from= IP1; - MCS.B30R1.B2:MCS, at= 1433.2947+(-64-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242287, assembly_id= 102202, from= IP1; - MCO.B30R1.B2:MCO, at= 1434.0447+(-64-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249684, assembly_id= 102203, from= IP1; - MCD.B30R1.B2:MCD, at= 1434.0462+(-64-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249685, assembly_id= 102203, from= IP1; - MB.C30R1.B2:MB, at= 1441.5307+(-64.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821802, assembly_id= 102203, from= IP1; - MCS.C30R1.B2:MCS, at= 1448.9547+(-65-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242292, assembly_id= 102203, from= IP1; - BPM.30R1.B2:BPM, at= 1449.8337+(-65-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242294, assembly_id= 102204, from= IP1; - MO.30R1.B2:MO, at= 1450.5847+(-65-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308760, assembly_id= 102204, from= IP1; -MQ.30R1.B2:MQ, at= 1452.5957+(-65-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308052, assembly_id= 102204, from= IP1; - MSS.30R1.B2:MSS, at= 1454.4907+(-65-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249687, assembly_id= 102204, from= IP1; - MCBH.30R1.B2:MCBH, at= 1455.0837+(-65-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249689, assembly_id= 102204, from= IP1; - MB.A31R1.B2:MB, at= 1463.6607+(-65.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821826, assembly_id= 102205, from= IP1; - MCS.A31R1.B2:MCS, at= 1471.0847+(-66-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242300, assembly_id= 102205, from= IP1; - MCO.31R1.B2:MCO, at= 1471.8347+(-66-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249692, assembly_id= 102206, from= IP1; - MCD.31R1.B2:MCD, at= 1471.8362+(-66-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249693, assembly_id= 102206, from= IP1; - MB.B31R1.B2:MB, at= 1479.3207+(-66.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821850, assembly_id= 102206, from= IP1; - MCS.B31R1.B2:MCS, at= 1486.7447+(-67-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242305, assembly_id= 102206, from= IP1; - MB.C31R1.B2:MB, at= 1494.9807+(-67.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821874, assembly_id= 102207, from= IP1; - MCS.C31R1.B2:MCS, at= 1502.4047+(-68-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242308, assembly_id= 102207, from= IP1; - BPM.31R1.B2:BPM, at= 1503.2837+(-68-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242310, assembly_id= 102208, from= IP1; - MO.31R1.B2:MO, at= 1504.0347+(-68-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308790, assembly_id= 102208, from= IP1; -MQ.31R1.B2:MQ, at= 1506.0457+(-68-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308082, assembly_id= 102208, from= IP1; - MS.31R1.B2:MS, at= 1507.9407+(-68-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249695, assembly_id= 102208, from= IP1; - MCBV.31R1.B2:MCBV, at= 1508.5337+(-68-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249697, assembly_id= 102208, from= IP1; -S.CELL.12.B2:OMK, at= 1509.2807+(-68-IP1OFS.B2)*DS, slot_id= 100932, from= IP1; - MCO.A32R1.B2:MCO, at= 1509.6247+(-68-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249700, assembly_id= 102209, from= IP1; - MCD.A32R1.B2:MCD, at= 1509.6262+(-68-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249701, assembly_id= 102209, from= IP1; - MB.A32R1.B2:MB, at= 1517.1107+(-68.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821898, assembly_id= 102209, from= IP1; - MCS.A32R1.B2:MCS, at= 1524.5347+(-69-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242318, assembly_id= 102209, from= IP1; - MB.B32R1.B2:MB, at= 1532.7707+(-69.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821922, assembly_id= 102210, from= IP1; - MCS.B32R1.B2:MCS, at= 1540.1947+(-70-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242321, assembly_id= 102210, from= IP1; - MCO.B32R1.B2:MCO, at= 1540.9447+(-70-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249704, assembly_id= 102211, from= IP1; - MCD.B32R1.B2:MCD, at= 1540.9462+(-70-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249705, assembly_id= 102211, from= IP1; - MB.C32R1.B2:MB, at= 1548.4307+(-70.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821946, assembly_id= 102211, from= IP1; - MCS.C32R1.B2:MCS, at= 1555.8547+(-71-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242326, assembly_id= 102211, from= IP1; - BPM.32R1.B2:BPM, at= 1556.7337+(-71-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242328, assembly_id= 102212, from= IP1; - MO.32R1.B2:MO, at= 1557.4847+(-71-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308582, assembly_id= 102212, from= IP1; -MQ.32R1.B2:MQ, at= 1559.4957+(-71-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307874, assembly_id= 102212, from= IP1; - MS.32R1.B2:MS, at= 1561.3907+(-71-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249707, assembly_id= 102212, from= IP1; - MCBH.32R1.B2:MCBH, at= 1561.9837+(-71-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249709, assembly_id= 102212, from= IP1; - MB.A33R1.B2:MB, at= 1570.5607+(-71.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821970, assembly_id= 102213, from= IP1; - MCS.A33R1.B2:MCS, at= 1577.9847+(-72-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242334, assembly_id= 102213, from= IP1; - MCO.33R1.B2:MCO, at= 1578.7347+(-72-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249712, assembly_id= 102214, from= IP1; - MCD.33R1.B2:MCD, at= 1578.7362+(-72-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249713, assembly_id= 102214, from= IP1; - MB.B33R1.B2:MB, at= 1586.2207+(-72.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52821994, assembly_id= 102214, from= IP1; - MCS.B33R1.B2:MCS, at= 1593.6447+(-73-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242339, assembly_id= 102214, from= IP1; - MB.C33R1.B2:MB, at= 1601.8807+(-73.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822018, assembly_id= 102215, from= IP1; - MCS.C33R1.B2:MCS, at= 1609.3047+(-74-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242342, assembly_id= 102215, from= IP1; - BPM.33R1.B2:BPM, at= 1610.1837+(-74-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242344, assembly_id= 102216, from= IP1; - MO.33R1.B2:MO, at= 1610.9347+(-74-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308613, assembly_id= 102216, from= IP1; -MQ.33R1.B2:MQ, at= 1612.9457+(-74-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307903, assembly_id= 102216, from= IP1; - MS.33R1.B2:MS, at= 1614.8407+(-74-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249715, assembly_id= 102216, from= IP1; - MCBV.33R1.B2:MCBV, at= 1615.4337+(-74-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249717, assembly_id= 102216, from= IP1; -E.CELL.12.B2:OMK, at= 1616.1807+(-74-IP1OFS.B2)*DS, slot_id= 100932, from= IP1; - MCO.A34R1.B2:MCO, at= 1616.5247+(-74-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249720, assembly_id= 102217, from= IP1; - MCD.A34R1.B2:MCD, at= 1616.5262+(-74-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249721, assembly_id= 102217, from= IP1; - MB.A34R1.B2:MB, at= 1624.0107+(-74.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822042, assembly_id= 102217, from= IP1; - MCS.A34R1.B2:MCS, at= 1631.4347+(-75-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242352, assembly_id= 102217, from= IP1; - MB.B34R1.B2:MB, at= 1639.6707+(-75.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822066, assembly_id= 102218, from= IP1; - MCS.B34R1.B2:MCS, at= 1647.0947+(-76-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242355, assembly_id= 102218, from= IP1; - MCO.B34R1.B2:MCO, at= 1647.8447+(-76-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249724, assembly_id= 102219, from= IP1; - MCD.B34R1.B2:MCD, at= 1647.8462+(-76-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249725, assembly_id= 102219, from= IP1; - MB.C34R1.B2:MB, at= 1655.3307+(-76.5-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822090, assembly_id= 102219, from= IP1; - MCS.C34R1.B2:MCS, at= 1662.7547+(-77-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242360, assembly_id= 102219, from= IP1; - BPM.34R1.B2:BPM, at= 1663.6337+(-77-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242362, assembly_id= 102220, from= IP1; - MO.34R1.B2:MO, at= 1664.3847+(-77-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308628, assembly_id= 102220, from= IP1; -MQ.34R1.B2:MQ, at= 1666.3957+(-77-IP1OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307918, assembly_id= 102220, from= IP1; - MSS.34L2.B2:MSS, at= -1664.0697+(-77-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249727, assembly_id= 102220, from= IP2; - MCBH.34L2.B2:MCBH, at= -1663.4767+(-77-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249729, assembly_id= 102220, from= IP2; - MB.C34L2.B2:MB, at= -1654.8997+(-77.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822114, assembly_id= 102221, from= IP2; - MCS.C34L2.B2:MCS, at= -1647.4757+(-78-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242368, assembly_id= 102221, from= IP2; - MCO.34L2.B2:MCO, at= -1646.7257+(-78-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249732, assembly_id= 102222, from= IP2; - MCD.34L2.B2:MCD, at= -1646.7242+(-78-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249733, assembly_id= 102222, from= IP2; - MB.B34L2.B2:MB, at= -1639.2397+(-78.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822138, assembly_id= 102222, from= IP2; - MCS.B34L2.B2:MCS, at= -1631.8157+(-79-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242373, assembly_id= 102222, from= IP2; - MB.A34L2.B2:MB, at= -1623.5797+(-79.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822162, assembly_id= 102223, from= IP2; - MCS.A34L2.B2:MCS, at= -1616.1557+(-80-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242376, assembly_id= 102223, from= IP2; - BPM.33L2.B2:BPM, at= -1615.2767+(-80-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242378, assembly_id= 102224, from= IP2; - MO.33L2.B2:MO, at= -1614.5257+(-80-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308600, assembly_id= 102224, from= IP2; -MQ.33L2.B2:MQ, at= -1612.5147+(-80-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307890, assembly_id= 102224, from= IP2; - MS.33L2.B2:MS, at= -1610.6197+(-80-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249735, assembly_id= 102224, from= IP2; - MCBV.33L2.B2:MCBV, at= -1610.0267+(-80-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249737, assembly_id= 102224, from= IP2; - MCO.B33L2.B2:MCO, at= -1608.9357+(-80-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249740, assembly_id= 102225, from= IP2; - MCD.B33L2.B2:MCD, at= -1608.9342+(-80-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249741, assembly_id= 102225, from= IP2; - MB.C33L2.B2:MB, at= -1601.4497+(-80.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822186, assembly_id= 102225, from= IP2; - MCS.C33L2.B2:MCS, at= -1594.0257+(-81-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242386, assembly_id= 102225, from= IP2; - MB.B33L2.B2:MB, at= -1585.7897+(-81.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822210, assembly_id= 102226, from= IP2; - MCS.B33L2.B2:MCS, at= -1578.3657+(-82-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242389, assembly_id= 102226, from= IP2; - MCO.A33L2.B2:MCO, at= -1577.6157+(-82-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249744, assembly_id= 102227, from= IP2; - MCD.A33L2.B2:MCD, at= -1577.6142+(-82-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249745, assembly_id= 102227, from= IP2; - MB.A33L2.B2:MB, at= -1570.1297+(-82.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822234, assembly_id= 102227, from= IP2; - MCS.A33L2.B2:MCS, at= -1562.7057+(-83-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242394, assembly_id= 102227, from= IP2; - BPM.32L2.B2:BPM, at= -1561.8267+(-83-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242396, assembly_id= 102228, from= IP2; - MO.32L2.B2:MO, at= -1561.0757+(-83-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308568, assembly_id= 102228, from= IP2; -MQ.32L2.B2:MQ, at= -1559.0647+(-83-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307861, assembly_id= 102228, from= IP2; - MSS.32L2.B2:MSS, at= -1557.1697+(-83-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249747, assembly_id= 102228, from= IP2; - MCBH.32L2.B2:MCBH, at= -1556.5767+(-83-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249749, assembly_id= 102228, from= IP2; - MB.C32L2.B2:MB, at= -1547.9997+(-83.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822258, assembly_id= 102229, from= IP2; - MCS.C32L2.B2:MCS, at= -1540.5757+(-84-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242402, assembly_id= 102229, from= IP2; - MCO.32L2.B2:MCO, at= -1539.8257+(-84-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249752, assembly_id= 102230, from= IP2; - MCD.32L2.B2:MCD, at= -1539.8242+(-84-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249753, assembly_id= 102230, from= IP2; - MB.B32L2.B2:MB, at= -1532.3397+(-84.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822282, assembly_id= 102230, from= IP2; - MCS.B32L2.B2:MCS, at= -1524.9157+(-85-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242407, assembly_id= 102230, from= IP2; - MB.A32L2.B2:MB, at= -1516.6797+(-85.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822306, assembly_id= 102231, from= IP2; - MCS.A32L2.B2:MCS, at= -1509.2557+(-86-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242410, assembly_id= 102231, from= IP2; - BPM.31L2.B2:BPM, at= -1508.3767+(-86-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242412, assembly_id= 102232, from= IP2; - MO.31L2.B2:MO, at= -1507.6257+(-86-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308777, assembly_id= 102232, from= IP2; -MQ.31L2.B2:MQ, at= -1505.6147+(-86-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308069, assembly_id= 102232, from= IP2; - MS.31L2.B2:MS, at= -1503.7197+(-86-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249755, assembly_id= 102232, from= IP2; - MCBV.31L2.B2:MCBV, at= -1503.1267+(-86-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249757, assembly_id= 102232, from= IP2; - MCO.B31L2.B2:MCO, at= -1502.0357+(-86-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249760, assembly_id= 102233, from= IP2; - MCD.B31L2.B2:MCD, at= -1502.0342+(-86-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249761, assembly_id= 102233, from= IP2; - MB.C31L2.B2:MB, at= -1494.5497+(-86.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822330, assembly_id= 102233, from= IP2; - MCS.C31L2.B2:MCS, at= -1487.1257+(-87-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242420, assembly_id= 102233, from= IP2; - MB.B31L2.B2:MB, at= -1478.8897+(-87.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822354, assembly_id= 102234, from= IP2; - MCS.B31L2.B2:MCS, at= -1471.4657+(-88-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242423, assembly_id= 102234, from= IP2; - MCO.A31L2.B2:MCO, at= -1470.7157+(-88-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249764, assembly_id= 102235, from= IP2; - MCD.A31L2.B2:MCD, at= -1470.7142+(-88-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249765, assembly_id= 102235, from= IP2; - MB.A31L2.B2:MB, at= -1463.2297+(-88.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822378, assembly_id= 102235, from= IP2; - MCS.A31L2.B2:MCS, at= -1455.8057+(-89-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242428, assembly_id= 102235, from= IP2; - BPM.30L2.B2:BPM, at= -1454.9267+(-89-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242430, assembly_id= 102236, from= IP2; - MO.30L2.B2:MO, at= -1454.1757+(-89-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308747, assembly_id= 102236, from= IP2; -MQ.30L2.B2:MQ, at= -1452.1647+(-89-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308039, assembly_id= 102236, from= IP2; - MS.30L2.B2:MS, at= -1450.2697+(-89-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249767, assembly_id= 102236, from= IP2; - MCBH.30L2.B2:MCBH, at= -1449.6767+(-89-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249769, assembly_id= 102236, from= IP2; - MB.C30L2.B2:MB, at= -1441.0997+(-89.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822402, assembly_id= 102237, from= IP2; - MCS.C30L2.B2:MCS, at= -1433.6757+(-90-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242436, assembly_id= 102237, from= IP2; - MCO.30L2.B2:MCO, at= -1432.9257+(-90-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249772, assembly_id= 102238, from= IP2; - MCD.30L2.B2:MCD, at= -1432.9242+(-90-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249773, assembly_id= 102238, from= IP2; - MB.B30L2.B2:MB, at= -1425.4397+(-90.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822426, assembly_id= 102238, from= IP2; - MCS.B30L2.B2:MCS, at= -1418.0157+(-91-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242441, assembly_id= 102238, from= IP2; - MB.A30L2.B2:MB, at= -1409.7797+(-91.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822450, assembly_id= 102239, from= IP2; - MCS.A30L2.B2:MCS, at= -1402.3557+(-92-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242444, assembly_id= 102239, from= IP2; - BPM.29L2.B2:BPM, at= -1401.4767+(-92-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242446, assembly_id= 102240, from= IP2; - MO.29L2.B2:MO, at= -1400.7257+(-92-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308715, assembly_id= 102240, from= IP2; -MQ.29L2.B2:MQ, at= -1398.7147+(-92-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308009, assembly_id= 102240, from= IP2; - MS.29L2.B2:MS, at= -1396.8197+(-92-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249775, assembly_id= 102240, from= IP2; - MCBV.29L2.B2:MCBV, at= -1396.2267+(-92-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249777, assembly_id= 102240, from= IP2; - MCO.B29L2.B2:MCO, at= -1395.1357+(-92-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249780, assembly_id= 102241, from= IP2; - MCD.B29L2.B2:MCD, at= -1395.1342+(-92-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249781, assembly_id= 102241, from= IP2; - MB.C29L2.B2:MB, at= -1387.6497+(-92.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822474, assembly_id= 102241, from= IP2; - MCS.C29L2.B2:MCS, at= -1380.2257+(-93-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242454, assembly_id= 102241, from= IP2; - MB.B29L2.B2:MB, at= -1371.9897+(-93.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822498, assembly_id= 102242, from= IP2; - MCS.B29L2.B2:MCS, at= -1364.5657+(-94-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242457, assembly_id= 102242, from= IP2; - MCO.A29L2.B2:MCO, at= -1363.8157+(-94-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249784, assembly_id= 102243, from= IP2; - MCD.A29L2.B2:MCD, at= -1363.8142+(-94-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249785, assembly_id= 102243, from= IP2; - MB.A29L2.B2:MB, at= -1356.3297+(-94.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822522, assembly_id= 102243, from= IP2; - MCS.A29L2.B2:MCS, at= -1348.9057+(-95-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242462, assembly_id= 102243, from= IP2; - BPM.28L2.B2:BPM, at= -1348.0267+(-95-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242464, assembly_id= 102244, from= IP2; - MO.28L2.B2:MO, at= -1347.2757+(-95-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308684, assembly_id= 102244, from= IP2; -MQ.28L2.B2:MQ, at= -1345.2647+(-95-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307977, assembly_id= 102244, from= IP2; - MSS.28L2.B2:MSS, at= -1343.3697+(-95-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249787, assembly_id= 102244, from= IP2; - MCBH.28L2.B2:MCBH, at= -1342.7767+(-95-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249789, assembly_id= 102244, from= IP2; - MB.C28L2.B2:MB, at= -1334.1997+(-95.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822546, assembly_id= 102245, from= IP2; - MCS.C28L2.B2:MCS, at= -1326.7757+(-96-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242470, assembly_id= 102245, from= IP2; - MCO.28L2.B2:MCO, at= -1326.0257+(-96-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249792, assembly_id= 102246, from= IP2; - MCD.28L2.B2:MCD, at= -1326.0242+(-96-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249793, assembly_id= 102246, from= IP2; - MB.B28L2.B2:MB, at= -1318.5397+(-96.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822570, assembly_id= 102246, from= IP2; - MCS.B28L2.B2:MCS, at= -1311.1157+(-97-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242475, assembly_id= 102246, from= IP2; - MB.A28L2.B2:MB, at= -1302.8797+(-97.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822594, assembly_id= 102247, from= IP2; - MCS.A28L2.B2:MCS, at= -1295.4557+(-98-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242478, assembly_id= 102247, from= IP2; - BPM.27L2.B2:BPM, at= -1294.5767+(-98-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242480, assembly_id= 102248, from= IP2; - MQS.27L2.B2:MQS, at= -1293.8227+(-98-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307654, assembly_id= 102248, from= IP2; -MQ.27L2.B2:MQ, at= -1291.8147+(-98-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308187, assembly_id= 102248, from= IP2; - MS.27L2.B2:MS, at= -1289.9197+(-98-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249795, assembly_id= 102248, from= IP2; - MCBV.27L2.B2:MCBV, at= -1289.3267+(-98-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249797, assembly_id= 102248, from= IP2; - MCO.B27L2.B2:MCO, at= -1288.2357+(-98-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249800, assembly_id= 102249, from= IP2; - MCD.B27L2.B2:MCD, at= -1288.2342+(-98-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249801, assembly_id= 102249, from= IP2; - MB.C27L2.B2:MB, at= -1280.7497+(-98.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822618, assembly_id= 102249, from= IP2; - MCS.C27L2.B2:MCS, at= -1273.3257+(-99-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242488, assembly_id= 102249, from= IP2; - MB.B27L2.B2:MB, at= -1265.0897+(-99.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822642, assembly_id= 102250, from= IP2; - MCS.B27L2.B2:MCS, at= -1257.6657+(-100-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242491, assembly_id= 102250, from= IP2; - MCO.A27L2.B2:MCO, at= -1256.9157+(-100-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249804, assembly_id= 102251, from= IP2; - MCD.A27L2.B2:MCD, at= -1256.9142+(-100-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249805, assembly_id= 102251, from= IP2; - MB.A27L2.B2:MB, at= -1249.4297+(-100.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822666, assembly_id= 102251, from= IP2; - MCS.A27L2.B2:MCS, at= -1242.0057+(-101-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242496, assembly_id= 102251, from= IP2; - BPM.26L2.B2:BPM, at= -1241.1267+(-101-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242498, assembly_id= 102252, from= IP2; - MO.26L2.B2:MO, at= -1240.3757+(-101-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308894, assembly_id= 102252, from= IP2; -MQ.26L2.B2:MQ, at= -1238.3647+(-101-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308157, assembly_id= 102252, from= IP2; - MS.26L2.B2:MS, at= -1236.4697+(-101-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249807, assembly_id= 102252, from= IP2; - MCBH.26L2.B2:MCBH, at= -1235.8767+(-101-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249809, assembly_id= 102252, from= IP2; - MB.C26L2.B2:MB, at= -1227.2997+(-101.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822690, assembly_id= 102253, from= IP2; - MCS.C26L2.B2:MCS, at= -1219.8757+(-102-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242504, assembly_id= 102253, from= IP2; - MCO.26L2.B2:MCO, at= -1219.1257+(-102-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249812, assembly_id= 102254, from= IP2; - MCD.26L2.B2:MCD, at= -1219.1242+(-102-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249813, assembly_id= 102254, from= IP2; - MB.B26L2.B2:MB, at= -1211.6397+(-102.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822714, assembly_id= 102254, from= IP2; - MCS.B26L2.B2:MCS, at= -1204.2157+(-103-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242509, assembly_id= 102254, from= IP2; - MB.A26L2.B2:MB, at= -1195.9797+(-103.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822738, assembly_id= 102255, from= IP2; - MCS.A26L2.B2:MCS, at= -1188.5557+(-104-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242512, assembly_id= 102255, from= IP2; - BPM.25L2.B2:BPM, at= -1187.6767+(-104-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242514, assembly_id= 102256, from= IP2; - MO.25L2.B2:MO, at= -1186.9257+(-104-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308862, assembly_id= 102256, from= IP2; -MQ.25L2.B2:MQ, at= -1184.9147+(-104-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308125, assembly_id= 102256, from= IP2; - MS.25L2.B2:MS, at= -1183.0197+(-104-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249815, assembly_id= 102256, from= IP2; - MCBV.25L2.B2:MCBV, at= -1182.4267+(-104-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249817, assembly_id= 102256, from= IP2; - MCO.B25L2.B2:MCO, at= -1181.3357+(-104-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249820, assembly_id= 102257, from= IP2; - MCD.B25L2.B2:MCD, at= -1181.3342+(-104-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249821, assembly_id= 102257, from= IP2; - MB.C25L2.B2:MB, at= -1173.8497+(-104.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822762, assembly_id= 102257, from= IP2; - MCS.C25L2.B2:MCS, at= -1166.4257+(-105-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242522, assembly_id= 102257, from= IP2; - MB.B25L2.B2:MB, at= -1158.1897+(-105.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822786, assembly_id= 102258, from= IP2; - MCS.B25L2.B2:MCS, at= -1150.7657+(-106-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242525, assembly_id= 102258, from= IP2; - MCO.A25L2.B2:MCO, at= -1150.0157+(-106-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249824, assembly_id= 102259, from= IP2; - MCD.A25L2.B2:MCD, at= -1150.0142+(-106-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249825, assembly_id= 102259, from= IP2; - MB.A25L2.B2:MB, at= -1142.5297+(-106.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822810, assembly_id= 102259, from= IP2; - MCS.A25L2.B2:MCS, at= -1135.1057+(-107-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242530, assembly_id= 102259, from= IP2; - BPM.24L2.B2:BPM, at= -1134.2267+(-107-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242532, assembly_id= 102260, from= IP2; - MO.24L2.B2:MO, at= -1133.4757+(-107-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308831, assembly_id= 102260, from= IP2; -MQ.24L2.B2:MQ, at= -1131.4647+(-107-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308093, assembly_id= 102260, from= IP2; - MS.24L2.B2:MS, at= -1129.5697+(-107-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249827, assembly_id= 102260, from= IP2; - MCBH.24L2.B2:MCBH, at= -1128.9767+(-107-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249829, assembly_id= 102260, from= IP2; - MB.C24L2.B2:MB, at= -1120.3997+(-107.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822834, assembly_id= 102261, from= IP2; - MCS.C24L2.B2:MCS, at= -1112.9757+(-108-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242538, assembly_id= 102261, from= IP2; - MCO.24L2.B2:MCO, at= -1112.2257+(-108-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249832, assembly_id= 102262, from= IP2; - MCD.24L2.B2:MCD, at= -1112.2242+(-108-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249833, assembly_id= 102262, from= IP2; - MB.B24L2.B2:MB, at= -1104.7397+(-108.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822858, assembly_id= 102262, from= IP2; - MCS.B24L2.B2:MCS, at= -1097.3157+(-109-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242543, assembly_id= 102262, from= IP2; - MB.A24L2.B2:MB, at= -1089.0797+(-109.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822882, assembly_id= 102263, from= IP2; - MCS.A24L2.B2:MCS, at= -1081.6557+(-110-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242546, assembly_id= 102263, from= IP2; - BPM.23L2.B2:BPM, at= -1080.7767+(-110-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242548, assembly_id= 102264, from= IP2; - MQS.23L2.B2:MQS, at= -1080.0227+(-110-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307624, assembly_id= 102264, from= IP2; -MQ.23L2.B2:MQ, at= -1078.0147+(-110-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308304, assembly_id= 102264, from= IP2; - MS.23L2.B2:MS, at= -1076.1197+(-110-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249835, assembly_id= 102264, from= IP2; - MCBV.23L2.B2:MCBV, at= -1075.5267+(-110-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249837, assembly_id= 102264, from= IP2; - MCO.B23L2.B2:MCO, at= -1074.4357+(-110-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249840, assembly_id= 102265, from= IP2; - MCD.B23L2.B2:MCD, at= -1074.4342+(-110-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249841, assembly_id= 102265, from= IP2; - MB.C23L2.B2:MB, at= -1066.9497+(-110.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822906, assembly_id= 102265, from= IP2; - MCS.C23L2.B2:MCS, at= -1059.5257+(-111-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242556, assembly_id= 102265, from= IP2; - MB.B23L2.B2:MB, at= -1051.2897+(-111.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822930, assembly_id= 102266, from= IP2; - MCS.B23L2.B2:MCS, at= -1043.8657+(-112-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242559, assembly_id= 102266, from= IP2; - MCO.A23L2.B2:MCO, at= -1043.1157+(-112-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249844, assembly_id= 102267, from= IP2; - MCD.A23L2.B2:MCD, at= -1043.1142+(-112-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249845, assembly_id= 102267, from= IP2; - MB.A23L2.B2:MB, at= -1035.6297+(-112.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822954, assembly_id= 102267, from= IP2; - MCS.A23L2.B2:MCS, at= -1028.2057+(-113-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242564, assembly_id= 102267, from= IP2; - BPM.22L2.B2:BPM, at= -1027.3267+(-113-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242566, assembly_id= 102268, from= IP2; - MO.22L2.B2:MO, at= -1026.5757+(-113-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2309038, assembly_id= 102268, from= IP2; -MQ.22L2.B2:MQ, at= -1024.5647+(-113-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308272, assembly_id= 102268, from= IP2; - MS.22L2.B2:MS, at= -1022.6697+(-113-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249847, assembly_id= 102268, from= IP2; - MCBH.22L2.B2:MCBH, at= -1022.0767+(-113-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249849, assembly_id= 102268, from= IP2; - MB.C22L2.B2:MB, at= -1013.4997+(-113.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52822978, assembly_id= 102269, from= IP2; - MCS.C22L2.B2:MCS, at= -1006.0757+(-114-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242572, assembly_id= 102269, from= IP2; - MCO.22L2.B2:MCO, at= -1005.3257+(-114-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249852, assembly_id= 102270, from= IP2; - MCD.22L2.B2:MCD, at= -1005.3242+(-114-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249853, assembly_id= 102270, from= IP2; - MB.B22L2.B2:MB, at= -997.8397+(-114.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823002, assembly_id= 102270, from= IP2; - MCS.B22L2.B2:MCS, at= -990.4157+(-115-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242577, assembly_id= 102270, from= IP2; - MB.A22L2.B2:MB, at= -982.1797+(-115.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823026, assembly_id= 102271, from= IP2; - MCS.A22L2.B2:MCS, at= -974.7557+(-116-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242580, assembly_id= 102271, from= IP2; - BPM.21L2.B2:BPM, at= -973.8767+(-116-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242582, assembly_id= 102272, from= IP2; - MQT.21L2.B2:MQT, at= -973.1227+(-116-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307489, assembly_id= 102272, from= IP2; -MQ.21L2.B2:MQ, at= -971.1147+(-116-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308241, assembly_id= 102272, from= IP2; - MS.21L2.B2:MS, at= -969.2197+(-116-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249855, assembly_id= 102272, from= IP2; - MCBV.21L2.B2:MCBV, at= -968.6267+(-116-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249857, assembly_id= 102272, from= IP2; - MCO.B21L2.B2:MCO, at= -967.5357+(-116-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249860, assembly_id= 102273, from= IP2; - MCD.B21L2.B2:MCD, at= -967.5342+(-116-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249861, assembly_id= 102273, from= IP2; - MB.C21L2.B2:MB, at= -960.0497+(-116.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823050, assembly_id= 102273, from= IP2; - MCS.C21L2.B2:MCS, at= -952.6257+(-117-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242590, assembly_id= 102273, from= IP2; - MB.B21L2.B2:MB, at= -944.3897+(-117.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823074, assembly_id= 102274, from= IP2; - MCS.B21L2.B2:MCS, at= -936.9657+(-118-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242593, assembly_id= 102274, from= IP2; - MCO.A21L2.B2:MCO, at= -936.2157+(-118-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249864, assembly_id= 102275, from= IP2; - MCD.A21L2.B2:MCD, at= -936.2142+(-118-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249865, assembly_id= 102275, from= IP2; - MB.A21L2.B2:MB, at= -928.7297+(-118.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823098, assembly_id= 102275, from= IP2; - MCS.A21L2.B2:MCS, at= -921.3057+(-119-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242598, assembly_id= 102275, from= IP2; - BPM.20L2.B2:BPM, at= -920.4267+(-119-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242600, assembly_id= 102276, from= IP2; - MQT.20L2.B2:MQT, at= -919.6727+(-119-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307459, assembly_id= 102276, from= IP2; -MQ.20L2.B2:MQ, at= -917.6647+(-119-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308211, assembly_id= 102276, from= IP2; - MS.20L2.B2:MS, at= -915.7697+(-119-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249867, assembly_id= 102276, from= IP2; - MCBH.20L2.B2:MCBH, at= -915.1767+(-119-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249869, assembly_id= 102276, from= IP2; - MB.C20L2.B2:MB, at= -906.5997+(-119.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823122, assembly_id= 102277, from= IP2; - MCS.C20L2.B2:MCS, at= -899.1757+(-120-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242606, assembly_id= 102277, from= IP2; - MCO.20L2.B2:MCO, at= -898.4257+(-120-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249872, assembly_id= 102278, from= IP2; - MCD.20L2.B2:MCD, at= -898.4242+(-120-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249873, assembly_id= 102278, from= IP2; - MB.B20L2.B2:MB, at= -890.9397+(-120.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823146, assembly_id= 102278, from= IP2; - MCS.B20L2.B2:MCS, at= -883.5157+(-121-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242611, assembly_id= 102278, from= IP2; - MB.A20L2.B2:MB, at= -875.2797+(-121.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823170, assembly_id= 102279, from= IP2; - MCS.A20L2.B2:MCS, at= -867.8557+(-122-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242614, assembly_id= 102279, from= IP2; - BPM.19L2.B2:BPM, at= -866.9767+(-122-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242616, assembly_id= 102280, from= IP2; - MQT.19L2.B2:MQT, at= -866.2227+(-122-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307430, assembly_id= 102280, from= IP2; -MQ.19L2.B2:MQ, at= -864.2147+(-122-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308419, assembly_id= 102280, from= IP2; - MS.19L2.B2:MS, at= -862.3197+(-122-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249875, assembly_id= 102280, from= IP2; - MCBV.19L2.B2:MCBV, at= -861.7267+(-122-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249877, assembly_id= 102280, from= IP2; - MCO.B19L2.B2:MCO, at= -860.6357+(-122-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249880, assembly_id= 102281, from= IP2; - MCD.B19L2.B2:MCD, at= -860.6342+(-122-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249881, assembly_id= 102281, from= IP2; - MB.C19L2.B2:MB, at= -853.1497+(-122.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823194, assembly_id= 102281, from= IP2; - MCS.C19L2.B2:MCS, at= -845.7257+(-123-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242624, assembly_id= 102281, from= IP2; - MB.B19L2.B2:MB, at= -837.4897+(-123.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823218, assembly_id= 102282, from= IP2; - MCS.B19L2.B2:MCS, at= -830.0657+(-124-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242627, assembly_id= 102282, from= IP2; - MCO.A19L2.B2:MCO, at= -829.3157+(-124-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249884, assembly_id= 102283, from= IP2; - MCD.A19L2.B2:MCD, at= -829.3142+(-124-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249885, assembly_id= 102283, from= IP2; - MB.A19L2.B2:MB, at= -821.8297+(-124.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823242, assembly_id= 102283, from= IP2; - MCS.A19L2.B2:MCS, at= -814.4057+(-125-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242632, assembly_id= 102283, from= IP2; - BPM.18L2.B2:BPM, at= -813.5267+(-125-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242634, assembly_id= 102284, from= IP2; - MQT.18L2.B2:MQT, at= -812.7727+(-125-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307398, assembly_id= 102284, from= IP2; -MQ.18L2.B2:MQ, at= -810.7647+(-125-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308388, assembly_id= 102284, from= IP2; - MS.18L2.B2:MS, at= -808.8697+(-125-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249887, assembly_id= 102284, from= IP2; - MCBH.18L2.B2:MCBH, at= -808.2767+(-125-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249889, assembly_id= 102284, from= IP2; - MB.C18L2.B2:MB, at= -799.6997+(-125.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823266, assembly_id= 102285, from= IP2; - MCS.C18L2.B2:MCS, at= -792.2757+(-126-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242640, assembly_id= 102285, from= IP2; - MCO.18L2.B2:MCO, at= -791.5257+(-126-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249892, assembly_id= 102286, from= IP2; - MCD.18L2.B2:MCD, at= -791.5242+(-126-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249893, assembly_id= 102286, from= IP2; - MB.B18L2.B2:MB, at= -784.0397+(-126.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823290, assembly_id= 102286, from= IP2; - MCS.B18L2.B2:MCS, at= -776.6157+(-127-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242645, assembly_id= 102286, from= IP2; - MB.A18L2.B2:MB, at= -768.3797+(-127.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823314, assembly_id= 102287, from= IP2; - MCS.A18L2.B2:MCS, at= -760.9557+(-128-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242648, assembly_id= 102287, from= IP2; - BPM.17L2.B2:BPM, at= -760.0767+(-128-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242650, assembly_id= 102288, from= IP2; - MQT.17L2.B2:MQT, at= -759.3227+(-128-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307603, assembly_id= 102288, from= IP2; -MQ.17L2.B2:MQ, at= -757.3147+(-128-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308358, assembly_id= 102288, from= IP2; - MS.17L2.B2:MS, at= -755.4197+(-128-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249895, assembly_id= 102288, from= IP2; - MCBV.17L2.B2:MCBV, at= -754.8267+(-128-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249897, assembly_id= 102288, from= IP2; - MCO.B17L2.B2:MCO, at= -753.7357+(-128-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249900, assembly_id= 102289, from= IP2; - MCD.B17L2.B2:MCD, at= -753.7342+(-128-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249901, assembly_id= 102289, from= IP2; - MB.C17L2.B2:MB, at= -746.2497+(-128.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823338, assembly_id= 102289, from= IP2; - MCS.C17L2.B2:MCS, at= -738.8257+(-129-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242658, assembly_id= 102289, from= IP2; - MB.B17L2.B2:MB, at= -730.5897+(-129.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823362, assembly_id= 102290, from= IP2; - MCS.B17L2.B2:MCS, at= -723.1657+(-130-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242661, assembly_id= 102290, from= IP2; - MCO.A17L2.B2:MCO, at= -722.4157+(-130-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249904, assembly_id= 102291, from= IP2; - MCD.A17L2.B2:MCD, at= -722.4142+(-130-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249905, assembly_id= 102291, from= IP2; - MB.A17L2.B2:MB, at= -714.9297+(-130.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823386, assembly_id= 102291, from= IP2; - MCS.A17L2.B2:MCS, at= -707.5057+(-131-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242666, assembly_id= 102291, from= IP2; - BPM.16L2.B2:BPM, at= -706.6267+(-131-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242668, assembly_id= 102292, from= IP2; - MQT.16L2.B2:MQT, at= -705.8727+(-131-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307573, assembly_id= 102292, from= IP2; -MQ.16L2.B2:MQ, at= -703.8647+(-131-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308328, assembly_id= 102292, from= IP2; - MS.16L2.B2:MS, at= -701.9697+(-131-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249907, assembly_id= 102292, from= IP2; - MCBH.16L2.B2:MCBH, at= -701.3767+(-131-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249909, assembly_id= 102292, from= IP2; - MB.C16L2.B2:MB, at= -692.7997+(-131.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823410, assembly_id= 102293, from= IP2; - MCS.C16L2.B2:MCS, at= -685.3757+(-132-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242674, assembly_id= 102293, from= IP2; - MCO.16L2.B2:MCO, at= -684.6257+(-132-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249912, assembly_id= 102294, from= IP2; - MCD.16L2.B2:MCD, at= -684.6242+(-132-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249913, assembly_id= 102294, from= IP2; - MB.B16L2.B2:MB, at= -677.1397+(-132.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823434, assembly_id= 102294, from= IP2; - MCS.B16L2.B2:MCS, at= -669.7157+(-133-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242679, assembly_id= 102294, from= IP2; - MB.A16L2.B2:MB, at= -661.4797+(-133.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823458, assembly_id= 102295, from= IP2; - MCS.A16L2.B2:MCS, at= -654.0557+(-134-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242682, assembly_id= 102295, from= IP2; - BPM.15L2.B2:BPM, at= -653.1767+(-134-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242684, assembly_id= 102296, from= IP2; - MQT.15L2.B2:MQT, at= -652.4227+(-134-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307542, assembly_id= 102296, from= IP2; -MQ.15L2.B2:MQ, at= -650.4147+(-134-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308535, assembly_id= 102296, from= IP2; - MS.15L2.B2:MS, at= -648.5197+(-134-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249915, assembly_id= 102296, from= IP2; - MCBV.15L2.B2:MCBV, at= -647.9267+(-134-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249917, assembly_id= 102296, from= IP2; - MCO.B15L2.B2:MCO, at= -646.8357+(-134-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249920, assembly_id= 102297, from= IP2; - MCD.B15L2.B2:MCD, at= -646.8342+(-134-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249921, assembly_id= 102297, from= IP2; - MB.C15L2.B2:MB, at= -639.3497+(-134.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823482, assembly_id= 102297, from= IP2; - MCS.C15L2.B2:MCS, at= -631.9257+(-135-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242692, assembly_id= 102297, from= IP2; - MB.B15L2.B2:MB, at= -623.6897+(-135.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823506, assembly_id= 102298, from= IP2; - MCS.B15L2.B2:MCS, at= -616.2657+(-136-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242695, assembly_id= 102298, from= IP2; - MCO.A15L2.B2:MCO, at= -615.5157+(-136-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249924, assembly_id= 102299, from= IP2; - MCD.A15L2.B2:MCD, at= -615.5142+(-136-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249925, assembly_id= 102299, from= IP2; - MB.A15L2.B2:MB, at= -608.0297+(-136.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823530, assembly_id= 102299, from= IP2; - MCS.A15L2.B2:MCS, at= -600.6057+(-137-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242700, assembly_id= 102299, from= IP2; - BPM.14L2.B2:BPM, at= -599.7267+(-137-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242702, assembly_id= 102300, from= IP2; - MQT.14L2.B2:MQT, at= -598.9727+(-137-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307510, assembly_id= 102300, from= IP2; -MQ.14L2.B2:MQ, at= -596.9647+(-137-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308505, assembly_id= 102300, from= IP2; - MS.14L2.B2:MS, at= -595.0697+(-137-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249927, assembly_id= 102300, from= IP2; - MCBH.14L2.B2:MCBH, at= -594.4767+(-137-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249929, assembly_id= 102300, from= IP2; - MB.C14L2.B2:MB, at= -585.8997+(-137.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823554, assembly_id= 102301, from= IP2; - MCS.C14L2.B2:MCS, at= -578.4757+(-138-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242708, assembly_id= 102301, from= IP2; - MCO.14L2.B2:MCO, at= -577.7257+(-138-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249932, assembly_id= 102302, from= IP2; - MCD.14L2.B2:MCD, at= -577.7242+(-138-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249933, assembly_id= 102302, from= IP2; - MB.B14L2.B2:MB, at= -570.2397+(-138.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823578, assembly_id= 102302, from= IP2; - MCS.B14L2.B2:MCS, at= -562.8157+(-139-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242713, assembly_id= 102302, from= IP2; - MB.A14L2.B2:MB, at= -554.5797+(-139.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823602, assembly_id= 102303, from= IP2; - MCS.A14L2.B2:MCS, at= -547.1557+(-140-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242716, assembly_id= 102303, from= IP2; -S.DS.L2.B2:OMK, at= -546.7497+(-140-IP2OFS.B2)*DS, slot_id= 100932, from= IP2; - BPM.13L2.B2:BPM, at= -546.2767+(-140-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242718, assembly_id= 102304, from= IP2; - MQT.13L2.B2:MQT, at= -545.5227+(-140-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307718, assembly_id= 102304, from= IP2; -MQ.13L2.B2:MQ, at= -543.5147+(-140-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308475, assembly_id= 102304, from= IP2; - MS.13L2.B2:MS, at= -541.6197+(-140-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249935, assembly_id= 102304, from= IP2; - MCBV.13L2.B2:MCBV, at= -541.0267+(-140-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249937, assembly_id= 102304, from= IP2; - MCO.B13L2.B2:MCO, at= -539.9357+(-140-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249940, assembly_id= 102305, from= IP2; - MCD.B13L2.B2:MCD, at= -539.9342+(-140-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249941, assembly_id= 102305, from= IP2; - MB.C13L2.B2:MB, at= -532.4497+(-140.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823626, assembly_id= 102305, from= IP2; - MCS.C13L2.B2:MCS, at= -525.0257+(-141-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242726, assembly_id= 102305, from= IP2; - MB.B13L2.B2:MB, at= -516.7897+(-141.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823650, assembly_id= 102306, from= IP2; - MCS.B13L2.B2:MCS, at= -509.3657+(-142-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242729, assembly_id= 102306, from= IP2; - MCO.A13L2.B2:MCO, at= -508.6157+(-142-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249944, assembly_id= 102307, from= IP2; - MCD.A13L2.B2:MCD, at= -508.6142+(-142-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249945, assembly_id= 102307, from= IP2; - MB.A13L2.B2:MB, at= -501.1297+(-142.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823674, assembly_id= 102307, from= IP2; - MCS.A13L2.B2:MCS, at= -493.7057+(-143-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242734, assembly_id= 102307, from= IP2; - BPM.12L2.B2:BPM, at= -492.8267+(-143-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242736, assembly_id= 102308, from= IP2; - MQT.12L2.B2:MQT, at= -492.0727+(-143-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307686, assembly_id= 102308, from= IP2; -MQ.12L2.B2:MQ, at= -490.0647+(-143-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308682, assembly_id= 102308, from= IP2; - MS.12L2.B2:MS, at= -488.1697+(-143-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249947, assembly_id= 102308, from= IP2; - MCBH.12L2.B2:MCBH, at= -487.5767+(-143-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249949, assembly_id= 102308, from= IP2; - MB.C12L2.B2:MB, at= -478.9997+(-143.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823698, assembly_id= 102309, from= IP2; - MCS.C12L2.B2:MCS, at= -471.5757+(-144-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242742, assembly_id= 102309, from= IP2; - MCO.12L2.B2:MCO, at= -470.8257+(-144-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249952, assembly_id= 102310, from= IP2; - MCD.12L2.B2:MCD, at= -470.8242+(-144-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249953, assembly_id= 102310, from= IP2; - MB.B12L2.B2:MB, at= -463.3397+(-144.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823722, assembly_id= 102310, from= IP2; - MCS.B12L2.B2:MCS, at= -455.9157+(-145-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242747, assembly_id= 102310, from= IP2; - MB.A12L2.B2:MB, at= -447.6797+(-145.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823746, assembly_id= 102311, from= IP2; - MCS.A12L2.B2:MCS, at= -440.2557+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242750, assembly_id= 102311, from= IP2; -E.ARC.12.B2:OMK, at= -439.8497+(-146-IP2OFS.B2)*DS, slot_id= 100932, from= IP2; - BPM.11L2.B2:BPM, at= -439.3767+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242752, assembly_id= 102312, from= IP2; -MQ.11L2.B2:MQ, at= -436.8297+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308652, assembly_id= 102312, from= IP2; - MQTLI.11L2.B2:MQTLI, at= -434.4607+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307340, assembly_id= 102312, from= IP2; - MS.11L2.B2:MS, at= -433.4487+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249955, assembly_id= 102312, from= IP2; - MCBV.11L2.B2:MCBV, at= -432.8557+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249957, assembly_id= 102312, from= IP2; - LEPRB.11L2.B2:LEPRB, at= -429.450025+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52998174, assembly_id= 43344242, from= IP2; - BPTDH.A11L2.B2:BPTDH, at= -426.07035+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52697748, assembly_id= 43347335, from= IP2; - TCLD.A11L2.B2:TCLD, at= -425.71735+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52506114, assembly_id= 43347335, from= IP2; - BPTUH.A11L2.B2:BPTUH, at= -425.36435+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52697739, assembly_id= 43347335, from= IP2; - LEPRA.11L2.B2:LEPRA, at= -421.984675+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52998150, assembly_id= 43347323, from= IP2; - MCO.11L2.B2:MCO, at= -418.986+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249960, assembly_id= 102314, from= IP2; - MCD.11L2.B2:MCD, at= -418.9845+(-146-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249961, assembly_id= 102314, from= IP2; - MB.B11L2.B2:MB, at= -411.5+(-146.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823770, assembly_id= 102314, from= IP2; - MCS.B11L2.B2:MCS, at= -404.076+(-147-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242760, assembly_id= 102314, from= IP2; - MB.A11L2.B2:MB, at= -395.84+(-147.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849426, assembly_id= 102315, from= IP2; - MCS.A11L2.B2:MCS, at= -388.416+(-148-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 357285, assembly_id= 102315, from= IP2; - BPM.10L2.B2:BPM, at= -387.537+(-148-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377925, assembly_id= 102316, from= IP2; - MQML.10L2.B2:MQML, at= -384.392+(-148-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307807, assembly_id= 102316, from= IP2; - MCBCH.10L2.B2:MCBCH, at= -381.35+(-148-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378095, assembly_id= 102316, from= IP2; - MCO.10L2.B2:MCO, at= -379.921+(-148-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249966, assembly_id= 102317, from= IP2; - MCD.10L2.B2:MCD, at= -379.9195+(-148-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249967, assembly_id= 102317, from= IP2; - MB.B10L2.B2:MB, at= -372.435+(-148.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823794, assembly_id= 102317, from= IP2; - MCS.B10L2.B2:MCS, at= -365.011+(-149-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242772, assembly_id= 102317, from= IP2; - MB.A10L2.B2:MB, at= -356.775+(-149.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823818, assembly_id= 102318, from= IP2; - MCS.A10L2.B2:MCS, at= -349.351+(-150-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242775, assembly_id= 102318, from= IP2; - BPM.9L2.B2:BPM, at= -348.471+(-150-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377927, assembly_id= 102319, from= IP2; - MQMC.9L2.B2:MQMC, at= -346.495+(-150-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307784, assembly_id= 102319, from= IP2; - MQM.9L2.B2:MQM, at= -343.229+(-150-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307732, assembly_id= 102319, from= IP2; - MCBCV.9L2.B2:MCBCV, at= -340.888+(-150-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378100, assembly_id= 102319, from= IP2; - MCO.9L2.B2:MCO, at= -339.456+(-150-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249972, assembly_id= 102320, from= IP2; - MCD.9L2.B2:MCD, at= -339.4545+(-150-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249973, assembly_id= 102320, from= IP2; - MB.B9L2.B2:MB, at= -331.97+(-150.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823842, assembly_id= 102320, from= IP2; - MCS.B9L2.B2:MCS, at= -324.546+(-151-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242785, assembly_id= 102320, from= IP2; - MB.A9L2.B2:MB, at= -316.31+(-151.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823866, assembly_id= 102321, from= IP2; - MCS.A9L2.B2:MCS, at= -308.886+(-152-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242788, assembly_id= 102321, from= IP2; - BPM.8L2.B2:BPM, at= -308.007+(-152-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377933, assembly_id= 102322, from= IP2; - MQML.8L2.B2:MQML, at= -304.862+(-152-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307839, assembly_id= 102322, from= IP2; - MCBCH.8L2.B2:MCBCH, at= -301.82+(-152-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378105, assembly_id= 102322, from= IP2; - MCO.8L2.B2:MCO, at= -300.391+(-152-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249978, assembly_id= 102323, from= IP2; - MCD.8L2.B2:MCD, at= -300.3895+(-152-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249979, assembly_id= 102323, from= IP2; - MB.B8L2.B2:MB, at= -292.905+(-152.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52823890, assembly_id= 102323, from= IP2; - MCS.B8L2.B2:MCS, at= -285.481+(-153-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242797, assembly_id= 102323, from= IP2; - MB.A8L2.B2:MB, at= -277.245+(-153.5-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849450, assembly_id= 102324, from= IP2; - MCS.A8L2.B2:MCS, at= -269.821+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 357289, assembly_id= 102324, from= IP2; -E.DS.L2.B2:OMK, at= -269.415+(-154-IP2OFS.B2)*DS, slot_id= 100932, from= IP2; - BPM.7L2.B2:BPM, at= -268.94+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242802, assembly_id= 102325, from= IP2; - MQM.B7L2.B2:MQM, at= -266.495+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307769, assembly_id= 102325, from= IP2; - MQM.A7L2.B2:MQM, at= -262.728+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307754, assembly_id= 102325, from= IP2; - MCBCV.7L2.B2:MCBCV, at= -260.387+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249980, assembly_id= 102325, from= IP2; - DFBAC.7L2.B2:DFBAC, at= -258.2075+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52996599, assembly_id= 104674, from= IP2; - MCBCH.6L2.B2:MCBCH, at= -246.79+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249983, assembly_id= 102326, from= IP2; - MQML.6L2.B2:MQML, at= -243.748+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307829, assembly_id= 102326, from= IP2; - MQM.6L2.B2:MQM, at= -239.281+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307956, assembly_id= 102326, from= IP2; - BPM.6L2.B2:BPM, at= -236.834+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 298147, assembly_id= 102326, from= IP2; - MSIB.C6L2.B2:MSIB, at= -212.723+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849963, assembly_id= 134506, from= IP2; - MSIB.B6L2.B2:MSIB, at= -208.273+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849989, assembly_id= 134507, from= IP2; - MSIB.A6L2.B2:MSIB, at= -203.823+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52850015, assembly_id= 134508, from= IP2; - MSIA.B6L2.B2:MSIA, at= -199.373+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849859, assembly_id= 134509, from= IP2; - MSIA.A6L2.B2:MSIA, at= -194.923+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849885, assembly_id= 134510, from= IP2; - MCBYV.B5L2.B2:MCBYV, at= -175.75+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249985, assembly_id= 102328, from= IP2; - MCBYH.5L2.B2:MCBYH, at= -174.604+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249987, assembly_id= 102328, from= IP2; - MCBYV.A5L2.B2:MCBYV, at= -173.457+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249989, assembly_id= 102328, from= IP2; - MQY.B5L2.B2:MQY, at= -171.11+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2302971, assembly_id= 102328, from= IP2; - MQY.A5L2.B2:MQY, at= -167.329+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2302970, assembly_id= 102328, from= IP2; - BPMYB.5L2.B2:BPMYB, at= -164.635+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242817, assembly_id= 102328, from= IP2; - BPMYB.4L2.B2:BPMYB, at= -144.065+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 242819, assembly_id= 102330, from= IP2; - MQY.B4L2.B2:MQY, at= -141.371+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2302981, assembly_id= 102330, from= IP2; - MQY.A4L2.B2:MQY, at= -137.59+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2302980, assembly_id= 102330, from= IP2; - MCBYH.B4L2.B2:MCBYH, at= -135.243+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249990, assembly_id= 102330, from= IP2; - MCBYV.4L2.B2:MCBYV, at= -134.096+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249992, assembly_id= 102330, from= IP2; - MCBYH.A4L2.B2:MCBYH, at= -132.95+(-154-IP2OFS.B2)*DS, mech_sep= -0.1940, slot_id= 249994, assembly_id= 102330, from= IP2; - MBRC.4L2.B2:MBRC, at= -126.403+(-154-IP2OFS.B2)*DS, mech_sep= -0.1880, slot_id= 52819648, assembly_id= 102331, from= IP2; - BPMWB.4L2.B2:BPMWB, at= -119.6735+(-154-IP2OFS.B2)*DS, mech_sep= -0.1740, slot_id= 181635, from= IP2; - X2ZDC.4L2:X2ZDC001, at= -113.3245+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 102332, from= IP2; - BRANC.4L2:BRANC, at= -111.5104+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 55373880, from= IP2; - BTVST.A4L2:BTVST065, at= -85.433+(-154-IP2OFS.B2)*DS, mech_sep= -0.0800, slot_id= 181617, from= IP2; - TCDD.4L2:TCDD, at= -71.228+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 102334, from= IP2; - BPMSX.4L2.B2:BPMSX003, at= -69.3805+(-154-IP2OFS.B2)*DS, mech_sep= -0.0194, slot_id= 43068868, assembly_id= 104598, from= IP2; - MBX.4L2:MBX, at= -63.108+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242833, assembly_id= 102335, from= IP2; - DFBXC.3L2:DFBXC, at= -56.3085+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 104675, from= IP2; - MCOSX.3L2:MCOSX_UNPLUGGED, at= -54.297+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 282240, assembly_id= 102336, from= IP2; - MCOX.3L2:MCOX_UNPLUGGED, at= -54.297+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 282239, assembly_id= 102336, from= IP2; - MCSSX.3L2:MCSSX_UNPLUGGED, at= -54.297+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 282238, assembly_id= 102336, from= IP2; - MCBXH.3L2:MCBXH, at= -53.814+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 249996, assembly_id= 102336, from= IP2; - MCBXV.3L2:MCBXV, at= -53.814+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 249997, assembly_id= 102336, from= IP2; - MCSX.3L2:MCSX, at= -53.814+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 249998, assembly_id= 102336, from= IP2; - MCTX.3L2:MCTX, at= -53.814+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 249999, assembly_id= 102336, from= IP2; - MQXA.3L2:MQXA, at= -50.15+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242835, assembly_id= 102336, from= IP2; - MQSX.3L2:MQSX, at= -46.608+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 282128, assembly_id= 102336, from= IP2; - MQXB.B2L2:MQXB, at= -41.3+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242837, assembly_id= 102337, from= IP2; - MCBXH.2L2:MCBXH, at= -38.019+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250004, assembly_id= 102337, from= IP2; - MCBXV.2L2:MCBXV, at= -38.019+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250005, assembly_id= 102337, from= IP2; - MQXB.A2L2:MQXB, at= -34.8+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242839, assembly_id= 102337, from= IP2; - BPMS.2L2.B2:BPMS_003, at= -31.529+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 43068883, assembly_id= 102337, from= IP2; - MCBXH.1L2:MCBXH_UNPLUGGED, at= -29.842+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250006, assembly_id= 102338, from= IP2; - MCBXV.1L2:MCBXV, at= -29.842+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250007, assembly_id= 102338, from= IP2; - MQXA.1L2:MQXA, at= -26.15+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242842, assembly_id= 102338, from= IP2; - BPMSW.1L2.B2:BPMSW002, at= -21.595+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 10428872, assembly_id= 104599, from= IP2; - BPMSW.1L2.B2_DOROS:BPMSW002, at= -21.595+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 12907567, assembly_id= 104599, from= IP2; - MBXWT.1L2:MBXWT, at= -20.49+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 103994, from= IP2; - MBWMD.1L2:MBWMD, at= -10.75+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242845, from= IP2; - MBLS2.1L2:MBLS2, at= -3.025+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 52895785, assembly_id= 2212849, from= IP2; -IP2:OMK, at= pIP2+IP2OFS.B2*DS; - MBLS2.1R2:MBLS2, at= 3.025+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 52895804, assembly_id= 2212849, from= IP2; - MBAW.1R2:MBAW, at= 9.75+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 104000, from= IP2; - MBXWT.1R2:MBXWT, at= 20.49+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 103996, from= IP2; - BPMSW.1R2.B2:BPMSW002, at= 21.595+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 10428866, assembly_id= 104600, from= IP2; - BPMSW.1R2.B2_DOROS:BPMSW002, at= 21.595+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 12907559, assembly_id= 104600, from= IP2; - MQXA.1R2:MQXA, at= 26.15+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242848, assembly_id= 102339, from= IP2; - MCBXH.1R2:MCBXH, at= 29.842+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250008, assembly_id= 102339, from= IP2; - MCBXV.1R2:MCBXV, at= 29.842+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250009, assembly_id= 102339, from= IP2; - BPMS.2R2.B2:BPMS_003, at= 31.529+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 43068879, assembly_id= 102340, from= IP2; - MQXB.A2R2:MQXB, at= 34.8+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242851, assembly_id= 102340, from= IP2; - MCBXH.2R2:MCBXH, at= 38.019+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250010, assembly_id= 102340, from= IP2; - MCBXV.2R2:MCBXV, at= 38.019+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250011, assembly_id= 102340, from= IP2; - MQXB.B2R2:MQXB, at= 41.3+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242853, assembly_id= 102340, from= IP2; - MQSX.3R2:MQSX, at= 46.608+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 282129, assembly_id= 102341, from= IP2; - MQXA.3R2:MQXA, at= 50.15+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242855, assembly_id= 102341, from= IP2; - MCBXH.3R2:MCBXH, at= 53.814+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250016, assembly_id= 102341, from= IP2; - MCBXV.3R2:MCBXV, at= 53.814+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250017, assembly_id= 102341, from= IP2; - MCSX.3R2:MCSX, at= 53.814+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250018, assembly_id= 102341, from= IP2; - MCTX.3R2:MCTX, at= 53.814+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 250019, assembly_id= 102341, from= IP2; - MCOSX.3R2:MCOSX, at= 54.297+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 282243, assembly_id= 102341, from= IP2; - MCOX.3R2:MCOX, at= 54.297+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 282242, assembly_id= 102341, from= IP2; - MCSSX.3R2:MCSSX, at= 54.297+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 282241, assembly_id= 102341, from= IP2; - DFBXD.3R2:DFBXD, at= 56.3085+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 104676, from= IP2; - MBX.4R2:MBX, at= 63.108+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 242857, assembly_id= 102342, from= IP2; - BPMSX.4R2.B2:BPMSX003, at= 69.5005+(-154-IP2OFS.B2)*DS, mech_sep= 0.0194, slot_id= 43068870, assembly_id= 104601, from= IP2; - TCLIA.4R2:TCLIA, at= 71.548+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 357146, from= IP2; - BRANC.4R2:BRANC, at= 111.609+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 55373933, from= IP2; - X2ZDC.4R2:X2ZDC002, at= 113.3245+(-154-IP2OFS.B2)*DS, mech_sep= 0, slot_id= 102343, from= IP2; - BPTDV.A4R2.B2:BPTDV, at= 115.938+(-154-IP2OFS.B2)*DS, mech_sep= 0.1620, slot_id= 10429556, assembly_id= 5619144, from= IP2; - TCTPV.4R2.B2:TCTPV, at= 116.533+(-154-IP2OFS.B2)*DS, mech_sep= 0.1637, slot_id= 5619144, from= IP2; - BPTUV.A4R2.B2:BPTUV, at= 117.128+(-154-IP2OFS.B2)*DS, mech_sep= 0.1620, slot_id= 10429558, assembly_id= 5619144, from= IP2; - BPTDH.A4R2.B2:BPTDH, at= 117.938+(-154-IP2OFS.B2)*DS, mech_sep= 0.1680, slot_id= 10402844, assembly_id= 377597, from= IP2; - TCTPH.4R2.B2:TCTPH, at= 118.533+(-154-IP2OFS.B2)*DS, mech_sep= 0.1670, slot_id= 377597, from= IP2; - BPTUH.A4R2.B2:BPTUH, at= 119.128+(-154-IP2OFS.B2)*DS, mech_sep= 0.1680, slot_id= 10925425, assembly_id= 377597, from= IP2; - BPMWB.4R2.B2:BPMWB, at= 119.5975+(-154-IP2OFS.B2)*DS, mech_sep= 0.1740, slot_id= 181636, from= IP2; - MBRC.4R2.B2:MBRC, at= 126.403+(-154-IP2OFS.B2)*DS, mech_sep= 0.1880, slot_id= 52819671, assembly_id= 102344, from= IP2; - MCBYV.A4R2.B2:MCBYV, at= 132.95+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250020, assembly_id= 102345, from= IP2; - MCBYH.4R2.B2:MCBYH, at= 134.096+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250022, assembly_id= 102345, from= IP2; - MCBYV.B4R2.B2:MCBYV, at= 135.243+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250024, assembly_id= 102345, from= IP2; - MQY.A4R2.B2:MQY, at= 137.59+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303163, assembly_id= 102345, from= IP2; - MQY.B4R2.B2:MQY, at= 141.371+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303162, assembly_id= 102345, from= IP2; - BPMYB.4R2.B2:BPMYB, at= 144.065+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242869, assembly_id= 102345, from= IP2; - BPTX.5R2.B2:BPTX, at= 145.2855+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 104666, from= IP2; - MCBCH.A5R2.B2:MCBCH, at= 162.689+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 298306, assembly_id= 102346, from= IP2; - MCBCV.5R2.B2:MCBCV, at= 163.836+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 298307, assembly_id= 102346, from= IP2; - MCBCH.B5R2.B2:MCBCH, at= 164.982+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 298310, assembly_id= 102346, from= IP2; - MQM.A5R2.B2:MQM, at= 167.329+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303031, assembly_id= 102346, from= IP2; - MQM.B5R2.B2:MQM, at= 171.11+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303030, assembly_id= 102346, from= IP2; - BPM.5R2.B2:BPM, at= 173.599+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 298148, assembly_id= 102346, from= IP2; - TCLIM.6R2.B2:TCLIM, at= 234.399+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52998860, assembly_id= 357147, from= IP2; - MCBCV.6R2.B2:MCBCV, at= 236.939+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250032, assembly_id= 102348, from= IP2; - MQML.6R2.B2:MQML, at= 239.981+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307833, assembly_id= 102348, from= IP2; - MQM.6R2.B2:MQM, at= 244.448+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307960, assembly_id= 102348, from= IP2; - BPMR.6R2.B2:BPMR, at= 246.895+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242882, assembly_id= 102348, from= IP2; - DFBAD.7R2.B2:DFBAD, at= 257.9575+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52996623, assembly_id= 104677, from= IP2; - BPM_A.7R2.B2:BPM_A, at= 259.77+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 377942, assembly_id= 102350, from= IP2; - MQM.A7R2.B2:MQM, at= 262.215+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307762, assembly_id= 102350, from= IP2; - MQM.B7R2.B2:MQM, at= 265.982+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307777, assembly_id= 102350, from= IP2; - MCBCH.7R2.B2:MCBCH, at= 268.323+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250035, assembly_id= 102350, from= IP2; -S.DS.R2.B2:OMK, at= 269.415+(-154-IP2OFS.B2)*DS, slot_id= 100932, from= IP2; - MCO.8R2.B2:MCO, at= 269.759+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250036, assembly_id= 102351, from= IP2; - MCD.8R2.B2:MCD, at= 269.7605+(-154-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250037, assembly_id= 102351, from= IP2; - MB.A8R2.B2:MB, at= 277.245+(-153.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52823914, assembly_id= 102351, from= IP2; - MCS.A8R2.B2:MCS, at= 284.669+(-153-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242893, assembly_id= 102351, from= IP2; - MB.B8R2.B2:MB, at= 292.905+(-152.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52823938, assembly_id= 102352, from= IP2; - MCS.B8R2.B2:MCS, at= 300.329+(-152-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242896, assembly_id= 102352, from= IP2; - BPM.8R2.B2:BPM, at= 301.208+(-152-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242898, assembly_id= 102353, from= IP2; - MQML.8R2.B2:MQML, at= 304.353+(-152-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307612, assembly_id= 102353, from= IP2; - MCBCV.8R2.B2:MCBCV, at= 307.395+(-152-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250041, assembly_id= 102353, from= IP2; - MCO.9R2.B2:MCO, at= 308.824+(-152-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250042, assembly_id= 102354, from= IP2; - MCD.9R2.B2:MCD, at= 308.8255+(-152-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250043, assembly_id= 102354, from= IP2; - MB.A9R2.B2:MB, at= 316.31+(-151.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52823962, assembly_id= 102354, from= IP2; - MCS.A9R2.B2:MCS, at= 323.734+(-151-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242905, assembly_id= 102354, from= IP2; - MB.B9R2.B2:MB, at= 331.97+(-150.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52823986, assembly_id= 102355, from= IP2; - MCS.B9R2.B2:MCS, at= 339.394+(-150-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242908, assembly_id= 102355, from= IP2; - BPM.9R2.B2:BPM, at= 340.274+(-150-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242910, assembly_id= 102356, from= IP2; - MQMC.9R2.B2:MQMC, at= 342.25+(-150-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307795, assembly_id= 102356, from= IP2; - MQM.9R2.B2:MQM, at= 345.516+(-150-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307743, assembly_id= 102356, from= IP2; - MCBCH.9R2.B2:MCBCH, at= 347.857+(-150-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250047, assembly_id= 102356, from= IP2; - MCO.10R2.B2:MCO, at= 349.289+(-150-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250048, assembly_id= 102357, from= IP2; - MCD.10R2.B2:MCD, at= 349.2905+(-150-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250049, assembly_id= 102357, from= IP2; - MB.A10R2.B2:MB, at= 356.775+(-149.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824010, assembly_id= 102357, from= IP2; - MCS.A10R2.B2:MCS, at= 364.199+(-149-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242918, assembly_id= 102357, from= IP2; - MB.B10R2.B2:MB, at= 372.435+(-148.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824034, assembly_id= 102358, from= IP2; - MCS.B10R2.B2:MCS, at= 379.859+(-148-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242921, assembly_id= 102358, from= IP2; - BPM.10R2.B2:BPM, at= 380.738+(-148-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242923, assembly_id= 102359, from= IP2; - MQML.10R2.B2:MQML, at= 383.883+(-148-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307819, assembly_id= 102359, from= IP2; - MCBCV.10R2.B2:MCBCV, at= 386.925+(-148-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250053, assembly_id= 102359, from= IP2; - MCO.11R2.B2:MCO, at= 388.354+(-148-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250054, assembly_id= 102360, from= IP2; - MCD.11R2.B2:MCD, at= 388.3555+(-148-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250055, assembly_id= 102360, from= IP2; - MB.A11R2.B2:MB, at= 395.84+(-147.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824058, assembly_id= 102360, from= IP2; - MCS.A11R2.B2:MCS, at= 403.264+(-147-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242930, assembly_id= 102360, from= IP2; - MB.B11R2.B2:MB, at= 411.5+(-146.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849474, assembly_id= 102361, from= IP2; - MCS.B11R2.B2:MCS, at= 418.924+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357295, assembly_id= 102361, from= IP2; - LEPLA.11R2.B2:LEPLA, at= 421.984675+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52998102, assembly_id= 52433772, from= IP2; - LENLA.11R2.B2:LENLA, at= 425.71735+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52998006, assembly_id= 52433988, from= IP2; - LEPLB.11R2.B2:LEPLB, at= 429.450025+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52998126, assembly_id= 52433791, from= IP2; - BPM.11R2.B2:BPM, at= 432.5777+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242935, assembly_id= 102363, from= IP2; -MQ.11R2.B2:MQ, at= 435.1247+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308667, assembly_id= 102363, from= IP2; - MQTLI.11R2.B2:MQTLI, at= 437.4937+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307355, assembly_id= 102363, from= IP2; - MS.11R2.B2:MS, at= 438.5057+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250058, assembly_id= 102363, from= IP2; - MCBH.11R2.B2:MCBH, at= 439.0987+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250060, assembly_id= 102363, from= IP2; -S.ARC.23.B2:OMK, at= 439.8497+(-146-IP2OFS.B2)*DS, slot_id= 100932, from= IP2; - MCO.A12R2.B2:MCO, at= 440.1937+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250062, assembly_id= 102364, from= IP2; - MCD.A12R2.B2:MCD, at= 440.1952+(-146-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250063, assembly_id= 102364, from= IP2; - MB.A12R2.B2:MB, at= 447.6797+(-145.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824082, assembly_id= 102364, from= IP2; - MCS.A12R2.B2:MCS, at= 455.1037+(-145-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242943, assembly_id= 102364, from= IP2; - MB.B12R2.B2:MB, at= 463.3397+(-144.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824106, assembly_id= 102365, from= IP2; - MCS.B12R2.B2:MCS, at= 470.7637+(-144-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242946, assembly_id= 102365, from= IP2; - MCO.B12R2.B2:MCO, at= 471.5137+(-144-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250066, assembly_id= 102366, from= IP2; - MCD.B12R2.B2:MCD, at= 471.5152+(-144-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250067, assembly_id= 102366, from= IP2; - MB.C12R2.B2:MB, at= 478.9997+(-143.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824130, assembly_id= 102366, from= IP2; - MCS.C12R2.B2:MCS, at= 486.4237+(-143-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242951, assembly_id= 102366, from= IP2; - BPM.12R2.B2:BPM, at= 487.3027+(-143-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242953, assembly_id= 102367, from= IP2; - MQT.12R2.B2:MQT, at= 488.0567+(-143-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307702, assembly_id= 102367, from= IP2; -MQ.12R2.B2:MQ, at= 490.0647+(-143-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348484, assembly_id= 102367, from= IP2; - MS.12R2.B2:MS, at= 491.9597+(-143-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250070, assembly_id= 102367, from= IP2; - MCBV.12R2.B2:MCBV, at= 492.5527+(-143-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250072, assembly_id= 102367, from= IP2; - MB.A13R2.B2:MB, at= 501.1297+(-142.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824154, assembly_id= 102368, from= IP2; - MCS.A13R2.B2:MCS, at= 508.5537+(-142-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242959, assembly_id= 102368, from= IP2; - MCO.13R2.B2:MCO, at= 509.3037+(-142-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250074, assembly_id= 102369, from= IP2; - MCD.13R2.B2:MCD, at= 509.3052+(-142-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250075, assembly_id= 102369, from= IP2; - MB.B13R2.B2:MB, at= 516.7897+(-141.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824178, assembly_id= 102369, from= IP2; - MCS.B13R2.B2:MCS, at= 524.2137+(-141-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242964, assembly_id= 102369, from= IP2; - MB.C13R2.B2:MB, at= 532.4497+(-140.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824202, assembly_id= 102370, from= IP2; - MCS.C13R2.B2:MCS, at= 539.8737+(-140-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242967, assembly_id= 102370, from= IP2; - BPM.13R2.B2:BPM, at= 540.7527+(-140-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242969, assembly_id= 102371, from= IP2; - MQT.13R2.B2:MQT, at= 541.5067+(-140-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307495, assembly_id= 102371, from= IP2; -MQ.13R2.B2:MQ, at= 543.5147+(-140-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308490, assembly_id= 102371, from= IP2; - MS.13R2.B2:MS, at= 545.4097+(-140-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250078, assembly_id= 102371, from= IP2; - MCBH.13R2.B2:MCBH, at= 546.0027+(-140-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250080, assembly_id= 102371, from= IP2; -E.DS.R2.B2:OMK, at= 546.7497+(-140-IP2OFS.B2)*DS, slot_id= 100932, from= IP2; - MCO.A14R2.B2:MCO, at= 547.0937+(-140-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250082, assembly_id= 102372, from= IP2; - MCD.A14R2.B2:MCD, at= 547.0952+(-140-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250083, assembly_id= 102372, from= IP2; - MB.A14R2.B2:MB, at= 554.5797+(-139.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824226, assembly_id= 102372, from= IP2; - MCS.A14R2.B2:MCS, at= 562.0037+(-139-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242977, assembly_id= 102372, from= IP2; - MB.B14R2.B2:MB, at= 570.2397+(-138.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824250, assembly_id= 102373, from= IP2; - MCS.B14R2.B2:MCS, at= 577.6637+(-138-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242980, assembly_id= 102373, from= IP2; - MCO.B14R2.B2:MCO, at= 578.4137+(-138-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250086, assembly_id= 102374, from= IP2; - MCD.B14R2.B2:MCD, at= 578.4152+(-138-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250087, assembly_id= 102374, from= IP2; - MB.C14R2.B2:MB, at= 585.8997+(-137.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824274, assembly_id= 102374, from= IP2; - MCS.C14R2.B2:MCS, at= 593.3237+(-137-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242985, assembly_id= 102374, from= IP2; - BPM.14R2.B2:BPM, at= 594.2027+(-137-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242987, assembly_id= 102375, from= IP2; - MQT.14R2.B2:MQT, at= 594.9567+(-137-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307526, assembly_id= 102375, from= IP2; -MQ.14R2.B2:MQ, at= 596.9647+(-137-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308520, assembly_id= 102375, from= IP2; - MS.14R2.B2:MS, at= 598.8597+(-137-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250090, assembly_id= 102375, from= IP2; - MCBV.14R2.B2:MCBV, at= 599.4527+(-137-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250092, assembly_id= 102375, from= IP2; - MB.A15R2.B2:MB, at= 608.0297+(-136.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824298, assembly_id= 102376, from= IP2; - MCS.A15R2.B2:MCS, at= 615.4537+(-136-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242993, assembly_id= 102376, from= IP2; - MCO.15R2.B2:MCO, at= 616.2037+(-136-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250094, assembly_id= 102377, from= IP2; - MCD.15R2.B2:MCD, at= 616.2052+(-136-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250095, assembly_id= 102377, from= IP2; - MB.B15R2.B2:MB, at= 623.6897+(-135.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824322, assembly_id= 102377, from= IP2; - MCS.B15R2.B2:MCS, at= 631.1137+(-135-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 242998, assembly_id= 102377, from= IP2; - MB.C15R2.B2:MB, at= 639.3497+(-134.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824346, assembly_id= 102378, from= IP2; - MCS.C15R2.B2:MCS, at= 646.7737+(-134-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243001, assembly_id= 102378, from= IP2; - BPM.15R2.B2:BPM, at= 647.6527+(-134-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243003, assembly_id= 102379, from= IP2; - MQT.15R2.B2:MQT, at= 648.4067+(-134-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307558, assembly_id= 102379, from= IP2; -MQ.15R2.B2:MQ, at= 650.4147+(-134-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308550, assembly_id= 102379, from= IP2; - MS.15R2.B2:MS, at= 652.3097+(-134-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250098, assembly_id= 102379, from= IP2; - MCBH.15R2.B2:MCBH, at= 652.9027+(-134-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250100, assembly_id= 102379, from= IP2; - MCO.A16R2.B2:MCO, at= 653.9937+(-134-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250102, assembly_id= 102380, from= IP2; - MCD.A16R2.B2:MCD, at= 653.9952+(-134-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250103, assembly_id= 102380, from= IP2; - MB.A16R2.B2:MB, at= 661.4797+(-133.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824370, assembly_id= 102380, from= IP2; - MCS.A16R2.B2:MCS, at= 668.9037+(-133-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243011, assembly_id= 102380, from= IP2; - MB.B16R2.B2:MB, at= 677.1397+(-132.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824394, assembly_id= 102381, from= IP2; - MCS.B16R2.B2:MCS, at= 684.5637+(-132-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243014, assembly_id= 102381, from= IP2; - MCO.B16R2.B2:MCO, at= 685.3137+(-132-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250106, assembly_id= 102382, from= IP2; - MCD.B16R2.B2:MCD, at= 685.3152+(-132-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250107, assembly_id= 102382, from= IP2; - MB.C16R2.B2:MB, at= 692.7997+(-131.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824418, assembly_id= 102382, from= IP2; - MCS.C16R2.B2:MCS, at= 700.2237+(-131-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243019, assembly_id= 102382, from= IP2; - BPM.16R2.B2:BPM, at= 701.1027+(-131-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243021, assembly_id= 102383, from= IP2; - MQT.16R2.B2:MQT, at= 701.8567+(-131-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307588, assembly_id= 102383, from= IP2; -MQ.16R2.B2:MQ, at= 703.8647+(-131-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308343, assembly_id= 102383, from= IP2; - MS.16R2.B2:MS, at= 705.7597+(-131-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250110, assembly_id= 102383, from= IP2; - MCBV.16R2.B2:MCBV, at= 706.3527+(-131-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250112, assembly_id= 102383, from= IP2; - MB.A17R2.B2:MB, at= 714.9297+(-130.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824442, assembly_id= 102384, from= IP2; - MCS.A17R2.B2:MCS, at= 722.3537+(-130-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243027, assembly_id= 102384, from= IP2; - MCO.17R2.B2:MCO, at= 723.1037+(-130-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250114, assembly_id= 102385, from= IP2; - MCD.17R2.B2:MCD, at= 723.1052+(-130-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250115, assembly_id= 102385, from= IP2; - MB.B17R2.B2:MB, at= 730.5897+(-129.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824466, assembly_id= 102385, from= IP2; - MCS.B17R2.B2:MCS, at= 738.0137+(-129-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243032, assembly_id= 102385, from= IP2; - MB.C17R2.B2:MB, at= 746.2497+(-128.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824490, assembly_id= 102386, from= IP2; - MCS.C17R2.B2:MCS, at= 753.6737+(-128-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243035, assembly_id= 102386, from= IP2; - BPM.17R2.B2:BPM, at= 754.5527+(-128-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243037, assembly_id= 102387, from= IP2; - MQT.17R2.B2:MQT, at= 755.3067+(-128-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307382, assembly_id= 102387, from= IP2; -MQ.17R2.B2:MQ, at= 757.3147+(-128-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308373, assembly_id= 102387, from= IP2; - MS.17R2.B2:MS, at= 759.2097+(-128-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250118, assembly_id= 102387, from= IP2; - MCBH.17R2.B2:MCBH, at= 759.8027+(-128-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250120, assembly_id= 102387, from= IP2; - MCO.A18R2.B2:MCO, at= 760.8937+(-128-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250122, assembly_id= 102388, from= IP2; - MCD.A18R2.B2:MCD, at= 760.8952+(-128-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250123, assembly_id= 102388, from= IP2; - MB.A18R2.B2:MB, at= 768.3797+(-127.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824514, assembly_id= 102388, from= IP2; - MCS.A18R2.B2:MCS, at= 775.8037+(-127-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243045, assembly_id= 102388, from= IP2; - MB.B18R2.B2:MB, at= 784.0397+(-126.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824538, assembly_id= 102389, from= IP2; - MCS.B18R2.B2:MCS, at= 791.4637+(-126-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243048, assembly_id= 102389, from= IP2; - MCO.B18R2.B2:MCO, at= 792.2137+(-126-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250126, assembly_id= 102390, from= IP2; - MCD.B18R2.B2:MCD, at= 792.2152+(-126-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250127, assembly_id= 102390, from= IP2; - MB.C18R2.B2:MB, at= 799.6997+(-125.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824562, assembly_id= 102390, from= IP2; - MCS.C18R2.B2:MCS, at= 807.1237+(-125-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243053, assembly_id= 102390, from= IP2; - BPM.18R2.B2:BPM, at= 808.0027+(-125-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243055, assembly_id= 102391, from= IP2; - MQT.18R2.B2:MQT, at= 808.7567+(-125-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307414, assembly_id= 102391, from= IP2; -MQ.18R2.B2:MQ, at= 810.7647+(-125-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308403, assembly_id= 102391, from= IP2; - MS.18R2.B2:MS, at= 812.6597+(-125-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250130, assembly_id= 102391, from= IP2; - MCBV.18R2.B2:MCBV, at= 813.2527+(-125-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250132, assembly_id= 102391, from= IP2; - MB.A19R2.B2:MB, at= 821.8297+(-124.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824586, assembly_id= 102392, from= IP2; - MCS.A19R2.B2:MCS, at= 829.2537+(-124-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243061, assembly_id= 102392, from= IP2; - MCO.19R2.B2:MCO, at= 830.0037+(-124-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250134, assembly_id= 102393, from= IP2; - MCD.19R2.B2:MCD, at= 830.0052+(-124-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250135, assembly_id= 102393, from= IP2; - MB.B19R2.B2:MB, at= 837.4897+(-123.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824610, assembly_id= 102393, from= IP2; - MCS.B19R2.B2:MCS, at= 844.9137+(-123-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243066, assembly_id= 102393, from= IP2; - MB.C19R2.B2:MB, at= 853.1497+(-122.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824634, assembly_id= 102394, from= IP2; - MCS.C19R2.B2:MCS, at= 860.5737+(-122-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243069, assembly_id= 102394, from= IP2; - BPM.19R2.B2:BPM, at= 861.4527+(-122-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243071, assembly_id= 102395, from= IP2; - MQT.19R2.B2:MQT, at= 862.2067+(-122-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307445, assembly_id= 102395, from= IP2; -MQ.19R2.B2:MQ, at= 864.2147+(-122-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308435, assembly_id= 102395, from= IP2; - MS.19R2.B2:MS, at= 866.1097+(-122-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250138, assembly_id= 102395, from= IP2; - MCBH.19R2.B2:MCBH, at= 866.7027+(-122-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250140, assembly_id= 102395, from= IP2; - MCO.A20R2.B2:MCO, at= 867.7937+(-122-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250142, assembly_id= 102396, from= IP2; - MCD.A20R2.B2:MCD, at= 867.7952+(-122-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250143, assembly_id= 102396, from= IP2; - MB.A20R2.B2:MB, at= 875.2797+(-121.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824658, assembly_id= 102396, from= IP2; - MCS.A20R2.B2:MCS, at= 882.7037+(-121-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243079, assembly_id= 102396, from= IP2; - MB.B20R2.B2:MB, at= 890.9397+(-120.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824682, assembly_id= 102397, from= IP2; - MCS.B20R2.B2:MCS, at= 898.3637+(-120-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243082, assembly_id= 102397, from= IP2; - MCO.B20R2.B2:MCO, at= 899.1137+(-120-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250146, assembly_id= 102398, from= IP2; - MCD.B20R2.B2:MCD, at= 899.1152+(-120-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250147, assembly_id= 102398, from= IP2; - MB.C20R2.B2:MB, at= 906.5997+(-119.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824706, assembly_id= 102398, from= IP2; - MCS.C20R2.B2:MCS, at= 914.0237+(-119-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243087, assembly_id= 102398, from= IP2; - BPM.20R2.B2:BPM, at= 914.9027+(-119-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243089, assembly_id= 102399, from= IP2; - MQT.20R2.B2:MQT, at= 915.6567+(-119-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307474, assembly_id= 102399, from= IP2; -MQ.20R2.B2:MQ, at= 917.6647+(-119-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308226, assembly_id= 102399, from= IP2; - MS.20R2.B2:MS, at= 919.5597+(-119-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250150, assembly_id= 102399, from= IP2; - MCBV.20R2.B2:MCBV, at= 920.1527+(-119-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250152, assembly_id= 102399, from= IP2; - MB.A21R2.B2:MB, at= 928.7297+(-118.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824730, assembly_id= 102400, from= IP2; - MCS.A21R2.B2:MCS, at= 936.1537+(-118-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243095, assembly_id= 102400, from= IP2; - MCO.21R2.B2:MCO, at= 936.9037+(-118-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250154, assembly_id= 102401, from= IP2; - MCD.21R2.B2:MCD, at= 936.9052+(-118-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250155, assembly_id= 102401, from= IP2; - MB.B21R2.B2:MB, at= 944.3897+(-117.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824754, assembly_id= 102401, from= IP2; - MCS.B21R2.B2:MCS, at= 951.8137+(-117-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243100, assembly_id= 102401, from= IP2; - MB.C21R2.B2:MB, at= 960.0497+(-116.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824778, assembly_id= 102402, from= IP2; - MCS.C21R2.B2:MCS, at= 967.4737+(-116-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243103, assembly_id= 102402, from= IP2; - BPM.21R2.B2:BPM, at= 968.3527+(-116-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243105, assembly_id= 102403, from= IP2; - MQT.21R2.B2:MQT, at= 969.1067+(-116-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307272, assembly_id= 102403, from= IP2; -MQ.21R2.B2:MQ, at= 971.1147+(-116-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308256, assembly_id= 102403, from= IP2; - MS.21R2.B2:MS, at= 973.0097+(-116-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250158, assembly_id= 102403, from= IP2; - MCBH.21R2.B2:MCBH, at= 973.6027+(-116-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250160, assembly_id= 102403, from= IP2; - MCO.A22R2.B2:MCO, at= 974.6937+(-116-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250162, assembly_id= 102404, from= IP2; - MCD.A22R2.B2:MCD, at= 974.6952+(-116-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250163, assembly_id= 102404, from= IP2; - MB.A22R2.B2:MB, at= 982.1797+(-115.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824802, assembly_id= 102404, from= IP2; - MCS.A22R2.B2:MCS, at= 989.6037+(-115-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243113, assembly_id= 102404, from= IP2; - MB.B22R2.B2:MB, at= 997.8397+(-114.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824826, assembly_id= 102405, from= IP2; - MCS.B22R2.B2:MCS, at= 1005.2637+(-114-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243116, assembly_id= 102405, from= IP2; - MCO.B22R2.B2:MCO, at= 1006.0137+(-114-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250166, assembly_id= 102406, from= IP2; - MCD.B22R2.B2:MCD, at= 1006.0152+(-114-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250167, assembly_id= 102406, from= IP2; - MB.C22R2.B2:MB, at= 1013.4997+(-113.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824850, assembly_id= 102406, from= IP2; - MCS.C22R2.B2:MCS, at= 1020.9237+(-113-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243121, assembly_id= 102406, from= IP2; - BPM.22R2.B2:BPM, at= 1021.8027+(-113-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243123, assembly_id= 102407, from= IP2; - MO.22R2.B2:MO, at= 1022.5537+(-113-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308816, assembly_id= 102407, from= IP2; -MQ.22R2.B2:MQ, at= 1024.5647+(-113-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308288, assembly_id= 102407, from= IP2; - MS.22R2.B2:MS, at= 1026.4597+(-113-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250170, assembly_id= 102407, from= IP2; - MCBV.22R2.B2:MCBV, at= 1027.0527+(-113-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250172, assembly_id= 102407, from= IP2; - MB.A23R2.B2:MB, at= 1035.6297+(-112.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824874, assembly_id= 102408, from= IP2; - MCS.A23R2.B2:MCS, at= 1043.0537+(-112-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243129, assembly_id= 102408, from= IP2; - MCO.23R2.B2:MCO, at= 1043.8037+(-112-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250174, assembly_id= 102409, from= IP2; - MCD.23R2.B2:MCD, at= 1043.8052+(-112-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250175, assembly_id= 102409, from= IP2; - MB.B23R2.B2:MB, at= 1051.2897+(-111.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824898, assembly_id= 102409, from= IP2; - MCS.B23R2.B2:MCS, at= 1058.7137+(-111-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243134, assembly_id= 102409, from= IP2; - MB.C23R2.B2:MB, at= 1066.9497+(-110.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824922, assembly_id= 102410, from= IP2; - MCS.C23R2.B2:MCS, at= 1074.3737+(-110-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243137, assembly_id= 102410, from= IP2; - BPM.23R2.B2:BPM, at= 1075.2527+(-110-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266500, assembly_id= 102411, from= IP2; - MQS.23R2.B2:MQS, at= 1076.0067+(-110-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348450, assembly_id= 102411, from= IP2; -MQ.23R2.B2:MQ, at= 1078.0147+(-110-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308319, assembly_id= 102411, from= IP2; - MS.23R2.B2:MS, at= 1079.9097+(-110-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250178, assembly_id= 102411, from= IP2; - MCBH.23R2.B2:MCBH, at= 1080.5027+(-110-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250180, assembly_id= 102411, from= IP2; - MCO.A24R2.B2:MCO, at= 1081.5937+(-110-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250182, assembly_id= 102412, from= IP2; - MCD.A24R2.B2:MCD, at= 1081.5952+(-110-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250183, assembly_id= 102412, from= IP2; - MB.A24R2.B2:MB, at= 1089.0797+(-109.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824946, assembly_id= 102412, from= IP2; - MCS.A24R2.B2:MCS, at= 1096.5037+(-109-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243145, assembly_id= 102412, from= IP2; - MB.B24R2.B2:MB, at= 1104.7397+(-108.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824970, assembly_id= 102413, from= IP2; - MCS.B24R2.B2:MCS, at= 1112.1637+(-108-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243148, assembly_id= 102413, from= IP2; - MCO.B24R2.B2:MCO, at= 1112.9137+(-108-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250186, assembly_id= 102414, from= IP2; - MCD.B24R2.B2:MCD, at= 1112.9152+(-108-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250187, assembly_id= 102414, from= IP2; - MB.C24R2.B2:MB, at= 1120.3997+(-107.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52824994, assembly_id= 102414, from= IP2; - MCS.C24R2.B2:MCS, at= 1127.8237+(-107-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243153, assembly_id= 102414, from= IP2; - BPM.24R2.B2:BPM, at= 1128.7027+(-107-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243155, assembly_id= 102415, from= IP2; - MO.24R2.B2:MO, at= 1129.4537+(-107-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308846, assembly_id= 102415, from= IP2; -MQ.24R2.B2:MQ, at= 1131.4647+(-107-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308109, assembly_id= 102415, from= IP2; - MS.24R2.B2:MS, at= 1133.3597+(-107-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250190, assembly_id= 102415, from= IP2; - MCBV.24R2.B2:MCBV, at= 1133.9527+(-107-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250192, assembly_id= 102415, from= IP2; - MB.A25R2.B2:MB, at= 1142.5297+(-106.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825018, assembly_id= 102416, from= IP2; - MCS.A25R2.B2:MCS, at= 1149.9537+(-106-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243161, assembly_id= 102416, from= IP2; - MCO.25R2.B2:MCO, at= 1150.7037+(-106-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250194, assembly_id= 102417, from= IP2; - MCD.25R2.B2:MCD, at= 1150.7052+(-106-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250195, assembly_id= 102417, from= IP2; - MB.B25R2.B2:MB, at= 1158.1897+(-105.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825042, assembly_id= 102417, from= IP2; - MCS.B25R2.B2:MCS, at= 1165.6137+(-105-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243166, assembly_id= 102417, from= IP2; - MB.C25R2.B2:MB, at= 1173.8497+(-104.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825066, assembly_id= 102418, from= IP2; - MCS.C25R2.B2:MCS, at= 1181.2737+(-104-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243169, assembly_id= 102418, from= IP2; - BPM.25R2.B2:BPM, at= 1182.1527+(-104-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243171, assembly_id= 102419, from= IP2; - MO.25R2.B2:MO, at= 1182.9037+(-104-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308878, assembly_id= 102419, from= IP2; -MQ.25R2.B2:MQ, at= 1184.9147+(-104-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308141, assembly_id= 102419, from= IP2; - MS.25R2.B2:MS, at= 1186.8097+(-104-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250198, assembly_id= 102419, from= IP2; - MCBH.25R2.B2:MCBH, at= 1187.4027+(-104-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250200, assembly_id= 102419, from= IP2; - MCO.A26R2.B2:MCO, at= 1188.4937+(-104-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250202, assembly_id= 102420, from= IP2; - MCD.A26R2.B2:MCD, at= 1188.4952+(-104-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250203, assembly_id= 102420, from= IP2; - MB.A26R2.B2:MB, at= 1195.9797+(-103.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825090, assembly_id= 102420, from= IP2; - MCS.A26R2.B2:MCS, at= 1203.4037+(-103-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243179, assembly_id= 102420, from= IP2; - MB.B26R2.B2:MB, at= 1211.6397+(-102.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825114, assembly_id= 102421, from= IP2; - MCS.B26R2.B2:MCS, at= 1219.0637+(-102-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243182, assembly_id= 102421, from= IP2; - MCO.B26R2.B2:MCO, at= 1219.8137+(-102-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250206, assembly_id= 102422, from= IP2; - MCD.B26R2.B2:MCD, at= 1219.8152+(-102-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250207, assembly_id= 102422, from= IP2; - MB.C26R2.B2:MB, at= 1227.2997+(-101.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825138, assembly_id= 102422, from= IP2; - MCS.C26R2.B2:MCS, at= 1234.7237+(-101-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243187, assembly_id= 102422, from= IP2; - BPM.26R2.B2:BPM, at= 1235.6027+(-101-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243189, assembly_id= 102423, from= IP2; - MO.26R2.B2:MO, at= 1236.3537+(-101-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308910, assembly_id= 102423, from= IP2; -MQ.26R2.B2:MQ, at= 1238.3647+(-101-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308172, assembly_id= 102423, from= IP2; - MS.26R2.B2:MS, at= 1240.2597+(-101-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250210, assembly_id= 102423, from= IP2; - MCBV.26R2.B2:MCBV, at= 1240.8527+(-101-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250212, assembly_id= 102423, from= IP2; - MB.A27R2.B2:MB, at= 1249.4297+(-100.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825162, assembly_id= 102424, from= IP2; - MCS.A27R2.B2:MCS, at= 1256.8537+(-100-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243195, assembly_id= 102424, from= IP2; - MCO.27R2.B2:MCO, at= 1257.6037+(-100-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250214, assembly_id= 102425, from= IP2; - MCD.27R2.B2:MCD, at= 1257.6052+(-100-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250215, assembly_id= 102425, from= IP2; - MB.B27R2.B2:MB, at= 1265.0897+(-99.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825186, assembly_id= 102425, from= IP2; - MCS.B27R2.B2:MCS, at= 1272.5137+(-99-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243200, assembly_id= 102425, from= IP2; - MB.C27R2.B2:MB, at= 1280.7497+(-98.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825210, assembly_id= 102426, from= IP2; - MCS.C27R2.B2:MCS, at= 1288.1737+(-98-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243203, assembly_id= 102426, from= IP2; - BPM.27R2.B2:BPM, at= 1289.0527+(-98-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266502, assembly_id= 102427, from= IP2; - MQS.27R2.B2:MQS, at= 1289.8067+(-98-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307670, assembly_id= 102427, from= IP2; -MQ.27R2.B2:MQ, at= 1291.8147+(-98-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308202, assembly_id= 102427, from= IP2; - MS.27R2.B2:MS, at= 1293.7097+(-98-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250218, assembly_id= 102427, from= IP2; - MCBH.27R2.B2:MCBH, at= 1294.3027+(-98-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250220, assembly_id= 102427, from= IP2; - MCO.A28R2.B2:MCO, at= 1295.3937+(-98-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250222, assembly_id= 102428, from= IP2; - MCD.A28R2.B2:MCD, at= 1295.3952+(-98-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250223, assembly_id= 102428, from= IP2; - MB.A28R2.B2:MB, at= 1302.8797+(-97.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825234, assembly_id= 102428, from= IP2; - MCS.A28R2.B2:MCS, at= 1310.3037+(-97-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243211, assembly_id= 102428, from= IP2; - MB.B28R2.B2:MB, at= 1318.5397+(-96.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825258, assembly_id= 102429, from= IP2; - MCS.B28R2.B2:MCS, at= 1325.9637+(-96-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243214, assembly_id= 102429, from= IP2; - MCO.B28R2.B2:MCO, at= 1326.7137+(-96-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250226, assembly_id= 102430, from= IP2; - MCD.B28R2.B2:MCD, at= 1326.7152+(-96-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250227, assembly_id= 102430, from= IP2; - MB.C28R2.B2:MB, at= 1334.1997+(-95.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825282, assembly_id= 102430, from= IP2; - MCS.C28R2.B2:MCS, at= 1341.6237+(-95-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243219, assembly_id= 102430, from= IP2; - BPM.28R2.B2:BPM, at= 1342.5027+(-95-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243221, assembly_id= 102431, from= IP2; - MO.28R2.B2:MO, at= 1343.2537+(-95-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308699, assembly_id= 102431, from= IP2; -MQ.28R2.B2:MQ, at= 1345.2647+(-95-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307993, assembly_id= 102431, from= IP2; - MS.28R2.B2:MS, at= 1347.1597+(-95-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250230, assembly_id= 102431, from= IP2; - MCBV.28R2.B2:MCBV, at= 1347.7527+(-95-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250232, assembly_id= 102431, from= IP2; - MB.A29R2.B2:MB, at= 1356.3297+(-94.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825306, assembly_id= 102432, from= IP2; - MCS.A29R2.B2:MCS, at= 1363.7537+(-94-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243227, assembly_id= 102432, from= IP2; - MCO.29R2.B2:MCO, at= 1364.5037+(-94-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250234, assembly_id= 102433, from= IP2; - MCD.29R2.B2:MCD, at= 1364.5052+(-94-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250235, assembly_id= 102433, from= IP2; - MB.B29R2.B2:MB, at= 1371.9897+(-93.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825330, assembly_id= 102433, from= IP2; - MCS.B29R2.B2:MCS, at= 1379.4137+(-93-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243232, assembly_id= 102433, from= IP2; - MB.C29R2.B2:MB, at= 1387.6497+(-92.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825354, assembly_id= 102434, from= IP2; - MCS.C29R2.B2:MCS, at= 1395.0737+(-92-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243235, assembly_id= 102434, from= IP2; - BPM.29R2.B2:BPM, at= 1395.9527+(-92-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243237, assembly_id= 102435, from= IP2; - MO.29R2.B2:MO, at= 1396.7037+(-92-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308731, assembly_id= 102435, from= IP2; -MQ.29R2.B2:MQ, at= 1398.7147+(-92-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308024, assembly_id= 102435, from= IP2; - MSS.29R2.B2:MSS, at= 1400.6097+(-92-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250238, assembly_id= 102435, from= IP2; - MCBH.29R2.B2:MCBH, at= 1401.2027+(-92-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250240, assembly_id= 102435, from= IP2; - MCO.A30R2.B2:MCO, at= 1402.2937+(-92-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250242, assembly_id= 102436, from= IP2; - MCD.A30R2.B2:MCD, at= 1402.2952+(-92-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250243, assembly_id= 102436, from= IP2; - MB.A30R2.B2:MB, at= 1409.7797+(-91.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825378, assembly_id= 102436, from= IP2; - MCS.A30R2.B2:MCS, at= 1417.2037+(-91-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243245, assembly_id= 102436, from= IP2; - MB.B30R2.B2:MB, at= 1425.4397+(-90.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825402, assembly_id= 102437, from= IP2; - MCS.B30R2.B2:MCS, at= 1432.8637+(-90-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243248, assembly_id= 102437, from= IP2; - MCO.B30R2.B2:MCO, at= 1433.6137+(-90-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250246, assembly_id= 102438, from= IP2; - MCD.B30R2.B2:MCD, at= 1433.6152+(-90-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250247, assembly_id= 102438, from= IP2; - MB.C30R2.B2:MB, at= 1441.0997+(-89.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825426, assembly_id= 102438, from= IP2; - MCS.C30R2.B2:MCS, at= 1448.5237+(-89-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243253, assembly_id= 102438, from= IP2; - BPM.30R2.B2:BPM, at= 1449.4027+(-89-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243255, assembly_id= 102439, from= IP2; - MO.30R2.B2:MO, at= 1450.1537+(-89-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308762, assembly_id= 102439, from= IP2; -MQ.30R2.B2:MQ, at= 1452.1647+(-89-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308054, assembly_id= 102439, from= IP2; - MS.30R2.B2:MS, at= 1454.0597+(-89-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250250, assembly_id= 102439, from= IP2; - MCBV.30R2.B2:MCBV, at= 1454.6527+(-89-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250252, assembly_id= 102439, from= IP2; - MB.A31R2.B2:MB, at= 1463.2297+(-88.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825450, assembly_id= 102440, from= IP2; - MCS.A31R2.B2:MCS, at= 1470.6537+(-88-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243261, assembly_id= 102440, from= IP2; - MCO.31R2.B2:MCO, at= 1471.4037+(-88-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250254, assembly_id= 102441, from= IP2; - MCD.31R2.B2:MCD, at= 1471.4052+(-88-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250255, assembly_id= 102441, from= IP2; - MB.B31R2.B2:MB, at= 1478.8897+(-87.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825474, assembly_id= 102441, from= IP2; - MCS.B31R2.B2:MCS, at= 1486.3137+(-87-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243266, assembly_id= 102441, from= IP2; - MB.C31R2.B2:MB, at= 1494.5497+(-86.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825498, assembly_id= 102442, from= IP2; - MCS.C31R2.B2:MCS, at= 1501.9737+(-86-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243269, assembly_id= 102442, from= IP2; - BPM.31R2.B2:BPM, at= 1502.8527+(-86-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243271, assembly_id= 102443, from= IP2; - MO.31R2.B2:MO, at= 1503.6037+(-86-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308792, assembly_id= 102443, from= IP2; -MQ.31R2.B2:MQ, at= 1505.6147+(-86-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348469, assembly_id= 102443, from= IP2; - MS.31R2.B2:MS, at= 1507.5097+(-86-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250258, assembly_id= 102443, from= IP2; - MCBH.31R2.B2:MCBH, at= 1508.1027+(-86-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250260, assembly_id= 102443, from= IP2; -S.CELL.23.B2:OMK, at= 1508.8497+(-86-IP2OFS.B2)*DS, slot_id= 100932, from= IP2; - MCO.A32R2.B2:MCO, at= 1509.1937+(-86-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250262, assembly_id= 102444, from= IP2; - MCD.A32R2.B2:MCD, at= 1509.1952+(-86-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250263, assembly_id= 102444, from= IP2; - MB.A32R2.B2:MB, at= 1516.6797+(-85.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825522, assembly_id= 102444, from= IP2; - MCS.A32R2.B2:MCS, at= 1524.1037+(-85-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243279, assembly_id= 102444, from= IP2; - MB.B32R2.B2:MB, at= 1532.3397+(-84.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825546, assembly_id= 102445, from= IP2; - MCS.B32R2.B2:MCS, at= 1539.7637+(-84-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243282, assembly_id= 102445, from= IP2; - MCO.B32R2.B2:MCO, at= 1540.5137+(-84-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250266, assembly_id= 102446, from= IP2; - MCD.B32R2.B2:MCD, at= 1540.5152+(-84-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250267, assembly_id= 102446, from= IP2; - MB.C32R2.B2:MB, at= 1547.9997+(-83.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825570, assembly_id= 102446, from= IP2; - MCS.C32R2.B2:MCS, at= 1555.4237+(-83-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243287, assembly_id= 102446, from= IP2; - BPM.32R2.B2:BPM, at= 1556.3027+(-83-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243289, assembly_id= 102447, from= IP2; - MO.32R2.B2:MO, at= 1557.0537+(-83-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308584, assembly_id= 102447, from= IP2; -MQ.32R2.B2:MQ, at= 1559.0647+(-83-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307875, assembly_id= 102447, from= IP2; - MS.32R2.B2:MS, at= 1560.9597+(-83-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250270, assembly_id= 102447, from= IP2; - MCBV.32R2.B2:MCBV, at= 1561.5527+(-83-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250272, assembly_id= 102447, from= IP2; - MB.A33R2.B2:MB, at= 1570.1297+(-82.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825594, assembly_id= 102448, from= IP2; - MCS.A33R2.B2:MCS, at= 1577.5537+(-82-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243295, assembly_id= 102448, from= IP2; - MCO.33R2.B2:MCO, at= 1578.3037+(-82-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250274, assembly_id= 102449, from= IP2; - MCD.33R2.B2:MCD, at= 1578.3052+(-82-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250275, assembly_id= 102449, from= IP2; - MB.B33R2.B2:MB, at= 1585.7897+(-81.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825618, assembly_id= 102449, from= IP2; - MCS.B33R2.B2:MCS, at= 1593.2137+(-81-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243300, assembly_id= 102449, from= IP2; - MB.C33R2.B2:MB, at= 1601.4497+(-80.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825642, assembly_id= 102450, from= IP2; - MCS.C33R2.B2:MCS, at= 1608.8737+(-80-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243303, assembly_id= 102450, from= IP2; - BPM.33R2.B2:BPM, at= 1609.7527+(-80-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243305, assembly_id= 102451, from= IP2; - MO.33R2.B2:MO, at= 1610.5037+(-80-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308615, assembly_id= 102451, from= IP2; -MQ.33R2.B2:MQ, at= 1612.5147+(-80-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307905, assembly_id= 102451, from= IP2; - MSS.33R2.B2:MSS, at= 1614.4097+(-80-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250278, assembly_id= 102451, from= IP2; - MCBH.33R2.B2:MCBH, at= 1615.0027+(-80-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250280, assembly_id= 102451, from= IP2; -E.CELL.23.B2:OMK, at= 1615.7497+(-80-IP2OFS.B2)*DS, slot_id= 100932, from= IP2; - MCO.A34R2.B2:MCO, at= 1616.0937+(-80-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250282, assembly_id= 102452, from= IP2; - MCD.A34R2.B2:MCD, at= 1616.0952+(-80-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250283, assembly_id= 102452, from= IP2; - MB.A34R2.B2:MB, at= 1623.5797+(-79.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825666, assembly_id= 102452, from= IP2; - MCS.A34R2.B2:MCS, at= 1631.0037+(-79-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243313, assembly_id= 102452, from= IP2; - MB.B34R2.B2:MB, at= 1639.2397+(-78.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825690, assembly_id= 102453, from= IP2; - MCS.B34R2.B2:MCS, at= 1646.6637+(-78-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243316, assembly_id= 102453, from= IP2; - MCO.B34R2.B2:MCO, at= 1647.4137+(-78-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250286, assembly_id= 102454, from= IP2; - MCD.B34R2.B2:MCD, at= 1647.4152+(-78-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250287, assembly_id= 102454, from= IP2; - MB.C34R2.B2:MB, at= 1654.8997+(-77.5-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825714, assembly_id= 102454, from= IP2; - MCS.C34R2.B2:MCS, at= 1662.3237+(-77-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243321, assembly_id= 102454, from= IP2; - BPM.34R2.B2:BPM, at= 1663.2027+(-77-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243323, assembly_id= 102455, from= IP2; - MO.34R2.B2:MO, at= 1663.9537+(-77-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308630, assembly_id= 102455, from= IP2; -MQ.34R2.B2:MQ, at= 1665.9647+(-77-IP2OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307920, assembly_id= 102455, from= IP2; - MS.34L3.B2:MS, at= -1664.5007+(-77-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250290, assembly_id= 102455, from= IP3; - MCBV.34L3.B2:MCBV, at= -1663.9077+(-77-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250292, assembly_id= 102455, from= IP3; - MB.C34L3.B2:MB, at= -1655.3307+(-76.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825738, assembly_id= 102456, from= IP3; - MCS.C34L3.B2:MCS, at= -1647.9067+(-76-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243329, assembly_id= 102456, from= IP3; - MCO.34L3.B2:MCO, at= -1647.1567+(-76-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250294, assembly_id= 102457, from= IP3; - MCD.34L3.B2:MCD, at= -1647.1552+(-76-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250295, assembly_id= 102457, from= IP3; - MB.B34L3.B2:MB, at= -1639.6707+(-75.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825762, assembly_id= 102457, from= IP3; - MCS.B34L3.B2:MCS, at= -1632.2467+(-75-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243334, assembly_id= 102457, from= IP3; - MB.A34L3.B2:MB, at= -1624.0107+(-74.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825786, assembly_id= 102458, from= IP3; - MCS.A34L3.B2:MCS, at= -1616.5867+(-74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243337, assembly_id= 102458, from= IP3; - BPM.33L3.B2:BPM, at= -1615.7077+(-74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243339, assembly_id= 102459, from= IP3; - MO.33L3.B2:MO, at= -1614.9567+(-74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308602, assembly_id= 102459, from= IP3; -MQ.33L3.B2:MQ, at= -1612.9457+(-74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307892, assembly_id= 102459, from= IP3; - MSS.33L3.B2:MSS, at= -1611.0507+(-74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250298, assembly_id= 102459, from= IP3; - MCBH.33L3.B2:MCBH, at= -1610.4577+(-74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250300, assembly_id= 102459, from= IP3; - MCO.B33L3.B2:MCO, at= -1609.3667+(-74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250302, assembly_id= 102460, from= IP3; - MCD.B33L3.B2:MCD, at= -1609.3652+(-74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250303, assembly_id= 102460, from= IP3; - MB.C33L3.B2:MB, at= -1601.8807+(-73.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825810, assembly_id= 102460, from= IP3; - MCS.C33L3.B2:MCS, at= -1594.4567+(-73-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243347, assembly_id= 102460, from= IP3; - MB.B33L3.B2:MB, at= -1586.2207+(-72.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825834, assembly_id= 102461, from= IP3; - MCS.B33L3.B2:MCS, at= -1578.7967+(-72-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243350, assembly_id= 102461, from= IP3; - MCO.A33L3.B2:MCO, at= -1578.0467+(-72-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250306, assembly_id= 102462, from= IP3; - MCD.A33L3.B2:MCD, at= -1578.0452+(-72-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250307, assembly_id= 102462, from= IP3; - MB.A33L3.B2:MB, at= -1570.5607+(-71.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825858, assembly_id= 102462, from= IP3; - MCS.A33L3.B2:MCS, at= -1563.1367+(-71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243355, assembly_id= 102462, from= IP3; - BPM.32L3.B2:BPM, at= -1562.2577+(-71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243357, assembly_id= 102463, from= IP3; - MO.32L3.B2:MO, at= -1561.5067+(-71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308570, assembly_id= 102463, from= IP3; -MQ.32L3.B2:MQ, at= -1559.4957+(-71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307862, assembly_id= 102463, from= IP3; - MS.32L3.B2:MS, at= -1557.6007+(-71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250310, assembly_id= 102463, from= IP3; - MCBV.32L3.B2:MCBV, at= -1557.0077+(-71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250312, assembly_id= 102463, from= IP3; - MB.C32L3.B2:MB, at= -1548.4307+(-70.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825882, assembly_id= 102464, from= IP3; - MCS.C32L3.B2:MCS, at= -1541.0067+(-70-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243363, assembly_id= 102464, from= IP3; - MCO.32L3.B2:MCO, at= -1540.2567+(-70-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250314, assembly_id= 102465, from= IP3; - MCD.32L3.B2:MCD, at= -1540.2552+(-70-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250315, assembly_id= 102465, from= IP3; - MB.B32L3.B2:MB, at= -1532.7707+(-69.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825906, assembly_id= 102465, from= IP3; - MCS.B32L3.B2:MCS, at= -1525.3467+(-69-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243368, assembly_id= 102465, from= IP3; - MB.A32L3.B2:MB, at= -1517.1107+(-68.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825930, assembly_id= 102466, from= IP3; - MCS.A32L3.B2:MCS, at= -1509.6867+(-68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243371, assembly_id= 102466, from= IP3; - BPM.31L3.B2:BPM, at= -1508.8077+(-68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243373, assembly_id= 102467, from= IP3; - MO.31L3.B2:MO, at= -1508.0567+(-68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308779, assembly_id= 102467, from= IP3; -MQ.31L3.B2:MQ, at= -1506.0457+(-68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348468, assembly_id= 102467, from= IP3; - MS.31L3.B2:MS, at= -1504.1507+(-68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250318, assembly_id= 102467, from= IP3; - MCBH.31L3.B2:MCBH, at= -1503.5577+(-68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250320, assembly_id= 102467, from= IP3; - MCO.B31L3.B2:MCO, at= -1502.4667+(-68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250322, assembly_id= 102468, from= IP3; - MCD.B31L3.B2:MCD, at= -1502.4652+(-68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250323, assembly_id= 102468, from= IP3; - MB.C31L3.B2:MB, at= -1494.9807+(-67.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825954, assembly_id= 102468, from= IP3; - MCS.C31L3.B2:MCS, at= -1487.5567+(-67-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243381, assembly_id= 102468, from= IP3; - MB.B31L3.B2:MB, at= -1479.3207+(-66.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52825978, assembly_id= 102469, from= IP3; - MCS.B31L3.B2:MCS, at= -1471.8967+(-66-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243384, assembly_id= 102469, from= IP3; - MCO.A31L3.B2:MCO, at= -1471.1467+(-66-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250326, assembly_id= 102470, from= IP3; - MCD.A31L3.B2:MCD, at= -1471.1452+(-66-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250327, assembly_id= 102470, from= IP3; - MB.A31L3.B2:MB, at= -1463.6607+(-65.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826002, assembly_id= 102470, from= IP3; - MCS.A31L3.B2:MCS, at= -1456.2367+(-65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243389, assembly_id= 102470, from= IP3; - BPM.30L3.B2:BPM, at= -1455.3577+(-65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243391, assembly_id= 102471, from= IP3; - MO.30L3.B2:MO, at= -1454.6067+(-65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308749, assembly_id= 102471, from= IP3; -MQ.30L3.B2:MQ, at= -1452.5957+(-65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308041, assembly_id= 102471, from= IP3; - MS.30L3.B2:MS, at= -1450.7007+(-65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250330, assembly_id= 102471, from= IP3; - MCBV.30L3.B2:MCBV, at= -1450.1077+(-65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250332, assembly_id= 102471, from= IP3; - MB.C30L3.B2:MB, at= -1441.5307+(-64.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826026, assembly_id= 102472, from= IP3; - MCS.C30L3.B2:MCS, at= -1434.1067+(-64-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243397, assembly_id= 102472, from= IP3; - MCO.30L3.B2:MCO, at= -1433.3567+(-64-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250334, assembly_id= 102473, from= IP3; - MCD.30L3.B2:MCD, at= -1433.3552+(-64-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250335, assembly_id= 102473, from= IP3; - MB.B30L3.B2:MB, at= -1425.8707+(-63.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826050, assembly_id= 102473, from= IP3; - MCS.B30L3.B2:MCS, at= -1418.4467+(-63-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243402, assembly_id= 102473, from= IP3; - MB.A30L3.B2:MB, at= -1410.2107+(-62.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826074, assembly_id= 102474, from= IP3; - MCS.A30L3.B2:MCS, at= -1402.7867+(-62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243405, assembly_id= 102474, from= IP3; - BPM.29L3.B2:BPM, at= -1401.9077+(-62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243407, assembly_id= 102475, from= IP3; - MO.29L3.B2:MO, at= -1401.1567+(-62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308717, assembly_id= 102475, from= IP3; -MQ.29L3.B2:MQ, at= -1399.1457+(-62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308011, assembly_id= 102475, from= IP3; - MSS.29L3.B2:MSS, at= -1397.2507+(-62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250338, assembly_id= 102475, from= IP3; - MCBH.29L3.B2:MCBH, at= -1396.6577+(-62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250340, assembly_id= 102475, from= IP3; - MCO.B29L3.B2:MCO, at= -1395.5667+(-62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250342, assembly_id= 102476, from= IP3; - MCD.B29L3.B2:MCD, at= -1395.5652+(-62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250343, assembly_id= 102476, from= IP3; - MB.C29L3.B2:MB, at= -1388.0807+(-61.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826098, assembly_id= 102476, from= IP3; - MCS.C29L3.B2:MCS, at= -1380.6567+(-61-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243415, assembly_id= 102476, from= IP3; - MB.B29L3.B2:MB, at= -1372.4207+(-60.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826122, assembly_id= 102477, from= IP3; - MCS.B29L3.B2:MCS, at= -1364.9967+(-60-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243418, assembly_id= 102477, from= IP3; - MCO.A29L3.B2:MCO, at= -1364.2467+(-60-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250346, assembly_id= 102478, from= IP3; - MCD.A29L3.B2:MCD, at= -1364.2452+(-60-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250347, assembly_id= 102478, from= IP3; - MB.A29L3.B2:MB, at= -1356.7607+(-59.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826146, assembly_id= 102478, from= IP3; - MCS.A29L3.B2:MCS, at= -1349.3367+(-59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243423, assembly_id= 102478, from= IP3; - BPM.28L3.B2:BPM, at= -1348.4577+(-59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243425, assembly_id= 102479, from= IP3; - MO.28L3.B2:MO, at= -1347.7067+(-59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308686, assembly_id= 102479, from= IP3; -MQ.28L3.B2:MQ, at= -1345.6957+(-59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307979, assembly_id= 102479, from= IP3; - MS.28L3.B2:MS, at= -1343.8007+(-59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250350, assembly_id= 102479, from= IP3; - MCBV.28L3.B2:MCBV, at= -1343.2077+(-59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250352, assembly_id= 102479, from= IP3; - MB.C28L3.B2:MB, at= -1334.6307+(-58.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826170, assembly_id= 102480, from= IP3; - MCS.C28L3.B2:MCS, at= -1327.2067+(-58-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243431, assembly_id= 102480, from= IP3; - MCO.28L3.B2:MCO, at= -1326.4567+(-58-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250354, assembly_id= 102481, from= IP3; - MCD.28L3.B2:MCD, at= -1326.4552+(-58-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250355, assembly_id= 102481, from= IP3; - MB.B28L3.B2:MB, at= -1318.9707+(-57.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826194, assembly_id= 102481, from= IP3; - MCS.B28L3.B2:MCS, at= -1311.5467+(-57-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243436, assembly_id= 102481, from= IP3; - MB.A28L3.B2:MB, at= -1303.3107+(-56.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826218, assembly_id= 102482, from= IP3; - MCS.A28L3.B2:MCS, at= -1295.8867+(-56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243439, assembly_id= 102482, from= IP3; - BPM.27L3.B2:BPM, at= -1295.0077+(-56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266504, assembly_id= 102483, from= IP3; - MQS.27L3.B2:MQS, at= -1294.2537+(-56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307656, assembly_id= 102483, from= IP3; -MQ.27L3.B2:MQ, at= -1292.2457+(-56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308189, assembly_id= 102483, from= IP3; - MS.27L3.B2:MS, at= -1290.3507+(-56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250358, assembly_id= 102483, from= IP3; - MCBH.27L3.B2:MCBH, at= -1289.7577+(-56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250360, assembly_id= 102483, from= IP3; - MCO.B27L3.B2:MCO, at= -1288.6667+(-56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250362, assembly_id= 102484, from= IP3; - MCD.B27L3.B2:MCD, at= -1288.6652+(-56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250363, assembly_id= 102484, from= IP3; - MB.C27L3.B2:MB, at= -1281.1807+(-55.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826242, assembly_id= 102484, from= IP3; - MCS.C27L3.B2:MCS, at= -1273.7567+(-55-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243447, assembly_id= 102484, from= IP3; - MB.B27L3.B2:MB, at= -1265.5207+(-54.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826266, assembly_id= 102485, from= IP3; - MCS.B27L3.B2:MCS, at= -1258.0967+(-54-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243450, assembly_id= 102485, from= IP3; - MCO.A27L3.B2:MCO, at= -1257.3467+(-54-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250366, assembly_id= 102486, from= IP3; - MCD.A27L3.B2:MCD, at= -1257.3452+(-54-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250367, assembly_id= 102486, from= IP3; - MB.A27L3.B2:MB, at= -1249.8607+(-53.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826290, assembly_id= 102486, from= IP3; - MCS.A27L3.B2:MCS, at= -1242.4367+(-53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243455, assembly_id= 102486, from= IP3; - BPM.26L3.B2:BPM, at= -1241.5577+(-53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243457, assembly_id= 102487, from= IP3; - MO.26L3.B2:MO, at= -1240.8067+(-53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308896, assembly_id= 102487, from= IP3; -MQ.26L3.B2:MQ, at= -1238.7957+(-53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308159, assembly_id= 102487, from= IP3; - MS.26L3.B2:MS, at= -1236.9007+(-53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250370, assembly_id= 102487, from= IP3; - MCBV.26L3.B2:MCBV, at= -1236.3077+(-53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250372, assembly_id= 102487, from= IP3; - MB.C26L3.B2:MB, at= -1227.7307+(-52.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826314, assembly_id= 102488, from= IP3; - MCS.C26L3.B2:MCS, at= -1220.3067+(-52-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243463, assembly_id= 102488, from= IP3; - MCO.26L3.B2:MCO, at= -1219.5567+(-52-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250374, assembly_id= 102489, from= IP3; - MCD.26L3.B2:MCD, at= -1219.5552+(-52-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250375, assembly_id= 102489, from= IP3; - MB.B26L3.B2:MB, at= -1212.0707+(-51.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826338, assembly_id= 102489, from= IP3; - MCS.B26L3.B2:MCS, at= -1204.6467+(-51-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243468, assembly_id= 102489, from= IP3; - MB.A26L3.B2:MB, at= -1196.4107+(-50.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826362, assembly_id= 102490, from= IP3; - MCS.A26L3.B2:MCS, at= -1188.9867+(-50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243471, assembly_id= 102490, from= IP3; - BPM.25L3.B2:BPM, at= -1188.1077+(-50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243473, assembly_id= 102491, from= IP3; - MO.25L3.B2:MO, at= -1187.3567+(-50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308864, assembly_id= 102491, from= IP3; -MQ.25L3.B2:MQ, at= -1185.3457+(-50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308127, assembly_id= 102491, from= IP3; - MS.25L3.B2:MS, at= -1183.4507+(-50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250378, assembly_id= 102491, from= IP3; - MCBH.25L3.B2:MCBH, at= -1182.8577+(-50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250380, assembly_id= 102491, from= IP3; - MCO.B25L3.B2:MCO, at= -1181.7667+(-50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250382, assembly_id= 102492, from= IP3; - MCD.B25L3.B2:MCD, at= -1181.7652+(-50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250383, assembly_id= 102492, from= IP3; - MB.C25L3.B2:MB, at= -1174.2807+(-49.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826386, assembly_id= 102492, from= IP3; - MCS.C25L3.B2:MCS, at= -1166.8567+(-49-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243481, assembly_id= 102492, from= IP3; - MB.B25L3.B2:MB, at= -1158.6207+(-48.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826410, assembly_id= 102493, from= IP3; - MCS.B25L3.B2:MCS, at= -1151.1967+(-48-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243484, assembly_id= 102493, from= IP3; - MCO.A25L3.B2:MCO, at= -1150.4467+(-48-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250386, assembly_id= 102494, from= IP3; - MCD.A25L3.B2:MCD, at= -1150.4452+(-48-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250387, assembly_id= 102494, from= IP3; - MB.A25L3.B2:MB, at= -1142.9607+(-47.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826434, assembly_id= 102494, from= IP3; - MCS.A25L3.B2:MCS, at= -1135.5367+(-47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243489, assembly_id= 102494, from= IP3; - BPM.24L3.B2:BPM, at= -1134.6577+(-47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243491, assembly_id= 102495, from= IP3; - MO.24L3.B2:MO, at= -1133.9067+(-47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308833, assembly_id= 102495, from= IP3; -MQ.24L3.B2:MQ, at= -1131.8957+(-47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308095, assembly_id= 102495, from= IP3; - MS.24L3.B2:MS, at= -1130.0007+(-47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250390, assembly_id= 102495, from= IP3; - MCBV.24L3.B2:MCBV, at= -1129.4077+(-47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250392, assembly_id= 102495, from= IP3; - MB.C24L3.B2:MB, at= -1120.8307+(-46.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826458, assembly_id= 102496, from= IP3; - MCS.C24L3.B2:MCS, at= -1113.4067+(-46-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243497, assembly_id= 102496, from= IP3; - MCO.24L3.B2:MCO, at= -1112.6567+(-46-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250394, assembly_id= 102497, from= IP3; - MCD.24L3.B2:MCD, at= -1112.6552+(-46-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250395, assembly_id= 102497, from= IP3; - MB.B24L3.B2:MB, at= -1105.1707+(-45.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826482, assembly_id= 102497, from= IP3; - MCS.B24L3.B2:MCS, at= -1097.7467+(-45-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243502, assembly_id= 102497, from= IP3; - MB.A24L3.B2:MB, at= -1089.5107+(-44.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826506, assembly_id= 102498, from= IP3; - MCS.A24L3.B2:MCS, at= -1082.0867+(-44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243505, assembly_id= 102498, from= IP3; - BPM.23L3.B2:BPM, at= -1081.2077+(-44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266506, assembly_id= 102499, from= IP3; - MQS.23L3.B2:MQS, at= -1080.4537+(-44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307625, assembly_id= 102499, from= IP3; -MQ.23L3.B2:MQ, at= -1078.4457+(-44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308306, assembly_id= 102499, from= IP3; - MS.23L3.B2:MS, at= -1076.5507+(-44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250398, assembly_id= 102499, from= IP3; - MCBH.23L3.B2:MCBH, at= -1075.9577+(-44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250400, assembly_id= 102499, from= IP3; - MCO.B23L3.B2:MCO, at= -1074.8667+(-44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250402, assembly_id= 102500, from= IP3; - MCD.B23L3.B2:MCD, at= -1074.8652+(-44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250403, assembly_id= 102500, from= IP3; - MB.C23L3.B2:MB, at= -1067.3807+(-43.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826530, assembly_id= 102500, from= IP3; - MCS.C23L3.B2:MCS, at= -1059.9567+(-43-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243513, assembly_id= 102500, from= IP3; - MB.B23L3.B2:MB, at= -1051.7207+(-42.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826554, assembly_id= 102501, from= IP3; - MCS.B23L3.B2:MCS, at= -1044.2967+(-42-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243516, assembly_id= 102501, from= IP3; - MCO.A23L3.B2:MCO, at= -1043.5467+(-42-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250406, assembly_id= 102502, from= IP3; - MCD.A23L3.B2:MCD, at= -1043.5452+(-42-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250407, assembly_id= 102502, from= IP3; - MB.A23L3.B2:MB, at= -1036.0607+(-41.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826578, assembly_id= 102502, from= IP3; - MCS.A23L3.B2:MCS, at= -1028.6367+(-41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243521, assembly_id= 102502, from= IP3; - BPM.22L3.B2:BPM, at= -1027.7577+(-41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243523, assembly_id= 102503, from= IP3; - MO.22L3.B2:MO, at= -1027.0067+(-41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2309040, assembly_id= 102503, from= IP3; -MQ.22L3.B2:MQ, at= -1024.9957+(-41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308274, assembly_id= 102503, from= IP3; - MS.22L3.B2:MS, at= -1023.1007+(-41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250410, assembly_id= 102503, from= IP3; - MCBV.22L3.B2:MCBV, at= -1022.5077+(-41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250412, assembly_id= 102503, from= IP3; - MB.C22L3.B2:MB, at= -1013.9307+(-40.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826602, assembly_id= 102504, from= IP3; - MCS.C22L3.B2:MCS, at= -1006.5067+(-40-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243529, assembly_id= 102504, from= IP3; - MCO.22L3.B2:MCO, at= -1005.7567+(-40-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250414, assembly_id= 102505, from= IP3; - MCD.22L3.B2:MCD, at= -1005.7552+(-40-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250415, assembly_id= 102505, from= IP3; - MB.B22L3.B2:MB, at= -998.2707+(-39.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826626, assembly_id= 102505, from= IP3; - MCS.B22L3.B2:MCS, at= -990.8467+(-39-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243534, assembly_id= 102505, from= IP3; - MB.A22L3.B2:MB, at= -982.6107+(-38.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826650, assembly_id= 102506, from= IP3; - MCS.A22L3.B2:MCS, at= -975.1867+(-38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243537, assembly_id= 102506, from= IP3; - BPM.21L3.B2:BPM, at= -974.3077+(-38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243539, assembly_id= 102507, from= IP3; - MQT.21L3.B2:MQT, at= -973.5537+(-38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307258, assembly_id= 102507, from= IP3; -MQ.21L3.B2:MQ, at= -971.5457+(-38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308243, assembly_id= 102507, from= IP3; - MS.21L3.B2:MS, at= -969.6507+(-38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250418, assembly_id= 102507, from= IP3; - MCBH.21L3.B2:MCBH, at= -969.0577+(-38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250420, assembly_id= 102507, from= IP3; - MCO.B21L3.B2:MCO, at= -967.9667+(-38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250422, assembly_id= 102508, from= IP3; - MCD.B21L3.B2:MCD, at= -967.9652+(-38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250423, assembly_id= 102508, from= IP3; - MB.C21L3.B2:MB, at= -960.4807+(-37.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826674, assembly_id= 102508, from= IP3; - MCS.C21L3.B2:MCS, at= -953.0567+(-37-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243547, assembly_id= 102508, from= IP3; - MB.B21L3.B2:MB, at= -944.8207+(-36.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826698, assembly_id= 102509, from= IP3; - MCS.B21L3.B2:MCS, at= -937.3967+(-36-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243550, assembly_id= 102509, from= IP3; - MCO.A21L3.B2:MCO, at= -936.6467+(-36-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250426, assembly_id= 102510, from= IP3; - MCD.A21L3.B2:MCD, at= -936.6452+(-36-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250427, assembly_id= 102510, from= IP3; - MB.A21L3.B2:MB, at= -929.1607+(-35.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826722, assembly_id= 102510, from= IP3; - MCS.A21L3.B2:MCS, at= -921.7367+(-35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243555, assembly_id= 102510, from= IP3; - BPM.20L3.B2:BPM, at= -920.8577+(-35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243557, assembly_id= 102511, from= IP3; - MQT.20L3.B2:MQT, at= -920.1037+(-35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307461, assembly_id= 102511, from= IP3; -MQ.20L3.B2:MQ, at= -918.0957+(-35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308213, assembly_id= 102511, from= IP3; - MS.20L3.B2:MS, at= -916.2007+(-35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250430, assembly_id= 102511, from= IP3; - MCBV.20L3.B2:MCBV, at= -915.6077+(-35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250432, assembly_id= 102511, from= IP3; - MB.C20L3.B2:MB, at= -907.0307+(-34.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826746, assembly_id= 102512, from= IP3; - MCS.C20L3.B2:MCS, at= -899.6067+(-34-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243563, assembly_id= 102512, from= IP3; - MCO.20L3.B2:MCO, at= -898.8567+(-34-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250434, assembly_id= 102513, from= IP3; - MCD.20L3.B2:MCD, at= -898.8552+(-34-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250435, assembly_id= 102513, from= IP3; - MB.B20L3.B2:MB, at= -891.3707+(-33.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826770, assembly_id= 102513, from= IP3; - MCS.B20L3.B2:MCS, at= -883.9467+(-33-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243568, assembly_id= 102513, from= IP3; - MB.A20L3.B2:MB, at= -875.7107+(-32.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826794, assembly_id= 102514, from= IP3; - MCS.A20L3.B2:MCS, at= -868.2867+(-32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243571, assembly_id= 102514, from= IP3; - BPM.19L3.B2:BPM, at= -867.4077+(-32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243573, assembly_id= 102515, from= IP3; - MQT.19L3.B2:MQT, at= -866.6537+(-32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307432, assembly_id= 102515, from= IP3; -MQ.19L3.B2:MQ, at= -864.6457+(-32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308421, assembly_id= 102515, from= IP3; - MS.19L3.B2:MS, at= -862.7507+(-32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250438, assembly_id= 102515, from= IP3; - MCBH.19L3.B2:MCBH, at= -862.1577+(-32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250440, assembly_id= 102515, from= IP3; - MCO.B19L3.B2:MCO, at= -861.0667+(-32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250442, assembly_id= 102516, from= IP3; - MCD.B19L3.B2:MCD, at= -861.0652+(-32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250443, assembly_id= 102516, from= IP3; - MB.C19L3.B2:MB, at= -853.5807+(-31.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826818, assembly_id= 102516, from= IP3; - MCS.C19L3.B2:MCS, at= -846.1567+(-31-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243581, assembly_id= 102516, from= IP3; - MB.B19L3.B2:MB, at= -837.9207+(-30.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826842, assembly_id= 102517, from= IP3; - MCS.B19L3.B2:MCS, at= -830.4967+(-30-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243584, assembly_id= 102517, from= IP3; - MCO.A19L3.B2:MCO, at= -829.7467+(-30-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250446, assembly_id= 102518, from= IP3; - MCD.A19L3.B2:MCD, at= -829.7452+(-30-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250447, assembly_id= 102518, from= IP3; - MB.A19L3.B2:MB, at= -822.2607+(-29.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826866, assembly_id= 102518, from= IP3; - MCS.A19L3.B2:MCS, at= -814.8367+(-29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243589, assembly_id= 102518, from= IP3; - BPM.18L3.B2:BPM, at= -813.9577+(-29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243591, assembly_id= 102519, from= IP3; - MQT.18L3.B2:MQT, at= -813.2037+(-29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307400, assembly_id= 102519, from= IP3; -MQ.18L3.B2:MQ, at= -811.1957+(-29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308390, assembly_id= 102519, from= IP3; - MS.18L3.B2:MS, at= -809.3007+(-29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250450, assembly_id= 102519, from= IP3; - MCBV.18L3.B2:MCBV, at= -808.7077+(-29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250452, assembly_id= 102519, from= IP3; - MB.C18L3.B2:MB, at= -800.1307+(-28.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826890, assembly_id= 102520, from= IP3; - MCS.C18L3.B2:MCS, at= -792.7067+(-28-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243597, assembly_id= 102520, from= IP3; - MCO.18L3.B2:MCO, at= -791.9567+(-28-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250454, assembly_id= 102521, from= IP3; - MCD.18L3.B2:MCD, at= -791.9552+(-28-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250455, assembly_id= 102521, from= IP3; - MB.B18L3.B2:MB, at= -784.4707+(-27.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826914, assembly_id= 102521, from= IP3; - MCS.B18L3.B2:MCS, at= -777.0467+(-27-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243602, assembly_id= 102521, from= IP3; - MB.A18L3.B2:MB, at= -768.8107+(-26.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826938, assembly_id= 102522, from= IP3; - MCS.A18L3.B2:MCS, at= -761.3867+(-26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243605, assembly_id= 102522, from= IP3; - BPM.17L3.B2:BPM, at= -760.5077+(-26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243607, assembly_id= 102523, from= IP3; - MQT.17L3.B2:MQT, at= -759.7537+(-26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307605, assembly_id= 102523, from= IP3; -MQ.17L3.B2:MQ, at= -757.7457+(-26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308360, assembly_id= 102523, from= IP3; - MS.17L3.B2:MS, at= -755.8507+(-26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250458, assembly_id= 102523, from= IP3; - MCBH.17L3.B2:MCBH, at= -755.2577+(-26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250460, assembly_id= 102523, from= IP3; - MCO.B17L3.B2:MCO, at= -754.1667+(-26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250462, assembly_id= 102524, from= IP3; - MCD.B17L3.B2:MCD, at= -754.1652+(-26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250463, assembly_id= 102524, from= IP3; - MB.C17L3.B2:MB, at= -746.6807+(-25.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826962, assembly_id= 102524, from= IP3; - MCS.C17L3.B2:MCS, at= -739.2567+(-25-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243615, assembly_id= 102524, from= IP3; - MB.B17L3.B2:MB, at= -731.0207+(-24.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52826986, assembly_id= 102525, from= IP3; - MCS.B17L3.B2:MCS, at= -723.5967+(-24-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243618, assembly_id= 102525, from= IP3; - MCO.A17L3.B2:MCO, at= -722.8467+(-24-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250466, assembly_id= 102526, from= IP3; - MCD.A17L3.B2:MCD, at= -722.8452+(-24-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250467, assembly_id= 102526, from= IP3; - MB.A17L3.B2:MB, at= -715.3607+(-23.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827010, assembly_id= 102526, from= IP3; - MCS.A17L3.B2:MCS, at= -707.9367+(-23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243623, assembly_id= 102526, from= IP3; - BPM.16L3.B2:BPM, at= -707.0577+(-23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243625, assembly_id= 102527, from= IP3; - MQT.16L3.B2:MQT, at= -706.3037+(-23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307575, assembly_id= 102527, from= IP3; -MQ.16L3.B2:MQ, at= -704.2957+(-23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308330, assembly_id= 102527, from= IP3; - MS.16L3.B2:MS, at= -702.4007+(-23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250470, assembly_id= 102527, from= IP3; - MCBV.16L3.B2:MCBV, at= -701.8077+(-23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250472, assembly_id= 102527, from= IP3; - MB.C16L3.B2:MB, at= -693.2307+(-22.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827034, assembly_id= 102528, from= IP3; - MCS.C16L3.B2:MCS, at= -685.8067+(-22-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243631, assembly_id= 102528, from= IP3; - MCO.16L3.B2:MCO, at= -685.0567+(-22-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250474, assembly_id= 102529, from= IP3; - MCD.16L3.B2:MCD, at= -685.0552+(-22-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250475, assembly_id= 102529, from= IP3; - MB.B16L3.B2:MB, at= -677.5707+(-21.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827058, assembly_id= 102529, from= IP3; - MCS.B16L3.B2:MCS, at= -670.1467+(-21-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243636, assembly_id= 102529, from= IP3; - MB.A16L3.B2:MB, at= -661.9107+(-20.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827082, assembly_id= 102530, from= IP3; - MCS.A16L3.B2:MCS, at= -654.4867+(-20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243639, assembly_id= 102530, from= IP3; - BPM.15L3.B2:BPM, at= -653.6077+(-20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243641, assembly_id= 102531, from= IP3; - MQT.15L3.B2:MQT, at= -652.8537+(-20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307544, assembly_id= 102531, from= IP3; -MQ.15L3.B2:MQ, at= -650.8457+(-20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308537, assembly_id= 102531, from= IP3; - MS.15L3.B2:MS, at= -648.9507+(-20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250478, assembly_id= 102531, from= IP3; - MCBH.15L3.B2:MCBH, at= -648.3577+(-20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250480, assembly_id= 102531, from= IP3; - MCO.B15L3.B2:MCO, at= -647.2667+(-20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250482, assembly_id= 102532, from= IP3; - MCD.B15L3.B2:MCD, at= -647.2652+(-20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250483, assembly_id= 102532, from= IP3; - MB.C15L3.B2:MB, at= -639.7807+(-19.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827106, assembly_id= 102532, from= IP3; - MCS.C15L3.B2:MCS, at= -632.3567+(-19-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243649, assembly_id= 102532, from= IP3; - MB.B15L3.B2:MB, at= -624.1207+(-18.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827130, assembly_id= 102533, from= IP3; - MCS.B15L3.B2:MCS, at= -616.6967+(-18-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243652, assembly_id= 102533, from= IP3; - MCO.A15L3.B2:MCO, at= -615.9467+(-18-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250486, assembly_id= 102534, from= IP3; - MCD.A15L3.B2:MCD, at= -615.9452+(-18-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250487, assembly_id= 102534, from= IP3; - MB.A15L3.B2:MB, at= -608.4607+(-17.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827154, assembly_id= 102534, from= IP3; - MCS.A15L3.B2:MCS, at= -601.0367+(-17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243657, assembly_id= 102534, from= IP3; - BPM.14L3.B2:BPM, at= -600.1577+(-17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243659, assembly_id= 102535, from= IP3; - MQT.14L3.B2:MQT, at= -599.4037+(-17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307512, assembly_id= 102535, from= IP3; -MQ.14L3.B2:MQ, at= -597.3957+(-17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308507, assembly_id= 102535, from= IP3; - MS.14L3.B2:MS, at= -595.5007+(-17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250490, assembly_id= 102535, from= IP3; - MCBV.14L3.B2:MCBV, at= -594.9077+(-17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250492, assembly_id= 102535, from= IP3; - MB.C14L3.B2:MB, at= -586.3307+(-16.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827178, assembly_id= 102536, from= IP3; - MCS.C14L3.B2:MCS, at= -578.9067+(-16-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243665, assembly_id= 102536, from= IP3; - MCO.14L3.B2:MCO, at= -578.1567+(-16-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250494, assembly_id= 102537, from= IP3; - MCD.14L3.B2:MCD, at= -578.1552+(-16-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250495, assembly_id= 102537, from= IP3; - MB.B14L3.B2:MB, at= -570.6707+(-15.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827202, assembly_id= 102537, from= IP3; - MCS.B14L3.B2:MCS, at= -563.2467+(-15-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243670, assembly_id= 102537, from= IP3; - MB.A14L3.B2:MB, at= -555.0107+(-14.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827226, assembly_id= 102538, from= IP3; - MCS.A14L3.B2:MCS, at= -547.5867+(-14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243673, assembly_id= 102538, from= IP3; -S.DS.L3.B2:OMK, at= -547.1807+(-14-IP3OFS.B2)*DS, slot_id= 100932, from= IP3; - BPM.13L3.B2:BPM, at= -546.7077+(-14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243675, assembly_id= 102539, from= IP3; - MQT.13L3.B2:MQT, at= -545.9537+(-14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307720, assembly_id= 102539, from= IP3; -MQ.13L3.B2:MQ, at= -543.9457+(-14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308477, assembly_id= 102539, from= IP3; - MS.13L3.B2:MS, at= -542.0507+(-14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250498, assembly_id= 102539, from= IP3; - MCBH.13L3.B2:MCBH, at= -541.4577+(-14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250500, assembly_id= 102539, from= IP3; - MCO.B13L3.B2:MCO, at= -540.3667+(-14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250502, assembly_id= 102540, from= IP3; - MCD.B13L3.B2:MCD, at= -540.3652+(-14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250503, assembly_id= 102540, from= IP3; - MB.C13L3.B2:MB, at= -532.8807+(-13.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827250, assembly_id= 102540, from= IP3; - MCS.C13L3.B2:MCS, at= -525.4567+(-13-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243683, assembly_id= 102540, from= IP3; - MB.B13L3.B2:MB, at= -517.2207+(-12.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827274, assembly_id= 102541, from= IP3; - MCS.B13L3.B2:MCS, at= -509.7967+(-12-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243686, assembly_id= 102541, from= IP3; - MCO.A13L3.B2:MCO, at= -509.0467+(-12-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250506, assembly_id= 102542, from= IP3; - MCD.A13L3.B2:MCD, at= -509.0452+(-12-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250507, assembly_id= 102542, from= IP3; - MB.A13L3.B2:MB, at= -501.5607+(-11.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827298, assembly_id= 102542, from= IP3; - MCS.A13L3.B2:MCS, at= -494.1367+(-11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243691, assembly_id= 102542, from= IP3; - BPM.12L3.B2:BPM, at= -493.2577+(-11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243693, assembly_id= 102543, from= IP3; - MQT.12L3.B2:MQT, at= -492.5037+(-11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307688, assembly_id= 102543, from= IP3; -MQ.12L3.B2:MQ, at= -490.4957+(-11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308447, assembly_id= 102543, from= IP3; - MS.12L3.B2:MS, at= -488.6007+(-11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250510, assembly_id= 102543, from= IP3; - MCBV.12L3.B2:MCBV, at= -488.0077+(-11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250512, assembly_id= 102543, from= IP3; - MB.C12L3.B2:MB, at= -479.4307+(-10.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827322, assembly_id= 102544, from= IP3; - MCS.C12L3.B2:MCS, at= -472.0067+(-10-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243699, assembly_id= 102544, from= IP3; - MCO.12L3.B2:MCO, at= -471.2567+(-10-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250514, assembly_id= 102545, from= IP3; - MCD.12L3.B2:MCD, at= -471.2552+(-10-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250515, assembly_id= 102545, from= IP3; - MB.B12L3.B2:MB, at= -463.7707+(-9.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827346, assembly_id= 102545, from= IP3; - MCS.B12L3.B2:MCS, at= -456.3467+(-9-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243704, assembly_id= 102545, from= IP3; - MB.A12L3.B2:MB, at= -448.1107+(-8.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827370, assembly_id= 102546, from= IP3; - MCS.A12L3.B2:MCS, at= -440.6867+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243707, assembly_id= 102546, from= IP3; -E.ARC.23.B2:OMK, at= -440.2807+(-8-IP3OFS.B2)*DS, slot_id= 100932, from= IP3; - BPM.11L3.B2:BPM, at= -439.8077+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243709, assembly_id= 102547, from= IP3; -MQ.11L3.B2:MQ, at= -437.2607+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308654, assembly_id= 102547, from= IP3; - MQTLI.11L3.B2:MQTLI, at= -434.8917+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307342, assembly_id= 102547, from= IP3; - MS.11L3.B2:MS, at= -433.8797+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250518, assembly_id= 102547, from= IP3; - MCBH.11L3.B2:MCBH, at= -433.2867+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250520, assembly_id= 102547, from= IP3; - LEFL.11L3.B2:LEFL, at= -425.67735+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52997838, assembly_id= 102548, from= IP3; - MCO.11L3.B2:MCO, at= -418.475+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250522, assembly_id= 102549, from= IP3; - MCD.11L3.B2:MCD, at= -418.4735+(-8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250523, assembly_id= 102549, from= IP3; - MB.B11L3.B2:MB, at= -410.989+(-7.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827394, assembly_id= 102549, from= IP3; - MCS.B11L3.B2:MCS, at= -403.565+(-7-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243717, assembly_id= 102549, from= IP3; - MB.A11L3.B2:MB, at= -395.329+(-6.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827418, assembly_id= 102550, from= IP3; - MCS.A11L3.B2:MCS, at= -387.905+(-6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243720, assembly_id= 102550, from= IP3; - BPM.10L3.B2:BPM, at= -387.026+(-6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243722, assembly_id= 102551, from= IP3; -MQ.10L3.B2:MQ, at= -384.479+(-6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308643, assembly_id= 102551, from= IP3; - MQTLI.10L3.B2:MQTLI, at= -382.11+(-6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307331, assembly_id= 102551, from= IP3; - MCBCV.10L3.B2:MCBCV, at= -380.82+(-6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250526, assembly_id= 102551, from= IP3; - MCO.10L3.B2:MCO, at= -379.41+(-6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250528, assembly_id= 102552, from= IP3; - MCD.10L3.B2:MCD, at= -379.4085+(-6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250529, assembly_id= 102552, from= IP3; - MB.B10L3.B2:MB, at= -371.924+(-5.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827442, assembly_id= 102552, from= IP3; - MCS.B10L3.B2:MCS, at= -364.5+(-5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243730, assembly_id= 102552, from= IP3; - MB.A10L3.B2:MB, at= -356.264+(-4.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827466, assembly_id= 102553, from= IP3; - MCS.A10L3.B2:MCS, at= -348.84+(-4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243733, assembly_id= 102553, from= IP3; - BPM.9L3.B2:BPM, at= -347.96+(-4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243735, assembly_id= 102554, from= IP3; -MQ.9L3.B2:MQ, at= -345.413+(-4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307948, assembly_id= 102554, from= IP3; - MQTLI.B9L3.B2:MQTLI, at= -343.044+(-4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307158, assembly_id= 102554, from= IP3; - MQTLI.A9L3.B2:MQTLI, at= -341.589+(-4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307151, assembly_id= 102554, from= IP3; - MCBCH.9L3.B2:MCBCH, at= -340.299+(-4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250532, assembly_id= 102554, from= IP3; - MCO.9L3.B2:MCO, at= -338.945+(-4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250534, assembly_id= 102555, from= IP3; - MCD.9L3.B2:MCD, at= -338.9435+(-4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250535, assembly_id= 102555, from= IP3; - MB.B9L3.B2:MB, at= -331.459+(-3.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827490, assembly_id= 102555, from= IP3; - MCS.B9L3.B2:MCS, at= -324.035+(-3-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243744, assembly_id= 102555, from= IP3; - MB.A9L3.B2:MB, at= -315.799+(-2.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827514, assembly_id= 102556, from= IP3; - MCS.A9L3.B2:MCS, at= -308.375+(-2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243747, assembly_id= 102556, from= IP3; - BPM.8L3.B2:BPM, at= -307.496+(-2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243749, assembly_id= 102557, from= IP3; -MQ.8L3.B2:MQ, at= -304.949+(-2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348463, assembly_id= 102557, from= IP3; - MQTLI.8L3.B2:MQTLI, at= -302.58+(-2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307143, assembly_id= 102557, from= IP3; - MCBCV.8L3.B2:MCBCV, at= -301.29+(-2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250538, assembly_id= 102557, from= IP3; - MCO.8L3.B2:MCO, at= -299.88+(-2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250540, assembly_id= 102558, from= IP3; - MCD.8L3.B2:MCD, at= -299.8785+(-2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250541, assembly_id= 102558, from= IP3; - MB.B8L3.B2:MB, at= -292.394+(-1.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827538, assembly_id= 102558, from= IP3; - MCS.B8L3.B2:MCS, at= -284.97+(-1-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243757, assembly_id= 102558, from= IP3; - MB.A8L3.B2:MB, at= -276.734+(-.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849498, assembly_id= 102559, from= IP3; - MCS.A8L3.B2:MCS, at= -269.31+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357298, assembly_id= 102559, from= IP3; -E.DS.L3.B2:OMK, at= -268.904+(0-IP3OFS.B2)*DS, slot_id= 100932, from= IP3; - BPM.7L3.B2:BPM, at= -268.431+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243762, assembly_id= 102560, from= IP3; -MQ.7L3.B2:MQ, at= -265.884+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307933, assembly_id= 102560, from= IP3; - MQTLI.7L3.B2:MQTLI, at= -263.515+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307369, assembly_id= 102560, from= IP3; - MCBCH.7L3.B2:MCBCH, at= -262.225+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250544, assembly_id= 102560, from= IP3; - DFBAE.7L3.B2:DFBAE, at= -260.0715+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52996647, assembly_id= 104678, from= IP3; - TCLA.7L3.B2:TCLA, at= -250.455+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 479332, from= IP3; - BTVM.7L3.B2:BTVM, at= -239.855+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357148, from= IP3; - MCBCV.6L3.B2:MCBCV, at= -205.73+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250546, assembly_id= 102561, from= IP3; - MQTLH.F6L3.B2:MQTLH, at= -204.439+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307324, assembly_id= 102561, from= IP3; - MQTLH.E6L3.B2:MQTLH, at= -202.983+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307316, assembly_id= 102561, from= IP3; - MQTLH.D6L3.B2:MQTLH, at= -201.527+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307309, assembly_id= 102561, from= IP3; - MQTLH.C6L3.B2:MQTLH, at= -200.072+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307301, assembly_id= 102561, from= IP3; - MQTLH.B6L3.B2:MQTLH, at= -198.617+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307294, assembly_id= 102561, from= IP3; - MQTLH.A6L3.B2:MQTLH, at= -197.162+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307286, assembly_id= 102561, from= IP3; - BPMR.6L3.B2:BPMR, at= -195.792+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 377944, assembly_id= 102561, from= IP3; - MBW.F6L3.B2:MBW, at= -191.466+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52819810, from= IP3; - MBW.E6L3.B2:MBW, at= -187.231+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52819834, from= IP3; - MBW.D6L3.B2:MBW, at= -182.996+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52819858, from= IP3; - TCLA.6L3.B2:TCLA, at= -179.0495+(0-IP3OFS.B2)*DS, mech_sep= 0.2032, slot_id= 479333, from= IP3; - MBW.C6L3.B2:MBW, at= -164.973+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 52819882, from= IP3; - MBW.B6L3.B2:MBW, at= -160.738+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 52819906, from= IP3; - MBW.A6L3.B2:MBW, at= -156.503+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 52819930, from= IP3; - BPMWJ.A5L3.B2:BPMWJ, at= -154.1635+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 6703874, from= IP3; - MQWA.E5L3.B2:MQWA, at= -150.548+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303037, from= IP3; - MQWA.D5L3.B2:MQWA, at= -146.748+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303038, from= IP3; - MQWA.C5L3.B2:MQWA, at= -138.708+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303039, from= IP3; - MQWB.5L3.B2:MQWB, at= -134.908+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2305278, from= IP3; - MQWA.B5L3.B2:MQWA, at= -131.108+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303040, from= IP3; - MQWA.A5L3.B2:MQWA, at= -127.308+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303041, from= IP3; - BPMW.5L3.B2:BPMW_013, at= -125.1935+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 297847, from= IP3; - MCBWH.5L3.B2:MCBWH, at= -123.653+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 297845, from= IP3; - TCLA.B5L3.B2:TCLA, at= -92.5+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 479335, from= IP3; - TCLA.A5L3.B2:TCLA, at= -90.5+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 479336, from= IP3; - TCSG.B5L3.B2:TCSG, at= -60.02+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 102567, from= IP3; - TCSG.A5L3.B2:TCSG, at= -54.2+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 281846, from= IP3; - BPMWE.4L3.B2:BPMWE007, at= -50.0655+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 297871, from= IP3; - MQWA.E4L3.B2:MQWA, at= -47.875+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303044, from= IP3; - TCSG.4L3.B2:TCSG, at= -42.855+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 297868, from= IP3; - MQWA.D4L3.B2:MQWA, at= -39.835+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303045, from= IP3; - MQWA.C4L3.B2:MQWA, at= -36.035+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303046, from= IP3; - MQWB.4L3.B2:MQWB, at= -32.235+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303043, from= IP3; - MQWA.B4L3.B2:MQWA, at= -28.435+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303047, from= IP3; - MQWA.A4L3.B2:MQWA, at= -24.635+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303048, from= IP3; - BPMW.4L3.B2:BPMW_014, at= -22.5205+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 297861, from= IP3; - MCBWV.4L3.B2:MCBWV, at= -21.03+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 297860, from= IP3; -IP3:OMK, at= pIP3+IP3OFS.B2*DS; - MCBWH.4R3.B2:MCBWH, at= 18.7+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 134547, from= IP3; - BPMW.4R3.B2:BPMW_010, at= 22.4445+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 182513, from= IP3; - MQWA.A4R3.B2:MQWA, at= 24.635+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2348364, from= IP3; - MQWA.B4R3.B2:MQWA, at= 28.435+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303051, from= IP3; - MQWB.4R3.B2:MQWB, at= 32.235+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 2303050, from= IP3; - MQWA.C4R3.B2:MQWA, at= 36.035+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241700, from= IP3; - MQWA.D4R3.B2:MQWA, at= 39.835+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241701, from= IP3; - MQWA.E4R3.B2:MQWA, at= 47.875+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241702, from= IP3; - BPMWE.4R3.B2:BPMWE003, at= 49.9895+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 182514, from= IP3; - MCBWV.5R3.B2:MCBWV, at= 121.323+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 134555, from= IP3; - BPMW.5R3.B2:BPMW_015, at= 125.1175+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 182516, from= IP3; - MQWA.A5R3.B2:MQWA, at= 127.308+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241705, from= IP3; - MQWA.B5R3.B2:MQWA, at= 131.108+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241706, from= IP3; - MQWB.5R3.B2:MQWB, at= 134.908+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241704, from= IP3; - MQWA.C5R3.B2:MQWA, at= 138.708+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241707, from= IP3; - TCSG.5R3.B2:TCSG, at= 143.728+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 114819, from= IP3; - MQWA.D5R3.B2:MQWA, at= 146.748+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241708, from= IP3; - MQWA.E5R3.B2:MQWA, at= 150.548+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 241709, from= IP3; - TCAPD.5R3.B2:TCAPD, at= 153.051+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 6703862, from= IP3; - BPMWE.A5R3.B2:BPMWE008, at= 153.8355+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 182515, from= IP3; - MBW.A6R3.B2:MBW, at= 156.351+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 52819954, from= IP3; - MBW.B6R3.B2:MBW, at= 160.586+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 52819978, from= IP3; - MBW.C6R3.B2:MBW, at= 164.821+(0-IP3OFS.B2)*DS, mech_sep= 0.2240, slot_id= 52820002, from= IP3; - TCAPA.6R3.B2:TCAPA020, at= 168.173+(0-IP3OFS.B2)*DS, mech_sep= 0.2212, slot_id= 691019, from= IP3; - TCP.6R3.B2:TCP, at= 177.0495+(0-IP3OFS.B2)*DS, mech_sep= 0.2054, slot_id= 281848, from= IP3; - MBW.D6R3.B2:MBW, at= 182.844+(0-IP3OFS.B2)*DS, mech_sep= 0.1986, slot_id= 52820026, from= IP3; - MBW.E6R3.B2:MBW, at= 187.079+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52820050, from= IP3; - MBW.F6R3.B2:MBW, at= 191.314+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52820074, from= IP3; - BPMWC.6R3.B2:BPMWC, at= 193.6535+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 181637, from= IP3; - MCBCH.6R3.B2:MCBCH, at= 195.87+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250548, assembly_id= 102578, from= IP3; - MQTLH.A6R3.B2:MQTLH, at= 197.161+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307290, assembly_id= 102578, from= IP3; - MQTLH.B6R3.B2:MQTLH, at= 198.617+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348434, assembly_id= 102578, from= IP3; - MQTLH.C6R3.B2:MQTLH, at= 200.073+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307305, assembly_id= 102578, from= IP3; - MQTLH.D6R3.B2:MQTLH, at= 201.528+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307312, assembly_id= 102578, from= IP3; - MQTLH.E6R3.B2:MQTLH, at= 202.983+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307320, assembly_id= 102578, from= IP3; - MQTLH.F6R3.B2:MQTLH, at= 204.438+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307327, assembly_id= 102578, from= IP3; - BPM.6R3.B2:BPM, at= 205.808+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 377946, assembly_id= 102578, from= IP3; - DFBAF.7R3.B2:DFBAF, at= 259.8215+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52996671, assembly_id= 104679, from= IP3; - BPM_A.7R3.B2:BPM_A, at= 261.632+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 377947, assembly_id= 102579, from= IP3; -MQ.7R3.B2:MQ, at= 264.179+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307937, assembly_id= 102579, from= IP3; - MQTLI.7R3.B2:MQTLI, at= 266.548+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307140, assembly_id= 102579, from= IP3; - MCBCV.7R3.B2:MCBCV, at= 267.838+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250550, assembly_id= 102579, from= IP3; -S.DS.R3.B2:OMK, at= 268.904+(0-IP3OFS.B2)*DS, slot_id= 100932, from= IP3; - MCO.8R3.B2:MCO, at= 269.248+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250552, assembly_id= 102580, from= IP3; - MCD.8R3.B2:MCD, at= 269.2495+(0-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250553, assembly_id= 102580, from= IP3; - MB.A8R3.B2:MB, at= 276.734+(.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827562, assembly_id= 102580, from= IP3; - MCS.A8R3.B2:MCS, at= 284.158+(1-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243823, assembly_id= 102580, from= IP3; - MB.B8R3.B2:MB, at= 292.394+(1.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827586, assembly_id= 102581, from= IP3; - MCS.B8R3.B2:MCS, at= 299.818+(2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243826, assembly_id= 102581, from= IP3; - BPM.8R3.B2:BPM, at= 300.697+(2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243828, assembly_id= 102582, from= IP3; -MQ.8R3.B2:MQ, at= 303.244+(2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307944, assembly_id= 102582, from= IP3; - MQTLI.8R3.B2:MQTLI, at= 305.613+(2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307147, assembly_id= 102582, from= IP3; - MCBCH.8R3.B2:MCBCH, at= 306.903+(2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250556, assembly_id= 102582, from= IP3; - MCO.9R3.B2:MCO, at= 308.313+(2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250558, assembly_id= 102583, from= IP3; - MCD.9R3.B2:MCD, at= 308.3145+(2-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250559, assembly_id= 102583, from= IP3; - MB.A9R3.B2:MB, at= 315.799+(2.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827610, assembly_id= 102583, from= IP3; - MCS.A9R3.B2:MCS, at= 323.223+(3-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243836, assembly_id= 102583, from= IP3; - MB.B9R3.B2:MB, at= 331.459+(3.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827634, assembly_id= 102584, from= IP3; - MCS.B9R3.B2:MCS, at= 338.883+(4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243839, assembly_id= 102584, from= IP3; - BPM.9R3.B2:BPM, at= 339.763+(4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243841, assembly_id= 102585, from= IP3; -MQ.9R3.B2:MQ, at= 342.31+(4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307952, assembly_id= 102585, from= IP3; - MQTLI.A9R3.B2:MQTLI, at= 344.679+(4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348429, assembly_id= 102585, from= IP3; - MQTLI.B9R3.B2:MQTLI, at= 346.134+(4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307162, assembly_id= 102585, from= IP3; - MCBCV.9R3.B2:MCBCV, at= 347.424+(4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250562, assembly_id= 102585, from= IP3; - MCO.10R3.B2:MCO, at= 348.778+(4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250564, assembly_id= 102586, from= IP3; - MCD.10R3.B2:MCD, at= 348.7795+(4-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250565, assembly_id= 102586, from= IP3; - MB.A10R3.B2:MB, at= 356.264+(4.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827658, assembly_id= 102586, from= IP3; - MCS.A10R3.B2:MCS, at= 363.688+(5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243850, assembly_id= 102586, from= IP3; - MB.B10R3.B2:MB, at= 371.924+(5.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827682, assembly_id= 102587, from= IP3; - MCS.B10R3.B2:MCS, at= 379.348+(6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243853, assembly_id= 102587, from= IP3; - BPM.10R3.B2:BPM, at= 380.227+(6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243855, assembly_id= 102588, from= IP3; -MQ.10R3.B2:MQ, at= 382.774+(6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308647, assembly_id= 102588, from= IP3; - MQTLI.10R3.B2:MQTLI, at= 385.143+(6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307335, assembly_id= 102588, from= IP3; - MCBCH.10R3.B2:MCBCH, at= 386.433+(6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250568, assembly_id= 102588, from= IP3; - MCO.11R3.B2:MCO, at= 387.843+(6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250570, assembly_id= 102589, from= IP3; - MCD.11R3.B2:MCD, at= 387.8445+(6-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250571, assembly_id= 102589, from= IP3; - MB.A11R3.B2:MB, at= 395.329+(6.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827706, assembly_id= 102589, from= IP3; - MCS.A11R3.B2:MCS, at= 402.753+(7-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243863, assembly_id= 102589, from= IP3; - MB.B11R3.B2:MB, at= 410.989+(7.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849522, assembly_id= 102590, from= IP3; - MCS.B11R3.B2:MCS, at= 418.413+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357301, assembly_id= 102590, from= IP3; - LEEL.11R3.B2:LEEL, at= 425.67735+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52997814, assembly_id= 102591, from= IP3; - BPM.11R3.B2:BPM, at= 433.0087+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243868, assembly_id= 102592, from= IP3; -MQ.11R3.B2:MQ, at= 435.5557+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308669, assembly_id= 102592, from= IP3; - MQTLI.11R3.B2:MQTLI, at= 437.9247+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307357, assembly_id= 102592, from= IP3; - MS.11R3.B2:MS, at= 438.9367+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250574, assembly_id= 102592, from= IP3; - MCBV.11R3.B2:MCBV, at= 439.5297+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250576, assembly_id= 102592, from= IP3; -S.ARC.34.B2:OMK, at= 440.2807+(8-IP3OFS.B2)*DS, slot_id= 100932, from= IP3; - MCO.A12R3.B2:MCO, at= 440.6247+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250578, assembly_id= 102593, from= IP3; - MCD.A12R3.B2:MCD, at= 440.6262+(8-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250579, assembly_id= 102593, from= IP3; - MB.A12R3.B2:MB, at= 448.1107+(8.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827730, assembly_id= 102593, from= IP3; - MCS.A12R3.B2:MCS, at= 455.5347+(9-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243876, assembly_id= 102593, from= IP3; - MB.B12R3.B2:MB, at= 463.7707+(9.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827754, assembly_id= 102594, from= IP3; - MCS.B12R3.B2:MCS, at= 471.1947+(10-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243879, assembly_id= 102594, from= IP3; - MCO.B12R3.B2:MCO, at= 471.9447+(10-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250582, assembly_id= 102595, from= IP3; - MCD.B12R3.B2:MCD, at= 471.9462+(10-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250583, assembly_id= 102595, from= IP3; - MB.C12R3.B2:MB, at= 479.4307+(10.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827778, assembly_id= 102595, from= IP3; - MCS.C12R3.B2:MCS, at= 486.8547+(11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243884, assembly_id= 102595, from= IP3; - BPM.12R3.B2:BPM, at= 487.7337+(11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243886, assembly_id= 102596, from= IP3; - MQT.12R3.B2:MQT, at= 488.4877+(11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307704, assembly_id= 102596, from= IP3; -MQ.12R3.B2:MQ, at= 490.4957+(11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308462, assembly_id= 102596, from= IP3; - MS.12R3.B2:MS, at= 492.3907+(11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250586, assembly_id= 102596, from= IP3; - MCBH.12R3.B2:MCBH, at= 492.9837+(11-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250588, assembly_id= 102596, from= IP3; - MB.A13R3.B2:MB, at= 501.5607+(11.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827802, assembly_id= 102597, from= IP3; - MCS.A13R3.B2:MCS, at= 508.9847+(12-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243892, assembly_id= 102597, from= IP3; - MCO.13R3.B2:MCO, at= 509.7347+(12-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250590, assembly_id= 102598, from= IP3; - MCD.13R3.B2:MCD, at= 509.7362+(12-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250591, assembly_id= 102598, from= IP3; - MB.B13R3.B2:MB, at= 517.2207+(12.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827826, assembly_id= 102598, from= IP3; - MCS.B13R3.B2:MCS, at= 524.6447+(13-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243897, assembly_id= 102598, from= IP3; - MB.C13R3.B2:MB, at= 532.8807+(13.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827850, assembly_id= 102599, from= IP3; - MCS.C13R3.B2:MCS, at= 540.3047+(14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243900, assembly_id= 102599, from= IP3; - BPM.13R3.B2:BPM, at= 541.1837+(14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243902, assembly_id= 102600, from= IP3; - MQT.13R3.B2:MQT, at= 541.9377+(14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307497, assembly_id= 102600, from= IP3; -MQ.13R3.B2:MQ, at= 543.9457+(14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308492, assembly_id= 102600, from= IP3; - MS.13R3.B2:MS, at= 545.8407+(14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250594, assembly_id= 102600, from= IP3; - MCBV.13R3.B2:MCBV, at= 546.4337+(14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250596, assembly_id= 102600, from= IP3; -E.DS.R3.B2:OMK, at= 547.1807+(14-IP3OFS.B2)*DS, slot_id= 100932, from= IP3; - MCO.A14R3.B2:MCO, at= 547.5247+(14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250598, assembly_id= 102601, from= IP3; - MCD.A14R3.B2:MCD, at= 547.5262+(14-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250599, assembly_id= 102601, from= IP3; - MB.A14R3.B2:MB, at= 555.0107+(14.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827874, assembly_id= 102601, from= IP3; - MCS.A14R3.B2:MCS, at= 562.4347+(15-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243910, assembly_id= 102601, from= IP3; - MB.B14R3.B2:MB, at= 570.6707+(15.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827898, assembly_id= 102602, from= IP3; - MCS.B14R3.B2:MCS, at= 578.0947+(16-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243913, assembly_id= 102602, from= IP3; - MCO.B14R3.B2:MCO, at= 578.8447+(16-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250602, assembly_id= 102603, from= IP3; - MCD.B14R3.B2:MCD, at= 578.8462+(16-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250603, assembly_id= 102603, from= IP3; - MB.C14R3.B2:MB, at= 586.3307+(16.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827922, assembly_id= 102603, from= IP3; - MCS.C14R3.B2:MCS, at= 593.7547+(17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243918, assembly_id= 102603, from= IP3; - BPM.14R3.B2:BPM, at= 594.6337+(17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243920, assembly_id= 102604, from= IP3; - MQT.14R3.B2:MQT, at= 595.3877+(17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307528, assembly_id= 102604, from= IP3; -MQ.14R3.B2:MQ, at= 597.3957+(17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308522, assembly_id= 102604, from= IP3; - MS.14R3.B2:MS, at= 599.2907+(17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250606, assembly_id= 102604, from= IP3; - MCBH.14R3.B2:MCBH, at= 599.8837+(17-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250608, assembly_id= 102604, from= IP3; - MB.A15R3.B2:MB, at= 608.4607+(17.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827946, assembly_id= 102605, from= IP3; - MCS.A15R3.B2:MCS, at= 615.8847+(18-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243926, assembly_id= 102605, from= IP3; - MCO.15R3.B2:MCO, at= 616.6347+(18-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250610, assembly_id= 102606, from= IP3; - MCD.15R3.B2:MCD, at= 616.6362+(18-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250611, assembly_id= 102606, from= IP3; - MB.B15R3.B2:MB, at= 624.1207+(18.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827970, assembly_id= 102606, from= IP3; - MCS.B15R3.B2:MCS, at= 631.5447+(19-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243931, assembly_id= 102606, from= IP3; - MB.C15R3.B2:MB, at= 639.7807+(19.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52827994, assembly_id= 102607, from= IP3; - MCS.C15R3.B2:MCS, at= 647.2047+(20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243934, assembly_id= 102607, from= IP3; - BPM.15R3.B2:BPM, at= 648.0837+(20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243936, assembly_id= 102608, from= IP3; - MQT.15R3.B2:MQT, at= 648.8377+(20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307560, assembly_id= 102608, from= IP3; -MQ.15R3.B2:MQ, at= 650.8457+(20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308552, assembly_id= 102608, from= IP3; - MS.15R3.B2:MS, at= 652.7407+(20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250614, assembly_id= 102608, from= IP3; - MCBV.15R3.B2:MCBV, at= 653.3337+(20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250616, assembly_id= 102608, from= IP3; - MCO.A16R3.B2:MCO, at= 654.4247+(20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250618, assembly_id= 102609, from= IP3; - MCD.A16R3.B2:MCD, at= 654.4262+(20-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250619, assembly_id= 102609, from= IP3; - MB.A16R3.B2:MB, at= 661.9107+(20.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828018, assembly_id= 102609, from= IP3; - MCS.A16R3.B2:MCS, at= 669.3347+(21-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243944, assembly_id= 102609, from= IP3; - MB.B16R3.B2:MB, at= 677.5707+(21.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828042, assembly_id= 102610, from= IP3; - MCS.B16R3.B2:MCS, at= 684.9947+(22-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243947, assembly_id= 102610, from= IP3; - MCO.B16R3.B2:MCO, at= 685.7447+(22-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250622, assembly_id= 102611, from= IP3; - MCD.B16R3.B2:MCD, at= 685.7462+(22-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250623, assembly_id= 102611, from= IP3; - MB.C16R3.B2:MB, at= 693.2307+(22.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828066, assembly_id= 102611, from= IP3; - MCS.C16R3.B2:MCS, at= 700.6547+(23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243952, assembly_id= 102611, from= IP3; - BPM.16R3.B2:BPM, at= 701.5337+(23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243954, assembly_id= 102612, from= IP3; - MQT.16R3.B2:MQT, at= 702.2877+(23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307590, assembly_id= 102612, from= IP3; -MQ.16R3.B2:MQ, at= 704.2957+(23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308345, assembly_id= 102612, from= IP3; - MS.16R3.B2:MS, at= 706.1907+(23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250626, assembly_id= 102612, from= IP3; - MCBH.16R3.B2:MCBH, at= 706.7837+(23-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250628, assembly_id= 102612, from= IP3; - MB.A17R3.B2:MB, at= 715.3607+(23.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828090, assembly_id= 102613, from= IP3; - MCS.A17R3.B2:MCS, at= 722.7847+(24-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243960, assembly_id= 102613, from= IP3; - MCO.17R3.B2:MCO, at= 723.5347+(24-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250630, assembly_id= 102614, from= IP3; - MCD.17R3.B2:MCD, at= 723.5362+(24-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250631, assembly_id= 102614, from= IP3; - MB.B17R3.B2:MB, at= 731.0207+(24.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828114, assembly_id= 102614, from= IP3; - MCS.B17R3.B2:MCS, at= 738.4447+(25-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243965, assembly_id= 102614, from= IP3; - MB.C17R3.B2:MB, at= 746.6807+(25.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828138, assembly_id= 102615, from= IP3; - MCS.C17R3.B2:MCS, at= 754.1047+(26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243968, assembly_id= 102615, from= IP3; - BPM.17R3.B2:BPM, at= 754.9837+(26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243970, assembly_id= 102616, from= IP3; - MQT.17R3.B2:MQT, at= 755.7377+(26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307384, assembly_id= 102616, from= IP3; -MQ.17R3.B2:MQ, at= 757.7457+(26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308375, assembly_id= 102616, from= IP3; - MS.17R3.B2:MS, at= 759.6407+(26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250634, assembly_id= 102616, from= IP3; - MCBV.17R3.B2:MCBV, at= 760.2337+(26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250636, assembly_id= 102616, from= IP3; - MCO.A18R3.B2:MCO, at= 761.3247+(26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250638, assembly_id= 102617, from= IP3; - MCD.A18R3.B2:MCD, at= 761.3262+(26-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250639, assembly_id= 102617, from= IP3; - MB.A18R3.B2:MB, at= 768.8107+(26.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828162, assembly_id= 102617, from= IP3; - MCS.A18R3.B2:MCS, at= 776.2347+(27-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243978, assembly_id= 102617, from= IP3; - MB.B18R3.B2:MB, at= 784.4707+(27.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828186, assembly_id= 102618, from= IP3; - MCS.B18R3.B2:MCS, at= 791.8947+(28-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243981, assembly_id= 102618, from= IP3; - MCO.B18R3.B2:MCO, at= 792.6447+(28-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250642, assembly_id= 102619, from= IP3; - MCD.B18R3.B2:MCD, at= 792.6462+(28-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250643, assembly_id= 102619, from= IP3; - MB.C18R3.B2:MB, at= 800.1307+(28.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828210, assembly_id= 102619, from= IP3; - MCS.C18R3.B2:MCS, at= 807.5547+(29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243986, assembly_id= 102619, from= IP3; - BPM.18R3.B2:BPM, at= 808.4337+(29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243988, assembly_id= 102620, from= IP3; - MQT.18R3.B2:MQT, at= 809.1877+(29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307416, assembly_id= 102620, from= IP3; -MQ.18R3.B2:MQ, at= 811.1957+(29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308405, assembly_id= 102620, from= IP3; - MS.18R3.B2:MS, at= 813.0907+(29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250646, assembly_id= 102620, from= IP3; - MCBH.18R3.B2:MCBH, at= 813.6837+(29-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250648, assembly_id= 102620, from= IP3; - MB.A19R3.B2:MB, at= 822.2607+(29.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828234, assembly_id= 102621, from= IP3; - MCS.A19R3.B2:MCS, at= 829.6847+(30-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243994, assembly_id= 102621, from= IP3; - MCO.19R3.B2:MCO, at= 830.4347+(30-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250650, assembly_id= 102622, from= IP3; - MCD.19R3.B2:MCD, at= 830.4362+(30-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250651, assembly_id= 102622, from= IP3; - MB.B19R3.B2:MB, at= 837.9207+(30.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828258, assembly_id= 102622, from= IP3; - MCS.B19R3.B2:MCS, at= 845.3447+(31-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 243999, assembly_id= 102622, from= IP3; - MB.C19R3.B2:MB, at= 853.5807+(31.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828282, assembly_id= 102623, from= IP3; - MCS.C19R3.B2:MCS, at= 861.0047+(32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244002, assembly_id= 102623, from= IP3; - BPM.19R3.B2:BPM, at= 861.8837+(32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244004, assembly_id= 102624, from= IP3; - MQT.19R3.B2:MQT, at= 862.6377+(32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307446, assembly_id= 102624, from= IP3; -MQ.19R3.B2:MQ, at= 864.6457+(32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308437, assembly_id= 102624, from= IP3; - MS.19R3.B2:MS, at= 866.5407+(32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250654, assembly_id= 102624, from= IP3; - MCBV.19R3.B2:MCBV, at= 867.1337+(32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250656, assembly_id= 102624, from= IP3; - MCO.A20R3.B2:MCO, at= 868.2247+(32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250658, assembly_id= 102625, from= IP3; - MCD.A20R3.B2:MCD, at= 868.2262+(32-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250659, assembly_id= 102625, from= IP3; - MB.A20R3.B2:MB, at= 875.7107+(32.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828306, assembly_id= 102625, from= IP3; - MCS.A20R3.B2:MCS, at= 883.1347+(33-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244012, assembly_id= 102625, from= IP3; - MB.B20R3.B2:MB, at= 891.3707+(33.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828330, assembly_id= 102626, from= IP3; - MCS.B20R3.B2:MCS, at= 898.7947+(34-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244015, assembly_id= 102626, from= IP3; - MCO.B20R3.B2:MCO, at= 899.5447+(34-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250662, assembly_id= 102627, from= IP3; - MCD.B20R3.B2:MCD, at= 899.5462+(34-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250663, assembly_id= 102627, from= IP3; - MB.C20R3.B2:MB, at= 907.0307+(34.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828354, assembly_id= 102627, from= IP3; - MCS.C20R3.B2:MCS, at= 914.4547+(35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244020, assembly_id= 102627, from= IP3; - BPM.20R3.B2:BPM, at= 915.3337+(35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244022, assembly_id= 102628, from= IP3; - MQT.20R3.B2:MQT, at= 916.0877+(35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307476, assembly_id= 102628, from= IP3; -MQ.20R3.B2:MQ, at= 918.0957+(35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308228, assembly_id= 102628, from= IP3; - MS.20R3.B2:MS, at= 919.9907+(35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250666, assembly_id= 102628, from= IP3; - MCBH.20R3.B2:MCBH, at= 920.5837+(35-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250668, assembly_id= 102628, from= IP3; - MB.A21R3.B2:MB, at= 929.1607+(35.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828378, assembly_id= 102629, from= IP3; - MCS.A21R3.B2:MCS, at= 936.5847+(36-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244028, assembly_id= 102629, from= IP3; - MCO.21R3.B2:MCO, at= 937.3347+(36-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250670, assembly_id= 102630, from= IP3; - MCD.21R3.B2:MCD, at= 937.3362+(36-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250671, assembly_id= 102630, from= IP3; - MB.B21R3.B2:MB, at= 944.8207+(36.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828402, assembly_id= 102630, from= IP3; - MCS.B21R3.B2:MCS, at= 952.2447+(37-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244033, assembly_id= 102630, from= IP3; - MB.C21R3.B2:MB, at= 960.4807+(37.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828426, assembly_id= 102631, from= IP3; - MCS.C21R3.B2:MCS, at= 967.9047+(38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244036, assembly_id= 102631, from= IP3; - BPM.21R3.B2:BPM, at= 968.7837+(38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244038, assembly_id= 102632, from= IP3; - MQT.21R3.B2:MQT, at= 969.5377+(38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307274, assembly_id= 102632, from= IP3; -MQ.21R3.B2:MQ, at= 971.5457+(38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308258, assembly_id= 102632, from= IP3; - MS.21R3.B2:MS, at= 973.4407+(38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250674, assembly_id= 102632, from= IP3; - MCBV.21R3.B2:MCBV, at= 974.0337+(38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250676, assembly_id= 102632, from= IP3; - MCO.A22R3.B2:MCO, at= 975.1247+(38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250678, assembly_id= 102633, from= IP3; - MCD.A22R3.B2:MCD, at= 975.1262+(38-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250679, assembly_id= 102633, from= IP3; - MB.A22R3.B2:MB, at= 982.6107+(38.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828450, assembly_id= 102633, from= IP3; - MCS.A22R3.B2:MCS, at= 990.0347+(39-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244046, assembly_id= 102633, from= IP3; - MB.B22R3.B2:MB, at= 998.2707+(39.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828474, assembly_id= 102634, from= IP3; - MCS.B22R3.B2:MCS, at= 1005.6947+(40-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244049, assembly_id= 102634, from= IP3; - MCO.B22R3.B2:MCO, at= 1006.4447+(40-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250682, assembly_id= 102635, from= IP3; - MCD.B22R3.B2:MCD, at= 1006.4462+(40-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250683, assembly_id= 102635, from= IP3; - MB.C22R3.B2:MB, at= 1013.9307+(40.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828498, assembly_id= 102635, from= IP3; - MCS.C22R3.B2:MCS, at= 1021.3547+(41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244054, assembly_id= 102635, from= IP3; - BPM.22R3.B2:BPM, at= 1022.2337+(41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244056, assembly_id= 102636, from= IP3; - MO.22R3.B2:MO, at= 1022.9847+(41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308818, assembly_id= 102636, from= IP3; -MQ.22R3.B2:MQ, at= 1024.9957+(41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308290, assembly_id= 102636, from= IP3; - MS.22R3.B2:MS, at= 1026.8907+(41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250686, assembly_id= 102636, from= IP3; - MCBH.22R3.B2:MCBH, at= 1027.4837+(41-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250688, assembly_id= 102636, from= IP3; - MB.A23R3.B2:MB, at= 1036.0607+(41.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828522, assembly_id= 102637, from= IP3; - MCS.A23R3.B2:MCS, at= 1043.4847+(42-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244062, assembly_id= 102637, from= IP3; - MCO.23R3.B2:MCO, at= 1044.2347+(42-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250690, assembly_id= 102638, from= IP3; - MCD.23R3.B2:MCD, at= 1044.2362+(42-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250691, assembly_id= 102638, from= IP3; - MB.B23R3.B2:MB, at= 1051.7207+(42.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828546, assembly_id= 102638, from= IP3; - MCS.B23R3.B2:MCS, at= 1059.1447+(43-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244067, assembly_id= 102638, from= IP3; - MB.C23R3.B2:MB, at= 1067.3807+(43.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828570, assembly_id= 102639, from= IP3; - MCS.C23R3.B2:MCS, at= 1074.8047+(44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244070, assembly_id= 102639, from= IP3; - BPM.23R3.B2:BPM, at= 1075.6837+(44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244072, assembly_id= 102640, from= IP3; - MQS.23R3.B2:MQS, at= 1076.4377+(44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307640, assembly_id= 102640, from= IP3; -MQ.23R3.B2:MQ, at= 1078.4457+(44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308321, assembly_id= 102640, from= IP3; - MS.23R3.B2:MS, at= 1080.3407+(44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250694, assembly_id= 102640, from= IP3; - MCBV.23R3.B2:MCBV, at= 1080.9337+(44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250696, assembly_id= 102640, from= IP3; - MCO.A24R3.B2:MCO, at= 1082.0247+(44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250698, assembly_id= 102641, from= IP3; - MCD.A24R3.B2:MCD, at= 1082.0262+(44-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250699, assembly_id= 102641, from= IP3; - MB.A24R3.B2:MB, at= 1089.5107+(44.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828594, assembly_id= 102641, from= IP3; - MCS.A24R3.B2:MCS, at= 1096.9347+(45-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244080, assembly_id= 102641, from= IP3; - MB.B24R3.B2:MB, at= 1105.1707+(45.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828618, assembly_id= 102642, from= IP3; - MCS.B24R3.B2:MCS, at= 1112.5947+(46-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244083, assembly_id= 102642, from= IP3; - MCO.B24R3.B2:MCO, at= 1113.3447+(46-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250702, assembly_id= 102643, from= IP3; - MCD.B24R3.B2:MCD, at= 1113.3462+(46-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250703, assembly_id= 102643, from= IP3; - MB.C24R3.B2:MB, at= 1120.8307+(46.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828642, assembly_id= 102643, from= IP3; - MCS.C24R3.B2:MCS, at= 1128.2547+(47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244088, assembly_id= 102643, from= IP3; - BPM.24R3.B2:BPM, at= 1129.1337+(47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244090, assembly_id= 102644, from= IP3; - MO.24R3.B2:MO, at= 1129.8847+(47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308848, assembly_id= 102644, from= IP3; -MQ.24R3.B2:MQ, at= 1131.8957+(47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308111, assembly_id= 102644, from= IP3; - MS.24R3.B2:MS, at= 1133.7907+(47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250706, assembly_id= 102644, from= IP3; - MCBH.24R3.B2:MCBH, at= 1134.3837+(47-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250708, assembly_id= 102644, from= IP3; - MB.A25R3.B2:MB, at= 1142.9607+(47.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828666, assembly_id= 102645, from= IP3; - MCS.A25R3.B2:MCS, at= 1150.3847+(48-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244096, assembly_id= 102645, from= IP3; - MCO.25R3.B2:MCO, at= 1151.1347+(48-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250710, assembly_id= 102646, from= IP3; - MCD.25R3.B2:MCD, at= 1151.1362+(48-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250711, assembly_id= 102646, from= IP3; - MB.B25R3.B2:MB, at= 1158.6207+(48.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828690, assembly_id= 102646, from= IP3; - MCS.B25R3.B2:MCS, at= 1166.0447+(49-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244101, assembly_id= 102646, from= IP3; - MB.C25R3.B2:MB, at= 1174.2807+(49.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828714, assembly_id= 102647, from= IP3; - MCS.C25R3.B2:MCS, at= 1181.7047+(50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244104, assembly_id= 102647, from= IP3; - BPM.25R3.B2:BPM, at= 1182.5837+(50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244106, assembly_id= 102648, from= IP3; - MO.25R3.B2:MO, at= 1183.3347+(50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308880, assembly_id= 102648, from= IP3; -MQ.25R3.B2:MQ, at= 1185.3457+(50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308143, assembly_id= 102648, from= IP3; - MS.25R3.B2:MS, at= 1187.2407+(50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250714, assembly_id= 102648, from= IP3; - MCBV.25R3.B2:MCBV, at= 1187.8337+(50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250716, assembly_id= 102648, from= IP3; - MCO.A26R3.B2:MCO, at= 1188.9247+(50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250718, assembly_id= 102649, from= IP3; - MCD.A26R3.B2:MCD, at= 1188.9262+(50-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250719, assembly_id= 102649, from= IP3; - MB.A26R3.B2:MB, at= 1196.4107+(50.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828738, assembly_id= 102649, from= IP3; - MCS.A26R3.B2:MCS, at= 1203.8347+(51-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244114, assembly_id= 102649, from= IP3; - MB.B26R3.B2:MB, at= 1212.0707+(51.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828762, assembly_id= 102650, from= IP3; - MCS.B26R3.B2:MCS, at= 1219.4947+(52-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244117, assembly_id= 102650, from= IP3; - MCO.B26R3.B2:MCO, at= 1220.2447+(52-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250722, assembly_id= 102651, from= IP3; - MCD.B26R3.B2:MCD, at= 1220.2462+(52-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250723, assembly_id= 102651, from= IP3; - MB.C26R3.B2:MB, at= 1227.7307+(52.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828786, assembly_id= 102651, from= IP3; - MCS.C26R3.B2:MCS, at= 1235.1547+(53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244122, assembly_id= 102651, from= IP3; - BPM.26R3.B2:BPM, at= 1236.0337+(53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244124, assembly_id= 102652, from= IP3; - MO.26R3.B2:MO, at= 1236.7847+(53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308912, assembly_id= 102652, from= IP3; -MQ.26R3.B2:MQ, at= 1238.7957+(53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308174, assembly_id= 102652, from= IP3; - MS.26R3.B2:MS, at= 1240.6907+(53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250726, assembly_id= 102652, from= IP3; - MCBH.26R3.B2:MCBH, at= 1241.2837+(53-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250728, assembly_id= 102652, from= IP3; - MB.A27R3.B2:MB, at= 1249.8607+(53.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828810, assembly_id= 102653, from= IP3; - MCS.A27R3.B2:MCS, at= 1257.2847+(54-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244130, assembly_id= 102653, from= IP3; - MCO.27R3.B2:MCO, at= 1258.0347+(54-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250730, assembly_id= 102654, from= IP3; - MCD.27R3.B2:MCD, at= 1258.0362+(54-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250731, assembly_id= 102654, from= IP3; - MB.B27R3.B2:MB, at= 1265.5207+(54.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828834, assembly_id= 102654, from= IP3; - MCS.B27R3.B2:MCS, at= 1272.9447+(55-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244135, assembly_id= 102654, from= IP3; - MB.C27R3.B2:MB, at= 1281.1807+(55.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828858, assembly_id= 102655, from= IP3; - MCS.C27R3.B2:MCS, at= 1288.6047+(56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244138, assembly_id= 102655, from= IP3; - BPM.27R3.B2:BPM, at= 1289.4837+(56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244140, assembly_id= 102656, from= IP3; - MQS.27R3.B2:MQS, at= 1290.2377+(56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307672, assembly_id= 102656, from= IP3; -MQ.27R3.B2:MQ, at= 1292.2457+(56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348473, assembly_id= 102656, from= IP3; - MS.27R3.B2:MS, at= 1294.1407+(56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250734, assembly_id= 102656, from= IP3; - MCBV.27R3.B2:MCBV, at= 1294.7337+(56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250736, assembly_id= 102656, from= IP3; - MCO.A28R3.B2:MCO, at= 1295.8247+(56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250738, assembly_id= 102657, from= IP3; - MCD.A28R3.B2:MCD, at= 1295.8262+(56-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250739, assembly_id= 102657, from= IP3; - MB.A28R3.B2:MB, at= 1303.3107+(56.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828882, assembly_id= 102657, from= IP3; - MCS.A28R3.B2:MCS, at= 1310.7347+(57-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244148, assembly_id= 102657, from= IP3; - MB.B28R3.B2:MB, at= 1318.9707+(57.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828906, assembly_id= 102658, from= IP3; - MCS.B28R3.B2:MCS, at= 1326.3947+(58-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244151, assembly_id= 102658, from= IP3; - MCO.B28R3.B2:MCO, at= 1327.1447+(58-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250742, assembly_id= 102659, from= IP3; - MCD.B28R3.B2:MCD, at= 1327.1462+(58-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250743, assembly_id= 102659, from= IP3; - MB.C28R3.B2:MB, at= 1334.6307+(58.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828930, assembly_id= 102659, from= IP3; - MCS.C28R3.B2:MCS, at= 1342.0547+(59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244156, assembly_id= 102659, from= IP3; - BPM.28R3.B2:BPM, at= 1342.9337+(59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51849016, assembly_id= 51848980, from= IP3; - MO.28R3.B2:MO, at= 1343.6877+(59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51849068, assembly_id= 51848980, from= IP3; -MQ.28R3.B2:MQ, at= 1345.6957+(59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51849070, assembly_id= 51848980, from= IP3; - MS.28R3.B2:MS, at= 1347.5907+(59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51849021, assembly_id= 51848980, from= IP3; - MCBH.28R3.B2:MCBH, at= 1348.1837+(59-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51849023, assembly_id= 51848980, from= IP3; - MB.A29R3.B2:MB, at= 1356.7607+(59.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828954, assembly_id= 102661, from= IP3; - MCS.A29R3.B2:MCS, at= 1364.1847+(60-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244164, assembly_id= 102661, from= IP3; - MCO.29R3.B2:MCO, at= 1364.9347+(60-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250750, assembly_id= 102662, from= IP3; - MCD.29R3.B2:MCD, at= 1364.9362+(60-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250751, assembly_id= 102662, from= IP3; - MB.B29R3.B2:MB, at= 1372.4207+(60.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52828978, assembly_id= 102662, from= IP3; - MCS.B29R3.B2:MCS, at= 1379.8447+(61-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244169, assembly_id= 102662, from= IP3; - MB.C29R3.B2:MB, at= 1388.0807+(61.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829002, assembly_id= 102663, from= IP3; - MCS.C29R3.B2:MCS, at= 1395.5047+(62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244172, assembly_id= 102663, from= IP3; - BPM.29R3.B2:BPM, at= 1396.3837+(62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244174, assembly_id= 102664, from= IP3; - MO.29R3.B2:MO, at= 1397.1347+(62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308733, assembly_id= 102664, from= IP3; -MQ.29R3.B2:MQ, at= 1399.1457+(62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308026, assembly_id= 102664, from= IP3; - MS.29R3.B2:MS, at= 1401.0407+(62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250754, assembly_id= 102664, from= IP3; - MCBV.29R3.B2:MCBV, at= 1401.6337+(62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250756, assembly_id= 102664, from= IP3; - MCO.A30R3.B2:MCO, at= 1402.7247+(62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250758, assembly_id= 102665, from= IP3; - MCD.A30R3.B2:MCD, at= 1402.7262+(62-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250759, assembly_id= 102665, from= IP3; - MB.A30R3.B2:MB, at= 1410.2107+(62.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829026, assembly_id= 102665, from= IP3; - MCS.A30R3.B2:MCS, at= 1417.6347+(63-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244182, assembly_id= 102665, from= IP3; - MB.B30R3.B2:MB, at= 1425.8707+(63.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829050, assembly_id= 102666, from= IP3; - MCS.B30R3.B2:MCS, at= 1433.2947+(64-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244185, assembly_id= 102666, from= IP3; - MCO.B30R3.B2:MCO_UNPLUGGED, at= 1434.0447+(64-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250762, assembly_id= 102667, from= IP3; - MCD.B30R3.B2:MCD, at= 1434.0462+(64-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250763, assembly_id= 102667, from= IP3; - MB.C30R3.B2:MB, at= 1441.5307+(64.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829074, assembly_id= 102667, from= IP3; - MCS.C30R3.B2:MCS, at= 1448.9547+(65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244190, assembly_id= 102667, from= IP3; - BPM.30R3.B2:BPM, at= 1449.8337+(65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244192, assembly_id= 102668, from= IP3; - MO.30R3.B2:MO, at= 1450.5847+(65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308764, assembly_id= 102668, from= IP3; -MQ.30R3.B2:MQ, at= 1452.5957+(65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308056, assembly_id= 102668, from= IP3; - MSS.30R3.B2:MSS, at= 1454.4907+(65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250766, assembly_id= 102668, from= IP3; - MCBH.30R3.B2:MCBH, at= 1455.0837+(65-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250768, assembly_id= 102668, from= IP3; - MB.A31R3.B2:MB, at= 1463.6607+(65.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829098, assembly_id= 102669, from= IP3; - MCS.A31R3.B2:MCS, at= 1471.0847+(66-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244198, assembly_id= 102669, from= IP3; - MCO.31R3.B2:MCO, at= 1471.8347+(66-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250770, assembly_id= 102670, from= IP3; - MCD.31R3.B2:MCD, at= 1471.8362+(66-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250771, assembly_id= 102670, from= IP3; - MB.B31R3.B2:MB, at= 1479.3207+(66.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829122, assembly_id= 102670, from= IP3; - MCS.B31R3.B2:MCS, at= 1486.7447+(67-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244203, assembly_id= 102670, from= IP3; - MB.C31R3.B2:MB, at= 1494.9807+(67.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829146, assembly_id= 102671, from= IP3; - MCS.C31R3.B2:MCS, at= 1502.4047+(68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244206, assembly_id= 102671, from= IP3; - BPM.31R3.B2:BPM, at= 1503.2837+(68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244208, assembly_id= 102672, from= IP3; - MO.31R3.B2:MO, at= 1504.0347+(68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308794, assembly_id= 102672, from= IP3; -MQ.31R3.B2:MQ, at= 1506.0457+(68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308085, assembly_id= 102672, from= IP3; - MS.31R3.B2:MS, at= 1507.9407+(68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250774, assembly_id= 102672, from= IP3; - MCBV.31R3.B2:MCBV, at= 1508.5337+(68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250776, assembly_id= 102672, from= IP3; -S.CELL.34.B2:OMK, at= 1509.2807+(68-IP3OFS.B2)*DS, slot_id= 100932, from= IP3; - MCO.A32R3.B2:MCO, at= 1509.6247+(68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250778, assembly_id= 102673, from= IP3; - MCD.A32R3.B2:MCD, at= 1509.6262+(68-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250779, assembly_id= 102673, from= IP3; - MB.A32R3.B2:MB, at= 1517.1107+(68.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829170, assembly_id= 102673, from= IP3; - MCS.A32R3.B2:MCS, at= 1524.5347+(69-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244216, assembly_id= 102673, from= IP3; - MB.B32R3.B2:MB, at= 1532.7707+(69.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829194, assembly_id= 102674, from= IP3; - MCS.B32R3.B2:MCS, at= 1540.1947+(70-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244219, assembly_id= 102674, from= IP3; - MCO.B32R3.B2:MCO, at= 1540.9447+(70-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250782, assembly_id= 102675, from= IP3; - MCD.B32R3.B2:MCD, at= 1540.9462+(70-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250783, assembly_id= 102675, from= IP3; - MB.C32R3.B2:MB, at= 1548.4307+(70.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829218, assembly_id= 102675, from= IP3; - MCS.C32R3.B2:MCS, at= 1555.8547+(71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244224, assembly_id= 102675, from= IP3; - BPM.32R3.B2:BPM, at= 1556.7337+(71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51851049, assembly_id= 51851014, from= IP3; - MO.32R3.B2:MO, at= 1557.4877+(71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51851083, assembly_id= 51851014, from= IP3; -MQ.32R3.B2:MQ, at= 1559.4957+(71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51851085, assembly_id= 51851014, from= IP3; - MS.32R3.B2:MS, at= 1561.3907+(71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51851054, assembly_id= 51851014, from= IP3; - MCBH.32R3.B2:MCBH, at= 1561.9837+(71-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 51851056, assembly_id= 51851014, from= IP3; - MB.A33R3.B2:MB, at= 1570.5607+(71.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829242, assembly_id= 102677, from= IP3; - MCS.A33R3.B2:MCS, at= 1577.9847+(72-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244232, assembly_id= 102677, from= IP3; - MCO.33R3.B2:MCO, at= 1578.7347+(72-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250790, assembly_id= 102678, from= IP3; - MCD.33R3.B2:MCD, at= 1578.7362+(72-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250791, assembly_id= 102678, from= IP3; - MB.B33R3.B2:MB, at= 1586.2207+(72.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829266, assembly_id= 102678, from= IP3; - MCS.B33R3.B2:MCS, at= 1593.6447+(73-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244237, assembly_id= 102678, from= IP3; - MB.C33R3.B2:MB, at= 1601.8807+(73.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829290, assembly_id= 102679, from= IP3; - MCS.C33R3.B2:MCS, at= 1609.3047+(74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244240, assembly_id= 102679, from= IP3; - BPM.33R3.B2:BPM, at= 1610.1837+(74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244242, assembly_id= 102680, from= IP3; - MO.33R3.B2:MO, at= 1610.9347+(74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308617, assembly_id= 102680, from= IP3; -MQ.33R3.B2:MQ, at= 1612.9457+(74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307907, assembly_id= 102680, from= IP3; - MS.33R3.B2:MS, at= 1614.8407+(74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250794, assembly_id= 102680, from= IP3; - MCBV.33R3.B2:MCBV, at= 1615.4337+(74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250796, assembly_id= 102680, from= IP3; -E.CELL.34.B2:OMK, at= 1616.1807+(74-IP3OFS.B2)*DS, slot_id= 100932, from= IP3; - MCO.A34R3.B2:MCO, at= 1616.5247+(74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250798, assembly_id= 102681, from= IP3; - MCD.A34R3.B2:MCD, at= 1616.5262+(74-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250799, assembly_id= 102681, from= IP3; - MB.A34R3.B2:MB, at= 1624.0107+(74.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829314, assembly_id= 102681, from= IP3; - MCS.A34R3.B2:MCS, at= 1631.4347+(75-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244250, assembly_id= 102681, from= IP3; - MB.B34R3.B2:MB, at= 1639.6707+(75.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829338, assembly_id= 102682, from= IP3; - MCS.B34R3.B2:MCS, at= 1647.0947+(76-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244253, assembly_id= 102682, from= IP3; - MCO.B34R3.B2:MCO, at= 1647.8447+(76-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250802, assembly_id= 102683, from= IP3; - MCD.B34R3.B2:MCD, at= 1647.8462+(76-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250803, assembly_id= 102683, from= IP3; - MB.C34R3.B2:MB, at= 1655.3307+(76.5-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829362, assembly_id= 102683, from= IP3; - MCS.C34R3.B2:MCS, at= 1662.7547+(77-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244258, assembly_id= 102683, from= IP3; - BPM.34R3.B2:BPM, at= 1663.6337+(77-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244260, assembly_id= 102684, from= IP3; - MO.34R3.B2:MO, at= 1664.3847+(77-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308632, assembly_id= 102684, from= IP3; -MQ.34R3.B2:MQ, at= 1666.3957+(77-IP3OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307922, assembly_id= 102684, from= IP3; - MSS.34L4.B2:MSS, at= -1664.0697+(77-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250806, assembly_id= 102684, from= IP4; - MCBH.34L4.B2:MCBH, at= -1663.4767+(77-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250808, assembly_id= 102684, from= IP4; - MB.C34L4.B2:MB, at= -1654.8997+(77.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829386, assembly_id= 102685, from= IP4; - MCS.C34L4.B2:MCS, at= -1647.4757+(78-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244266, assembly_id= 102685, from= IP4; - MCO.34L4.B2:MCO, at= -1646.7257+(78-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250810, assembly_id= 102686, from= IP4; - MCD.34L4.B2:MCD, at= -1646.7242+(78-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250811, assembly_id= 102686, from= IP4; - MB.B34L4.B2:MB, at= -1639.2397+(78.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829410, assembly_id= 102686, from= IP4; - MCS.B34L4.B2:MCS, at= -1631.8157+(79-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244271, assembly_id= 102686, from= IP4; - MB.A34L4.B2:MB, at= -1623.5797+(79.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829434, assembly_id= 102687, from= IP4; - MCS.A34L4.B2:MCS, at= -1616.1557+(80-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244274, assembly_id= 102687, from= IP4; - BPM.33L4.B2:BPM, at= -1615.2767+(80-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244276, assembly_id= 102688, from= IP4; - MO.33L4.B2:MO, at= -1614.5257+(80-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308604, assembly_id= 102688, from= IP4; -MQ.33L4.B2:MQ, at= -1612.5147+(80-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307894, assembly_id= 102688, from= IP4; - MS.33L4.B2:MS, at= -1610.6197+(80-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250814, assembly_id= 102688, from= IP4; - MCBV.33L4.B2:MCBV, at= -1610.0267+(80-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250816, assembly_id= 102688, from= IP4; - MCO.B33L4.B2:MCO, at= -1608.9357+(80-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250818, assembly_id= 102689, from= IP4; - MCD.B33L4.B2:MCD, at= -1608.9342+(80-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250819, assembly_id= 102689, from= IP4; - MB.C33L4.B2:MB, at= -1601.4497+(80.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829458, assembly_id= 102689, from= IP4; - MCS.C33L4.B2:MCS, at= -1594.0257+(81-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244284, assembly_id= 102689, from= IP4; - MB.B33L4.B2:MB, at= -1585.7897+(81.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829482, assembly_id= 102690, from= IP4; - MCS.B33L4.B2:MCS, at= -1578.3657+(82-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244287, assembly_id= 102690, from= IP4; - MCO.A33L4.B2:MCO, at= -1577.6157+(82-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250822, assembly_id= 102691, from= IP4; - MCD.A33L4.B2:MCD, at= -1577.6142+(82-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250823, assembly_id= 102691, from= IP4; - MB.A33L4.B2:MB, at= -1570.1297+(82.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829506, assembly_id= 102691, from= IP4; - MCS.A33L4.B2:MCS, at= -1562.7057+(83-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244292, assembly_id= 102691, from= IP4; - BPM.32L4.B2:BPM, at= -1561.8267+(83-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244294, assembly_id= 102692, from= IP4; - MO.32L4.B2:MO, at= -1561.0757+(83-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308572, assembly_id= 102692, from= IP4; -MQ.32L4.B2:MQ, at= -1559.0647+(83-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307864, assembly_id= 102692, from= IP4; - MSS.32L4.B2:MSS, at= -1557.1697+(83-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250826, assembly_id= 102692, from= IP4; - MCBH.32L4.B2:MCBH, at= -1556.5767+(83-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250828, assembly_id= 102692, from= IP4; - MB.C32L4.B2:MB, at= -1547.9997+(83.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829530, assembly_id= 102693, from= IP4; - MCS.C32L4.B2:MCS, at= -1540.5757+(84-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244300, assembly_id= 102693, from= IP4; - MCO.32L4.B2:MCO, at= -1539.8257+(84-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250830, assembly_id= 102694, from= IP4; - MCD.32L4.B2:MCD, at= -1539.8242+(84-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250831, assembly_id= 102694, from= IP4; - MB.B32L4.B2:MB, at= -1532.3397+(84.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829554, assembly_id= 102694, from= IP4; - MCS.B32L4.B2:MCS, at= -1524.9157+(85-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244305, assembly_id= 102694, from= IP4; - MB.A32L4.B2:MB, at= -1516.6797+(85.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829578, assembly_id= 102695, from= IP4; - MCS.A32L4.B2:MCS, at= -1509.2557+(86-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244308, assembly_id= 102695, from= IP4; - BPM.31L4.B2:BPM, at= -1508.3767+(86-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244310, assembly_id= 102696, from= IP4; - MO.31L4.B2:MO, at= -1507.6257+(86-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308781, assembly_id= 102696, from= IP4; -MQ.31L4.B2:MQ, at= -1505.6147+(86-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308072, assembly_id= 102696, from= IP4; - MS.31L4.B2:MS, at= -1503.7197+(86-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250834, assembly_id= 102696, from= IP4; - MCBV.31L4.B2:MCBV, at= -1503.1267+(86-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250836, assembly_id= 102696, from= IP4; - MCO.B31L4.B2:MCO, at= -1502.0357+(86-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250838, assembly_id= 102697, from= IP4; - MCD.B31L4.B2:MCD, at= -1502.0342+(86-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250839, assembly_id= 102697, from= IP4; - MB.C31L4.B2:MB, at= -1494.5497+(86.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829602, assembly_id= 102697, from= IP4; - MCS.C31L4.B2:MCS, at= -1487.1257+(87-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244318, assembly_id= 102697, from= IP4; - MB.B31L4.B2:MB, at= -1478.8897+(87.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829626, assembly_id= 102698, from= IP4; - MCS.B31L4.B2:MCS, at= -1471.4657+(88-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244321, assembly_id= 102698, from= IP4; - MCO.A31L4.B2:MCO, at= -1470.7157+(88-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250842, assembly_id= 102699, from= IP4; - MCD.A31L4.B2:MCD, at= -1470.7142+(88-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250843, assembly_id= 102699, from= IP4; - MB.A31L4.B2:MB, at= -1463.2297+(88.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829650, assembly_id= 102699, from= IP4; - MCS.A31L4.B2:MCS, at= -1455.8057+(89-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244326, assembly_id= 102699, from= IP4; - BPM.30L4.B2:BPM, at= -1454.9267+(89-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244328, assembly_id= 102700, from= IP4; - MO.30L4.B2:MO, at= -1454.1757+(89-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308751, assembly_id= 102700, from= IP4; -MQ.30L4.B2:MQ, at= -1452.1647+(89-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308043, assembly_id= 102700, from= IP4; - MS.30L4.B2:MS, at= -1450.2697+(89-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250846, assembly_id= 102700, from= IP4; - MCBH.30L4.B2:MCBH, at= -1449.6767+(89-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250848, assembly_id= 102700, from= IP4; - MB.C30L4.B2:MB, at= -1441.0997+(89.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829674, assembly_id= 102701, from= IP4; - MCS.C30L4.B2:MCS, at= -1433.6757+(90-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244334, assembly_id= 102701, from= IP4; - MCO.30L4.B2:MCO, at= -1432.9257+(90-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250850, assembly_id= 102702, from= IP4; - MCD.30L4.B2:MCD, at= -1432.9242+(90-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250851, assembly_id= 102702, from= IP4; - MB.B30L4.B2:MB, at= -1425.4397+(90.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829698, assembly_id= 102702, from= IP4; - MCS.B30L4.B2:MCS, at= -1418.0157+(91-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244339, assembly_id= 102702, from= IP4; - MB.A30L4.B2:MB, at= -1409.7797+(91.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829722, assembly_id= 102703, from= IP4; - MCS.A30L4.B2:MCS, at= -1402.3557+(92-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244342, assembly_id= 102703, from= IP4; - BPM.29L4.B2:BPM, at= -1401.4767+(92-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244344, assembly_id= 102704, from= IP4; - MO.29L4.B2:MO, at= -1400.7257+(92-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308719, assembly_id= 102704, from= IP4; -MQ.29L4.B2:MQ, at= -1398.7147+(92-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308013, assembly_id= 102704, from= IP4; - MS.29L4.B2:MS, at= -1396.8197+(92-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250854, assembly_id= 102704, from= IP4; - MCBV.29L4.B2:MCBV, at= -1396.2267+(92-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250856, assembly_id= 102704, from= IP4; - MCO.B29L4.B2:MCO, at= -1395.1357+(92-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250858, assembly_id= 102705, from= IP4; - MCD.B29L4.B2:MCD, at= -1395.1342+(92-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250859, assembly_id= 102705, from= IP4; - MB.C29L4.B2:MB, at= -1387.6497+(92.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829746, assembly_id= 102705, from= IP4; - MCS.C29L4.B2:MCS, at= -1380.2257+(93-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244352, assembly_id= 102705, from= IP4; - MB.B29L4.B2:MB, at= -1371.9897+(93.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829770, assembly_id= 102706, from= IP4; - MCS.B29L4.B2:MCS, at= -1364.5657+(94-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244355, assembly_id= 102706, from= IP4; - MCO.A29L4.B2:MCO, at= -1363.8157+(94-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250862, assembly_id= 102707, from= IP4; - MCD.A29L4.B2:MCD, at= -1363.8142+(94-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250863, assembly_id= 102707, from= IP4; - MB.A29L4.B2:MB, at= -1356.3297+(94.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829794, assembly_id= 102707, from= IP4; - MCS.A29L4.B2:MCS, at= -1348.9057+(95-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244360, assembly_id= 102707, from= IP4; - BPM.28L4.B2:BPM, at= -1348.0267+(95-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244362, assembly_id= 102708, from= IP4; - MO.28L4.B2:MO, at= -1347.2757+(95-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308688, assembly_id= 102708, from= IP4; -MQ.28L4.B2:MQ, at= -1345.2647+(95-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307981, assembly_id= 102708, from= IP4; - MSS.28L4.B2:MSS, at= -1343.3697+(95-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250866, assembly_id= 102708, from= IP4; - MCBH.28L4.B2:MCBH, at= -1342.7767+(95-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250868, assembly_id= 102708, from= IP4; - MB.C28L4.B2:MB, at= -1334.1997+(95.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829818, assembly_id= 102709, from= IP4; - MCS.C28L4.B2:MCS, at= -1326.7757+(96-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244368, assembly_id= 102709, from= IP4; - MCO.28L4.B2:MCO, at= -1326.0257+(96-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250870, assembly_id= 102710, from= IP4; - MCD.28L4.B2:MCD, at= -1326.0242+(96-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250871, assembly_id= 102710, from= IP4; - MB.B28L4.B2:MB, at= -1318.5397+(96.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829842, assembly_id= 102710, from= IP4; - MCS.B28L4.B2:MCS, at= -1311.1157+(97-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244373, assembly_id= 102710, from= IP4; - MB.A28L4.B2:MB, at= -1302.8797+(97.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829866, assembly_id= 102711, from= IP4; - MCS.A28L4.B2:MCS, at= -1295.4557+(98-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244376, assembly_id= 102711, from= IP4; - BPM.27L4.B2:BPM, at= -1294.5767+(98-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244378, assembly_id= 102712, from= IP4; - MQS.27L4.B2:MQS, at= -1293.8227+(98-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307658, assembly_id= 102712, from= IP4; -MQ.27L4.B2:MQ, at= -1291.8147+(98-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348472, assembly_id= 102712, from= IP4; - MS.27L4.B2:MS, at= -1289.9197+(98-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250874, assembly_id= 102712, from= IP4; - MCBV.27L4.B2:MCBV, at= -1289.3267+(98-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250876, assembly_id= 102712, from= IP4; - MCO.B27L4.B2:MCO, at= -1288.2357+(98-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250878, assembly_id= 102713, from= IP4; - MCD.B27L4.B2:MCD, at= -1288.2342+(98-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250879, assembly_id= 102713, from= IP4; - MB.C27L4.B2:MB, at= -1280.7497+(98.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829890, assembly_id= 102713, from= IP4; - MCS.C27L4.B2:MCS, at= -1273.3257+(99-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244386, assembly_id= 102713, from= IP4; - MB.B27L4.B2:MB, at= -1265.0897+(99.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829914, assembly_id= 102714, from= IP4; - MCS.B27L4.B2:MCS, at= -1257.6657+(100-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244389, assembly_id= 102714, from= IP4; - MCO.A27L4.B2:MCO, at= -1256.9157+(100-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250882, assembly_id= 102715, from= IP4; - MCD.A27L4.B2:MCD, at= -1256.9142+(100-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250883, assembly_id= 102715, from= IP4; - MB.A27L4.B2:MB, at= -1249.4297+(100.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829938, assembly_id= 102715, from= IP4; - MCS.A27L4.B2:MCS, at= -1242.0057+(101-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244394, assembly_id= 102715, from= IP4; - BPM.26L4.B2:BPM, at= -1241.1267+(101-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244396, assembly_id= 102716, from= IP4; - MO.26L4.B2:MO, at= -1240.3757+(101-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308898, assembly_id= 102716, from= IP4; -MQ.26L4.B2:MQ, at= -1238.3647+(101-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308161, assembly_id= 102716, from= IP4; - MS.26L4.B2:MS, at= -1236.4697+(101-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250886, assembly_id= 102716, from= IP4; - MCBH.26L4.B2:MCBH, at= -1235.8767+(101-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250888, assembly_id= 102716, from= IP4; - MB.C26L4.B2:MB, at= -1227.2997+(101.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829962, assembly_id= 102717, from= IP4; - MCS.C26L4.B2:MCS, at= -1219.8757+(102-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244402, assembly_id= 102717, from= IP4; - MCO.26L4.B2:MCO, at= -1219.1257+(102-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250890, assembly_id= 102718, from= IP4; - MCD.26L4.B2:MCD, at= -1219.1242+(102-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250891, assembly_id= 102718, from= IP4; - MB.B26L4.B2:MB, at= -1211.6397+(102.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52829986, assembly_id= 102718, from= IP4; - MCS.B26L4.B2:MCS, at= -1204.2157+(103-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244407, assembly_id= 102718, from= IP4; - MB.A26L4.B2:MB, at= -1195.9797+(103.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830010, assembly_id= 102719, from= IP4; - MCS.A26L4.B2:MCS, at= -1188.5557+(104-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244410, assembly_id= 102719, from= IP4; - BPM.25L4.B2:BPM, at= -1187.6767+(104-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244412, assembly_id= 102720, from= IP4; - MO.25L4.B2:MO, at= -1186.9257+(104-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308866, assembly_id= 102720, from= IP4; -MQ.25L4.B2:MQ, at= -1184.9147+(104-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308129, assembly_id= 102720, from= IP4; - MS.25L4.B2:MS, at= -1183.0197+(104-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250894, assembly_id= 102720, from= IP4; - MCBV.25L4.B2:MCBV, at= -1182.4267+(104-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250896, assembly_id= 102720, from= IP4; - MCO.B25L4.B2:MCO, at= -1181.3357+(104-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250898, assembly_id= 102721, from= IP4; - MCD.B25L4.B2:MCD, at= -1181.3342+(104-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250899, assembly_id= 102721, from= IP4; - MB.C25L4.B2:MB, at= -1173.8497+(104.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830034, assembly_id= 102721, from= IP4; - MCS.C25L4.B2:MCS, at= -1166.4257+(105-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244420, assembly_id= 102721, from= IP4; - MB.B25L4.B2:MB, at= -1158.1897+(105.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830058, assembly_id= 102722, from= IP4; - MCS.B25L4.B2:MCS, at= -1150.7657+(106-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244423, assembly_id= 102722, from= IP4; - MCO.A25L4.B2:MCO, at= -1150.0157+(106-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250902, assembly_id= 102723, from= IP4; - MCD.A25L4.B2:MCD, at= -1150.0142+(106-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250903, assembly_id= 102723, from= IP4; - MB.A25L4.B2:MB, at= -1142.5297+(106.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830082, assembly_id= 102723, from= IP4; - MCS.A25L4.B2:MCS, at= -1135.1057+(107-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244428, assembly_id= 102723, from= IP4; - BPM.24L4.B2:BPM, at= -1134.2267+(107-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244430, assembly_id= 102724, from= IP4; - MO.24L4.B2:MO, at= -1133.4757+(107-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308835, assembly_id= 102724, from= IP4; -MQ.24L4.B2:MQ, at= -1131.4647+(107-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308097, assembly_id= 102724, from= IP4; - MS.24L4.B2:MS, at= -1129.5697+(107-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250906, assembly_id= 102724, from= IP4; - MCBH.24L4.B2:MCBH, at= -1128.9767+(107-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250908, assembly_id= 102724, from= IP4; - MB.C24L4.B2:MB, at= -1120.3997+(107.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830106, assembly_id= 102725, from= IP4; - MCS.C24L4.B2:MCS, at= -1112.9757+(108-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244436, assembly_id= 102725, from= IP4; - MCO.24L4.B2:MCO, at= -1112.2257+(108-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250910, assembly_id= 102726, from= IP4; - MCD.24L4.B2:MCD, at= -1112.2242+(108-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250911, assembly_id= 102726, from= IP4; - MB.B24L4.B2:MB, at= -1104.7397+(108.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830130, assembly_id= 102726, from= IP4; - MCS.B24L4.B2:MCS, at= -1097.3157+(109-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244441, assembly_id= 102726, from= IP4; - MB.A24L4.B2:MB, at= -1089.0797+(109.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830154, assembly_id= 102727, from= IP4; - MCS.A24L4.B2:MCS, at= -1081.6557+(110-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244444, assembly_id= 102727, from= IP4; - BPM.23L4.B2:BPM, at= -1080.7767+(110-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266528, assembly_id= 102728, from= IP4; - MQS.23L4.B2:MQS, at= -1080.0227+(110-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307627, assembly_id= 102728, from= IP4; -MQ.23L4.B2:MQ, at= -1078.0147+(110-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308308, assembly_id= 102728, from= IP4; - MS.23L4.B2:MS, at= -1076.1197+(110-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250914, assembly_id= 102728, from= IP4; - MCBV.23L4.B2:MCBV, at= -1075.5267+(110-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250916, assembly_id= 102728, from= IP4; - MCO.B23L4.B2:MCO, at= -1074.4357+(110-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250918, assembly_id= 102729, from= IP4; - MCD.B23L4.B2:MCD, at= -1074.4342+(110-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250919, assembly_id= 102729, from= IP4; - MB.C23L4.B2:MB, at= -1066.9497+(110.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830178, assembly_id= 102729, from= IP4; - MCS.C23L4.B2:MCS, at= -1059.5257+(111-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244452, assembly_id= 102729, from= IP4; - MB.B23L4.B2:MB, at= -1051.2897+(111.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830202, assembly_id= 102730, from= IP4; - MCS.B23L4.B2:MCS, at= -1043.8657+(112-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244455, assembly_id= 102730, from= IP4; - MCO.A23L4.B2:MCO, at= -1043.1157+(112-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250922, assembly_id= 102731, from= IP4; - MCD.A23L4.B2:MCD, at= -1043.1142+(112-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250923, assembly_id= 102731, from= IP4; - MB.A23L4.B2:MB, at= -1035.6297+(112.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830226, assembly_id= 102731, from= IP4; - MCS.A23L4.B2:MCS, at= -1028.2057+(113-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244460, assembly_id= 102731, from= IP4; - BPM.22L4.B2:BPM, at= -1027.3267+(113-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244462, assembly_id= 102732, from= IP4; - MO.22L4.B2:MO, at= -1026.5757+(113-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308805, assembly_id= 102732, from= IP4; -MQ.22L4.B2:MQ, at= -1024.5647+(113-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308276, assembly_id= 102732, from= IP4; - MS.22L4.B2:MS, at= -1022.6697+(113-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250926, assembly_id= 102732, from= IP4; - MCBH.22L4.B2:MCBH, at= -1022.0767+(113-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250928, assembly_id= 102732, from= IP4; - MB.C22L4.B2:MB, at= -1013.4997+(113.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830250, assembly_id= 102733, from= IP4; - MCS.C22L4.B2:MCS, at= -1006.0757+(114-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244468, assembly_id= 102733, from= IP4; - MCO.22L4.B2:MCO, at= -1005.3257+(114-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250930, assembly_id= 102734, from= IP4; - MCD.22L4.B2:MCD, at= -1005.3242+(114-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250931, assembly_id= 102734, from= IP4; - MB.B22L4.B2:MB, at= -997.8397+(114.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830274, assembly_id= 102734, from= IP4; - MCS.B22L4.B2:MCS, at= -990.4157+(115-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244473, assembly_id= 102734, from= IP4; - MB.A22L4.B2:MB, at= -982.1797+(115.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830298, assembly_id= 102735, from= IP4; - MCS.A22L4.B2:MCS_UNPLUGGED, at= -974.7557+(116-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244476, assembly_id= 102735, from= IP4; - BPM.21L4.B2:BPM, at= -973.8767+(116-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244478, assembly_id= 102736, from= IP4; - MQT.21L4.B2:MQT, at= -973.1227+(116-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307260, assembly_id= 102736, from= IP4; -MQ.21L4.B2:MQ, at= -971.1147+(116-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308244, assembly_id= 102736, from= IP4; - MS.21L4.B2:MS, at= -969.2197+(116-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250934, assembly_id= 102736, from= IP4; - MCBV.21L4.B2:MCBV, at= -968.6267+(116-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250936, assembly_id= 102736, from= IP4; - MCO.B21L4.B2:MCO, at= -967.5357+(116-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250938, assembly_id= 102737, from= IP4; - MCD.B21L4.B2:MCD, at= -967.5342+(116-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250939, assembly_id= 102737, from= IP4; - MB.C21L4.B2:MB, at= -960.0497+(116.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830322, assembly_id= 102737, from= IP4; - MCS.C21L4.B2:MCS, at= -952.6257+(117-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244486, assembly_id= 102737, from= IP4; - MB.B21L4.B2:MB, at= -944.3897+(117.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830346, assembly_id= 102738, from= IP4; - MCS.B21L4.B2:MCS, at= -936.9657+(118-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244489, assembly_id= 102738, from= IP4; - MCO.A21L4.B2:MCO, at= -936.2157+(118-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250942, assembly_id= 102739, from= IP4; - MCD.A21L4.B2:MCD, at= -936.2142+(118-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250943, assembly_id= 102739, from= IP4; - MB.A21L4.B2:MB, at= -928.7297+(118.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830370, assembly_id= 102739, from= IP4; - MCS.A21L4.B2:MCS, at= -921.3057+(119-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244494, assembly_id= 102739, from= IP4; - BPM.20L4.B2:BPM, at= -920.4267+(119-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244496, assembly_id= 102740, from= IP4; - MQT.20L4.B2:MQT, at= -919.6727+(119-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307463, assembly_id= 102740, from= IP4; -MQ.20L4.B2:MQ, at= -917.6647+(119-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308215, assembly_id= 102740, from= IP4; - MS.20L4.B2:MS, at= -915.7697+(119-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250946, assembly_id= 102740, from= IP4; - MCBH.20L4.B2:MCBH, at= -915.1767+(119-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250948, assembly_id= 102740, from= IP4; - MB.C20L4.B2:MB, at= -906.5997+(119.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830394, assembly_id= 102741, from= IP4; - MCS.C20L4.B2:MCS, at= -899.1757+(120-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244502, assembly_id= 102741, from= IP4; - MCO.20L4.B2:MCO, at= -898.4257+(120-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250950, assembly_id= 102742, from= IP4; - MCD.20L4.B2:MCD, at= -898.4242+(120-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250951, assembly_id= 102742, from= IP4; - MB.B20L4.B2:MB, at= -890.9397+(120.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830418, assembly_id= 102742, from= IP4; - MCS.B20L4.B2:MCS, at= -883.5157+(121-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244507, assembly_id= 102742, from= IP4; - MB.A20L4.B2:MB, at= -875.2797+(121.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830442, assembly_id= 102743, from= IP4; - MCS.A20L4.B2:MCS, at= -867.8557+(122-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244510, assembly_id= 102743, from= IP4; - BPM.19L4.B2:BPM, at= -866.9767+(122-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244512, assembly_id= 102744, from= IP4; - MQT.19L4.B2:MQT, at= -866.2227+(122-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307433, assembly_id= 102744, from= IP4; -MQ.19L4.B2:MQ, at= -864.2147+(122-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308423, assembly_id= 102744, from= IP4; - MS.19L4.B2:MS, at= -862.3197+(122-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250954, assembly_id= 102744, from= IP4; - MCBV.19L4.B2:MCBV, at= -861.7267+(122-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250956, assembly_id= 102744, from= IP4; - MCO.B19L4.B2:MCO, at= -860.6357+(122-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250958, assembly_id= 102745, from= IP4; - MCD.B19L4.B2:MCD, at= -860.6342+(122-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250959, assembly_id= 102745, from= IP4; - MB.C19L4.B2:MB, at= -853.1497+(122.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830466, assembly_id= 102745, from= IP4; - MCS.C19L4.B2:MCS, at= -845.7257+(123-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244520, assembly_id= 102745, from= IP4; - MB.B19L4.B2:MB, at= -837.4897+(123.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830490, assembly_id= 102746, from= IP4; - MCS.B19L4.B2:MCS, at= -830.0657+(124-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244523, assembly_id= 102746, from= IP4; - MCO.A19L4.B2:MCO, at= -829.3157+(124-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250962, assembly_id= 102747, from= IP4; - MCD.A19L4.B2:MCD, at= -829.3142+(124-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250963, assembly_id= 102747, from= IP4; - MB.A19L4.B2:MB, at= -821.8297+(124.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830514, assembly_id= 102747, from= IP4; - MCS.A19L4.B2:MCS, at= -814.4057+(125-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244528, assembly_id= 102747, from= IP4; - BPM.18L4.B2:BPM, at= -813.5267+(125-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244530, assembly_id= 102748, from= IP4; - MQT.18L4.B2:MQT, at= -812.7727+(125-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307402, assembly_id= 102748, from= IP4; -MQ.18L4.B2:MQ, at= -810.7647+(125-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308392, assembly_id= 102748, from= IP4; - MS.18L4.B2:MS, at= -808.8697+(125-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250966, assembly_id= 102748, from= IP4; - MCBH.18L4.B2:MCBH, at= -808.2767+(125-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250968, assembly_id= 102748, from= IP4; - MB.C18L4.B2:MB, at= -799.6997+(125.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830538, assembly_id= 102749, from= IP4; - MCS.C18L4.B2:MCS, at= -792.2757+(126-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244536, assembly_id= 102749, from= IP4; - MCO.18L4.B2:MCO, at= -791.5257+(126-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250970, assembly_id= 102750, from= IP4; - MCD.18L4.B2:MCD, at= -791.5242+(126-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250971, assembly_id= 102750, from= IP4; - MB.B18L4.B2:MB, at= -784.0397+(126.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830562, assembly_id= 102750, from= IP4; - MCS.B18L4.B2:MCS_UNPLUGGED, at= -776.6157+(127-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244541, assembly_id= 102750, from= IP4; - MB.A18L4.B2:MB, at= -768.3797+(127.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830586, assembly_id= 102751, from= IP4; - MCS.A18L4.B2:MCS, at= -760.9557+(128-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244544, assembly_id= 102751, from= IP4; - BPM.17L4.B2:BPM, at= -760.0767+(128-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244546, assembly_id= 102752, from= IP4; - MQT.17L4.B2:MQT, at= -759.3227+(128-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307607, assembly_id= 102752, from= IP4; -MQ.17L4.B2:MQ, at= -757.3147+(128-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308362, assembly_id= 102752, from= IP4; - MS.17L4.B2:MS, at= -755.4197+(128-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250974, assembly_id= 102752, from= IP4; - MCBV.17L4.B2:MCBV, at= -754.8267+(128-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250976, assembly_id= 102752, from= IP4; - MCO.B17L4.B2:MCO, at= -753.7357+(128-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250978, assembly_id= 102753, from= IP4; - MCD.B17L4.B2:MCD, at= -753.7342+(128-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250979, assembly_id= 102753, from= IP4; - MB.C17L4.B2:MB, at= -746.2497+(128.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830610, assembly_id= 102753, from= IP4; - MCS.C17L4.B2:MCS, at= -738.8257+(129-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244554, assembly_id= 102753, from= IP4; - MB.B17L4.B2:MB, at= -730.5897+(129.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830634, assembly_id= 102754, from= IP4; - MCS.B17L4.B2:MCS, at= -723.1657+(130-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244557, assembly_id= 102754, from= IP4; - MCO.A17L4.B2:MCO, at= -722.4157+(130-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250982, assembly_id= 102755, from= IP4; - MCD.A17L4.B2:MCD, at= -722.4142+(130-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250983, assembly_id= 102755, from= IP4; - MB.A17L4.B2:MB, at= -714.9297+(130.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830658, assembly_id= 102755, from= IP4; - MCS.A17L4.B2:MCS, at= -707.5057+(131-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244562, assembly_id= 102755, from= IP4; - BPM.16L4.B2:BPM, at= -706.6267+(131-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244564, assembly_id= 102756, from= IP4; - MQT.16L4.B2:MQT, at= -705.8727+(131-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307577, assembly_id= 102756, from= IP4; -MQ.16L4.B2:MQ, at= -703.8647+(131-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308332, assembly_id= 102756, from= IP4; - MS.16L4.B2:MS, at= -701.9697+(131-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250986, assembly_id= 102756, from= IP4; - MCBH.16L4.B2:MCBH, at= -701.3767+(131-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250988, assembly_id= 102756, from= IP4; - MB.C16L4.B2:MB, at= -692.7997+(131.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830682, assembly_id= 102757, from= IP4; - MCS.C16L4.B2:MCS, at= -685.3757+(132-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244570, assembly_id= 102757, from= IP4; - MCO.16L4.B2:MCO, at= -684.6257+(132-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250990, assembly_id= 102758, from= IP4; - MCD.16L4.B2:MCD, at= -684.6242+(132-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250991, assembly_id= 102758, from= IP4; - MB.B16L4.B2:MB, at= -677.1397+(132.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830706, assembly_id= 102758, from= IP4; - MCS.B16L4.B2:MCS, at= -669.7157+(133-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244575, assembly_id= 102758, from= IP4; - MB.A16L4.B2:MB, at= -661.4797+(133.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830730, assembly_id= 102759, from= IP4; - MCS.A16L4.B2:MCS, at= -654.0557+(134-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244578, assembly_id= 102759, from= IP4; - BPM.15L4.B2:BPM, at= -653.1767+(134-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244580, assembly_id= 102760, from= IP4; - MQT.15L4.B2:MQT, at= -652.4227+(134-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307546, assembly_id= 102760, from= IP4; -MQ.15L4.B2:MQ, at= -650.4147+(134-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308539, assembly_id= 102760, from= IP4; - MS.15L4.B2:MS, at= -648.5197+(134-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250994, assembly_id= 102760, from= IP4; - MCBV.15L4.B2:MCBV, at= -647.9267+(134-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250996, assembly_id= 102760, from= IP4; - MCO.B15L4.B2:MCO, at= -646.8357+(134-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250998, assembly_id= 102761, from= IP4; - MCD.B15L4.B2:MCD, at= -646.8342+(134-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 250999, assembly_id= 102761, from= IP4; - MB.C15L4.B2:MB, at= -639.3497+(134.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830754, assembly_id= 102761, from= IP4; - MCS.C15L4.B2:MCS, at= -631.9257+(135-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244588, assembly_id= 102761, from= IP4; - MB.B15L4.B2:MB, at= -623.6897+(135.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830778, assembly_id= 102762, from= IP4; - MCS.B15L4.B2:MCS_UNPLUGGED, at= -616.2657+(136-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244591, assembly_id= 102762, from= IP4; - MCO.A15L4.B2:MCO, at= -615.5157+(136-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251002, assembly_id= 102763, from= IP4; - MCD.A15L4.B2:MCD, at= -615.5142+(136-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251003, assembly_id= 102763, from= IP4; - MB.A15L4.B2:MB, at= -608.0297+(136.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830802, assembly_id= 102763, from= IP4; - MCS.A15L4.B2:MCS, at= -600.6057+(137-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244596, assembly_id= 102763, from= IP4; - BPM.14L4.B2:BPM, at= -599.7267+(137-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244598, assembly_id= 102764, from= IP4; - MQT.14L4.B2:MQT, at= -598.9727+(137-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307514, assembly_id= 102764, from= IP4; -MQ.14L4.B2:MQ, at= -596.9647+(137-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308509, assembly_id= 102764, from= IP4; - MS.14L4.B2:MS, at= -595.0697+(137-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251006, assembly_id= 102764, from= IP4; - MCBH.14L4.B2:MCBH, at= -594.4767+(137-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251008, assembly_id= 102764, from= IP4; - MB.C14L4.B2:MB, at= -585.8997+(137.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830826, assembly_id= 102765, from= IP4; - MCS.C14L4.B2:MCS, at= -578.4757+(138-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244604, assembly_id= 102765, from= IP4; - MCO.14L4.B2:MCO, at= -577.7257+(138-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251010, assembly_id= 102766, from= IP4; - MCD.14L4.B2:MCD, at= -577.7242+(138-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251011, assembly_id= 102766, from= IP4; - MB.B14L4.B2:MB, at= -570.2397+(138.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830850, assembly_id= 102766, from= IP4; - MCS.B14L4.B2:MCS, at= -562.8157+(139-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244609, assembly_id= 102766, from= IP4; - MB.A14L4.B2:MB, at= -554.5797+(139.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830874, assembly_id= 102767, from= IP4; - MCS.A14L4.B2:MCS, at= -547.1557+(140-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244612, assembly_id= 102767, from= IP4; -S.DS.L4.B2:OMK, at= -546.7497+(140-IP4OFS.B2)*DS, slot_id= 100932, from= IP4; - BPM.13L4.B2:BPM, at= -546.2767+(140-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244614, assembly_id= 102768, from= IP4; - MQT.13L4.B2:MQT, at= -545.5227+(140-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307722, assembly_id= 102768, from= IP4; -MQ.13L4.B2:MQ, at= -543.5147+(140-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308479, assembly_id= 102768, from= IP4; - MS.13L4.B2:MS, at= -541.6197+(140-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251014, assembly_id= 102768, from= IP4; - MCBV.13L4.B2:MCBV, at= -541.0267+(140-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251016, assembly_id= 102768, from= IP4; - MCO.B13L4.B2:MCO, at= -539.9357+(140-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251018, assembly_id= 102769, from= IP4; - MCD.B13L4.B2:MCD, at= -539.9342+(140-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251019, assembly_id= 102769, from= IP4; - MB.C13L4.B2:MB, at= -532.4497+(140.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830898, assembly_id= 102769, from= IP4; - MCS.C13L4.B2:MCS, at= -525.0257+(141-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244622, assembly_id= 102769, from= IP4; - MB.B13L4.B2:MB, at= -516.7897+(141.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830922, assembly_id= 102770, from= IP4; - MCS.B13L4.B2:MCS, at= -509.3657+(142-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244625, assembly_id= 102770, from= IP4; - MCO.A13L4.B2:MCO, at= -508.6157+(142-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251022, assembly_id= 102771, from= IP4; - MCD.A13L4.B2:MCD, at= -508.6142+(142-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251023, assembly_id= 102771, from= IP4; - MB.A13L4.B2:MB, at= -501.1297+(142.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830946, assembly_id= 102771, from= IP4; - MCS.A13L4.B2:MCS, at= -493.7057+(143-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244630, assembly_id= 102771, from= IP4; - BPM.12L4.B2:BPM, at= -492.8267+(143-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244632, assembly_id= 102772, from= IP4; - MQT.12L4.B2:MQT, at= -492.0727+(143-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307690, assembly_id= 102772, from= IP4; -MQ.12L4.B2:MQ, at= -490.0647+(143-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308449, assembly_id= 102772, from= IP4; - MS.12L4.B2:MS, at= -488.1697+(143-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251026, assembly_id= 102772, from= IP4; - MCBH.12L4.B2:MCBH, at= -487.5767+(143-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251028, assembly_id= 102772, from= IP4; - MB.C12L4.B2:MB, at= -478.9997+(143.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830970, assembly_id= 102773, from= IP4; - MCS.C12L4.B2:MCS, at= -471.5757+(144-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244638, assembly_id= 102773, from= IP4; - MCO.12L4.B2:MCO, at= -470.8257+(144-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251030, assembly_id= 102774, from= IP4; - MCD.12L4.B2:MCD, at= -470.8242+(144-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251031, assembly_id= 102774, from= IP4; - MB.B12L4.B2:MB, at= -463.3397+(144.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52830994, assembly_id= 102774, from= IP4; - MCS.B12L4.B2:MCS, at= -455.9157+(145-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244643, assembly_id= 102774, from= IP4; - MB.A12L4.B2:MB, at= -447.6797+(145.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831018, assembly_id= 102775, from= IP4; - MCS.A12L4.B2:MCS, at= -440.2557+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244646, assembly_id= 102775, from= IP4; -E.ARC.34.B2:OMK, at= -439.8497+(146-IP4OFS.B2)*DS, slot_id= 100932, from= IP4; - BPM.11L4.B2:BPM, at= -439.3767+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244648, assembly_id= 102776, from= IP4; -MQ.11L4.B2:MQ, at= -436.8297+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308656, assembly_id= 102776, from= IP4; - MQTLI.11L4.B2:MQTLI, at= -434.4607+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307344, assembly_id= 102776, from= IP4; - MS.11L4.B2:MS, at= -433.4487+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251034, assembly_id= 102776, from= IP4; - MCBV.11L4.B2:MCBV, at= -432.8557+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251036, assembly_id= 102776, from= IP4; - LEBL.11L4.B2:LEBL, at= -425.71735+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52997646, assembly_id= 102777, from= IP4; - MCO.11L4.B2:MCO, at= -418.986+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251038, assembly_id= 102778, from= IP4; - MCD.11L4.B2:MCD, at= -418.9845+(146-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251039, assembly_id= 102778, from= IP4; - MB.B11L4.B2:MB, at= -411.5+(146.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831042, assembly_id= 102778, from= IP4; - MCS.B11L4.B2:MCS, at= -404.076+(147-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244656, assembly_id= 102778, from= IP4; - MB.A11L4.B2:MB, at= -395.84+(147.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849546, assembly_id= 102779, from= IP4; - MCS.A11L4.B2:MCS, at= -388.416+(148-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357304, assembly_id= 102779, from= IP4; - BPMCS.10L4.B2:BPMCS, at= -387.729+(148-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773696, assembly_id= 102780, from= IP4; - BPM.10L4.B2:BPM, at= -387.537+(148-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773660, assembly_id= 102780, from= IP4; - MQML.10L4.B2:MQML, at= -384.392+(148-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307809, assembly_id= 102780, from= IP4; - MCBCH.10L4.B2:MCBCH, at= -381.35+(148-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251043, assembly_id= 102780, from= IP4; - MCO.10L4.B2:MCO, at= -379.921+(148-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251044, assembly_id= 102781, from= IP4; - MCD.10L4.B2:MCD, at= -379.9195+(148-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251045, assembly_id= 102781, from= IP4; - MB.B10L4.B2:MB, at= -372.435+(148.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831066, assembly_id= 102781, from= IP4; - MCS.B10L4.B2:MCS, at= -365.011+(149-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244668, assembly_id= 102781, from= IP4; - MB.A10L4.B2:MB, at= -356.775+(149.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831090, assembly_id= 102782, from= IP4; - MCS.A10L4.B2:MCS, at= -349.351+(150-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244671, assembly_id= 102782, from= IP4; - BPMCS.9L4.B2:BPMCS, at= -348.663+(150-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773699, assembly_id= 102783, from= IP4; - BPM.9L4.B2:BPM, at= -348.471+(150-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773663, assembly_id= 102783, from= IP4; - MQMC.9L4.B2:MQMC, at= -346.495+(150-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307786, assembly_id= 102783, from= IP4; - MQM.9L4.B2:MQM, at= -343.229+(150-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307734, assembly_id= 102783, from= IP4; - MCBCV.9L4.B2:MCBCV, at= -340.888+(150-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251049, assembly_id= 102783, from= IP4; - MCO.9L4.B2:MCO, at= -339.456+(150-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251050, assembly_id= 102784, from= IP4; - MCD.9L4.B2:MCD, at= -339.4545+(150-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251051, assembly_id= 102784, from= IP4; - MB.B9L4.B2:MB, at= -331.97+(150.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831114, assembly_id= 102784, from= IP4; - MCS.B9L4.B2:MCS, at= -324.546+(151-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244681, assembly_id= 102784, from= IP4; - MB.A9L4.B2:MB, at= -316.31+(151.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831138, assembly_id= 102785, from= IP4; - MCS.A9L4.B2:MCS, at= -308.886+(152-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244684, assembly_id= 102785, from= IP4; - BPMCS.8L4.B2:BPMCS, at= -308.199+(152-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773703, assembly_id= 102786, from= IP4; - BPM.8L4.B2:BPM, at= -308.007+(152-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773667, assembly_id= 102786, from= IP4; - MQML.8L4.B2:MQML, at= -304.862+(152-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307841, assembly_id= 102786, from= IP4; - MCBCH.8L4.B2:MCBCH, at= -301.82+(152-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251055, assembly_id= 102786, from= IP4; - MCO.8L4.B2:MCO, at= -300.391+(152-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251056, assembly_id= 102787, from= IP4; - MCD.8L4.B2:MCD, at= -300.3895+(152-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251057, assembly_id= 102787, from= IP4; - MB.B8L4.B2:MB, at= -292.905+(152.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831162, assembly_id= 102787, from= IP4; - MCS.B8L4.B2:MCS, at= -285.481+(153-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244693, assembly_id= 102787, from= IP4; - MB.A8L4.B2:MB, at= -277.245+(153.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849570, assembly_id= 102788, from= IP4; - MCS.A8L4.B2:MCS, at= -269.821+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357307, assembly_id= 102788, from= IP4; -E.DS.L4.B2:OMK, at= -269.415+(154-IP4OFS.B2)*DS, slot_id= 100932, from= IP4; - BPMCS.7L4.B2:BPMCS, at= -269.134+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773707, assembly_id= 102789, from= IP4; - BPM.7L4.B2:BPM, at= -268.942+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773671, assembly_id= 102789, from= IP4; - MQM.7L4.B2:MQM, at= -266.367+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307964, assembly_id= 102789, from= IP4; - MCBCV.7L4.B2:MCBCV, at= -264.026+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251061, assembly_id= 102789, from= IP4; - DFBAG.7L4.B2:DFBAG, at= -261.8575+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52996695, assembly_id= 104680, from= IP4; - BGVCA.C7L4.B2:BGVCA004, at= -222.69865+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 10410410, assembly_id= 12990150, from= IP4; - BGVCA.B7L4.B2:BGVCA001, at= -221.04565+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 10410409, assembly_id= 12990150, from= IP4; - BGVCA.A7L4.B2:BGVCA003, at= -219.29655+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 10410408, from= IP4; - BPLH.B7L4.B2:BPLH, at= -174.752+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635725, from= IP4; - BPLH.A7L4.B2:BPLH, at= -173.952+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635726, from= IP4; - BPMYA.6L4.B2:BPMYA, at= -172.338+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244702, assembly_id= 102790, from= IP4; - MQY.6L4.B2:MQY, at= -169.62+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303130, assembly_id= 102790, from= IP4; - MCBYH.6L4.B2:MCBYH, at= -167.273+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251063, assembly_id= 102790, from= IP4; - MKQA.6L4.B2:MKQA, at= -153.1285+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 377746, from= IP4; - BTVM.6L4.B2:BTVM, at= -148.17+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635732, from= IP4; - APWL.B6L4.B2:APWL, at= -143.0883+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 694131, from= IP4; - BPMYB.5L4.B2:BPMYB, at= -135.338+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 298214, assembly_id= 102791, from= IP4; - MQY.5L4.B2:MQY, at= -132.62+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2302988, assembly_id= 102791, from= IP4; - MCBYV.5L4.B2:MCBYV, at= -130.273+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251065, assembly_id= 102791, from= IP4; - MBRB.5L4.B2:MBRB, at= -123.684+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52819578, assembly_id= 102792, from= IP4; - BPLV.B5L4.B2:BPLV, at= -116.559+(154-IP4OFS.B2)*DS, mech_sep= 0.2169, slot_id= 635727, from= IP4; - BPLV.A5L4.B2:BPLV, at= -115.759+(154-IP4OFS.B2)*DS, mech_sep= 0.2189, slot_id= 635728, from= IP4; - BWS.5L4.B2:BWS, at= -84.876+(154-IP4OFS.B2)*DS, mech_sep= 0.3160, slot_id= 642429, from= IP4; - BSRTO.A5L4.B2:BSRTO002, at= -73.381+(154-IP4OFS.B2)*DS, mech_sep= 0.3760, slot_id= 42551668, assembly_id= 635735, from= IP4; - BSRTM.5L4.B2:BSRTM, at= -73.081+(154-IP4OFS.B2)*DS, mech_sep= 0.3760, slot_id= 635735, from= IP4; - BSRTR.5L4.B2:BSRTR, at= -58.781+(154-IP4OFS.B2)*DS, mech_sep= 0.4040, slot_id= 635737, from= IP4; - MBRS.5L4.B2:MBRS, at= -51.783+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244711, assembly_id= 102793, from= IP4; - MU.D5L4.B2:MU, at= -46.051+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 266542, assembly_id= 102794, from= IP4; - MU.C5L4.B2:MU, at= -45.911+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 266543, assembly_id= 102794, from= IP4; - MU.B5L4.B2:MU, at= -45.771+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 266544, assembly_id= 102794, from= IP4; - MU.A5L4.B2:MU, at= -45.631+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 266545, assembly_id= 102794, from= IP4; - BPMWA.B5L4.B2:BPMWA, at= -32.9475+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 181638, from= IP4; - ADTKV.D5L4.B2:ADTKV, at= -31.767+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 627390, assembly_id= 102799, from= IP4; - ADTKV.C5L4.B2:ADTKV, at= -30.167+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 627402, assembly_id= 102799, from= IP4; - ADTKV.B5L4.B2:ADTKV, at= -27.567+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 627392, assembly_id= 102801, from= IP4; - ADTKV.A5L4.B2:ADTKV, at= -25.967+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 627408, assembly_id= 102801, from= IP4; - BPMWA.A5L4.B2:BPMWA, at= -24.0625+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 181639, from= IP4; - APWL.B5L4.B2:APWL, at= -18.15+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 479343, from= IP4; - APWL.5L4.B2:APWL, at= -17.25+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 479344, from= IP4; - ACSPH.E5L4.B2:ACSPH002, at= -6.85825+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538105, assembly_id= 102805, from= IP4; - ACSCA.D5L4.B2:ACSCA, at= -6.567+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244727, assembly_id= 102805, from= IP4; - ACSPH.A5L4.B2:ACSPH001, at= -6.31075+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538097, assembly_id= 102805, from= IP4; - ACSPH.F5L4.B2:ACSPH002, at= -5.36225+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538107, assembly_id= 102805, from= IP4; - ACSCA.C5L4.B2:ACSCA, at= -5.071+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244726, assembly_id= 102805, from= IP4; - ACSPH.B5L4.B2:ACSPH001, at= -4.81475+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538099, assembly_id= 102805, from= IP4; - ACSPH.G5L4.B2:ACSPH002, at= -3.86625+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538109, assembly_id= 102805, from= IP4; - ACSCA.B5L4.B2:ACSCA, at= -3.575+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244725, assembly_id= 102805, from= IP4; - ACSPH.C5L4.B2:ACSPH001, at= -3.31875+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538101, assembly_id= 102805, from= IP4; - ACSPH.H5L4.B2:ACSPH002, at= -2.37025+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538111, assembly_id= 102805, from= IP4; - ACSCA.A5L4.B2:ACSCA, at= -2.079+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244728, assembly_id= 102805, from= IP4; - ACSPH.D5L4.B2:ACSPH001, at= -1.82275+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538103, assembly_id= 102805, from= IP4; -IP4:OMK, at= pIP4+IP4OFS.B2*DS; - ACSPH.E5R4.B2:ACSPH002, at= 1.42775+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538441, assembly_id= 102806, from= IP4; - ACSCA.A5R4.B2:ACSCA, at= 1.719+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244732, assembly_id= 102806, from= IP4; - ACSPH.A5R4.B2:ACSPH001, at= 1.97525+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538429, assembly_id= 102806, from= IP4; - ACSPH.F5R4.B2:ACSPH002, at= 2.92375+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538443, assembly_id= 102806, from= IP4; - ACSCA.B5R4.B2:ACSCA, at= 3.215+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244731, assembly_id= 102806, from= IP4; - ACSPH.B5R4.B2:ACSPH001, at= 3.47125+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538431, assembly_id= 102806, from= IP4; - ACSPH.G5R4.B2:ACSPH002, at= 4.41975+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538445, assembly_id= 102806, from= IP4; - ACSCA.C5R4.B2:ACSCA, at= 4.711+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244730, assembly_id= 102806, from= IP4; - ACSPH.C5R4.B2:ACSPH001, at= 4.96725+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538433, assembly_id= 102806, from= IP4; - ACSPH.H5R4.B2:ACSPH002, at= 5.91575+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538447, assembly_id= 102806, from= IP4; - ACSCA.D5R4.B2:ACSCA, at= 6.207+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244729, assembly_id= 102806, from= IP4; - ACSPH.D5R4.B2:ACSPH001, at= 6.46325+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 40538435, assembly_id= 102806, from= IP4; - BPMWA.A5R4.B2:BPMWA, at= 23.9865+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 181640, from= IP4; - ADTKH.A5R4.B2:ADTKH, at= 25.167+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 627718, assembly_id= 102809, from= IP4; - ADTKH.B5R4.B2:ADTKH, at= 26.767+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 627722, assembly_id= 102809, from= IP4; - ADTKH.C5R4.B2:ADTKH, at= 29.367+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 627720, assembly_id= 102810, from= IP4; - ADTKH.D5R4.B2:ADTKH, at= 30.967+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 627724, assembly_id= 102810, from= IP4; - BPMWA.B5R4.B2:BPMWA, at= 32.8715+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 181641, from= IP4; - MBRS.5R4.B2:MBRS, at= 51.783+(154-IP4OFS.B2)*DS, mech_sep= 0.4200, slot_id= 244745, assembly_id= 102818, from= IP4; - BPMWI.A5R4.B2:BPMWI, at= 58.7355+(154-IP4OFS.B2)*DS, mech_sep= 0.3980, slot_id= 6729056, from= IP4; - MGMWV.A5R4.B2:MGMWV, at= 60.7959+(154-IP4OFS.B2)*DS, mech_sep= 0.3915, slot_id= 642437, from= IP4; - MGMWV.C5R4.B2:MGMWV003, at= 62.22905+(154-IP4OFS.B2)*DS, mech_sep= 0.3898, slot_id= 2068555, from= IP4; - MGMWH.C5R4.B2:MGMWH003, at= 64.01925+(154-IP4OFS.B2)*DS, mech_sep= 0.3840, slot_id= 2068586, from= IP4; - MGMWH.A5R4.B2:MGMWH, at= 65.4459+(154-IP4OFS.B2)*DS, mech_sep= 0.3762, slot_id= 642435, from= IP4; - BQSH.5R4.B2:BQSH, at= 114.409+(154-IP4OFS.B2)*DS, mech_sep= 0.2240, slot_id= 635693, from= IP4; - MBRB.5R4.B2:MBRB, at= 123.684+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52819602, assembly_id= 102819, from= IP4; - MCBYH.5R4.B2:MCBYH, at= 130.273+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251066, assembly_id= 102820, from= IP4; - MQY.5R4.B2:MQY, at= 132.62+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303036, assembly_id= 102820, from= IP4; - BPMYA.5R4.B2:BPMYA, at= 135.338+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244750, assembly_id= 102820, from= IP4; - BPLH.6R4.B2:BPLH, at= 136.952+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635705, from= IP4; - BQKH.A6R4.B2:BQKH, at= 140.452+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635699, from= IP4; - BPLX.D6R4.B2:BPLX, at= 148.872+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 6731968, from= IP4; - BPLX.B6R4.B2:BPLX, at= 151.252+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635714, from= IP4; - BCTDC.A6R4.B2:BCTDC, at= 154.998+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635719, from= IP4; - BCTDC.B6R4.B2:BCTDC, at= 155.918+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635720, from= IP4; - BCTFR.A6R4.B2:BCTFR, at= 156.918+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635721, from= IP4; - BCTFR.B6R4.B2:BCTFR, at= 157.838+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635722, from= IP4; - BQKV.6R4.B2:BQKV, at= 164.988+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635700, from= IP4; - BPMYB.6R4.B2:BPMYB, at= 166.902+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 298216, assembly_id= 102821, from= IP4; - MQY.6R4.B2:MQY, at= 169.62+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303098, assembly_id= 102821, from= IP4; - MCBYV.6R4.B2:MCBYV, at= 171.967+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251069, assembly_id= 102821, from= IP4; - BQSV.7R4.B2:BQSV, at= 176.702+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635696, from= IP4; - BPLV.7R4.B2:BPLV, at= 178.752+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 635712, from= IP4; - DFBAH.7R4.B2:DFBAH, at= 261.6075+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52996719, assembly_id= 104681, from= IP4; - BPMCS.7R4.B2:BPMCS, at= 263.226+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773711, assembly_id= 102822, from= IP4; - BPM.7R4.B2:BPM, at= 263.418+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773675, assembly_id= 102822, from= IP4; - MQM.7R4.B2:MQM, at= 265.993+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307966, assembly_id= 102822, from= IP4; - MCBCH.7R4.B2:MCBCH, at= 268.334+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251071, assembly_id= 102822, from= IP4; -S.DS.R4.B2:OMK, at= 269.415+(154-IP4OFS.B2)*DS, slot_id= 100932, from= IP4; - MCO.8R4.B2:MCO, at= 269.759+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251072, assembly_id= 102823, from= IP4; - MCD.8R4.B2:MCD, at= 269.7605+(154-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251073, assembly_id= 102823, from= IP4; - MB.A8R4.B2:MB, at= 277.245+(154.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831186, assembly_id= 102823, from= IP4; - MCS.A8R4.B2:MCS, at= 284.669+(155-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244763, assembly_id= 102823, from= IP4; - MB.B8R4.B2:MB, at= 292.905+(155.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831210, assembly_id= 102824, from= IP4; - MCS.B8R4.B2:MCS, at= 300.329+(156-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244766, assembly_id= 102824, from= IP4; - BPMCS.8R4.B2:BPMCS, at= 301.016+(156-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773719, assembly_id= 102825, from= IP4; - BPM.8R4.B2:BPM, at= 301.208+(156-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773683, assembly_id= 102825, from= IP4; - MQML.8R4.B2:MQML, at= 304.353+(156-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307614, assembly_id= 102825, from= IP4; - MCBCV.8R4.B2:MCBCV, at= 307.395+(156-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251077, assembly_id= 102825, from= IP4; - MCO.9R4.B2:MCO, at= 308.824+(156-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251078, assembly_id= 102826, from= IP4; - MCD.9R4.B2:MCD, at= 308.8255+(156-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251079, assembly_id= 102826, from= IP4; - MB.A9R4.B2:MB, at= 316.31+(156.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831234, assembly_id= 102826, from= IP4; - MCS.A9R4.B2:MCS, at= 323.734+(157-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244775, assembly_id= 102826, from= IP4; - MB.B9R4.B2:MB, at= 331.97+(157.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831258, assembly_id= 102827, from= IP4; - MCS.B9R4.B2:MCS, at= 339.394+(158-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244778, assembly_id= 102827, from= IP4; - BPMCS.9R4.B2:BPMCS, at= 340.082+(158-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773723, assembly_id= 102828, from= IP4; - BPM.9R4.B2:BPM, at= 340.274+(158-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773687, assembly_id= 102828, from= IP4; - MQMC.9R4.B2:MQMC, at= 342.25+(158-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307797, assembly_id= 102828, from= IP4; - MQM.9R4.B2:MQM, at= 345.516+(158-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307745, assembly_id= 102828, from= IP4; - MCBCH.9R4.B2:MCBCH, at= 347.857+(158-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251083, assembly_id= 102828, from= IP4; - MCO.10R4.B2:MCO, at= 349.289+(158-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251084, assembly_id= 102829, from= IP4; - MCD.10R4.B2:MCD, at= 349.2905+(158-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251085, assembly_id= 102829, from= IP4; - MB.A10R4.B2:MB, at= 356.775+(158.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831282, assembly_id= 102829, from= IP4; - MCS.A10R4.B2:MCS, at= 364.199+(159-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244788, assembly_id= 102829, from= IP4; - MB.B10R4.B2:MB, at= 372.435+(159.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831306, assembly_id= 102830, from= IP4; - MCS.B10R4.B2:MCS, at= 379.859+(160-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244791, assembly_id= 102830, from= IP4; - BPMCS.10R4.B2:BPMCS, at= 380.546+(160-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773727, assembly_id= 102831, from= IP4; - BPM.10R4.B2:BPM, at= 380.738+(160-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 4773691, assembly_id= 102831, from= IP4; - MQML.10R4.B2:MQML, at= 383.883+(160-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307821, assembly_id= 102831, from= IP4; - MCBCV.10R4.B2:MCBCV, at= 386.925+(160-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251089, assembly_id= 102831, from= IP4; - MCO.11R4.B2:MCO, at= 388.354+(160-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251090, assembly_id= 102832, from= IP4; - MCD.11R4.B2:MCD, at= 388.3555+(160-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251091, assembly_id= 102832, from= IP4; - MB.A11R4.B2:MB, at= 395.84+(160.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831330, assembly_id= 102832, from= IP4; - MCS.A11R4.B2:MCS, at= 403.264+(161-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244800, assembly_id= 102832, from= IP4; - MB.B11R4.B2:MB, at= 411.5+(161.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831354, assembly_id= 102833, from= IP4; - MCS.B11R4.B2:MCS, at= 418.924+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244803, assembly_id= 102833, from= IP4; - LEAL.11R4.B2:LEAL, at= 425.71735+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52997598, assembly_id= 102834, from= IP4; - BPM.11R4.B2:BPM, at= 432.5777+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244805, assembly_id= 102835, from= IP4; -MQ.11R4.B2:MQ, at= 435.1247+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308671, assembly_id= 102835, from= IP4; - MQTLI.11R4.B2:MQTLI, at= 437.4937+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307359, assembly_id= 102835, from= IP4; - MS.11R4.B2:MS, at= 438.5057+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251094, assembly_id= 102835, from= IP4; - MCBH.11R4.B2:MCBH, at= 439.0987+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251096, assembly_id= 102835, from= IP4; -S.ARC.45.B2:OMK, at= 439.8497+(162-IP4OFS.B2)*DS, slot_id= 100932, from= IP4; - MCO.A12R4.B2:MCO, at= 440.1937+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251098, assembly_id= 102836, from= IP4; - MCD.A12R4.B2:MCD, at= 440.1952+(162-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251099, assembly_id= 102836, from= IP4; - MB.A12R4.B2:MB, at= 447.6797+(162.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831378, assembly_id= 102836, from= IP4; - MCS.A12R4.B2:MCS, at= 455.1037+(163-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244813, assembly_id= 102836, from= IP4; - MB.B12R4.B2:MB, at= 463.3397+(163.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831402, assembly_id= 102837, from= IP4; - MCS.B12R4.B2:MCS, at= 470.7637+(164-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244816, assembly_id= 102837, from= IP4; - MCO.B12R4.B2:MCO, at= 471.5137+(164-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251102, assembly_id= 102838, from= IP4; - MCD.B12R4.B2:MCD, at= 471.5152+(164-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251103, assembly_id= 102838, from= IP4; - MB.C12R4.B2:MB, at= 478.9997+(164.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831426, assembly_id= 102838, from= IP4; - MCS.C12R4.B2:MCS, at= 486.4237+(165-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244821, assembly_id= 102838, from= IP4; - BPM.12R4.B2:BPM, at= 487.3027+(165-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244823, assembly_id= 102839, from= IP4; - MQT.12R4.B2:MQT, at= 488.0567+(165-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307706, assembly_id= 102839, from= IP4; -MQ.12R4.B2:MQ, at= 490.0647+(165-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308464, assembly_id= 102839, from= IP4; - MS.12R4.B2:MS, at= 491.9597+(165-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251106, assembly_id= 102839, from= IP4; - MCBV.12R4.B2:MCBV, at= 492.5527+(165-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251108, assembly_id= 102839, from= IP4; - MB.A13R4.B2:MB, at= 501.1297+(165.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831450, assembly_id= 102840, from= IP4; - MCS.A13R4.B2:MCS, at= 508.5537+(166-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244829, assembly_id= 102840, from= IP4; - MCO.13R4.B2:MCO, at= 509.3037+(166-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251110, assembly_id= 102841, from= IP4; - MCD.13R4.B2:MCD, at= 509.3052+(166-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251111, assembly_id= 102841, from= IP4; - MB.B13R4.B2:MB, at= 516.7897+(166.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831474, assembly_id= 102841, from= IP4; - MCS.B13R4.B2:MCS, at= 524.2137+(167-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244834, assembly_id= 102841, from= IP4; - MB.C13R4.B2:MB, at= 532.4497+(167.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831498, assembly_id= 102842, from= IP4; - MCS.C13R4.B2:MCS, at= 539.8737+(168-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244837, assembly_id= 102842, from= IP4; - BPM.13R4.B2:BPM, at= 540.7527+(168-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244839, assembly_id= 102843, from= IP4; - MQT.13R4.B2:MQT, at= 541.5067+(168-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307499, assembly_id= 102843, from= IP4; -MQ.13R4.B2:MQ, at= 543.5147+(168-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308494, assembly_id= 102843, from= IP4; - MS.13R4.B2:MS, at= 545.4097+(168-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251114, assembly_id= 102843, from= IP4; - MCBH.13R4.B2:MCBH, at= 546.0027+(168-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251116, assembly_id= 102843, from= IP4; -E.DS.R4.B2:OMK, at= 546.7497+(168-IP4OFS.B2)*DS, slot_id= 100932, from= IP4; - MCO.A14R4.B2:MCO, at= 547.0937+(168-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251118, assembly_id= 102844, from= IP4; - MCD.A14R4.B2:MCD, at= 547.0952+(168-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251119, assembly_id= 102844, from= IP4; - MB.A14R4.B2:MB, at= 554.5797+(168.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831522, assembly_id= 102844, from= IP4; - MCS.A14R4.B2:MCS, at= 562.0037+(169-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244847, assembly_id= 102844, from= IP4; - MB.B14R4.B2:MB, at= 570.2397+(169.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831546, assembly_id= 102845, from= IP4; - MCS.B14R4.B2:MCS, at= 577.6637+(170-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244850, assembly_id= 102845, from= IP4; - MCO.B14R4.B2:MCO, at= 578.4137+(170-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251122, assembly_id= 102846, from= IP4; - MCD.B14R4.B2:MCD, at= 578.4152+(170-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251123, assembly_id= 102846, from= IP4; - MB.C14R4.B2:MB, at= 585.8997+(170.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831570, assembly_id= 102846, from= IP4; - MCS.C14R4.B2:MCS, at= 593.3237+(171-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244855, assembly_id= 102846, from= IP4; - BPM.14R4.B2:BPM, at= 594.2027+(171-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244857, assembly_id= 102847, from= IP4; - MQT.14R4.B2:MQT, at= 594.9567+(171-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307530, assembly_id= 102847, from= IP4; -MQ.14R4.B2:MQ, at= 596.9647+(171-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308524, assembly_id= 102847, from= IP4; - MS.14R4.B2:MS, at= 598.8597+(171-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251126, assembly_id= 102847, from= IP4; - MCBV.14R4.B2:MCBV, at= 599.4527+(171-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251128, assembly_id= 102847, from= IP4; - MB.A15R4.B2:MB, at= 608.0297+(171.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831594, assembly_id= 102848, from= IP4; - MCS.A15R4.B2:MCS, at= 615.4537+(172-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244863, assembly_id= 102848, from= IP4; - MCO.15R4.B2:MCO, at= 616.2037+(172-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251130, assembly_id= 102849, from= IP4; - MCD.15R4.B2:MCD, at= 616.2052+(172-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251131, assembly_id= 102849, from= IP4; - MB.B15R4.B2:MB, at= 623.6897+(172.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831618, assembly_id= 102849, from= IP4; - MCS.B15R4.B2:MCS, at= 631.1137+(173-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244868, assembly_id= 102849, from= IP4; - MB.C15R4.B2:MB, at= 639.3497+(173.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831642, assembly_id= 102850, from= IP4; - MCS.C15R4.B2:MCS, at= 646.7737+(174-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244871, assembly_id= 102850, from= IP4; - BPM.15R4.B2:BPM, at= 647.6527+(174-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244873, assembly_id= 102851, from= IP4; - MQT.15R4.B2:MQT, at= 648.4067+(174-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307562, assembly_id= 102851, from= IP4; -MQ.15R4.B2:MQ, at= 650.4147+(174-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308554, assembly_id= 102851, from= IP4; - MS.15R4.B2:MS, at= 652.3097+(174-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251134, assembly_id= 102851, from= IP4; - MCBH.15R4.B2:MCBH, at= 652.9027+(174-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251136, assembly_id= 102851, from= IP4; - MCO.A16R4.B2:MCO, at= 653.9937+(174-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251138, assembly_id= 102852, from= IP4; - MCD.A16R4.B2:MCD, at= 653.9952+(174-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251139, assembly_id= 102852, from= IP4; - MB.A16R4.B2:MB, at= 661.4797+(174.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831666, assembly_id= 102852, from= IP4; - MCS.A16R4.B2:MCS, at= 668.9037+(175-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244881, assembly_id= 102852, from= IP4; - MB.B16R4.B2:MB, at= 677.1397+(175.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831690, assembly_id= 102853, from= IP4; - MCS.B16R4.B2:MCS, at= 684.5637+(176-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244884, assembly_id= 102853, from= IP4; - MCO.B16R4.B2:MCO, at= 685.3137+(176-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251142, assembly_id= 102854, from= IP4; - MCD.B16R4.B2:MCD, at= 685.3152+(176-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251143, assembly_id= 102854, from= IP4; - MB.C16R4.B2:MB, at= 692.7997+(176.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831714, assembly_id= 102854, from= IP4; - MCS.C16R4.B2:MCS, at= 700.2237+(177-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244889, assembly_id= 102854, from= IP4; - BPM.16R4.B2:BPM, at= 701.1027+(177-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244891, assembly_id= 102855, from= IP4; - MQT.16R4.B2:MQT, at= 701.8567+(177-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307592, assembly_id= 102855, from= IP4; -MQ.16R4.B2:MQ, at= 703.8647+(177-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308347, assembly_id= 102855, from= IP4; - MS.16R4.B2:MS, at= 705.7597+(177-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251146, assembly_id= 102855, from= IP4; - MCBV.16R4.B2:MCBV, at= 706.3527+(177-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251148, assembly_id= 102855, from= IP4; - MB.A17R4.B2:MB, at= 714.9297+(177.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831738, assembly_id= 102856, from= IP4; - MCS.A17R4.B2:MCS, at= 722.3537+(178-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244897, assembly_id= 102856, from= IP4; - MCO.17R4.B2:MCO, at= 723.1037+(178-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251150, assembly_id= 102857, from= IP4; - MCD.17R4.B2:MCD, at= 723.1052+(178-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251151, assembly_id= 102857, from= IP4; - MB.B17R4.B2:MB, at= 730.5897+(178.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831762, assembly_id= 102857, from= IP4; - MCS.B17R4.B2:MCS, at= 738.0137+(179-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244902, assembly_id= 102857, from= IP4; - MB.C17R4.B2:MB, at= 746.2497+(179.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831786, assembly_id= 102858, from= IP4; - MCS.C17R4.B2:MCS, at= 753.6737+(180-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244905, assembly_id= 102858, from= IP4; - BPM.17R4.B2:BPM, at= 754.5527+(180-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244907, assembly_id= 102859, from= IP4; - MQT.17R4.B2:MQT, at= 755.3067+(180-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307386, assembly_id= 102859, from= IP4; -MQ.17R4.B2:MQ, at= 757.3147+(180-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308377, assembly_id= 102859, from= IP4; - MS.17R4.B2:MS, at= 759.2097+(180-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251154, assembly_id= 102859, from= IP4; - MCBH.17R4.B2:MCBH, at= 759.8027+(180-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251156, assembly_id= 102859, from= IP4; - MCO.A18R4.B2:MCO, at= 760.8937+(180-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251158, assembly_id= 102860, from= IP4; - MCD.A18R4.B2:MCD, at= 760.8952+(180-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251159, assembly_id= 102860, from= IP4; - MB.A18R4.B2:MB, at= 768.3797+(180.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831810, assembly_id= 102860, from= IP4; - MCS.A18R4.B2:MCS, at= 775.8037+(181-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244915, assembly_id= 102860, from= IP4; - MB.B18R4.B2:MB, at= 784.0397+(181.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831834, assembly_id= 102861, from= IP4; - MCS.B18R4.B2:MCS, at= 791.4637+(182-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244918, assembly_id= 102861, from= IP4; - MCO.B18R4.B2:MCO, at= 792.2137+(182-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251162, assembly_id= 102862, from= IP4; - MCD.B18R4.B2:MCD, at= 792.2152+(182-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251163, assembly_id= 102862, from= IP4; - MB.C18R4.B2:MB, at= 799.6997+(182.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831858, assembly_id= 102862, from= IP4; - MCS.C18R4.B2:MCS, at= 807.1237+(183-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244923, assembly_id= 102862, from= IP4; - BPM.18R4.B2:BPM, at= 808.0027+(183-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244925, assembly_id= 102863, from= IP4; - MQT.18R4.B2:MQT, at= 808.7567+(183-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307418, assembly_id= 102863, from= IP4; -MQ.18R4.B2:MQ, at= 810.7647+(183-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308407, assembly_id= 102863, from= IP4; - MS.18R4.B2:MS, at= 812.6597+(183-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251166, assembly_id= 102863, from= IP4; - MCBV.18R4.B2:MCBV, at= 813.2527+(183-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251168, assembly_id= 102863, from= IP4; - MB.A19R4.B2:MB, at= 821.8297+(183.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831882, assembly_id= 102864, from= IP4; - MCS.A19R4.B2:MCS, at= 829.2537+(184-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244931, assembly_id= 102864, from= IP4; - MCO.19R4.B2:MCO, at= 830.0037+(184-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251170, assembly_id= 102865, from= IP4; - MCD.19R4.B2:MCD, at= 830.0052+(184-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251171, assembly_id= 102865, from= IP4; - MB.B19R4.B2:MB, at= 837.4897+(184.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831906, assembly_id= 102865, from= IP4; - MCS.B19R4.B2:MCS, at= 844.9137+(185-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244936, assembly_id= 102865, from= IP4; - MB.C19R4.B2:MB, at= 853.1497+(185.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831930, assembly_id= 102866, from= IP4; - MCS.C19R4.B2:MCS, at= 860.5737+(186-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244939, assembly_id= 102866, from= IP4; - BPM.19R4.B2:BPM, at= 861.4527+(186-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244941, assembly_id= 102867, from= IP4; - MQT.19R4.B2:MQT, at= 862.2067+(186-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307448, assembly_id= 102867, from= IP4; -MQ.19R4.B2:MQ, at= 864.2147+(186-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308439, assembly_id= 102867, from= IP4; - MS.19R4.B2:MS, at= 866.1097+(186-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251174, assembly_id= 102867, from= IP4; - MCBH.19R4.B2:MCBH, at= 866.7027+(186-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251176, assembly_id= 102867, from= IP4; - MCO.A20R4.B2:MCO, at= 867.7937+(186-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251178, assembly_id= 102868, from= IP4; - MCD.A20R4.B2:MCD, at= 867.7952+(186-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251179, assembly_id= 102868, from= IP4; - MB.A20R4.B2:MB, at= 875.2797+(186.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831954, assembly_id= 102868, from= IP4; - MCS.A20R4.B2:MCS, at= 882.7037+(187-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244949, assembly_id= 102868, from= IP4; - MB.B20R4.B2:MB, at= 890.9397+(187.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52831978, assembly_id= 102869, from= IP4; - MCS.B20R4.B2:MCS, at= 898.3637+(188-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244952, assembly_id= 102869, from= IP4; - MCO.B20R4.B2:MCO, at= 899.1137+(188-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251182, assembly_id= 102870, from= IP4; - MCD.B20R4.B2:MCD, at= 899.1152+(188-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251183, assembly_id= 102870, from= IP4; - MB.C20R4.B2:MB, at= 906.5997+(188.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832002, assembly_id= 102870, from= IP4; - MCS.C20R4.B2:MCS, at= 914.0237+(189-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244957, assembly_id= 102870, from= IP4; - BPM.20R4.B2:BPM, at= 914.9027+(189-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244959, assembly_id= 102871, from= IP4; - MQT.20R4.B2:MQT, at= 915.6567+(189-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307478, assembly_id= 102871, from= IP4; -MQ.20R4.B2:MQ, at= 917.6647+(189-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308230, assembly_id= 102871, from= IP4; - MS.20R4.B2:MS, at= 919.5597+(189-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251186, assembly_id= 102871, from= IP4; - MCBV.20R4.B2:MCBV, at= 920.1527+(189-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251188, assembly_id= 102871, from= IP4; - MB.A21R4.B2:MB, at= 928.7297+(189.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832026, assembly_id= 102872, from= IP4; - MCS.A21R4.B2:MCS, at= 936.1537+(190-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244965, assembly_id= 102872, from= IP4; - MCO.21R4.B2:MCO, at= 936.9037+(190-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251190, assembly_id= 102873, from= IP4; - MCD.21R4.B2:MCD, at= 936.9052+(190-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251191, assembly_id= 102873, from= IP4; - MB.B21R4.B2:MB, at= 944.3897+(190.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832050, assembly_id= 102873, from= IP4; - MCS.B21R4.B2:MCS, at= 951.8137+(191-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244970, assembly_id= 102873, from= IP4; - MB.C21R4.B2:MB, at= 960.0497+(191.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832074, assembly_id= 102874, from= IP4; - MCS.C21R4.B2:MCS, at= 967.4737+(192-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244973, assembly_id= 102874, from= IP4; - BPM.21R4.B2:BPM, at= 968.3527+(192-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244975, assembly_id= 102875, from= IP4; - MQT.21R4.B2:MQT, at= 969.1067+(192-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307276, assembly_id= 102875, from= IP4; -MQ.21R4.B2:MQ, at= 971.1147+(192-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308260, assembly_id= 102875, from= IP4; - MS.21R4.B2:MS, at= 973.0097+(192-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251194, assembly_id= 102875, from= IP4; - MCBH.21R4.B2:MCBH, at= 973.6027+(192-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251196, assembly_id= 102875, from= IP4; - MCO.A22R4.B2:MCO, at= 974.6937+(192-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251198, assembly_id= 102876, from= IP4; - MCD.A22R4.B2:MCD, at= 974.6952+(192-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251199, assembly_id= 102876, from= IP4; - MB.A22R4.B2:MB, at= 982.1797+(192.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832098, assembly_id= 102876, from= IP4; - MCS.A22R4.B2:MCS, at= 989.6037+(193-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244983, assembly_id= 102876, from= IP4; - MB.B22R4.B2:MB, at= 997.8397+(193.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832122, assembly_id= 102877, from= IP4; - MCS.B22R4.B2:MCS, at= 1005.2637+(194-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244986, assembly_id= 102877, from= IP4; - MCO.B22R4.B2:MCO, at= 1006.0137+(194-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251202, assembly_id= 102878, from= IP4; - MCD.B22R4.B2:MCD, at= 1006.0152+(194-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251203, assembly_id= 102878, from= IP4; - MB.C22R4.B2:MB, at= 1013.4997+(194.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832146, assembly_id= 102878, from= IP4; - MCS.C22R4.B2:MCS, at= 1020.9237+(195-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244991, assembly_id= 102878, from= IP4; - BPM.22R4.B2:BPM, at= 1021.8027+(195-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244993, assembly_id= 102879, from= IP4; - MO.22R4.B2:MO, at= 1022.5537+(195-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308820, assembly_id= 102879, from= IP4; -MQ.22R4.B2:MQ, at= 1024.5647+(195-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308292, assembly_id= 102879, from= IP4; - MS.22R4.B2:MS, at= 1026.4597+(195-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251206, assembly_id= 102879, from= IP4; - MCBV.22R4.B2:MCBV, at= 1027.0527+(195-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251208, assembly_id= 102879, from= IP4; - MB.A23R4.B2:MB, at= 1035.6297+(195.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832170, assembly_id= 102880, from= IP4; - MCS.A23R4.B2:MCS, at= 1043.0537+(196-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 244999, assembly_id= 102880, from= IP4; - MCO.23R4.B2:MCO, at= 1043.8037+(196-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251210, assembly_id= 102881, from= IP4; - MCD.23R4.B2:MCD, at= 1043.8052+(196-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251211, assembly_id= 102881, from= IP4; - MB.B23R4.B2:MB, at= 1051.2897+(196.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832194, assembly_id= 102881, from= IP4; - MCS.B23R4.B2:MCS, at= 1058.7137+(197-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245004, assembly_id= 102881, from= IP4; - MB.C23R4.B2:MB, at= 1066.9497+(197.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832218, assembly_id= 102882, from= IP4; - MCS.C23R4.B2:MCS, at= 1074.3737+(198-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245007, assembly_id= 102882, from= IP4; - BPM.23R4.B2:BPM, at= 1075.2527+(198-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245009, assembly_id= 102883, from= IP4; - MQS.23R4.B2:MQS, at= 1076.0067+(198-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307642, assembly_id= 102883, from= IP4; -MQ.23R4.B2:MQ, at= 1078.0147+(198-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308323, assembly_id= 102883, from= IP4; - MS.23R4.B2:MS, at= 1079.9097+(198-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251214, assembly_id= 102883, from= IP4; - MCBH.23R4.B2:MCBH, at= 1080.5027+(198-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251216, assembly_id= 102883, from= IP4; - MCO.A24R4.B2:MCO, at= 1081.5937+(198-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251218, assembly_id= 102884, from= IP4; - MCD.A24R4.B2:MCD, at= 1081.5952+(198-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251219, assembly_id= 102884, from= IP4; - MB.A24R4.B2:MB, at= 1089.0797+(198.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832242, assembly_id= 102884, from= IP4; - MCS.A24R4.B2:MCS, at= 1096.5037+(199-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245017, assembly_id= 102884, from= IP4; - MB.B24R4.B2:MB, at= 1104.7397+(199.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832266, assembly_id= 102885, from= IP4; - MCS.B24R4.B2:MCS, at= 1112.1637+(200-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245020, assembly_id= 102885, from= IP4; - MCO.B24R4.B2:MCO, at= 1112.9137+(200-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251222, assembly_id= 102886, from= IP4; - MCD.B24R4.B2:MCD, at= 1112.9152+(200-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251223, assembly_id= 102886, from= IP4; - MB.C24R4.B2:MB, at= 1120.3997+(200.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832290, assembly_id= 102886, from= IP4; - MCS.C24R4.B2:MCS, at= 1127.8237+(201-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245025, assembly_id= 102886, from= IP4; - BPM.24R4.B2:BPM, at= 1128.7027+(201-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245027, assembly_id= 102887, from= IP4; - MO.24R4.B2:MO, at= 1129.4537+(201-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308850, assembly_id= 102887, from= IP4; -MQ.24R4.B2:MQ, at= 1131.4647+(201-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308113, assembly_id= 102887, from= IP4; - MS.24R4.B2:MS, at= 1133.3597+(201-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251226, assembly_id= 102887, from= IP4; - MCBV.24R4.B2:MCBV, at= 1133.9527+(201-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251228, assembly_id= 102887, from= IP4; - MB.A25R4.B2:MB, at= 1142.5297+(201.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832314, assembly_id= 102888, from= IP4; - MCS.A25R4.B2:MCS, at= 1149.9537+(202-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245033, assembly_id= 102888, from= IP4; - MCO.25R4.B2:MCO, at= 1150.7037+(202-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251230, assembly_id= 102889, from= IP4; - MCD.25R4.B2:MCD, at= 1150.7052+(202-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251231, assembly_id= 102889, from= IP4; - MB.B25R4.B2:MB, at= 1158.1897+(202.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832338, assembly_id= 102889, from= IP4; - MCS.B25R4.B2:MCS, at= 1165.6137+(203-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245038, assembly_id= 102889, from= IP4; - MB.C25R4.B2:MB, at= 1173.8497+(203.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832362, assembly_id= 102890, from= IP4; - MCS.C25R4.B2:MCS, at= 1181.2737+(204-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245041, assembly_id= 102890, from= IP4; - BPM.25R4.B2:BPM, at= 1182.1527+(204-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245043, assembly_id= 102891, from= IP4; - MO.25R4.B2:MO, at= 1182.9037+(204-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308882, assembly_id= 102891, from= IP4; -MQ.25R4.B2:MQ, at= 1184.9147+(204-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308145, assembly_id= 102891, from= IP4; - MS.25R4.B2:MS, at= 1186.8097+(204-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251234, assembly_id= 102891, from= IP4; - MCBH.25R4.B2:MCBH, at= 1187.4027+(204-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251236, assembly_id= 102891, from= IP4; - MCO.A26R4.B2:MCO, at= 1188.4937+(204-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251238, assembly_id= 102892, from= IP4; - MCD.A26R4.B2:MCD, at= 1188.4952+(204-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251239, assembly_id= 102892, from= IP4; - MB.A26R4.B2:MB, at= 1195.9797+(204.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832386, assembly_id= 102892, from= IP4; - MCS.A26R4.B2:MCS, at= 1203.4037+(205-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245051, assembly_id= 102892, from= IP4; - MB.B26R4.B2:MB, at= 1211.6397+(205.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832410, assembly_id= 102893, from= IP4; - MCS.B26R4.B2:MCS, at= 1219.0637+(206-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245054, assembly_id= 102893, from= IP4; - MCO.B26R4.B2:MCO, at= 1219.8137+(206-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251242, assembly_id= 102894, from= IP4; - MCD.B26R4.B2:MCD, at= 1219.8152+(206-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251243, assembly_id= 102894, from= IP4; - MB.C26R4.B2:MB, at= 1227.2997+(206.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832434, assembly_id= 102894, from= IP4; - MCS.C26R4.B2:MCS, at= 1234.7237+(207-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245059, assembly_id= 102894, from= IP4; - BPM.26R4.B2:BPM, at= 1235.6027+(207-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245061, assembly_id= 102895, from= IP4; - MO.26R4.B2:MO, at= 1236.3537+(207-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308913, assembly_id= 102895, from= IP4; -MQ.26R4.B2:MQ, at= 1238.3647+(207-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308176, assembly_id= 102895, from= IP4; - MS.26R4.B2:MS, at= 1240.2597+(207-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251246, assembly_id= 102895, from= IP4; - MCBV.26R4.B2:MCBV, at= 1240.8527+(207-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251248, assembly_id= 102895, from= IP4; - MB.A27R4.B2:MB, at= 1249.4297+(207.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832458, assembly_id= 102896, from= IP4; - MCS.A27R4.B2:MCS, at= 1256.8537+(208-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245067, assembly_id= 102896, from= IP4; - MCO.27R4.B2:MCO, at= 1257.6037+(208-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251250, assembly_id= 102897, from= IP4; - MCD.27R4.B2:MCD, at= 1257.6052+(208-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251251, assembly_id= 102897, from= IP4; - MB.B27R4.B2:MB, at= 1265.0897+(208.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832482, assembly_id= 102897, from= IP4; - MCS.B27R4.B2:MCS, at= 1272.5137+(209-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245072, assembly_id= 102897, from= IP4; - MB.C27R4.B2:MB, at= 1280.7497+(209.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832506, assembly_id= 102898, from= IP4; - MCS.C27R4.B2:MCS, at= 1288.1737+(210-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245075, assembly_id= 102898, from= IP4; - BPM.27R4.B2:BPM, at= 1289.0527+(210-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245077, assembly_id= 102899, from= IP4; - MQS.27R4.B2:MQS, at= 1289.8067+(210-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307674, assembly_id= 102899, from= IP4; -MQ.27R4.B2:MQ, at= 1291.8147+(210-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308205, assembly_id= 102899, from= IP4; - MS.27R4.B2:MS, at= 1293.7097+(210-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251254, assembly_id= 102899, from= IP4; - MCBH.27R4.B2:MCBH, at= 1294.3027+(210-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251256, assembly_id= 102899, from= IP4; - MCO.A28R4.B2:MCO, at= 1295.3937+(210-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251258, assembly_id= 102900, from= IP4; - MCD.A28R4.B2:MCD, at= 1295.3952+(210-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251259, assembly_id= 102900, from= IP4; - MB.A28R4.B2:MB, at= 1302.8797+(210.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832530, assembly_id= 102900, from= IP4; - MCS.A28R4.B2:MCS, at= 1310.3037+(211-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245085, assembly_id= 102900, from= IP4; - MB.B28R4.B2:MB, at= 1318.5397+(211.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832554, assembly_id= 102901, from= IP4; - MCS.B28R4.B2:MCS, at= 1325.9637+(212-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245088, assembly_id= 102901, from= IP4; - MCO.B28R4.B2:MCO, at= 1326.7137+(212-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251262, assembly_id= 102902, from= IP4; - MCD.B28R4.B2:MCD, at= 1326.7152+(212-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251263, assembly_id= 102902, from= IP4; - MB.C28R4.B2:MB, at= 1334.1997+(212.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832578, assembly_id= 102902, from= IP4; - MCS.C28R4.B2:MCS, at= 1341.6237+(213-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245093, assembly_id= 102902, from= IP4; - BPM.28R4.B2:BPM, at= 1342.5027+(213-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245095, assembly_id= 102903, from= IP4; - MO.28R4.B2:MO, at= 1343.2537+(213-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308703, assembly_id= 102903, from= IP4; -MQ.28R4.B2:MQ, at= 1345.2647+(213-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307997, assembly_id= 102903, from= IP4; - MS.28R4.B2:MS, at= 1347.1597+(213-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251266, assembly_id= 102903, from= IP4; - MCBV.28R4.B2:MCBV, at= 1347.7527+(213-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251268, assembly_id= 102903, from= IP4; - MB.A29R4.B2:MB, at= 1356.3297+(213.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832602, assembly_id= 102904, from= IP4; - MCS.A29R4.B2:MCS, at= 1363.7537+(214-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245101, assembly_id= 102904, from= IP4; - MCO.29R4.B2:MCO, at= 1364.5037+(214-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251270, assembly_id= 102905, from= IP4; - MCD.29R4.B2:MCD, at= 1364.5052+(214-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251271, assembly_id= 102905, from= IP4; - MB.B29R4.B2:MB, at= 1371.9897+(214.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832626, assembly_id= 102905, from= IP4; - MCS.B29R4.B2:MCS, at= 1379.4137+(215-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245106, assembly_id= 102905, from= IP4; - MB.C29R4.B2:MB, at= 1387.6497+(215.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832650, assembly_id= 102906, from= IP4; - MCS.C29R4.B2:MCS, at= 1395.0737+(216-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245109, assembly_id= 102906, from= IP4; - BPM.29R4.B2:BPM, at= 1395.9527+(216-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245111, assembly_id= 102907, from= IP4; - MO.29R4.B2:MO, at= 1396.7037+(216-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308735, assembly_id= 102907, from= IP4; -MQ.29R4.B2:MQ, at= 1398.7147+(216-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308028, assembly_id= 102907, from= IP4; - MSS.29R4.B2:MSS, at= 1400.6097+(216-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251274, assembly_id= 102907, from= IP4; - MCBH.29R4.B2:MCBH, at= 1401.2027+(216-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251276, assembly_id= 102907, from= IP4; - MCO.A30R4.B2:MCO, at= 1402.2937+(216-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251278, assembly_id= 102908, from= IP4; - MCD.A30R4.B2:MCD, at= 1402.2952+(216-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251279, assembly_id= 102908, from= IP4; - MB.A30R4.B2:MB, at= 1409.7797+(216.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832674, assembly_id= 102908, from= IP4; - MCS.A30R4.B2:MCS, at= 1417.2037+(217-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245119, assembly_id= 102908, from= IP4; - MB.B30R4.B2:MB, at= 1425.4397+(217.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832698, assembly_id= 102909, from= IP4; - MCS.B30R4.B2:MCS, at= 1432.8637+(218-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245122, assembly_id= 102909, from= IP4; - MCO.B30R4.B2:MCO, at= 1433.6137+(218-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251282, assembly_id= 102910, from= IP4; - MCD.B30R4.B2:MCD, at= 1433.6152+(218-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251283, assembly_id= 102910, from= IP4; - MB.C30R4.B2:MB, at= 1441.0997+(218.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832722, assembly_id= 102910, from= IP4; - MCS.C30R4.B2:MCS, at= 1448.5237+(219-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245127, assembly_id= 102910, from= IP4; - BPM.30R4.B2:BPM, at= 1449.4027+(219-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245129, assembly_id= 102911, from= IP4; - MO.30R4.B2:MO, at= 1450.1537+(219-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308766, assembly_id= 102911, from= IP4; -MQ.30R4.B2:MQ, at= 1452.1647+(219-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348467, assembly_id= 102911, from= IP4; - MS.30R4.B2:MS, at= 1454.0597+(219-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251286, assembly_id= 102911, from= IP4; - MCBV.30R4.B2:MCBV, at= 1454.6527+(219-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251288, assembly_id= 102911, from= IP4; - MB.A31R4.B2:MB, at= 1463.2297+(219.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832746, assembly_id= 102912, from= IP4; - MCS.A31R4.B2:MCS, at= 1470.6537+(220-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245135, assembly_id= 102912, from= IP4; - MCO.31R4.B2:MCO, at= 1471.4037+(220-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251290, assembly_id= 102913, from= IP4; - MCD.31R4.B2:MCD, at= 1471.4052+(220-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251291, assembly_id= 102913, from= IP4; - MB.B31R4.B2:MB, at= 1478.8897+(220.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832770, assembly_id= 102913, from= IP4; - MCS.B31R4.B2:MCS, at= 1486.3137+(221-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245140, assembly_id= 102913, from= IP4; - MB.C31R4.B2:MB, at= 1494.5497+(221.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832794, assembly_id= 102914, from= IP4; - MCS.C31R4.B2:MCS, at= 1501.9737+(222-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245143, assembly_id= 102914, from= IP4; - BPM.31R4.B2:BPM, at= 1502.8527+(222-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245145, assembly_id= 102915, from= IP4; - MO.31R4.B2:MO, at= 1503.6037+(222-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308796, assembly_id= 102915, from= IP4; -MQ.31R4.B2:MQ, at= 1505.6147+(222-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307849, assembly_id= 102915, from= IP4; - MS.31R4.B2:MS, at= 1507.5097+(222-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251294, assembly_id= 102915, from= IP4; - MCBH.31R4.B2:MCBH, at= 1508.1027+(222-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251296, assembly_id= 102915, from= IP4; -S.CELL.45.B2:OMK, at= 1508.8497+(222-IP4OFS.B2)*DS, slot_id= 100932, from= IP4; - MCO.A32R4.B2:MCO, at= 1509.1937+(222-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251298, assembly_id= 102916, from= IP4; - MCD.A32R4.B2:MCD, at= 1509.1952+(222-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251299, assembly_id= 102916, from= IP4; - MB.A32R4.B2:MB, at= 1516.6797+(222.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832818, assembly_id= 102916, from= IP4; - MCS.A32R4.B2:MCS, at= 1524.1037+(223-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245153, assembly_id= 102916, from= IP4; - MB.B32R4.B2:MB, at= 1532.3397+(223.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832842, assembly_id= 102917, from= IP4; - MCS.B32R4.B2:MCS, at= 1539.7637+(224-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245156, assembly_id= 102917, from= IP4; - MCO.B32R4.B2:MCO, at= 1540.5137+(224-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251302, assembly_id= 102918, from= IP4; - MCD.B32R4.B2:MCD, at= 1540.5152+(224-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251303, assembly_id= 102918, from= IP4; - MB.C32R4.B2:MB, at= 1547.9997+(224.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832866, assembly_id= 102918, from= IP4; - MCS.C32R4.B2:MCS, at= 1555.4237+(225-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245161, assembly_id= 102918, from= IP4; - BPM.32R4.B2:BPM, at= 1556.3027+(225-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245163, assembly_id= 102919, from= IP4; - MO.32R4.B2:MO, at= 1557.0537+(225-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308588, assembly_id= 102919, from= IP4; -MQ.32R4.B2:MQ, at= 1559.0647+(225-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307879, assembly_id= 102919, from= IP4; - MS.32R4.B2:MS, at= 1560.9597+(225-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251306, assembly_id= 102919, from= IP4; - MCBV.32R4.B2:MCBV, at= 1561.5527+(225-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251308, assembly_id= 102919, from= IP4; - MB.A33R4.B2:MB, at= 1570.1297+(225.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832890, assembly_id= 102920, from= IP4; - MCS.A33R4.B2:MCS, at= 1577.5537+(226-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245169, assembly_id= 102920, from= IP4; - MCO.33R4.B2:MCO, at= 1578.3037+(226-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251310, assembly_id= 102921, from= IP4; - MCD.33R4.B2:MCD, at= 1578.3052+(226-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251311, assembly_id= 102921, from= IP4; - MB.B33R4.B2:MB, at= 1585.7897+(226.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832914, assembly_id= 102921, from= IP4; - MCS.B33R4.B2:MCS, at= 1593.2137+(227-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245174, assembly_id= 102921, from= IP4; - MB.C33R4.B2:MB, at= 1601.4497+(227.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832938, assembly_id= 102922, from= IP4; - MCS.C33R4.B2:MCS, at= 1608.8737+(228-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245177, assembly_id= 102922, from= IP4; - BPM.33R4.B2:BPM, at= 1609.7527+(228-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245179, assembly_id= 102923, from= IP4; - MO.33R4.B2:MO, at= 1610.5037+(228-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308619, assembly_id= 102923, from= IP4; -MQ.33R4.B2:MQ, at= 1612.5147+(228-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307909, assembly_id= 102923, from= IP4; - MSS.33R4.B2:MSS, at= 1614.4097+(228-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251314, assembly_id= 102923, from= IP4; - MCBH.33R4.B2:MCBH, at= 1615.0027+(228-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251316, assembly_id= 102923, from= IP4; -E.CELL.45.B2:OMK, at= 1615.7497+(228-IP4OFS.B2)*DS, slot_id= 100932, from= IP4; - MCO.A34R4.B2:MCO, at= 1616.0937+(228-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251318, assembly_id= 102924, from= IP4; - MCD.A34R4.B2:MCD, at= 1616.0952+(228-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251319, assembly_id= 102924, from= IP4; - MB.A34R4.B2:MB, at= 1623.5797+(228.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832962, assembly_id= 102924, from= IP4; - MCS.A34R4.B2:MCS, at= 1631.0037+(229-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245187, assembly_id= 102924, from= IP4; - MB.B34R4.B2:MB, at= 1639.2397+(229.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52832986, assembly_id= 102925, from= IP4; - MCS.B34R4.B2:MCS, at= 1646.6637+(230-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245190, assembly_id= 102925, from= IP4; - MCO.B34R4.B2:MCO, at= 1647.4137+(230-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251322, assembly_id= 102926, from= IP4; - MCD.B34R4.B2:MCD, at= 1647.4152+(230-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251323, assembly_id= 102926, from= IP4; - MB.C34R4.B2:MB, at= 1654.8997+(230.5-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833010, assembly_id= 102926, from= IP4; - MCS.C34R4.B2:MCS, at= 1662.3237+(231-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245195, assembly_id= 102926, from= IP4; - BPM.34R4.B2:BPM, at= 1663.2027+(231-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245197, assembly_id= 102927, from= IP4; - MO.34R4.B2:MO, at= 1663.9537+(231-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308634, assembly_id= 102927, from= IP4; -MQ.34R4.B2:MQ, at= 1665.9647+(231-IP4OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307924, assembly_id= 102927, from= IP4; - MS.34L5.B2:MS, at= -1664.5007+(231-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251326, assembly_id= 102927, from= IP5; - MCBV.34L5.B2:MCBV, at= -1663.9077+(231-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251328, assembly_id= 102927, from= IP5; - MB.C34L5.B2:MB, at= -1655.3307+(231.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833034, assembly_id= 102928, from= IP5; - MCS.C34L5.B2:MCS, at= -1647.9067+(232-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245203, assembly_id= 102928, from= IP5; - MCO.34L5.B2:MCO, at= -1647.1567+(232-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251330, assembly_id= 102929, from= IP5; - MCD.34L5.B2:MCD, at= -1647.1552+(232-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251331, assembly_id= 102929, from= IP5; - MB.B34L5.B2:MB, at= -1639.6707+(232.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833058, assembly_id= 102929, from= IP5; - MCS.B34L5.B2:MCS, at= -1632.2467+(233-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245208, assembly_id= 102929, from= IP5; - MB.A34L5.B2:MB, at= -1624.0107+(233.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833082, assembly_id= 102930, from= IP5; - MCS.A34L5.B2:MCS, at= -1616.5867+(234-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245211, assembly_id= 102930, from= IP5; - BPM.33L5.B2:BPM, at= -1615.7077+(234-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245213, assembly_id= 102931, from= IP5; - MO.33L5.B2:MO, at= -1614.9567+(234-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308606, assembly_id= 102931, from= IP5; -MQ.33L5.B2:MQ, at= -1612.9457+(234-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307896, assembly_id= 102931, from= IP5; - MSS.33L5.B2:MSS, at= -1611.0507+(234-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251334, assembly_id= 102931, from= IP5; - MCBH.33L5.B2:MCBH, at= -1610.4577+(234-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251336, assembly_id= 102931, from= IP5; - MCO.B33L5.B2:MCO, at= -1609.3667+(234-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251338, assembly_id= 102932, from= IP5; - MCD.B33L5.B2:MCD, at= -1609.3652+(234-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251339, assembly_id= 102932, from= IP5; - MB.C33L5.B2:MB, at= -1601.8807+(234.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833106, assembly_id= 102932, from= IP5; - MCS.C33L5.B2:MCS, at= -1594.4567+(235-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245221, assembly_id= 102932, from= IP5; - MB.B33L5.B2:MB, at= -1586.2207+(235.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833130, assembly_id= 102933, from= IP5; - MCS.B33L5.B2:MCS, at= -1578.7967+(236-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245224, assembly_id= 102933, from= IP5; - MCO.A33L5.B2:MCO, at= -1578.0467+(236-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251342, assembly_id= 102934, from= IP5; - MCD.A33L5.B2:MCD, at= -1578.0452+(236-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251343, assembly_id= 102934, from= IP5; - MB.A33L5.B2:MB, at= -1570.5607+(236.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833154, assembly_id= 102934, from= IP5; - MCS.A33L5.B2:MCS, at= -1563.1367+(237-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245229, assembly_id= 102934, from= IP5; - BPM.32L5.B2:BPM, at= -1562.2577+(237-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245231, assembly_id= 102935, from= IP5; - MO.32L5.B2:MO, at= -1561.5067+(237-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308574, assembly_id= 102935, from= IP5; -MQ.32L5.B2:MQ, at= -1559.4957+(237-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307866, assembly_id= 102935, from= IP5; - MS.32L5.B2:MS, at= -1557.6007+(237-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251346, assembly_id= 102935, from= IP5; - MCBV.32L5.B2:MCBV, at= -1557.0077+(237-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251348, assembly_id= 102935, from= IP5; - MB.C32L5.B2:MB, at= -1548.4307+(237.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833178, assembly_id= 102936, from= IP5; - MCS.C32L5.B2:MCS, at= -1541.0067+(238-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245237, assembly_id= 102936, from= IP5; - MCO.32L5.B2:MCO, at= -1540.2567+(238-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251350, assembly_id= 102937, from= IP5; - MCD.32L5.B2:MCD, at= -1540.2552+(238-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251351, assembly_id= 102937, from= IP5; - MB.B32L5.B2:MB, at= -1532.7707+(238.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833202, assembly_id= 102937, from= IP5; - MCS.B32L5.B2:MCS, at= -1525.3467+(239-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245242, assembly_id= 102937, from= IP5; - MB.A32L5.B2:MB, at= -1517.1107+(239.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833226, assembly_id= 102938, from= IP5; - MCS.A32L5.B2:MCS, at= -1509.6867+(240-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245245, assembly_id= 102938, from= IP5; - BPM.31L5.B2:BPM, at= -1508.8077+(240-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245247, assembly_id= 102939, from= IP5; - MO.31L5.B2:MO, at= -1508.0567+(240-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308783, assembly_id= 102939, from= IP5; -MQ.31L5.B2:MQ, at= -1506.0457+(240-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308074, assembly_id= 102939, from= IP5; - MS.31L5.B2:MS, at= -1504.1507+(240-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251354, assembly_id= 102939, from= IP5; - MCBH.31L5.B2:MCBH, at= -1503.5577+(240-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251356, assembly_id= 102939, from= IP5; - MCO.B31L5.B2:MCO, at= -1502.4667+(240-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251358, assembly_id= 102940, from= IP5; - MCD.B31L5.B2:MCD, at= -1502.4652+(240-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251359, assembly_id= 102940, from= IP5; - MB.C31L5.B2:MB, at= -1494.9807+(240.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833250, assembly_id= 102940, from= IP5; - MCS.C31L5.B2:MCS, at= -1487.5567+(241-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245255, assembly_id= 102940, from= IP5; - MB.B31L5.B2:MB, at= -1479.3207+(241.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833274, assembly_id= 102941, from= IP5; - MCS.B31L5.B2:MCS, at= -1471.8967+(242-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245258, assembly_id= 102941, from= IP5; - MCO.A31L5.B2:MCO, at= -1471.1467+(242-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251362, assembly_id= 102942, from= IP5; - MCD.A31L5.B2:MCD, at= -1471.1452+(242-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251363, assembly_id= 102942, from= IP5; - MB.A31L5.B2:MB, at= -1463.6607+(242.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833298, assembly_id= 102942, from= IP5; - MCS.A31L5.B2:MCS, at= -1456.2367+(243-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245263, assembly_id= 102942, from= IP5; - BPM.30L5.B2:BPM, at= -1455.3577+(243-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245265, assembly_id= 102943, from= IP5; - MO.30L5.B2:MO, at= -1454.6067+(243-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308753, assembly_id= 102943, from= IP5; -MQ.30L5.B2:MQ, at= -1452.5957+(243-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308044, assembly_id= 102943, from= IP5; - MS.30L5.B2:MS, at= -1450.7007+(243-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251366, assembly_id= 102943, from= IP5; - MCBV.30L5.B2:MCBV, at= -1450.1077+(243-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251368, assembly_id= 102943, from= IP5; - MB.C30L5.B2:MB, at= -1441.5307+(243.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833322, assembly_id= 102944, from= IP5; - MCS.C30L5.B2:MCS, at= -1434.1067+(244-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245271, assembly_id= 102944, from= IP5; - MCO.30L5.B2:MCO, at= -1433.3567+(244-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251370, assembly_id= 102945, from= IP5; - MCD.30L5.B2:MCD, at= -1433.3552+(244-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251371, assembly_id= 102945, from= IP5; - MB.B30L5.B2:MB, at= -1425.8707+(244.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833346, assembly_id= 102945, from= IP5; - MCS.B30L5.B2:MCS, at= -1418.4467+(245-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245276, assembly_id= 102945, from= IP5; - MB.A30L5.B2:MB, at= -1410.2107+(245.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833370, assembly_id= 102946, from= IP5; - MCS.A30L5.B2:MCS, at= -1402.7867+(246-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245279, assembly_id= 102946, from= IP5; - BPM.29L5.B2:BPM, at= -1401.9077+(246-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245281, assembly_id= 102947, from= IP5; - MO.29L5.B2:MO, at= -1401.1567+(246-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308721, assembly_id= 102947, from= IP5; -MQ.29L5.B2:MQ, at= -1399.1457+(246-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308015, assembly_id= 102947, from= IP5; - MSS.29L5.B2:MSS, at= -1397.2507+(246-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251374, assembly_id= 102947, from= IP5; - MCBH.29L5.B2:MCBH, at= -1396.6577+(246-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251376, assembly_id= 102947, from= IP5; - MCO.B29L5.B2:MCO, at= -1395.5667+(246-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251378, assembly_id= 102948, from= IP5; - MCD.B29L5.B2:MCD, at= -1395.5652+(246-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251379, assembly_id= 102948, from= IP5; - MB.C29L5.B2:MB, at= -1388.0807+(246.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833394, assembly_id= 102948, from= IP5; - MCS.C29L5.B2:MCS, at= -1380.6567+(247-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245289, assembly_id= 102948, from= IP5; - MB.B29L5.B2:MB, at= -1372.4207+(247.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833418, assembly_id= 102949, from= IP5; - MCS.B29L5.B2:MCS, at= -1364.9967+(248-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245292, assembly_id= 102949, from= IP5; - MCO.A29L5.B2:MCO, at= -1364.2467+(248-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251382, assembly_id= 102950, from= IP5; - MCD.A29L5.B2:MCD, at= -1364.2452+(248-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251383, assembly_id= 102950, from= IP5; - MB.A29L5.B2:MB, at= -1356.7607+(248.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833442, assembly_id= 102950, from= IP5; - MCS.A29L5.B2:MCS, at= -1349.3367+(249-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245297, assembly_id= 102950, from= IP5; - BPM.28L5.B2:BPM, at= -1348.4577+(249-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245299, assembly_id= 102951, from= IP5; - MO.28L5.B2:MO, at= -1347.7067+(249-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308690, assembly_id= 102951, from= IP5; -MQ.28L5.B2:MQ, at= -1345.6957+(249-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307983, assembly_id= 102951, from= IP5; - MS.28L5.B2:MS, at= -1343.8007+(249-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251386, assembly_id= 102951, from= IP5; - MCBV.28L5.B2:MCBV, at= -1343.2077+(249-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251388, assembly_id= 102951, from= IP5; - MB.C28L5.B2:MB, at= -1334.6307+(249.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833466, assembly_id= 102952, from= IP5; - MCS.C28L5.B2:MCS, at= -1327.2067+(250-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245305, assembly_id= 102952, from= IP5; - MCO.28L5.B2:MCO, at= -1326.4567+(250-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251390, assembly_id= 102953, from= IP5; - MCD.28L5.B2:MCD, at= -1326.4552+(250-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251391, assembly_id= 102953, from= IP5; - MB.B28L5.B2:MB, at= -1318.9707+(250.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833490, assembly_id= 102953, from= IP5; - MCS.B28L5.B2:MCS, at= -1311.5467+(251-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245310, assembly_id= 102953, from= IP5; - MB.A28L5.B2:MB, at= -1303.3107+(251.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833514, assembly_id= 102954, from= IP5; - MCS.A28L5.B2:MCS, at= -1295.8867+(252-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245313, assembly_id= 102954, from= IP5; - BPM.27L5.B2:BPM, at= -1295.0077+(252-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245315, assembly_id= 102955, from= IP5; - MQS.27L5.B2:MQS, at= -1294.2537+(252-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307660, assembly_id= 102955, from= IP5; -MQ.27L5.B2:MQ, at= -1292.2457+(252-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308192, assembly_id= 102955, from= IP5; - MS.27L5.B2:MS, at= -1290.3507+(252-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251394, assembly_id= 102955, from= IP5; - MCBH.27L5.B2:MCBH, at= -1289.7577+(252-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251396, assembly_id= 102955, from= IP5; - MCO.B27L5.B2:MCO, at= -1288.6667+(252-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251398, assembly_id= 102956, from= IP5; - MCD.B27L5.B2:MCD, at= -1288.6652+(252-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251399, assembly_id= 102956, from= IP5; - MB.C27L5.B2:MB, at= -1281.1807+(252.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833538, assembly_id= 102956, from= IP5; - MCS.C27L5.B2:MCS, at= -1273.7567+(253-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245323, assembly_id= 102956, from= IP5; - MB.B27L5.B2:MB, at= -1265.5207+(253.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833562, assembly_id= 102957, from= IP5; - MCS.B27L5.B2:MCS, at= -1258.0967+(254-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245326, assembly_id= 102957, from= IP5; - MCO.A27L5.B2:MCO, at= -1257.3467+(254-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251402, assembly_id= 102958, from= IP5; - MCD.A27L5.B2:MCD, at= -1257.3452+(254-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251403, assembly_id= 102958, from= IP5; - MB.A27L5.B2:MB, at= -1249.8607+(254.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833586, assembly_id= 102958, from= IP5; - MCS.A27L5.B2:MCS, at= -1242.4367+(255-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245331, assembly_id= 102958, from= IP5; - BPM.26L5.B2:BPM, at= -1241.5577+(255-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245333, assembly_id= 102959, from= IP5; - MO.26L5.B2:MO, at= -1240.8067+(255-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308900, assembly_id= 102959, from= IP5; -MQ.26L5.B2:MQ, at= -1238.7957+(255-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308163, assembly_id= 102959, from= IP5; - MS.26L5.B2:MS, at= -1236.9007+(255-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251406, assembly_id= 102959, from= IP5; - MCBV.26L5.B2:MCBV, at= -1236.3077+(255-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251408, assembly_id= 102959, from= IP5; - MB.C26L5.B2:MB, at= -1227.7307+(255.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833610, assembly_id= 102960, from= IP5; - MCS.C26L5.B2:MCS, at= -1220.3067+(256-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245339, assembly_id= 102960, from= IP5; - MCO.26L5.B2:MCO, at= -1219.5567+(256-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251410, assembly_id= 102961, from= IP5; - MCD.26L5.B2:MCD, at= -1219.5552+(256-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251411, assembly_id= 102961, from= IP5; - MB.B26L5.B2:MB, at= -1212.0707+(256.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833634, assembly_id= 102961, from= IP5; - MCS.B26L5.B2:MCS, at= -1204.6467+(257-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245344, assembly_id= 102961, from= IP5; - MB.A26L5.B2:MB, at= -1196.4107+(257.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833658, assembly_id= 102962, from= IP5; - MCS.A26L5.B2:MCS, at= -1188.9867+(258-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245347, assembly_id= 102962, from= IP5; - BPM.25L5.B2:BPM, at= -1188.1077+(258-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245349, assembly_id= 102963, from= IP5; - MO.25L5.B2:MO, at= -1187.3567+(258-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308868, assembly_id= 102963, from= IP5; -MQ.25L5.B2:MQ, at= -1185.3457+(258-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308131, assembly_id= 102963, from= IP5; - MS.25L5.B2:MS, at= -1183.4507+(258-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251414, assembly_id= 102963, from= IP5; - MCBH.25L5.B2:MCBH, at= -1182.8577+(258-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251416, assembly_id= 102963, from= IP5; - MCO.B25L5.B2:MCO, at= -1181.7667+(258-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251418, assembly_id= 102964, from= IP5; - MCD.B25L5.B2:MCD, at= -1181.7652+(258-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251419, assembly_id= 102964, from= IP5; - MB.C25L5.B2:MB, at= -1174.2807+(258.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833682, assembly_id= 102964, from= IP5; - MCS.C25L5.B2:MCS, at= -1166.8567+(259-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245357, assembly_id= 102964, from= IP5; - MB.B25L5.B2:MB, at= -1158.6207+(259.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833706, assembly_id= 102965, from= IP5; - MCS.B25L5.B2:MCS, at= -1151.1967+(260-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245360, assembly_id= 102965, from= IP5; - MCO.A25L5.B2:MCO, at= -1150.4467+(260-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251422, assembly_id= 102966, from= IP5; - MCD.A25L5.B2:MCD, at= -1150.4452+(260-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251423, assembly_id= 102966, from= IP5; - MB.A25L5.B2:MB, at= -1142.9607+(260.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833730, assembly_id= 102966, from= IP5; - MCS.A25L5.B2:MCS, at= -1135.5367+(261-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245365, assembly_id= 102966, from= IP5; - BPM.24L5.B2:BPM, at= -1134.6577+(261-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245367, assembly_id= 102967, from= IP5; - MO.24L5.B2:MO, at= -1133.9067+(261-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308837, assembly_id= 102967, from= IP5; -MQ.24L5.B2:MQ, at= -1131.8957+(261-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308099, assembly_id= 102967, from= IP5; - MS.24L5.B2:MS, at= -1130.0007+(261-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251426, assembly_id= 102967, from= IP5; - MCBV.24L5.B2:MCBV, at= -1129.4077+(261-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251428, assembly_id= 102967, from= IP5; - MB.C24L5.B2:MB, at= -1120.8307+(261.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833754, assembly_id= 102968, from= IP5; - MCS.C24L5.B2:MCS, at= -1113.4067+(262-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245373, assembly_id= 102968, from= IP5; - MCO.24L5.B2:MCO, at= -1112.6567+(262-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251430, assembly_id= 102969, from= IP5; - MCD.24L5.B2:MCD, at= -1112.6552+(262-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251431, assembly_id= 102969, from= IP5; - MB.B24L5.B2:MB, at= -1105.1707+(262.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833778, assembly_id= 102969, from= IP5; - MCS.B24L5.B2:MCS, at= -1097.7467+(263-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245378, assembly_id= 102969, from= IP5; - MB.A24L5.B2:MB, at= -1089.5107+(263.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833802, assembly_id= 102970, from= IP5; - MCS.A24L5.B2:MCS, at= -1082.0867+(264-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245381, assembly_id= 102970, from= IP5; - BPM.23L5.B2:BPM, at= -1081.2077+(264-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245383, assembly_id= 102971, from= IP5; - MQS.23L5.B2:MQS, at= -1080.4537+(264-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307629, assembly_id= 102971, from= IP5; -MQ.23L5.B2:MQ, at= -1078.4457+(264-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308310, assembly_id= 102971, from= IP5; - MS.23L5.B2:MS, at= -1076.5507+(264-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251434, assembly_id= 102971, from= IP5; - MCBH.23L5.B2:MCBH, at= -1075.9577+(264-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251436, assembly_id= 102971, from= IP5; - MCO.B23L5.B2:MCO, at= -1074.8667+(264-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251438, assembly_id= 102972, from= IP5; - MCD.B23L5.B2:MCD, at= -1074.8652+(264-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251439, assembly_id= 102972, from= IP5; - MB.C23L5.B2:MB, at= -1067.3807+(264.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833826, assembly_id= 102972, from= IP5; - MCS.C23L5.B2:MCS, at= -1059.9567+(265-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245391, assembly_id= 102972, from= IP5; - MB.B23L5.B2:MB, at= -1051.7207+(265.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833850, assembly_id= 102973, from= IP5; - MCS.B23L5.B2:MCS, at= -1044.2967+(266-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245394, assembly_id= 102973, from= IP5; - MCO.A23L5.B2:MCO, at= -1043.5467+(266-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251442, assembly_id= 102974, from= IP5; - MCD.A23L5.B2:MCD, at= -1043.5452+(266-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251443, assembly_id= 102974, from= IP5; - MB.A23L5.B2:MB, at= -1036.0607+(266.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833874, assembly_id= 102974, from= IP5; - MCS.A23L5.B2:MCS, at= -1028.6367+(267-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245399, assembly_id= 102974, from= IP5; - BPM.22L5.B2:BPM, at= -1027.7577+(267-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245401, assembly_id= 102975, from= IP5; - MO.22L5.B2:MO, at= -1027.0067+(267-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308807, assembly_id= 102975, from= IP5; -MQ.22L5.B2:MQ, at= -1024.9957+(267-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308278, assembly_id= 102975, from= IP5; - MS.22L5.B2:MS, at= -1023.1007+(267-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251446, assembly_id= 102975, from= IP5; - MCBV.22L5.B2:MCBV, at= -1022.5077+(267-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251448, assembly_id= 102975, from= IP5; - MB.C22L5.B2:MB, at= -1013.9307+(267.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833898, assembly_id= 102976, from= IP5; - MCS.C22L5.B2:MCS, at= -1006.5067+(268-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245407, assembly_id= 102976, from= IP5; - MCO.22L5.B2:MCO, at= -1005.7567+(268-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251450, assembly_id= 102977, from= IP5; - MCD.22L5.B2:MCD, at= -1005.7552+(268-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251451, assembly_id= 102977, from= IP5; - MB.B22L5.B2:MB, at= -998.2707+(268.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833922, assembly_id= 102977, from= IP5; - MCS.B22L5.B2:MCS, at= -990.8467+(269-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245412, assembly_id= 102977, from= IP5; - MB.A22L5.B2:MB, at= -982.6107+(269.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833946, assembly_id= 102978, from= IP5; - MCS.A22L5.B2:MCS, at= -975.1867+(270-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245415, assembly_id= 102978, from= IP5; - BPM.21L5.B2:BPM, at= -974.3077+(270-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245417, assembly_id= 102979, from= IP5; - MQT.21L5.B2:MQT, at= -973.5537+(270-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307262, assembly_id= 102979, from= IP5; -MQ.21L5.B2:MQ, at= -971.5457+(270-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308246, assembly_id= 102979, from= IP5; - MS.21L5.B2:MS, at= -969.6507+(270-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251454, assembly_id= 102979, from= IP5; - MCBH.21L5.B2:MCBH, at= -969.0577+(270-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251456, assembly_id= 102979, from= IP5; - MCO.B21L5.B2:MCO, at= -967.9667+(270-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251458, assembly_id= 102980, from= IP5; - MCD.B21L5.B2:MCD, at= -967.9652+(270-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251459, assembly_id= 102980, from= IP5; - MB.C21L5.B2:MB, at= -960.4807+(270.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833970, assembly_id= 102980, from= IP5; - MCS.C21L5.B2:MCS, at= -953.0567+(271-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245425, assembly_id= 102980, from= IP5; - MB.B21L5.B2:MB, at= -944.8207+(271.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52833994, assembly_id= 102981, from= IP5; - MCS.B21L5.B2:MCS, at= -937.3967+(272-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245428, assembly_id= 102981, from= IP5; - MCO.A21L5.B2:MCO, at= -936.6467+(272-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251462, assembly_id= 102982, from= IP5; - MCD.A21L5.B2:MCD, at= -936.6452+(272-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251463, assembly_id= 102982, from= IP5; - MB.A21L5.B2:MB, at= -929.1607+(272.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834018, assembly_id= 102982, from= IP5; - MCS.A21L5.B2:MCS, at= -921.7367+(273-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245433, assembly_id= 102982, from= IP5; - BPM.20L5.B2:BPM, at= -920.8577+(273-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245435, assembly_id= 102983, from= IP5; - MQT.20L5.B2:MQT, at= -920.1037+(273-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307465, assembly_id= 102983, from= IP5; -MQ.20L5.B2:MQ, at= -918.0957+(273-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348474, assembly_id= 102983, from= IP5; - MS.20L5.B2:MS, at= -916.2007+(273-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251466, assembly_id= 102983, from= IP5; - MCBV.20L5.B2:MCBV, at= -915.6077+(273-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251468, assembly_id= 102983, from= IP5; - MB.C20L5.B2:MB, at= -907.0307+(273.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834042, assembly_id= 102984, from= IP5; - MCS.C20L5.B2:MCS, at= -899.6067+(274-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245441, assembly_id= 102984, from= IP5; - MCO.20L5.B2:MCO, at= -898.8567+(274-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251470, assembly_id= 102985, from= IP5; - MCD.20L5.B2:MCD, at= -898.8552+(274-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251471, assembly_id= 102985, from= IP5; - MB.B20L5.B2:MB, at= -891.3707+(274.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834066, assembly_id= 102985, from= IP5; - MCS.B20L5.B2:MCS, at= -883.9467+(275-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245446, assembly_id= 102985, from= IP5; - MB.A20L5.B2:MB, at= -875.7107+(275.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834090, assembly_id= 102986, from= IP5; - MCS.A20L5.B2:MCS, at= -868.2867+(276-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245449, assembly_id= 102986, from= IP5; - BPM.19L5.B2:BPM, at= -867.4077+(276-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245451, assembly_id= 102987, from= IP5; - MQT.19L5.B2:MQT, at= -866.6537+(276-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307435, assembly_id= 102987, from= IP5; -MQ.19L5.B2:MQ, at= -864.6457+(276-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308425, assembly_id= 102987, from= IP5; - MS.19L5.B2:MS, at= -862.7507+(276-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251474, assembly_id= 102987, from= IP5; - MCBH.19L5.B2:MCBH, at= -862.1577+(276-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251476, assembly_id= 102987, from= IP5; - MCO.B19L5.B2:MCO, at= -861.0667+(276-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251478, assembly_id= 102988, from= IP5; - MCD.B19L5.B2:MCD, at= -861.0652+(276-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251479, assembly_id= 102988, from= IP5; - MB.C19L5.B2:MB, at= -853.5807+(276.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834114, assembly_id= 102988, from= IP5; - MCS.C19L5.B2:MCS, at= -846.1567+(277-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245459, assembly_id= 102988, from= IP5; - MB.B19L5.B2:MB, at= -837.9207+(277.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834138, assembly_id= 102989, from= IP5; - MCS.B19L5.B2:MCS, at= -830.4967+(278-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245462, assembly_id= 102989, from= IP5; - MCO.A19L5.B2:MCO, at= -829.7467+(278-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251482, assembly_id= 102990, from= IP5; - MCD.A19L5.B2:MCD, at= -829.7452+(278-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251483, assembly_id= 102990, from= IP5; - MB.A19L5.B2:MB, at= -822.2607+(278.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834162, assembly_id= 102990, from= IP5; - MCS.A19L5.B2:MCS, at= -814.8367+(279-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245467, assembly_id= 102990, from= IP5; - BPM.18L5.B2:BPM, at= -813.9577+(279-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245469, assembly_id= 102991, from= IP5; - MQT.18L5.B2:MQT, at= -813.2037+(279-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307404, assembly_id= 102991, from= IP5; -MQ.18L5.B2:MQ, at= -811.1957+(279-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308393, assembly_id= 102991, from= IP5; - MS.18L5.B2:MS, at= -809.3007+(279-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251486, assembly_id= 102991, from= IP5; - MCBV.18L5.B2:MCBV, at= -808.7077+(279-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251488, assembly_id= 102991, from= IP5; - MB.C18L5.B2:MB, at= -800.1307+(279.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834186, assembly_id= 102992, from= IP5; - MCS.C18L5.B2:MCS, at= -792.7067+(280-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245475, assembly_id= 102992, from= IP5; - MCO.18L5.B2:MCO, at= -791.9567+(280-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251490, assembly_id= 102993, from= IP5; - MCD.18L5.B2:MCD, at= -791.9552+(280-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251491, assembly_id= 102993, from= IP5; - MB.B18L5.B2:MB, at= -784.4707+(280.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834210, assembly_id= 102993, from= IP5; - MCS.B18L5.B2:MCS, at= -777.0467+(281-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245480, assembly_id= 102993, from= IP5; - MB.A18L5.B2:MB, at= -768.8107+(281.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834234, assembly_id= 102994, from= IP5; - MCS.A18L5.B2:MCS, at= -761.3867+(282-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245483, assembly_id= 102994, from= IP5; - BPM.17L5.B2:BPM, at= -760.5077+(282-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245485, assembly_id= 102995, from= IP5; - MQT.17L5.B2:MQT, at= -759.7537+(282-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307609, assembly_id= 102995, from= IP5; -MQ.17L5.B2:MQ, at= -757.7457+(282-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308364, assembly_id= 102995, from= IP5; - MS.17L5.B2:MS, at= -755.8507+(282-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251494, assembly_id= 102995, from= IP5; - MCBH.17L5.B2:MCBH, at= -755.2577+(282-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251496, assembly_id= 102995, from= IP5; - MCO.B17L5.B2:MCO, at= -754.1667+(282-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251498, assembly_id= 102996, from= IP5; - MCD.B17L5.B2:MCD, at= -754.1652+(282-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251499, assembly_id= 102996, from= IP5; - MB.C17L5.B2:MB, at= -746.6807+(282.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834258, assembly_id= 102996, from= IP5; - MCS.C17L5.B2:MCS, at= -739.2567+(283-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245493, assembly_id= 102996, from= IP5; - MB.B17L5.B2:MB, at= -731.0207+(283.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834282, assembly_id= 102997, from= IP5; - MCS.B17L5.B2:MCS, at= -723.5967+(284-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245496, assembly_id= 102997, from= IP5; - MCO.A17L5.B2:MCO, at= -722.8467+(284-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251502, assembly_id= 102998, from= IP5; - MCD.A17L5.B2:MCD, at= -722.8452+(284-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251503, assembly_id= 102998, from= IP5; - MB.A17L5.B2:MB, at= -715.3607+(284.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834306, assembly_id= 102998, from= IP5; - MCS.A17L5.B2:MCS, at= -707.9367+(285-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245501, assembly_id= 102998, from= IP5; - BPM.16L5.B2:BPM, at= -707.0577+(285-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245503, assembly_id= 102999, from= IP5; - MQT.16L5.B2:MQT, at= -706.3037+(285-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307579, assembly_id= 102999, from= IP5; -MQ.16L5.B2:MQ, at= -704.2957+(285-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308334, assembly_id= 102999, from= IP5; - MS.16L5.B2:MS, at= -702.4007+(285-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251506, assembly_id= 102999, from= IP5; - MCBV.16L5.B2:MCBV, at= -701.8077+(285-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251508, assembly_id= 102999, from= IP5; - MB.C16L5.B2:MB, at= -693.2307+(285.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834330, assembly_id= 103000, from= IP5; - MCS.C16L5.B2:MCS, at= -685.8067+(286-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245509, assembly_id= 103000, from= IP5; - MCO.16L5.B2:MCO, at= -685.0567+(286-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251510, assembly_id= 103001, from= IP5; - MCD.16L5.B2:MCD, at= -685.0552+(286-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251511, assembly_id= 103001, from= IP5; - MB.B16L5.B2:MB, at= -677.5707+(286.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834354, assembly_id= 103001, from= IP5; - MCS.B16L5.B2:MCS, at= -670.1467+(287-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245514, assembly_id= 103001, from= IP5; - MB.A16L5.B2:MB, at= -661.9107+(287.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834378, assembly_id= 103002, from= IP5; - MCS.A16L5.B2:MCS, at= -654.4867+(288-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245517, assembly_id= 103002, from= IP5; - BPM.15L5.B2:BPM, at= -653.6077+(288-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245519, assembly_id= 103003, from= IP5; - MQT.15L5.B2:MQT, at= -652.8537+(288-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307548, assembly_id= 103003, from= IP5; -MQ.15L5.B2:MQ, at= -650.8457+(288-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348490, assembly_id= 103003, from= IP5; - MS.15L5.B2:MS, at= -648.9507+(288-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251514, assembly_id= 103003, from= IP5; - MCBH.15L5.B2:MCBH, at= -648.3577+(288-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251516, assembly_id= 103003, from= IP5; - MCO.B15L5.B2:MCO, at= -647.2667+(288-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251518, assembly_id= 103004, from= IP5; - MCD.B15L5.B2:MCD, at= -647.2652+(288-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251519, assembly_id= 103004, from= IP5; - MB.C15L5.B2:MB, at= -639.7807+(288.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834402, assembly_id= 103004, from= IP5; - MCS.C15L5.B2:MCS, at= -632.3567+(289-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245527, assembly_id= 103004, from= IP5; - MB.B15L5.B2:MB, at= -624.1207+(289.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834426, assembly_id= 103005, from= IP5; - MCS.B15L5.B2:MCS, at= -616.6967+(290-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245530, assembly_id= 103005, from= IP5; - MCO.A15L5.B2:MCO, at= -615.9467+(290-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251522, assembly_id= 103006, from= IP5; - MCD.A15L5.B2:MCD, at= -615.9452+(290-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251523, assembly_id= 103006, from= IP5; - MB.A15L5.B2:MB, at= -608.4607+(290.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834450, assembly_id= 103006, from= IP5; - MCS.A15L5.B2:MCS, at= -601.0367+(291-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245535, assembly_id= 103006, from= IP5; - BPM.14L5.B2:BPM, at= -600.1577+(291-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245537, assembly_id= 103007, from= IP5; - MQT.14L5.B2:MQT, at= -599.4037+(291-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307516, assembly_id= 103007, from= IP5; -MQ.14L5.B2:MQ, at= -597.3957+(291-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308511, assembly_id= 103007, from= IP5; - MS.14L5.B2:MS, at= -595.5007+(291-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251526, assembly_id= 103007, from= IP5; - MCBV.14L5.B2:MCBV, at= -594.9077+(291-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251528, assembly_id= 103007, from= IP5; - MB.C14L5.B2:MB, at= -586.3307+(291.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834474, assembly_id= 103008, from= IP5; - MCS.C14L5.B2:MCS, at= -578.9067+(292-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245543, assembly_id= 103008, from= IP5; - MCO.14L5.B2:MCO, at= -578.1567+(292-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251530, assembly_id= 103009, from= IP5; - MCD.14L5.B2:MCD, at= -578.1552+(292-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251531, assembly_id= 103009, from= IP5; - MB.B14L5.B2:MB, at= -570.6707+(292.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834498, assembly_id= 103009, from= IP5; - MCS.B14L5.B2:MCS, at= -563.2467+(293-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245548, assembly_id= 103009, from= IP5; - MB.A14L5.B2:MB, at= -555.0107+(293.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834522, assembly_id= 103010, from= IP5; - MCS.A14L5.B2:MCS, at= -547.5867+(294-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245551, assembly_id= 103010, from= IP5; -S.DS.L5.B2:OMK, at= -547.1807+(294-IP5OFS.B2)*DS, slot_id= 100932, from= IP5; - BPM.13L5.B2:BPM, at= -546.7077+(294-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245553, assembly_id= 103011, from= IP5; - MQT.13L5.B2:MQT, at= -545.9537+(294-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307724, assembly_id= 103011, from= IP5; -MQ.13L5.B2:MQ, at= -543.9457+(294-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308481, assembly_id= 103011, from= IP5; - MS.13L5.B2:MS, at= -542.0507+(294-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251534, assembly_id= 103011, from= IP5; - MCBH.13L5.B2:MCBH, at= -541.4577+(294-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251536, assembly_id= 103011, from= IP5; - MCO.B13L5.B2:MCO, at= -540.3667+(294-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251538, assembly_id= 103012, from= IP5; - MCD.B13L5.B2:MCD, at= -540.3652+(294-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251539, assembly_id= 103012, from= IP5; - MB.C13L5.B2:MB, at= -532.8807+(294.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834546, assembly_id= 103012, from= IP5; - MCS.C13L5.B2:MCS, at= -525.4567+(295-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245561, assembly_id= 103012, from= IP5; - MB.B13L5.B2:MB, at= -517.2207+(295.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834570, assembly_id= 103013, from= IP5; - MCS.B13L5.B2:MCS, at= -509.7967+(296-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245564, assembly_id= 103013, from= IP5; - MCO.A13L5.B2:MCO, at= -509.0467+(296-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251542, assembly_id= 103014, from= IP5; - MCD.A13L5.B2:MCD, at= -509.0452+(296-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251543, assembly_id= 103014, from= IP5; - MB.A13L5.B2:MB, at= -501.5607+(296.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834594, assembly_id= 103014, from= IP5; - MCS.A13L5.B2:MCS, at= -494.1367+(297-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245569, assembly_id= 103014, from= IP5; - BPM.12L5.B2:BPM, at= -493.2577+(297-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245571, assembly_id= 103015, from= IP5; - MQT.12L5.B2:MQT, at= -492.5037+(297-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307692, assembly_id= 103015, from= IP5; -MQ.12L5.B2:MQ, at= -490.4957+(297-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308451, assembly_id= 103015, from= IP5; - MS.12L5.B2:MS, at= -488.6007+(297-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251546, assembly_id= 103015, from= IP5; - MCBV.12L5.B2:MCBV, at= -488.0077+(297-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251548, assembly_id= 103015, from= IP5; - MB.C12L5.B2:MB, at= -479.4307+(297.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834618, assembly_id= 103016, from= IP5; - MCS.C12L5.B2:MCS, at= -472.0067+(298-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245577, assembly_id= 103016, from= IP5; - MCO.12L5.B2:MCO, at= -471.2567+(298-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251550, assembly_id= 103017, from= IP5; - MCD.12L5.B2:MCD, at= -471.2552+(298-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251551, assembly_id= 103017, from= IP5; - MB.B12L5.B2:MB, at= -463.7707+(298.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834642, assembly_id= 103017, from= IP5; - MCS.B12L5.B2:MCS, at= -456.3467+(299-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245582, assembly_id= 103017, from= IP5; - MB.A12L5.B2:MB, at= -448.1107+(299.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834666, assembly_id= 103018, from= IP5; - MCS.A12L5.B2:MCS, at= -440.6867+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245585, assembly_id= 103018, from= IP5; -E.ARC.45.B2:OMK, at= -440.2807+(300-IP5OFS.B2)*DS, slot_id= 100932, from= IP5; - BPM.11L5.B2:BPM, at= -439.8077+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245587, assembly_id= 103019, from= IP5; -MQ.11L5.B2:MQ, at= -437.2607+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308658, assembly_id= 103019, from= IP5; - MQTLI.11L5.B2:MQTLI, at= -434.8917+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307346, assembly_id= 103019, from= IP5; - MS.11L5.B2:MS, at= -433.8797+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251554, assembly_id= 103019, from= IP5; - MCBH.11L5.B2:MCBH, at= -433.2867+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251556, assembly_id= 103019, from= IP5; - LEFL.11L5.B2:LEFL, at= -425.67735+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52997862, assembly_id= 103020, from= IP5; - MCO.11L5.B2:MCO, at= -418.475+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251558, assembly_id= 103021, from= IP5; - MCD.11L5.B2:MCD, at= -418.4735+(300-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251559, assembly_id= 103021, from= IP5; - MB.B11L5.B2:MB, at= -410.989+(300.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834690, assembly_id= 103021, from= IP5; - MCS.B11L5.B2:MCS, at= -403.565+(301-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245595, assembly_id= 103021, from= IP5; - MB.A11L5.B2:MB, at= -395.329+(301.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849594, assembly_id= 103022, from= IP5; - MCS.A11L5.B2:MCS, at= -387.905+(302-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357310, assembly_id= 103022, from= IP5; - BPM.10L5.B2:BPM, at= -387.026+(302-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245600, assembly_id= 103023, from= IP5; - MQML.10L5.B2:MQML, at= -383.881+(302-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307811, assembly_id= 103023, from= IP5; - MCBCV.10L5.B2:MCBCV, at= -380.839+(302-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251563, assembly_id= 103023, from= IP5; - MCO.10L5.B2:MCO, at= -379.41+(302-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251564, assembly_id= 103024, from= IP5; - MCD.10L5.B2:MCD, at= -379.4085+(302-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251565, assembly_id= 103024, from= IP5; - MB.B10L5.B2:MB, at= -371.924+(302.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834714, assembly_id= 103024, from= IP5; - MCS.B10L5.B2:MCS, at= -364.5+(303-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245607, assembly_id= 103024, from= IP5; - MB.A10L5.B2:MB, at= -356.264+(303.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849618, assembly_id= 103025, from= IP5; - MCS.A10L5.B2:MCS, at= -348.84+(304-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357313, assembly_id= 103025, from= IP5; - BPM.9L5.B2:BPM, at= -347.96+(304-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245612, assembly_id= 103026, from= IP5; - MQMC.9L5.B2:MQMC, at= -345.984+(304-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307788, assembly_id= 103026, from= IP5; - MQM.9L5.B2:MQM, at= -342.718+(304-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307736, assembly_id= 103026, from= IP5; - MCBCH.9L5.B2:MCBCH, at= -340.377+(304-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251569, assembly_id= 103026, from= IP5; - MCO.9L5.B2:MCO, at= -338.945+(304-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251570, assembly_id= 103027, from= IP5; - MCD.9L5.B2:MCD, at= -338.9435+(304-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251571, assembly_id= 103027, from= IP5; - MB.B9L5.B2:MB, at= -331.459+(304.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834738, assembly_id= 103027, from= IP5; - MCS.B9L5.B2:MCS, at= -324.035+(305-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245620, assembly_id= 103027, from= IP5; - MB.A9L5.B2:MB, at= -315.799+(305.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849642, assembly_id= 103028, from= IP5; - MCS.A9L5.B2:MCS, at= -308.375+(306-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357316, assembly_id= 103028, from= IP5; - BPM.8L5.B2:BPM, at= -307.496+(306-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245625, assembly_id= 103029, from= IP5; - MQML.8L5.B2:MQML, at= -304.351+(306-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307843, assembly_id= 103029, from= IP5; - MCBCV.8L5.B2:MCBCV, at= -301.309+(306-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251575, assembly_id= 103029, from= IP5; - MCO.8L5.B2:MCO, at= -299.88+(306-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251576, assembly_id= 103030, from= IP5; - MCD.8L5.B2:MCD, at= -299.8785+(306-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251577, assembly_id= 103030, from= IP5; - MB.B8L5.B2:MB, at= -292.394+(306.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52834762, assembly_id= 103030, from= IP5; - MCS.B8L5.B2:MCS, at= -284.97+(307-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245632, assembly_id= 103030, from= IP5; - MB.A8L5.B2:MB, at= -276.734+(307.5-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849666, assembly_id= 103031, from= IP5; - MCS.A8L5.B2:MCS, at= -269.31+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357319, assembly_id= 103031, from= IP5; -E.DS.L5.B2:OMK, at= -268.904+(308-IP5OFS.B2)*DS, slot_id= 100932, from= IP5; - BPM.7L5.B2:BPM, at= -268.429+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245637, assembly_id= 103032, from= IP5; - MQM.B7L5.B2:MQM, at= -265.984+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307771, assembly_id= 103032, from= IP5; - MQM.A7L5.B2:MQM, at= -262.217+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307756, assembly_id= 103032, from= IP5; - MCBCH.7L5.B2:MCBCH, at= -259.876+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251581, assembly_id= 103032, from= IP5; - DFBAI.7L5.B2:DFBAI, at= -257.6965+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52996743, assembly_id= 104682, from= IP5; - BPMR.6L5.B2:BPMR, at= -231.535+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 377976, assembly_id= 103033, from= IP5; - MQML.6L5.B2:MQML, at= -228.39+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303105, assembly_id= 103033, from= IP5; - MCBCV.6L5.B2:MCBCV, at= -225.348+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251583, assembly_id= 103033, from= IP5; - TCL.6L5.B2:TCL, at= -221.564+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 12962653, from= IP5; - BPMWT.B6L5.B2:BPMWT, at= -220.225+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 826595, assembly_id= 825708, from= IP5; - XRPV.B6L5.B2:XRPV, at= -220+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 826619, assembly_id= 825708, from= IP5; - XRPH.B6L5.B2:XRPH, at= -219.551+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 826607, assembly_id= 825708, from= IP5; - XRPH.E6L5.B2:XRPH, at= -215.71+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 12978123, assembly_id= 12978113, from= IP5; - XRPH.A6L5.B2:XRPH, at= -215.077+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 826643, assembly_id= 825709, from= IP5; - XRPV.A6L5.B2:XRPV, at= -214.628+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 826655, assembly_id= 825709, from= IP5; - BPMWT.A6L5.B2:BPMWT, at= -214.403+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 826631, assembly_id= 825709, from= IP5; - BPMWT.D6L5.B2:BPMWT, at= -213.225+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 6738958, assembly_id= 6738949, from= IP5; - XRPV.D6L5.B2:XRPV, at= -213+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 6738962, assembly_id= 6738949, from= IP5; - XRPH.D6L5.B2:XRPH, at= -212.551+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 6738960, assembly_id= 6738949, from= IP5; - XRPV.C6L5.B2:XRPV, at= -203.377+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 6738956, assembly_id= 6738950, from= IP5; - BPMWT.C6L5.B2:BPMWT, at= -203.152+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 6738952, assembly_id= 6738950, from= IP5; - BPM.5L5.B2:BPM, at= -199.635+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 377978, assembly_id= 103035, from= IP5; - MQML.5L5.B2:MQML, at= -196.49+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303137, assembly_id= 103035, from= IP5; - MCBCH.5L5.B2:MCBCH, at= -193.448+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251585, assembly_id= 103035, from= IP5; - TCL.5L5.B2:TCL, at= -184.357+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 103036, from= IP5; - BPMYA.4L5.B2:BPMYA, at= -172.229+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 245651, assembly_id= 103038, from= IP5; - MQY.4L5.B2:MQY, at= -169.553+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303113, assembly_id= 103038, from= IP5; - MCBYV.B4L5.B2:MCBYV, at= -167.031+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251587, assembly_id= 103038, from= IP5; - MCBYH.4L5.B2:MCBYH, at= -165.735+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251589, assembly_id= 103038, from= IP5; - MCBYV.A4L5.B2:MCBYV, at= -164.439+(308-IP5OFS.B2)*DS, mech_sep= 0.1940, slot_id= 251591, assembly_id= 103038, from= IP5; - MBRC.4L5.B2:MBRC, at= -157.9+(308-IP5OFS.B2)*DS, mech_sep= 0.1880, slot_id= 52819694, assembly_id= 103039, from= IP5; - BPMWB.4L5.B2:BPMWB, at= -151.1705+(308-IP5OFS.B2)*DS, mech_sep= 0.1780, slot_id= 181642, from= IP5; - TCL.4L5.B2:TCL, at= -150.03+(308-IP5OFS.B2)*DS, mech_sep= 0.1763, slot_id= 52659116, from= IP5; - TANC.4L5:TANC, at= -142.754+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 103042, from= IP5; - X5ZDC.B4L5:X5ZDC001, at= -141.6225+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 2019606, assembly_id= 103042, from= IP5; - BRAND.4L5:BRAND, at= -141.085+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 55374093, assembly_id= 103042, from= IP5; - X5ZDC.A4L5:X5ZDC002, at= -141.0725+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 2019602, assembly_id= 103042, from= IP5; - X5FCB.A4L5:X5FCB, at= -114.13+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 5593911, from= IP5; - X5FCA.B4L5:X5FCA, at= -85.08+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 5593908, from= IP5; - MBXW.F4L5:MBXW, at= -82.652+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134562, from= IP5; - MBXW.E4L5:MBXW, at= -78.386+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134563, from= IP5; - MBXW.D4L5:MBXW, at= -74.12+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134564, from= IP5; - MBXW.C4L5:MBXW, at= -69.854+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134565, from= IP5; - MBXW.B4L5:MBXW, at= -65.588+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134566, from= IP5; - MBXW.A4L5:MBXW, at= -61.322+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134567, from= IP5; - X5FCA.A4L5:X5FCA, at= -59.24+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 5593907, from= IP5; - BPMSY.4L5.B2:BPMSY002, at= -58.2545+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 47562524, assembly_id= 104609, from= IP5; - DFBXE.3L5:DFBXE, at= -56.427+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 104683, from= IP5; - MCOSX.3L5:MCOSX, at= -54.297+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282246, assembly_id= 103044, from= IP5; - MCOX.3L5:MCOX, at= -54.297+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282245, assembly_id= 103044, from= IP5; - MCSSX.3L5:MCSSX, at= -54.297+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282244, assembly_id= 103044, from= IP5; - MCBXH.3L5:MCBXH, at= -53.814+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251592, assembly_id= 103044, from= IP5; - MCBXV.3L5:MCBXV, at= -53.814+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251593, assembly_id= 103044, from= IP5; - MCSX.3L5:MCSX, at= -53.814+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251594, assembly_id= 103044, from= IP5; - MCTX.3L5:MCTX, at= -53.814+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251595, assembly_id= 103044, from= IP5; - MQXA.3L5:MQXA, at= -50.15+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 245665, assembly_id= 103044, from= IP5; - MQSX.3L5:MQSX, at= -46.608+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282142, assembly_id= 103044, from= IP5; - TASB.3L5:TASB, at= -45.342+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 245667, assembly_id= 103044, from= IP5; - MQXB.B2L5:MQXB, at= -41.3+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 245668, assembly_id= 103045, from= IP5; - MCBXH.2L5:MCBXH, at= -38.019+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251600, assembly_id= 103045, from= IP5; - MCBXV.2L5:MCBXV, at= -38.019+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251601, assembly_id= 103045, from= IP5; - MQXB.A2L5:MQXB, at= -34.8+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 245670, assembly_id= 103045, from= IP5; - BPMS.2L5.B2:BPMS_003, at= -31.529+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 47564257, assembly_id= 103045, from= IP5; - MCBXH.1L5:MCBXH, at= -29.842+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282215, assembly_id= 103046, from= IP5; - MCBXV.1L5:MCBXV, at= -29.842+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282214, assembly_id= 103046, from= IP5; - MQXA.1L5:MQXA, at= -26.15+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282143, assembly_id= 103046, from= IP5; - BPMWF.A1L5.B2:BPMWF, at= -21.751+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 6080248, assembly_id= 6080226, from= IP5; - BPMSW.1L5.B2:BPMSW002, at= -21.564+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 6080244, assembly_id= 6080226, from= IP5; - BPMSW.1L5.B2_DOROS:BPMSW002, at= -21.564+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 10429429, assembly_id= 6080226, from= IP5; - TAS.1L5:TAS, at= -19.95+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 103047, from= IP5; - MBCS2.1L5:MBCS2, at= -3.25+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 52895730, assembly_id= 2209455, from= IP5; -IP5:OMK, at= pIP5+IP5OFS.B2*DS; - MBCS2.1R5:MBCS2, at= 3.25+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 52895762, assembly_id= 2209455, from= IP5; - TAS.1R5:TAS, at= 19.95+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 103048, from= IP5; - BPMSW.1R5.B2:BPMSW002, at= 21.564+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 6080262, assembly_id= 6080227, from= IP5; - BPMSW.1R5.B2_DOROS:BPMSW002, at= 21.564+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 10429435, assembly_id= 6080227, from= IP5; - BPMWF.A1R5.B2:BPMWF, at= 21.697+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 6080270, assembly_id= 6080227, from= IP5; - MQXA.1R5:MQXA, at= 26.15+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282146, assembly_id= 103049, from= IP5; - MCBXH.1R5:MCBXH, at= 29.842+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282217, assembly_id= 103049, from= IP5; - MCBXV.1R5:MCBXV, at= 29.842+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282216, assembly_id= 103049, from= IP5; - BPMS.2R5.B2:BPMS_003, at= 31.529+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 47564247, assembly_id= 103050, from= IP5; - MQXB.A2R5:MQXB, at= 34.8+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 245683, assembly_id= 103050, from= IP5; - MCBXH.2R5:MCBXH, at= 38.019+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251606, assembly_id= 103050, from= IP5; - MCBXV.2R5:MCBXV, at= 38.019+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251607, assembly_id= 103050, from= IP5; - MQXB.B2R5:MQXB, at= 41.3+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 245685, assembly_id= 103050, from= IP5; - TASB.3R5:TASB, at= 45.342+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 245686, assembly_id= 103051, from= IP5; - MQSX.3R5:MQSX, at= 46.608+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282147, assembly_id= 103051, from= IP5; - MQXA.3R5:MQXA, at= 50.15+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 245688, assembly_id= 103051, from= IP5; - MCBXH.3R5:MCBXH, at= 53.814+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251612, assembly_id= 103051, from= IP5; - MCBXV.3R5:MCBXV, at= 53.814+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251613, assembly_id= 103051, from= IP5; - MCSX.3R5:MCSX, at= 53.814+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251614, assembly_id= 103051, from= IP5; - MCTX.3R5:MCTX, at= 53.814+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 251615, assembly_id= 103051, from= IP5; - MCOSX.3R5:MCOSX, at= 54.297+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282249, assembly_id= 103051, from= IP5; - MCOX.3R5:MCOX, at= 54.297+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282248, assembly_id= 103051, from= IP5; - MCSSX.3R5:MCSSX, at= 54.297+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 282247, assembly_id= 103051, from= IP5; - DFBXF.3R5:DFBXF, at= 56.427+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 104684, from= IP5; - BPMSY.4R5.B2:BPMSY002, at= 58.3745+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 47562526, assembly_id= 104612, from= IP5; - X5FCA.B4R5:X5FCA, at= 59.24+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 5593910, from= IP5; - MBXW.A4R5:MBXW, at= 61.322+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134568, from= IP5; - MBXW.B4R5:MBXW, at= 65.588+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134569, from= IP5; - MBXW.C4R5:MBXW, at= 69.854+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134570, from= IP5; - MBXW.D4R5:MBXW, at= 74.12+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134571, from= IP5; - MBXW.E4R5:MBXW, at= 78.386+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134572, from= IP5; - MBXW.F4R5:MBXW, at= 82.652+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 134573, from= IP5; - X5FCA.A4R5:X5FCA, at= 84.94+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 5593909, from= IP5; - X5FCB.A4R5:X5FCB, at= 114.15+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 5593912, from= IP5; - X5ZDC.B4R5:X5ZDC002, at= 141.0725+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 2019608, assembly_id= 103053, from= IP5; - BRANA.4R5:BRANA, at= 141.185+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 883604, assembly_id= 103053, from= IP5; - X5ZDC.A4R5:X5ZDC001, at= 141.6225+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 2019604, assembly_id= 103053, from= IP5; - TANC.4R5:TANC, at= 142.754+(308-IP5OFS.B2)*DS, mech_sep= 0, slot_id= 103053, from= IP5; - BPTDV.A4R5.B2:BPTDV, at= 145.35+(308-IP5OFS.B2)*DS, mech_sep= -0.1620, slot_id= 10402727, assembly_id= 377617, from= IP5; - TCTPV.4R5.B2:TCTPV, at= 145.945+(308-IP5OFS.B2)*DS, mech_sep= -0.1669, slot_id= 377617, from= IP5; - BPTUV.A4R5.B2:BPTUV, at= 146.54+(308-IP5OFS.B2)*DS, mech_sep= -0.1660, slot_id= 10402718, assembly_id= 377617, from= IP5; - BBCWE.4R5.D.B2:BBCWE, at= 147.35+(308-IP5OFS.B2)*DS, mech_sep= -0.1700, slot_id= 39829970, assembly_id= 54812586, from= IP5; - BPTDH.A4R5.B2:BPTDH, at= 147.35+(308-IP5OFS.B2)*DS, mech_sep= -0.1668, slot_id= 10402850, assembly_id= 54812586, from= IP5; - TCTPH.4R5.B2:TCTWH, at= 147.945+(308-IP5OFS.B2)*DS, mech_sep= -0.1716, slot_id= 54812586, from= IP5; - BBCWE.4R5.U.B2:BBCWE, at= 148.54+(308-IP5OFS.B2)*DS, mech_sep= -0.1700, slot_id= 39833745, assembly_id= 54812586, from= IP5; - BBCWI.4R5.D.B2:BBCWI, at= 148.54+(308-IP5OFS.B2)*DS, mech_sep= -0.1700, slot_id= 39833747, assembly_id= 54812586, from= IP5; - BPTUH.A4R5.B2:BPTUH, at= 148.54+(308-IP5OFS.B2)*DS, mech_sep= -0.1694, slot_id= 10402852, assembly_id= 54812586, from= IP5; - BBCWI.4R5.U.B2:BBCWI, at= 148.59+(308-IP5OFS.B2)*DS, mech_sep= -0.1700, slot_id= 39829972, assembly_id= 54812586, from= IP5; - BPMWB.4R5.B2:BPMWB, at= 151.1705+(308-IP5OFS.B2)*DS, mech_sep= -0.1780, slot_id= 104613, from= IP5; - MBRC.4R5.B2:MBRC, at= 157.9+(308-IP5OFS.B2)*DS, mech_sep= -0.1880, slot_id= 52819717, assembly_id= 103056, from= IP5; - MCBYH.A4R5.B2:MCBYH, at= 164.439+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251617, assembly_id= 103057, from= IP5; - MCBYV.4R5.B2:MCBYV, at= 165.735+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251619, assembly_id= 103057, from= IP5; - MCBYH.B4R5.B2:MCBYH, at= 167.031+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251621, assembly_id= 103057, from= IP5; - MQY.4R5.B2:MQY, at= 169.553+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303121, assembly_id= 103057, from= IP5; - BPMYA.4R5.B2:BPMYA, at= 172.227+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245702, assembly_id= 103057, from= IP5; - BPTX.5R5.B2:BPTX, at= 174.7185+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 104668, from= IP5; - BPMR.5R5.B2:BPMR, at= 193.345+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377989, assembly_id= 103060, from= IP5; - MQML.5R5.B2:MQML, at= 196.49+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303125, assembly_id= 103060, from= IP5; - MCBCV.5R5.B2:MCBCV, at= 199.532+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251622, assembly_id= 103060, from= IP5; - BPM.6R5.B2:BPM, at= 225.245+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377991, assembly_id= 103062, from= IP5; - MQML.6R5.B2:MQML, at= 228.39+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303129, assembly_id= 103062, from= IP5; - MCBCH.6R5.B2:MCBCH, at= 231.432+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251624, assembly_id= 103062, from= IP5; - DFBAJ.7R5.B2:DFBAJ, at= 257.4465+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52996767, assembly_id= 104685, from= IP5; - BPMRA.7R5.B2:BPMRA, at= 259.259+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377992, assembly_id= 103063, from= IP5; - MQM.A7R5.B2:MQM, at= 261.704+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307764, assembly_id= 103063, from= IP5; - MQM.B7R5.B2:MQM, at= 265.471+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307779, assembly_id= 103063, from= IP5; - MCBCV.7R5.B2:MCBCV, at= 267.812+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251626, assembly_id= 103063, from= IP5; -S.DS.R5.B2:OMK, at= 268.904+(308-IP5OFS.B2)*DS, slot_id= 100932, from= IP5; - MCO.8R5.B2:MCO, at= 269.248+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251630, assembly_id= 103064, from= IP5; - MCD.8R5.B2:MCD, at= 269.2495+(308-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251631, assembly_id= 103064, from= IP5; - MB.A8R5.B2:MB, at= 276.734+(307.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834786, assembly_id= 103064, from= IP5; - MCS.A8R5.B2:MCS, at= 284.158+(307-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245721, assembly_id= 103064, from= IP5; - MB.B8R5.B2:MB, at= 292.394+(306.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834810, assembly_id= 103065, from= IP5; - MCS.B8R5.B2:MCS, at= 299.818+(306-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245724, assembly_id= 103065, from= IP5; - BPM.8R5.B2:BPM, at= 300.697+(306-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377995, assembly_id= 103066, from= IP5; - MQML.8R5.B2:MQML, at= 303.842+(306-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307616, assembly_id= 103066, from= IP5; - MCBCH.8R5.B2:MCBCH, at= 306.884+(306-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378109, assembly_id= 103066, from= IP5; - MCO.9R5.B2:MCO, at= 308.313+(306-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251636, assembly_id= 103067, from= IP5; - MCD.9R5.B2:MCD, at= 308.3145+(306-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251637, assembly_id= 103067, from= IP5; - MB.A9R5.B2:MB, at= 315.799+(305.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834834, assembly_id= 103067, from= IP5; - MCS.A9R5.B2:MCS, at= 323.223+(305-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245733, assembly_id= 103067, from= IP5; - MB.B9R5.B2:MB, at= 331.459+(304.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834858, assembly_id= 103068, from= IP5; - MCS.B9R5.B2:MCS, at= 338.883+(304-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245736, assembly_id= 103068, from= IP5; - BPM.9R5.B2:BPM, at= 339.763+(304-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 383966, assembly_id= 103069, from= IP5; - MQMC.9R5.B2:MQMC, at= 341.739+(304-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307799, assembly_id= 103069, from= IP5; - MQM.9R5.B2:MQM, at= 345.005+(304-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307747, assembly_id= 103069, from= IP5; - MCBCV.9R5.B2:MCBCV, at= 347.346+(304-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 383972, assembly_id= 103069, from= IP5; - MCO.10R5.B2:MCO, at= 348.778+(304-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251642, assembly_id= 103070, from= IP5; - MCD.10R5.B2:MCD, at= 348.7795+(304-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251643, assembly_id= 103070, from= IP5; - MB.A10R5.B2:MB, at= 356.264+(303.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834882, assembly_id= 103070, from= IP5; - MCS.A10R5.B2:MCS, at= 363.688+(303-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245746, assembly_id= 103070, from= IP5; - MB.B10R5.B2:MB, at= 371.924+(302.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834906, assembly_id= 103071, from= IP5; - MCS.B10R5.B2:MCS, at= 379.348+(302-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245749, assembly_id= 103071, from= IP5; - BPM.10R5.B2:BPM, at= 380.227+(302-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377999, assembly_id= 103072, from= IP5; - MQML.10R5.B2:MQML, at= 383.372+(302-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307823, assembly_id= 103072, from= IP5; - MCBCH.10R5.B2:MCBCH, at= 386.414+(302-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378113, assembly_id= 103072, from= IP5; - MCO.11R5.B2:MCO, at= 387.843+(302-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251648, assembly_id= 103073, from= IP5; - MCD.11R5.B2:MCD, at= 387.8445+(302-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251649, assembly_id= 103073, from= IP5; - MB.A11R5.B2:MB, at= 395.329+(301.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834930, assembly_id= 103073, from= IP5; - MCS.A11R5.B2:MCS, at= 402.753+(301-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245758, assembly_id= 103073, from= IP5; - MB.B11R5.B2:MB, at= 410.989+(300.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834954, assembly_id= 103074, from= IP5; - MCS.B11R5.B2:MCS, at= 418.413+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245761, assembly_id= 103074, from= IP5; - LEGR.11R5.B2:LEGR, at= 425.67735+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52997910, assembly_id= 103075, from= IP5; - BPM.11R5.B2:BPM, at= 433.0087+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245763, assembly_id= 103076, from= IP5; -MQ.11R5.B2:MQ, at= 435.5557+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308673, assembly_id= 103076, from= IP5; - MQTLI.11R5.B2:MQTLI, at= 437.9247+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307361, assembly_id= 103076, from= IP5; - MS.11R5.B2:MS, at= 438.9367+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251651, assembly_id= 103076, from= IP5; - MCBV.11R5.B2:MCBV, at= 439.5297+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251653, assembly_id= 103076, from= IP5; -S.ARC.56.B2:OMK, at= 440.2807+(300-IP5OFS.B2)*DS, slot_id= 100932, from= IP5; - MCO.A12R5.B2:MCO, at= 440.6247+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251656, assembly_id= 103077, from= IP5; - MCD.A12R5.B2:MCD, at= 440.6262+(300-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251657, assembly_id= 103077, from= IP5; - MB.A12R5.B2:MB, at= 448.1107+(299.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52834978, assembly_id= 103077, from= IP5; - MCS.A12R5.B2:MCS, at= 455.5347+(299-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245771, assembly_id= 103077, from= IP5; - MB.B12R5.B2:MB, at= 463.7707+(298.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835002, assembly_id= 103078, from= IP5; - MCS.B12R5.B2:MCS, at= 471.1947+(298-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245774, assembly_id= 103078, from= IP5; - MCO.B12R5.B2:MCO, at= 471.9447+(298-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251660, assembly_id= 103079, from= IP5; - MCD.B12R5.B2:MCD, at= 471.9462+(298-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251661, assembly_id= 103079, from= IP5; - MB.C12R5.B2:MB, at= 479.4307+(297.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835026, assembly_id= 103079, from= IP5; - MCS.C12R5.B2:MCS, at= 486.8547+(297-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245779, assembly_id= 103079, from= IP5; - BPM.12R5.B2:BPM, at= 487.7337+(297-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245781, assembly_id= 103080, from= IP5; - MQT.12R5.B2:MQT, at= 488.4877+(297-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307708, assembly_id= 103080, from= IP5; -MQ.12R5.B2:MQ, at= 490.4957+(297-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308466, assembly_id= 103080, from= IP5; - MS.12R5.B2:MS, at= 492.3907+(297-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251663, assembly_id= 103080, from= IP5; - MCBH.12R5.B2:MCBH, at= 492.9837+(297-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251665, assembly_id= 103080, from= IP5; - MB.A13R5.B2:MB, at= 501.5607+(296.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835050, assembly_id= 103081, from= IP5; - MCS.A13R5.B2:MCS, at= 508.9847+(296-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245787, assembly_id= 103081, from= IP5; - MCO.13R5.B2:MCO, at= 509.7347+(296-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251668, assembly_id= 103082, from= IP5; - MCD.13R5.B2:MCD, at= 509.7362+(296-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251669, assembly_id= 103082, from= IP5; - MB.B13R5.B2:MB, at= 517.2207+(295.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835074, assembly_id= 103082, from= IP5; - MCS.B13R5.B2:MCS, at= 524.6447+(295-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245792, assembly_id= 103082, from= IP5; - MB.C13R5.B2:MB, at= 532.8807+(294.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835098, assembly_id= 103083, from= IP5; - MCS.C13R5.B2:MCS, at= 540.3047+(294-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245795, assembly_id= 103083, from= IP5; - BPM.13R5.B2:BPM, at= 541.1837+(294-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245797, assembly_id= 103084, from= IP5; - MQT.13R5.B2:MQT, at= 541.9377+(294-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307500, assembly_id= 103084, from= IP5; -MQ.13R5.B2:MQ, at= 543.9457+(294-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308496, assembly_id= 103084, from= IP5; - MS.13R5.B2:MS, at= 545.8407+(294-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251671, assembly_id= 103084, from= IP5; - MCBV.13R5.B2:MCBV, at= 546.4337+(294-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251673, assembly_id= 103084, from= IP5; -E.DS.R5.B2:OMK, at= 547.1807+(294-IP5OFS.B2)*DS, slot_id= 100932, from= IP5; - MCO.A14R5.B2:MCO, at= 547.5247+(294-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251676, assembly_id= 103085, from= IP5; - MCD.A14R5.B2:MCD, at= 547.5262+(294-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251677, assembly_id= 103085, from= IP5; - MB.A14R5.B2:MB, at= 555.0107+(293.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835122, assembly_id= 103085, from= IP5; - MCS.A14R5.B2:MCS, at= 562.4347+(293-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245805, assembly_id= 103085, from= IP5; - MB.B14R5.B2:MB, at= 570.6707+(292.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835146, assembly_id= 103086, from= IP5; - MCS.B14R5.B2:MCS, at= 578.0947+(292-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245808, assembly_id= 103086, from= IP5; - MCO.B14R5.B2:MCO, at= 578.8447+(292-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251680, assembly_id= 103087, from= IP5; - MCD.B14R5.B2:MCD, at= 578.8462+(292-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251681, assembly_id= 103087, from= IP5; - MB.C14R5.B2:MB, at= 586.3307+(291.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835170, assembly_id= 103087, from= IP5; - MCS.C14R5.B2:MCS, at= 593.7547+(291-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245813, assembly_id= 103087, from= IP5; - BPM.14R5.B2:BPM, at= 594.6337+(291-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245815, assembly_id= 103088, from= IP5; - MQT.14R5.B2:MQT, at= 595.3877+(291-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307532, assembly_id= 103088, from= IP5; -MQ.14R5.B2:MQ, at= 597.3957+(291-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308526, assembly_id= 103088, from= IP5; - MS.14R5.B2:MS, at= 599.2907+(291-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251683, assembly_id= 103088, from= IP5; - MCBH.14R5.B2:MCBH, at= 599.8837+(291-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251685, assembly_id= 103088, from= IP5; - MB.A15R5.B2:MB, at= 608.4607+(290.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835194, assembly_id= 103089, from= IP5; - MCS.A15R5.B2:MCS, at= 615.8847+(290-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245821, assembly_id= 103089, from= IP5; - MCO.15R5.B2:MCO, at= 616.6347+(290-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251688, assembly_id= 103090, from= IP5; - MCD.15R5.B2:MCD, at= 616.6362+(290-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251689, assembly_id= 103090, from= IP5; - MB.B15R5.B2:MB, at= 624.1207+(289.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835218, assembly_id= 103090, from= IP5; - MCS.B15R5.B2:MCS, at= 631.5447+(289-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245826, assembly_id= 103090, from= IP5; - MB.C15R5.B2:MB, at= 639.7807+(288.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835242, assembly_id= 103091, from= IP5; - MCS.C15R5.B2:MCS, at= 647.2047+(288-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245829, assembly_id= 103091, from= IP5; - BPM.15R5.B2:BPM, at= 648.0837+(288-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245831, assembly_id= 103092, from= IP5; - MQT.15R5.B2:MQT, at= 648.8377+(288-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307564, assembly_id= 103092, from= IP5; -MQ.15R5.B2:MQ, at= 650.8457+(288-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308556, assembly_id= 103092, from= IP5; - MS.15R5.B2:MS, at= 652.7407+(288-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251691, assembly_id= 103092, from= IP5; - MCBV.15R5.B2:MCBV, at= 653.3337+(288-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251693, assembly_id= 103092, from= IP5; - MCO.A16R5.B2:MCO, at= 654.4247+(288-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251696, assembly_id= 103093, from= IP5; - MCD.A16R5.B2:MCD, at= 654.4262+(288-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251697, assembly_id= 103093, from= IP5; - MB.A16R5.B2:MB, at= 661.9107+(287.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835266, assembly_id= 103093, from= IP5; - MCS.A16R5.B2:MCS, at= 669.3347+(287-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245839, assembly_id= 103093, from= IP5; - MB.B16R5.B2:MB, at= 677.5707+(286.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835290, assembly_id= 103094, from= IP5; - MCS.B16R5.B2:MCS, at= 684.9947+(286-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245842, assembly_id= 103094, from= IP5; - MCO.B16R5.B2:MCO, at= 685.7447+(286-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251700, assembly_id= 103095, from= IP5; - MCD.B16R5.B2:MCD, at= 685.7462+(286-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251701, assembly_id= 103095, from= IP5; - MB.C16R5.B2:MB, at= 693.2307+(285.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835314, assembly_id= 103095, from= IP5; - MCS.C16R5.B2:MCS, at= 700.6547+(285-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245847, assembly_id= 103095, from= IP5; - BPM.16R5.B2:BPM, at= 701.5337+(285-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245849, assembly_id= 103096, from= IP5; - MQT.16R5.B2:MQT, at= 702.2877+(285-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307594, assembly_id= 103096, from= IP5; -MQ.16R5.B2:MQ, at= 704.2957+(285-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308349, assembly_id= 103096, from= IP5; - MS.16R5.B2:MS, at= 706.1907+(285-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251703, assembly_id= 103096, from= IP5; - MCBH.16R5.B2:MCBH, at= 706.7837+(285-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251705, assembly_id= 103096, from= IP5; - MB.A17R5.B2:MB, at= 715.3607+(284.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835338, assembly_id= 103097, from= IP5; - MCS.A17R5.B2:MCS, at= 722.7847+(284-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245855, assembly_id= 103097, from= IP5; - MCO.17R5.B2:MCO, at= 723.5347+(284-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251708, assembly_id= 103098, from= IP5; - MCD.17R5.B2:MCD, at= 723.5362+(284-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251709, assembly_id= 103098, from= IP5; - MB.B17R5.B2:MB, at= 731.0207+(283.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835362, assembly_id= 103098, from= IP5; - MCS.B17R5.B2:MCS, at= 738.4447+(283-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245860, assembly_id= 103098, from= IP5; - MB.C17R5.B2:MB, at= 746.6807+(282.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835386, assembly_id= 103099, from= IP5; - MCS.C17R5.B2:MCS, at= 754.1047+(282-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245863, assembly_id= 103099, from= IP5; - BPM.17R5.B2:BPM, at= 754.9837+(282-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245865, assembly_id= 103100, from= IP5; - MQT.17R5.B2:MQT, at= 755.7377+(282-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307388, assembly_id= 103100, from= IP5; -MQ.17R5.B2:MQ, at= 757.7457+(282-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308379, assembly_id= 103100, from= IP5; - MS.17R5.B2:MS, at= 759.6407+(282-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251711, assembly_id= 103100, from= IP5; - MCBV.17R5.B2:MCBV, at= 760.2337+(282-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251713, assembly_id= 103100, from= IP5; - MCO.A18R5.B2:MCO, at= 761.3247+(282-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251716, assembly_id= 103101, from= IP5; - MCD.A18R5.B2:MCD, at= 761.3262+(282-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251717, assembly_id= 103101, from= IP5; - MB.A18R5.B2:MB, at= 768.8107+(281.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835410, assembly_id= 103101, from= IP5; - MCS.A18R5.B2:MCS, at= 776.2347+(281-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245873, assembly_id= 103101, from= IP5; - MB.B18R5.B2:MB, at= 784.4707+(280.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835434, assembly_id= 103102, from= IP5; - MCS.B18R5.B2:MCS, at= 791.8947+(280-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245876, assembly_id= 103102, from= IP5; - MCO.B18R5.B2:MCO, at= 792.6447+(280-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251720, assembly_id= 103103, from= IP5; - MCD.B18R5.B2:MCD, at= 792.6462+(280-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251721, assembly_id= 103103, from= IP5; - MB.C18R5.B2:MB, at= 800.1307+(279.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835458, assembly_id= 103103, from= IP5; - MCS.C18R5.B2:MCS, at= 807.5547+(279-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245881, assembly_id= 103103, from= IP5; - BPM.18R5.B2:BPM, at= 808.4337+(279-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245883, assembly_id= 103104, from= IP5; - MQT.18R5.B2:MQT, at= 809.1877+(279-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307420, assembly_id= 103104, from= IP5; -MQ.18R5.B2:MQ, at= 811.1957+(279-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308409, assembly_id= 103104, from= IP5; - MS.18R5.B2:MS, at= 813.0907+(279-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251723, assembly_id= 103104, from= IP5; - MCBH.18R5.B2:MCBH, at= 813.6837+(279-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251725, assembly_id= 103104, from= IP5; - MB.A19R5.B2:MB, at= 822.2607+(278.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835482, assembly_id= 103105, from= IP5; - MCS.A19R5.B2:MCS, at= 829.6847+(278-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245889, assembly_id= 103105, from= IP5; - MCO.19R5.B2:MCO, at= 830.4347+(278-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251728, assembly_id= 103106, from= IP5; - MCD.19R5.B2:MCD, at= 830.4362+(278-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251729, assembly_id= 103106, from= IP5; - MB.B19R5.B2:MB, at= 837.9207+(277.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835506, assembly_id= 103106, from= IP5; - MCS.B19R5.B2:MCS, at= 845.3447+(277-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245894, assembly_id= 103106, from= IP5; - MB.C19R5.B2:MB, at= 853.5807+(276.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835530, assembly_id= 103107, from= IP5; - MCS.C19R5.B2:MCS, at= 861.0047+(276-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245897, assembly_id= 103107, from= IP5; - BPM.19R5.B2:BPM, at= 861.8837+(276-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245899, assembly_id= 103108, from= IP5; - MQT.19R5.B2:MQT, at= 862.6377+(276-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307450, assembly_id= 103108, from= IP5; -MQ.19R5.B2:MQ, at= 864.6457+(276-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308441, assembly_id= 103108, from= IP5; - MS.19R5.B2:MS, at= 866.5407+(276-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251731, assembly_id= 103108, from= IP5; - MCBV.19R5.B2:MCBV, at= 867.1337+(276-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251733, assembly_id= 103108, from= IP5; - MCO.A20R5.B2:MCO, at= 868.2247+(276-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251736, assembly_id= 103109, from= IP5; - MCD.A20R5.B2:MCD, at= 868.2262+(276-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251737, assembly_id= 103109, from= IP5; - MB.A20R5.B2:MB, at= 875.7107+(275.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835554, assembly_id= 103109, from= IP5; - MCS.A20R5.B2:MCS, at= 883.1347+(275-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245907, assembly_id= 103109, from= IP5; - MB.B20R5.B2:MB, at= 891.3707+(274.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835578, assembly_id= 103110, from= IP5; - MCS.B20R5.B2:MCS, at= 898.7947+(274-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245910, assembly_id= 103110, from= IP5; - MCO.B20R5.B2:MCO, at= 899.5447+(274-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251740, assembly_id= 103111, from= IP5; - MCD.B20R5.B2:MCD, at= 899.5462+(274-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251741, assembly_id= 103111, from= IP5; - MB.C20R5.B2:MB, at= 907.0307+(273.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835602, assembly_id= 103111, from= IP5; - MCS.C20R5.B2:MCS, at= 914.4547+(273-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245915, assembly_id= 103111, from= IP5; - BPM.20R5.B2:BPM, at= 915.3337+(273-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245917, assembly_id= 103112, from= IP5; - MQT.20R5.B2:MQT, at= 916.0877+(273-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307480, assembly_id= 103112, from= IP5; -MQ.20R5.B2:MQ, at= 918.0957+(273-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308231, assembly_id= 103112, from= IP5; - MS.20R5.B2:MS, at= 919.9907+(273-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251743, assembly_id= 103112, from= IP5; - MCBH.20R5.B2:MCBH, at= 920.5837+(273-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251745, assembly_id= 103112, from= IP5; - MB.A21R5.B2:MB, at= 929.1607+(272.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835626, assembly_id= 103113, from= IP5; - MCS.A21R5.B2:MCS, at= 936.5847+(272-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245923, assembly_id= 103113, from= IP5; - MCO.21R5.B2:MCO, at= 937.3347+(272-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251748, assembly_id= 103114, from= IP5; - MCD.21R5.B2:MCD, at= 937.3362+(272-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251749, assembly_id= 103114, from= IP5; - MB.B21R5.B2:MB, at= 944.8207+(271.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835650, assembly_id= 103114, from= IP5; - MCS.B21R5.B2:MCS, at= 952.2447+(271-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245928, assembly_id= 103114, from= IP5; - MB.C21R5.B2:MB, at= 960.4807+(270.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835674, assembly_id= 103115, from= IP5; - MCS.C21R5.B2:MCS, at= 967.9047+(270-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245931, assembly_id= 103115, from= IP5; - BPM.21R5.B2:BPM, at= 968.7837+(270-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245933, assembly_id= 103116, from= IP5; - MQT.21R5.B2:MQT, at= 969.5377+(270-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307278, assembly_id= 103116, from= IP5; -MQ.21R5.B2:MQ, at= 971.5457+(270-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308262, assembly_id= 103116, from= IP5; - MS.21R5.B2:MS, at= 973.4407+(270-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251751, assembly_id= 103116, from= IP5; - MCBV.21R5.B2:MCBV, at= 974.0337+(270-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251753, assembly_id= 103116, from= IP5; - MCO.A22R5.B2:MCO, at= 975.1247+(270-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251756, assembly_id= 103117, from= IP5; - MCD.A22R5.B2:MCD, at= 975.1262+(270-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251757, assembly_id= 103117, from= IP5; - MB.A22R5.B2:MB, at= 982.6107+(269.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835698, assembly_id= 103117, from= IP5; - MCS.A22R5.B2:MCS, at= 990.0347+(269-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245941, assembly_id= 103117, from= IP5; - MB.B22R5.B2:MB, at= 998.2707+(268.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835722, assembly_id= 103118, from= IP5; - MCS.B22R5.B2:MCS, at= 1005.6947+(268-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245944, assembly_id= 103118, from= IP5; - MCO.B22R5.B2:MCO, at= 1006.4447+(268-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251760, assembly_id= 103119, from= IP5; - MCD.B22R5.B2:MCD, at= 1006.4462+(268-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251761, assembly_id= 103119, from= IP5; - MB.C22R5.B2:MB, at= 1013.9307+(267.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835746, assembly_id= 103119, from= IP5; - MCS.C22R5.B2:MCS, at= 1021.3547+(267-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245949, assembly_id= 103119, from= IP5; - BPM.22R5.B2:BPM, at= 1022.2337+(267-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245951, assembly_id= 103120, from= IP5; - MO.22R5.B2:MO, at= 1022.9847+(267-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308822, assembly_id= 103120, from= IP5; -MQ.22R5.B2:MQ, at= 1024.9957+(267-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308294, assembly_id= 103120, from= IP5; - MS.22R5.B2:MS, at= 1026.8907+(267-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251763, assembly_id= 103120, from= IP5; - MCBH.22R5.B2:MCBH, at= 1027.4837+(267-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251765, assembly_id= 103120, from= IP5; - MB.A23R5.B2:MB, at= 1036.0607+(266.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835770, assembly_id= 103121, from= IP5; - MCS.A23R5.B2:MCS, at= 1043.4847+(266-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245957, assembly_id= 103121, from= IP5; - MCO.23R5.B2:MCO, at= 1044.2347+(266-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251768, assembly_id= 103122, from= IP5; - MCD.23R5.B2:MCD, at= 1044.2362+(266-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251769, assembly_id= 103122, from= IP5; - MB.B23R5.B2:MB, at= 1051.7207+(265.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835794, assembly_id= 103122, from= IP5; - MCS.B23R5.B2:MCS, at= 1059.1447+(265-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245962, assembly_id= 103122, from= IP5; - MB.C23R5.B2:MB, at= 1067.3807+(264.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835818, assembly_id= 103123, from= IP5; - MCS.C23R5.B2:MCS, at= 1074.8047+(264-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245965, assembly_id= 103123, from= IP5; - BPM.23R5.B2:BPM, at= 1075.6837+(264-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245967, assembly_id= 103124, from= IP5; - MQS.23R5.B2:MQS, at= 1076.4377+(264-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307644, assembly_id= 103124, from= IP5; -MQ.23R5.B2:MQ, at= 1078.4457+(264-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308325, assembly_id= 103124, from= IP5; - MS.23R5.B2:MS, at= 1080.3407+(264-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251771, assembly_id= 103124, from= IP5; - MCBV.23R5.B2:MCBV, at= 1080.9337+(264-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251773, assembly_id= 103124, from= IP5; - MCO.A24R5.B2:MCO, at= 1082.0247+(264-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251776, assembly_id= 103125, from= IP5; - MCD.A24R5.B2:MCD, at= 1082.0262+(264-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251777, assembly_id= 103125, from= IP5; - MB.A24R5.B2:MB, at= 1089.5107+(263.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835842, assembly_id= 103125, from= IP5; - MCS.A24R5.B2:MCS, at= 1096.9347+(263-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245975, assembly_id= 103125, from= IP5; - MB.B24R5.B2:MB, at= 1105.1707+(262.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835866, assembly_id= 103126, from= IP5; - MCS.B24R5.B2:MCS, at= 1112.5947+(262-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245978, assembly_id= 103126, from= IP5; - MCO.B24R5.B2:MCO, at= 1113.3447+(262-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251780, assembly_id= 103127, from= IP5; - MCD.B24R5.B2:MCD, at= 1113.3462+(262-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251781, assembly_id= 103127, from= IP5; - MB.C24R5.B2:MB, at= 1120.8307+(261.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835890, assembly_id= 103127, from= IP5; - MCS.C24R5.B2:MCS, at= 1128.2547+(261-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245983, assembly_id= 103127, from= IP5; - BPM.24R5.B2:BPM, at= 1129.1337+(261-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245985, assembly_id= 103128, from= IP5; - MO.24R5.B2:MO, at= 1129.8847+(261-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308852, assembly_id= 103128, from= IP5; -MQ.24R5.B2:MQ, at= 1131.8957+(261-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308115, assembly_id= 103128, from= IP5; - MS.24R5.B2:MS, at= 1133.7907+(261-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251783, assembly_id= 103128, from= IP5; - MCBH.24R5.B2:MCBH, at= 1134.3837+(261-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251785, assembly_id= 103128, from= IP5; - MB.A25R5.B2:MB, at= 1142.9607+(260.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835914, assembly_id= 103129, from= IP5; - MCS.A25R5.B2:MCS, at= 1150.3847+(260-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245991, assembly_id= 103129, from= IP5; - MCO.25R5.B2:MCO, at= 1151.1347+(260-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251788, assembly_id= 103130, from= IP5; - MCD.25R5.B2:MCD, at= 1151.1362+(260-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251789, assembly_id= 103130, from= IP5; - MB.B25R5.B2:MB, at= 1158.6207+(259.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835938, assembly_id= 103130, from= IP5; - MCS.B25R5.B2:MCS, at= 1166.0447+(259-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245996, assembly_id= 103130, from= IP5; - MB.C25R5.B2:MB, at= 1174.2807+(258.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835962, assembly_id= 103131, from= IP5; - MCS.C25R5.B2:MCS, at= 1181.7047+(258-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 245999, assembly_id= 103131, from= IP5; - BPM.25R5.B2:BPM, at= 1182.5837+(258-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246001, assembly_id= 103132, from= IP5; - MO.25R5.B2:MO, at= 1183.3347+(258-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308884, assembly_id= 103132, from= IP5; -MQ.25R5.B2:MQ, at= 1185.3457+(258-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308147, assembly_id= 103132, from= IP5; - MS.25R5.B2:MS, at= 1187.2407+(258-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251791, assembly_id= 103132, from= IP5; - MCBV.25R5.B2:MCBV, at= 1187.8337+(258-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251793, assembly_id= 103132, from= IP5; - MCO.A26R5.B2:MCO, at= 1188.9247+(258-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251796, assembly_id= 103133, from= IP5; - MCD.A26R5.B2:MCD, at= 1188.9262+(258-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251797, assembly_id= 103133, from= IP5; - MB.A26R5.B2:MB, at= 1196.4107+(257.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52835986, assembly_id= 103133, from= IP5; - MCS.A26R5.B2:MCS, at= 1203.8347+(257-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246009, assembly_id= 103133, from= IP5; - MB.B26R5.B2:MB, at= 1212.0707+(256.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836010, assembly_id= 103134, from= IP5; - MCS.B26R5.B2:MCS, at= 1219.4947+(256-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246012, assembly_id= 103134, from= IP5; - MCO.B26R5.B2:MCO, at= 1220.2447+(256-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251800, assembly_id= 103135, from= IP5; - MCD.B26R5.B2:MCD, at= 1220.2462+(256-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251801, assembly_id= 103135, from= IP5; - MB.C26R5.B2:MB, at= 1227.7307+(255.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836034, assembly_id= 103135, from= IP5; - MCS.C26R5.B2:MCS, at= 1235.1547+(255-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246017, assembly_id= 103135, from= IP5; - BPM.26R5.B2:BPM, at= 1236.0337+(255-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246019, assembly_id= 103136, from= IP5; - MO.26R5.B2:MO, at= 1236.7847+(255-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308915, assembly_id= 103136, from= IP5; -MQ.26R5.B2:MQ, at= 1238.7957+(255-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348471, assembly_id= 103136, from= IP5; - MS.26R5.B2:MS, at= 1240.6907+(255-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251803, assembly_id= 103136, from= IP5; - MCBH.26R5.B2:MCBH, at= 1241.2837+(255-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251805, assembly_id= 103136, from= IP5; - MB.A27R5.B2:MB, at= 1249.8607+(254.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836058, assembly_id= 103137, from= IP5; - MCS.A27R5.B2:MCS, at= 1257.2847+(254-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246025, assembly_id= 103137, from= IP5; - MCO.27R5.B2:MCO, at= 1258.0347+(254-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251808, assembly_id= 103138, from= IP5; - MCD.27R5.B2:MCD, at= 1258.0362+(254-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251809, assembly_id= 103138, from= IP5; - MB.B27R5.B2:MB, at= 1265.5207+(253.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836082, assembly_id= 103138, from= IP5; - MCS.B27R5.B2:MCS, at= 1272.9447+(253-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246030, assembly_id= 103138, from= IP5; - MB.C27R5.B2:MB, at= 1281.1807+(252.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836106, assembly_id= 103139, from= IP5; - MCS.C27R5.B2:MCS, at= 1288.6047+(252-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246033, assembly_id= 103139, from= IP5; - BPM.27R5.B2:BPM, at= 1289.4837+(252-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246035, assembly_id= 103140, from= IP5; - MQS.27R5.B2:MQS, at= 1290.2377+(252-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307676, assembly_id= 103140, from= IP5; -MQ.27R5.B2:MQ, at= 1292.2457+(252-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307967, assembly_id= 103140, from= IP5; - MS.27R5.B2:MS, at= 1294.1407+(252-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251811, assembly_id= 103140, from= IP5; - MCBV.27R5.B2:MCBV, at= 1294.7337+(252-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251813, assembly_id= 103140, from= IP5; - MCO.A28R5.B2:MCO, at= 1295.8247+(252-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251816, assembly_id= 103141, from= IP5; - MCD.A28R5.B2:MCD, at= 1295.8262+(252-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251817, assembly_id= 103141, from= IP5; - MB.A28R5.B2:MB, at= 1303.3107+(251.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836130, assembly_id= 103141, from= IP5; - MCS.A28R5.B2:MCS, at= 1310.7347+(251-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246043, assembly_id= 103141, from= IP5; - MB.B28R5.B2:MB, at= 1318.9707+(250.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836154, assembly_id= 103142, from= IP5; - MCS.B28R5.B2:MCS, at= 1326.3947+(250-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246046, assembly_id= 103142, from= IP5; - MCO.B28R5.B2:MCO, at= 1327.1447+(250-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251820, assembly_id= 103143, from= IP5; - MCD.B28R5.B2:MCD, at= 1327.1462+(250-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251821, assembly_id= 103143, from= IP5; - MB.C28R5.B2:MB, at= 1334.6307+(249.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836178, assembly_id= 103143, from= IP5; - MCS.C28R5.B2:MCS, at= 1342.0547+(249-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246051, assembly_id= 103143, from= IP5; - BPM.28R5.B2:BPM, at= 1342.9337+(249-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246053, assembly_id= 103144, from= IP5; - MO.28R5.B2:MO, at= 1343.6847+(249-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308705, assembly_id= 103144, from= IP5; -MQ.28R5.B2:MQ, at= 1345.6957+(249-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307999, assembly_id= 103144, from= IP5; - MS.28R5.B2:MS, at= 1347.5907+(249-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251823, assembly_id= 103144, from= IP5; - MCBH.28R5.B2:MCBH, at= 1348.1837+(249-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251825, assembly_id= 103144, from= IP5; - MB.A29R5.B2:MB, at= 1356.7607+(248.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836202, assembly_id= 103145, from= IP5; - MCS.A29R5.B2:MCS, at= 1364.1847+(248-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246059, assembly_id= 103145, from= IP5; - MCO.29R5.B2:MCO, at= 1364.9347+(248-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251828, assembly_id= 103146, from= IP5; - MCD.29R5.B2:MCD, at= 1364.9362+(248-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251829, assembly_id= 103146, from= IP5; - MB.B29R5.B2:MB, at= 1372.4207+(247.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836226, assembly_id= 103146, from= IP5; - MCS.B29R5.B2:MCS, at= 1379.8447+(247-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246064, assembly_id= 103146, from= IP5; - MB.C29R5.B2:MB, at= 1388.0807+(246.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836250, assembly_id= 103147, from= IP5; - MCS.C29R5.B2:MCS, at= 1395.5047+(246-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246067, assembly_id= 103147, from= IP5; - BPM.29R5.B2:BPM, at= 1396.3837+(246-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246069, assembly_id= 103148, from= IP5; - MO.29R5.B2:MO, at= 1397.1347+(246-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308737, assembly_id= 103148, from= IP5; -MQ.29R5.B2:MQ, at= 1399.1457+(246-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308030, assembly_id= 103148, from= IP5; - MS.29R5.B2:MS, at= 1401.0407+(246-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251831, assembly_id= 103148, from= IP5; - MCBV.29R5.B2:MCBV, at= 1401.6337+(246-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251833, assembly_id= 103148, from= IP5; - MCO.A30R5.B2:MCO, at= 1402.7247+(246-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251836, assembly_id= 103149, from= IP5; - MCD.A30R5.B2:MCD, at= 1402.7262+(246-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251837, assembly_id= 103149, from= IP5; - MB.A30R5.B2:MB, at= 1410.2107+(245.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836274, assembly_id= 103149, from= IP5; - MCS.A30R5.B2:MCS, at= 1417.6347+(245-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246077, assembly_id= 103149, from= IP5; - MB.B30R5.B2:MB, at= 1425.8707+(244.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836298, assembly_id= 103150, from= IP5; - MCS.B30R5.B2:MCS, at= 1433.2947+(244-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246080, assembly_id= 103150, from= IP5; - MCO.B30R5.B2:MCO, at= 1434.0447+(244-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251840, assembly_id= 103151, from= IP5; - MCD.B30R5.B2:MCD, at= 1434.0462+(244-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251841, assembly_id= 103151, from= IP5; - MB.C30R5.B2:MB, at= 1441.5307+(243.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836322, assembly_id= 103151, from= IP5; - MCS.C30R5.B2:MCS, at= 1448.9547+(243-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246085, assembly_id= 103151, from= IP5; - BPM.30R5.B2:BPM, at= 1449.8337+(243-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246087, assembly_id= 103152, from= IP5; - MO.30R5.B2:MO, at= 1450.5847+(243-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308768, assembly_id= 103152, from= IP5; -MQ.30R5.B2:MQ, at= 1452.5957+(243-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308059, assembly_id= 103152, from= IP5; - MSS.30R5.B2:MSS, at= 1454.4907+(243-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251843, assembly_id= 103152, from= IP5; - MCBH.30R5.B2:MCBH, at= 1455.0837+(243-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251845, assembly_id= 103152, from= IP5; - MB.A31R5.B2:MB, at= 1463.6607+(242.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836346, assembly_id= 103153, from= IP5; - MCS.A31R5.B2:MCS, at= 1471.0847+(242-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246093, assembly_id= 103153, from= IP5; - MCO.31R5.B2:MCO, at= 1471.8347+(242-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251848, assembly_id= 103154, from= IP5; - MCD.31R5.B2:MCD, at= 1471.8362+(242-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251849, assembly_id= 103154, from= IP5; - MB.B31R5.B2:MB, at= 1479.3207+(241.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836370, assembly_id= 103154, from= IP5; - MCS.B31R5.B2:MCS, at= 1486.7447+(241-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246098, assembly_id= 103154, from= IP5; - MB.C31R5.B2:MB, at= 1494.9807+(240.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836394, assembly_id= 103155, from= IP5; - MCS.C31R5.B2:MCS, at= 1502.4047+(240-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246101, assembly_id= 103155, from= IP5; - BPM.31R5.B2:BPM, at= 1503.2837+(240-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246103, assembly_id= 103156, from= IP5; - MO.31R5.B2:MO, at= 1504.0347+(240-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308798, assembly_id= 103156, from= IP5; -MQ.31R5.B2:MQ, at= 1506.0457+(240-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307851, assembly_id= 103156, from= IP5; - MS.31R5.B2:MS, at= 1507.9407+(240-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251851, assembly_id= 103156, from= IP5; - MCBV.31R5.B2:MCBV, at= 1508.5337+(240-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251853, assembly_id= 103156, from= IP5; -S.CELL.56.B2:OMK, at= 1509.2807+(240-IP5OFS.B2)*DS, slot_id= 100932, from= IP5; - MCO.A32R5.B2:MCO, at= 1509.6247+(240-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251856, assembly_id= 103157, from= IP5; - MCD.A32R5.B2:MCD, at= 1509.6262+(240-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251857, assembly_id= 103157, from= IP5; - MB.A32R5.B2:MB, at= 1517.1107+(239.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836418, assembly_id= 103157, from= IP5; - MCS.A32R5.B2:MCS, at= 1524.5347+(239-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246111, assembly_id= 103157, from= IP5; - MB.B32R5.B2:MB, at= 1532.7707+(238.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836442, assembly_id= 103158, from= IP5; - MCS.B32R5.B2:MCS, at= 1540.1947+(238-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246114, assembly_id= 103158, from= IP5; - MCO.B32R5.B2:MCO, at= 1540.9447+(238-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251860, assembly_id= 103159, from= IP5; - MCD.B32R5.B2:MCD, at= 1540.9462+(238-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251861, assembly_id= 103159, from= IP5; - MB.C32R5.B2:MB, at= 1548.4307+(237.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836466, assembly_id= 103159, from= IP5; - MCS.C32R5.B2:MCS, at= 1555.8547+(237-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246119, assembly_id= 103159, from= IP5; - BPM.32R5.B2:BPM, at= 1556.7337+(237-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246121, assembly_id= 103160, from= IP5; - MO.32R5.B2:MO, at= 1557.4847+(237-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308590, assembly_id= 103160, from= IP5; -MQ.32R5.B2:MQ, at= 1559.4957+(237-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307881, assembly_id= 103160, from= IP5; - MS.32R5.B2:MS, at= 1561.3907+(237-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251863, assembly_id= 103160, from= IP5; - MCBH.32R5.B2:MCBH, at= 1561.9837+(237-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251865, assembly_id= 103160, from= IP5; - MB.A33R5.B2:MB, at= 1570.5607+(236.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836490, assembly_id= 103161, from= IP5; - MCS.A33R5.B2:MCS, at= 1577.9847+(236-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246127, assembly_id= 103161, from= IP5; - MCO.33R5.B2:MCO, at= 1578.7347+(236-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251868, assembly_id= 103162, from= IP5; - MCD.33R5.B2:MCD, at= 1578.7362+(236-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251869, assembly_id= 103162, from= IP5; - MB.B33R5.B2:MB, at= 1586.2207+(235.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836514, assembly_id= 103162, from= IP5; - MCS.B33R5.B2:MCS, at= 1593.6447+(235-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246132, assembly_id= 103162, from= IP5; - MB.C33R5.B2:MB, at= 1601.8807+(234.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836538, assembly_id= 103163, from= IP5; - MCS.C33R5.B2:MCS, at= 1609.3047+(234-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246135, assembly_id= 103163, from= IP5; - BPM.33R5.B2:BPM, at= 1610.1837+(234-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246137, assembly_id= 103164, from= IP5; - MO.33R5.B2:MO, at= 1610.9347+(234-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308621, assembly_id= 103164, from= IP5; -MQ.33R5.B2:MQ, at= 1612.9457+(234-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307911, assembly_id= 103164, from= IP5; - MS.33R5.B2:MS, at= 1614.8407+(234-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251871, assembly_id= 103164, from= IP5; - MCBV.33R5.B2:MCBV, at= 1615.4337+(234-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251873, assembly_id= 103164, from= IP5; -E.CELL.56.B2:OMK, at= 1616.1807+(234-IP5OFS.B2)*DS, slot_id= 100932, from= IP5; - MCO.A34R5.B2:MCO, at= 1616.5247+(234-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251876, assembly_id= 103165, from= IP5; - MCD.A34R5.B2:MCD, at= 1616.5262+(234-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251877, assembly_id= 103165, from= IP5; - MB.A34R5.B2:MB, at= 1624.0107+(233.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836562, assembly_id= 103165, from= IP5; - MCS.A34R5.B2:MCS, at= 1631.4347+(233-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246145, assembly_id= 103165, from= IP5; - MB.B34R5.B2:MB, at= 1639.6707+(232.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836586, assembly_id= 103166, from= IP5; - MCS.B34R5.B2:MCS, at= 1647.0947+(232-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246148, assembly_id= 103166, from= IP5; - MCO.B34R5.B2:MCO, at= 1647.8447+(232-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251880, assembly_id= 103167, from= IP5; - MCD.B34R5.B2:MCD, at= 1647.8462+(232-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251881, assembly_id= 103167, from= IP5; - MB.C34R5.B2:MB, at= 1655.3307+(231.5-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836610, assembly_id= 103167, from= IP5; - MCS.C34R5.B2:MCS, at= 1662.7547+(231-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246153, assembly_id= 103167, from= IP5; - BPM.34R5.B2:BPM, at= 1663.6337+(231-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246155, assembly_id= 103168, from= IP5; - MO.34R5.B2:MO, at= 1664.3847+(231-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308636, assembly_id= 103168, from= IP5; -MQ.34R5.B2:MQ, at= 1666.3957+(231-IP5OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307926, assembly_id= 103168, from= IP5; - MSS.34L6.B2:MSS, at= -1664.0697+(231-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251883, assembly_id= 103168, from= IP6; - MCBH.34L6.B2:MCBH, at= -1663.4767+(231-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251885, assembly_id= 103168, from= IP6; - MB.C34L6.B2:MB, at= -1654.8997+(230.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836634, assembly_id= 103169, from= IP6; - MCS.C34L6.B2:MCS, at= -1647.4757+(230-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246161, assembly_id= 103169, from= IP6; - MCO.34L6.B2:MCO, at= -1646.7257+(230-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251888, assembly_id= 103170, from= IP6; - MCD.34L6.B2:MCD, at= -1646.7242+(230-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251889, assembly_id= 103170, from= IP6; - MB.B34L6.B2:MB, at= -1639.2397+(229.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836658, assembly_id= 103170, from= IP6; - MCS.B34L6.B2:MCS, at= -1631.8157+(229-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246166, assembly_id= 103170, from= IP6; - MB.A34L6.B2:MB, at= -1623.5797+(228.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836682, assembly_id= 103171, from= IP6; - MCS.A34L6.B2:MCS, at= -1616.1557+(228-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246169, assembly_id= 103171, from= IP6; - BPM.33L6.B2:BPM, at= -1615.2767+(228-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246171, assembly_id= 103172, from= IP6; - MO.33L6.B2:MO, at= -1614.5257+(228-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308608, assembly_id= 103172, from= IP6; -MQ.33L6.B2:MQ, at= -1612.5147+(228-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307898, assembly_id= 103172, from= IP6; - MS.33L6.B2:MS, at= -1610.6197+(228-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251891, assembly_id= 103172, from= IP6; - MCBV.33L6.B2:MCBV, at= -1610.0267+(228-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251893, assembly_id= 103172, from= IP6; - MCO.B33L6.B2:MCO, at= -1608.9357+(228-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251896, assembly_id= 103173, from= IP6; - MCD.B33L6.B2:MCD, at= -1608.9342+(228-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251897, assembly_id= 103173, from= IP6; - MB.C33L6.B2:MB, at= -1601.4497+(227.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836706, assembly_id= 103173, from= IP6; - MCS.C33L6.B2:MCS, at= -1594.0257+(227-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246179, assembly_id= 103173, from= IP6; - MB.B33L6.B2:MB, at= -1585.7897+(226.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836730, assembly_id= 103174, from= IP6; - MCS.B33L6.B2:MCS, at= -1578.3657+(226-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246182, assembly_id= 103174, from= IP6; - MCO.A33L6.B2:MCO, at= -1577.6157+(226-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251900, assembly_id= 103175, from= IP6; - MCD.A33L6.B2:MCD, at= -1577.6142+(226-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251901, assembly_id= 103175, from= IP6; - MB.A33L6.B2:MB, at= -1570.1297+(225.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836754, assembly_id= 103175, from= IP6; - MCS.A33L6.B2:MCS, at= -1562.7057+(225-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246187, assembly_id= 103175, from= IP6; - BPM.32L6.B2:BPM, at= -1561.8267+(225-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246189, assembly_id= 103176, from= IP6; - MO.32L6.B2:MO, at= -1561.0757+(225-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308576, assembly_id= 103176, from= IP6; -MQ.32L6.B2:MQ, at= -1559.0647+(225-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307868, assembly_id= 103176, from= IP6; - MSS.32L6.B2:MSS, at= -1557.1697+(225-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251903, assembly_id= 103176, from= IP6; - MCBH.32L6.B2:MCBH, at= -1556.5767+(225-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251905, assembly_id= 103176, from= IP6; - MB.C32L6.B2:MB, at= -1547.9997+(224.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836778, assembly_id= 103177, from= IP6; - MCS.C32L6.B2:MCS, at= -1540.5757+(224-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246195, assembly_id= 103177, from= IP6; - MCO.32L6.B2:MCO, at= -1539.8257+(224-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251908, assembly_id= 103178, from= IP6; - MCD.32L6.B2:MCD, at= -1539.8242+(224-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251909, assembly_id= 103178, from= IP6; - MB.B32L6.B2:MB, at= -1532.3397+(223.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836802, assembly_id= 103178, from= IP6; - MCS.B32L6.B2:MCS, at= -1524.9157+(223-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246200, assembly_id= 103178, from= IP6; - MB.A32L6.B2:MB, at= -1516.6797+(222.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836826, assembly_id= 103179, from= IP6; - MCS.A32L6.B2:MCS, at= -1509.2557+(222-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246203, assembly_id= 103179, from= IP6; - BPM.31L6.B2:BPM, at= -1508.3767+(222-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246205, assembly_id= 103180, from= IP6; - MO.31L6.B2:MO, at= -1507.6257+(222-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348500, assembly_id= 103180, from= IP6; -MQ.31L6.B2:MQ, at= -1505.6147+(222-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308076, assembly_id= 103180, from= IP6; - MS.31L6.B2:MS, at= -1503.7197+(222-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251911, assembly_id= 103180, from= IP6; - MCBV.31L6.B2:MCBV, at= -1503.1267+(222-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251913, assembly_id= 103180, from= IP6; - MCO.B31L6.B2:MCO, at= -1502.0357+(222-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251916, assembly_id= 103181, from= IP6; - MCD.B31L6.B2:MCD, at= -1502.0342+(222-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251917, assembly_id= 103181, from= IP6; - MB.C31L6.B2:MB, at= -1494.5497+(221.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836850, assembly_id= 103181, from= IP6; - MCS.C31L6.B2:MCS, at= -1487.1257+(221-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246213, assembly_id= 103181, from= IP6; - MB.B31L6.B2:MB, at= -1478.8897+(220.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836874, assembly_id= 103182, from= IP6; - MCS.B31L6.B2:MCS, at= -1471.4657+(220-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246216, assembly_id= 103182, from= IP6; - MCO.A31L6.B2:MCO, at= -1470.7157+(220-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251920, assembly_id= 103183, from= IP6; - MCD.A31L6.B2:MCD, at= -1470.7142+(220-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251921, assembly_id= 103183, from= IP6; - MB.A31L6.B2:MB, at= -1463.2297+(219.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836898, assembly_id= 103183, from= IP6; - MCS.A31L6.B2:MCS, at= -1455.8057+(219-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246221, assembly_id= 103183, from= IP6; - BPM.30L6.B2:BPM, at= -1454.9267+(219-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246223, assembly_id= 103184, from= IP6; - MO.30L6.B2:MO, at= -1454.1757+(219-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308755, assembly_id= 103184, from= IP6; -MQ.30L6.B2:MQ, at= -1452.1647+(219-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308046, assembly_id= 103184, from= IP6; - MS.30L6.B2:MS, at= -1450.2697+(219-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251923, assembly_id= 103184, from= IP6; - MCBH.30L6.B2:MCBH, at= -1449.6767+(219-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251925, assembly_id= 103184, from= IP6; - MB.C30L6.B2:MB, at= -1441.0997+(218.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836922, assembly_id= 103185, from= IP6; - MCS.C30L6.B2:MCS, at= -1433.6757+(218-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246229, assembly_id= 103185, from= IP6; - MCO.30L6.B2:MCO, at= -1432.9257+(218-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251928, assembly_id= 103186, from= IP6; - MCD.30L6.B2:MCD, at= -1432.9242+(218-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251929, assembly_id= 103186, from= IP6; - MB.B30L6.B2:MB, at= -1425.4397+(217.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836946, assembly_id= 103186, from= IP6; - MCS.B30L6.B2:MCS, at= -1418.0157+(217-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246234, assembly_id= 103186, from= IP6; - MB.A30L6.B2:MB, at= -1409.7797+(216.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836970, assembly_id= 103187, from= IP6; - MCS.A30L6.B2:MCS, at= -1402.3557+(216-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246237, assembly_id= 103187, from= IP6; - BPM.29L6.B2:BPM, at= -1401.4767+(216-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246239, assembly_id= 103188, from= IP6; - MO.29L6.B2:MO, at= -1400.7257+(216-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308723, assembly_id= 103188, from= IP6; -MQ.29L6.B2:MQ, at= -1398.7147+(216-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308017, assembly_id= 103188, from= IP6; - MS.29L6.B2:MS, at= -1396.8197+(216-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251931, assembly_id= 103188, from= IP6; - MCBV.29L6.B2:MCBV, at= -1396.2267+(216-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251933, assembly_id= 103188, from= IP6; - MCO.B29L6.B2:MCO, at= -1395.1357+(216-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251936, assembly_id= 103189, from= IP6; - MCD.B29L6.B2:MCD, at= -1395.1342+(216-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251937, assembly_id= 103189, from= IP6; - MB.C29L6.B2:MB, at= -1387.6497+(215.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52836994, assembly_id= 103189, from= IP6; - MCS.C29L6.B2:MCS, at= -1380.2257+(215-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246247, assembly_id= 103189, from= IP6; - MB.B29L6.B2:MB, at= -1371.9897+(214.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837018, assembly_id= 103190, from= IP6; - MCS.B29L6.B2:MCS, at= -1364.5657+(214-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246250, assembly_id= 103190, from= IP6; - MCO.A29L6.B2:MCO, at= -1363.8157+(214-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251940, assembly_id= 103191, from= IP6; - MCD.A29L6.B2:MCD, at= -1363.8142+(214-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251941, assembly_id= 103191, from= IP6; - MB.A29L6.B2:MB, at= -1356.3297+(213.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837042, assembly_id= 103191, from= IP6; - MCS.A29L6.B2:MCS, at= -1348.9057+(213-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246255, assembly_id= 103191, from= IP6; - BPM.28L6.B2:BPM, at= -1348.0267+(213-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246257, assembly_id= 103192, from= IP6; - MO.28L6.B2:MO, at= -1347.2757+(213-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308691, assembly_id= 103192, from= IP6; -MQ.28L6.B2:MQ, at= -1345.2647+(213-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307985, assembly_id= 103192, from= IP6; - MSS.28L6.B2:MSS, at= -1343.3697+(213-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251943, assembly_id= 103192, from= IP6; - MCBH.28L6.B2:MCBH, at= -1342.7767+(213-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251945, assembly_id= 103192, from= IP6; - MB.C28L6.B2:MB, at= -1334.1997+(212.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837066, assembly_id= 103193, from= IP6; - MCS.C28L6.B2:MCS, at= -1326.7757+(212-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246263, assembly_id= 103193, from= IP6; - MCO.28L6.B2:MCO, at= -1326.0257+(212-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251948, assembly_id= 103194, from= IP6; - MCD.28L6.B2:MCD, at= -1326.0242+(212-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251949, assembly_id= 103194, from= IP6; - MB.B28L6.B2:MB, at= -1318.5397+(211.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837090, assembly_id= 103194, from= IP6; - MCS.B28L6.B2:MCS, at= -1311.1157+(211-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246268, assembly_id= 103194, from= IP6; - MB.A28L6.B2:MB, at= -1302.8797+(210.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837114, assembly_id= 103195, from= IP6; - MCS.A28L6.B2:MCS, at= -1295.4557+(210-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246271, assembly_id= 103195, from= IP6; - BPM.27L6.B2:BPM, at= -1294.5767+(210-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246273, assembly_id= 103196, from= IP6; - MQS.27L6.B2:MQS, at= -1293.8227+(210-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307662, assembly_id= 103196, from= IP6; -MQ.27L6.B2:MQ, at= -1291.8147+(210-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308194, assembly_id= 103196, from= IP6; - MS.27L6.B2:MS, at= -1289.9197+(210-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251951, assembly_id= 103196, from= IP6; - MCBV.27L6.B2:MCBV, at= -1289.3267+(210-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251953, assembly_id= 103196, from= IP6; - MCO.B27L6.B2:MCO, at= -1288.2357+(210-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251956, assembly_id= 103197, from= IP6; - MCD.B27L6.B2:MCD, at= -1288.2342+(210-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251957, assembly_id= 103197, from= IP6; - MB.C27L6.B2:MB, at= -1280.7497+(209.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837138, assembly_id= 103197, from= IP6; - MCS.C27L6.B2:MCS, at= -1273.3257+(209-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246281, assembly_id= 103197, from= IP6; - MB.B27L6.B2:MB, at= -1265.0897+(208.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837162, assembly_id= 103198, from= IP6; - MCS.B27L6.B2:MCS, at= -1257.6657+(208-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246284, assembly_id= 103198, from= IP6; - MCO.A27L6.B2:MCO, at= -1256.9157+(208-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251960, assembly_id= 103199, from= IP6; - MCD.A27L6.B2:MCD, at= -1256.9142+(208-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251961, assembly_id= 103199, from= IP6; - MB.A27L6.B2:MB, at= -1249.4297+(207.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837186, assembly_id= 103199, from= IP6; - MCS.A27L6.B2:MCS, at= -1242.0057+(207-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246289, assembly_id= 103199, from= IP6; - BPM.26L6.B2:BPM, at= -1241.1267+(207-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246291, assembly_id= 103200, from= IP6; - MO.26L6.B2:MO, at= -1240.3757+(207-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308902, assembly_id= 103200, from= IP6; -MQ.26L6.B2:MQ, at= -1238.3647+(207-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348470, assembly_id= 103200, from= IP6; - MS.26L6.B2:MS, at= -1236.4697+(207-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251963, assembly_id= 103200, from= IP6; - MCBH.26L6.B2:MCBH, at= -1235.8767+(207-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251965, assembly_id= 103200, from= IP6; - MB.C26L6.B2:MB, at= -1227.2997+(206.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837210, assembly_id= 103201, from= IP6; - MCS.C26L6.B2:MCS, at= -1219.8757+(206-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246297, assembly_id= 103201, from= IP6; - MCO.26L6.B2:MCO, at= -1219.1257+(206-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251968, assembly_id= 103202, from= IP6; - MCD.26L6.B2:MCD, at= -1219.1242+(206-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251969, assembly_id= 103202, from= IP6; - MB.B26L6.B2:MB, at= -1211.6397+(205.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837234, assembly_id= 103202, from= IP6; - MCS.B26L6.B2:MCS, at= -1204.2157+(205-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246302, assembly_id= 103202, from= IP6; - MB.A26L6.B2:MB, at= -1195.9797+(204.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837258, assembly_id= 103203, from= IP6; - MCS.A26L6.B2:MCS, at= -1188.5557+(204-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246305, assembly_id= 103203, from= IP6; - BPM.25L6.B2:BPM, at= -1187.6767+(204-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246307, assembly_id= 103204, from= IP6; - MO.25L6.B2:MO, at= -1186.9257+(204-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308870, assembly_id= 103204, from= IP6; -MQ.25L6.B2:MQ, at= -1184.9147+(204-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308133, assembly_id= 103204, from= IP6; - MS.25L6.B2:MS, at= -1183.0197+(204-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251971, assembly_id= 103204, from= IP6; - MCBV.25L6.B2:MCBV, at= -1182.4267+(204-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251973, assembly_id= 103204, from= IP6; - MCO.B25L6.B2:MCO, at= -1181.3357+(204-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251976, assembly_id= 103205, from= IP6; - MCD.B25L6.B2:MCD, at= -1181.3342+(204-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251977, assembly_id= 103205, from= IP6; - MB.C25L6.B2:MB, at= -1173.8497+(203.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837282, assembly_id= 103205, from= IP6; - MCS.C25L6.B2:MCS, at= -1166.4257+(203-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246315, assembly_id= 103205, from= IP6; - MB.B25L6.B2:MB, at= -1158.1897+(202.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837306, assembly_id= 103206, from= IP6; - MCS.B25L6.B2:MCS, at= -1150.7657+(202-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246318, assembly_id= 103206, from= IP6; - MCO.A25L6.B2:MCO, at= -1150.0157+(202-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251980, assembly_id= 103207, from= IP6; - MCD.A25L6.B2:MCD, at= -1150.0142+(202-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251981, assembly_id= 103207, from= IP6; - MB.A25L6.B2:MB, at= -1142.5297+(201.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837330, assembly_id= 103207, from= IP6; - MCS.A25L6.B2:MCS, at= -1135.1057+(201-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246323, assembly_id= 103207, from= IP6; - BPM.24L6.B2:BPM, at= -1134.2267+(201-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246325, assembly_id= 103208, from= IP6; - MO.24L6.B2:MO, at= -1133.4757+(201-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348504, assembly_id= 103208, from= IP6; -MQ.24L6.B2:MQ, at= -1131.4647+(201-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308101, assembly_id= 103208, from= IP6; - MS.24L6.B2:MS, at= -1129.5697+(201-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251983, assembly_id= 103208, from= IP6; - MCBH.24L6.B2:MCBH, at= -1128.9767+(201-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251985, assembly_id= 103208, from= IP6; - MB.C24L6.B2:MB, at= -1120.3997+(200.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837354, assembly_id= 103209, from= IP6; - MCS.C24L6.B2:MCS, at= -1112.9757+(200-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246331, assembly_id= 103209, from= IP6; - MCO.24L6.B2:MCO, at= -1112.2257+(200-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251988, assembly_id= 103210, from= IP6; - MCD.24L6.B2:MCD, at= -1112.2242+(200-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251989, assembly_id= 103210, from= IP6; - MB.B24L6.B2:MB, at= -1104.7397+(199.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837378, assembly_id= 103210, from= IP6; - MCS.B24L6.B2:MCS, at= -1097.3157+(199-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246336, assembly_id= 103210, from= IP6; - MB.A24L6.B2:MB, at= -1089.0797+(198.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837402, assembly_id= 103211, from= IP6; - MCS.A24L6.B2:MCS, at= -1081.6557+(198-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246339, assembly_id= 103211, from= IP6; - BPM.23L6.B2:BPM, at= -1080.7767+(198-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246341, assembly_id= 103212, from= IP6; - MQS.23L6.B2:MQS, at= -1080.0227+(198-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307631, assembly_id= 103212, from= IP6; -MQ.23L6.B2:MQ, at= -1078.0147+(198-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308312, assembly_id= 103212, from= IP6; - MS.23L6.B2:MS, at= -1076.1197+(198-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251991, assembly_id= 103212, from= IP6; - MCBV.23L6.B2:MCBV, at= -1075.5267+(198-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251993, assembly_id= 103212, from= IP6; - MCO.B23L6.B2:MCO, at= -1074.4357+(198-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251996, assembly_id= 103213, from= IP6; - MCD.B23L6.B2:MCD, at= -1074.4342+(198-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 251997, assembly_id= 103213, from= IP6; - MB.C23L6.B2:MB, at= -1066.9497+(197.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837426, assembly_id= 103213, from= IP6; - MCS.C23L6.B2:MCS, at= -1059.5257+(197-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246349, assembly_id= 103213, from= IP6; - MB.B23L6.B2:MB, at= -1051.2897+(196.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837450, assembly_id= 103214, from= IP6; - MCS.B23L6.B2:MCS, at= -1043.8657+(196-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246352, assembly_id= 103214, from= IP6; - MCO.A23L6.B2:MCO, at= -1043.1157+(196-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252000, assembly_id= 103215, from= IP6; - MCD.A23L6.B2:MCD, at= -1043.1142+(196-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252001, assembly_id= 103215, from= IP6; - MB.A23L6.B2:MB, at= -1035.6297+(195.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837474, assembly_id= 103215, from= IP6; - MCS.A23L6.B2:MCS, at= -1028.2057+(195-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246357, assembly_id= 103215, from= IP6; - BPM.22L6.B2:BPM, at= -1027.3267+(195-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246359, assembly_id= 103216, from= IP6; - MO.22L6.B2:MO, at= -1026.5757+(195-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308809, assembly_id= 103216, from= IP6; -MQ.22L6.B2:MQ, at= -1024.5647+(195-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308280, assembly_id= 103216, from= IP6; - MS.22L6.B2:MS, at= -1022.6697+(195-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252003, assembly_id= 103216, from= IP6; - MCBH.22L6.B2:MCBH, at= -1022.0767+(195-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252005, assembly_id= 103216, from= IP6; - MB.C22L6.B2:MB, at= -1013.4997+(194.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837498, assembly_id= 103217, from= IP6; - MCS.C22L6.B2:MCS, at= -1006.0757+(194-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246365, assembly_id= 103217, from= IP6; - MCO.22L6.B2:MCO, at= -1005.3257+(194-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252008, assembly_id= 103218, from= IP6; - MCD.22L6.B2:MCD, at= -1005.3242+(194-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252009, assembly_id= 103218, from= IP6; - MB.B22L6.B2:MB, at= -997.8397+(193.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837522, assembly_id= 103218, from= IP6; - MCS.B22L6.B2:MCS, at= -990.4157+(193-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246370, assembly_id= 103218, from= IP6; - MB.A22L6.B2:MB, at= -982.1797+(192.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837546, assembly_id= 103219, from= IP6; - MCS.A22L6.B2:MCS, at= -974.7557+(192-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246373, assembly_id= 103219, from= IP6; - BPM.21L6.B2:BPM, at= -973.8767+(192-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246375, assembly_id= 103220, from= IP6; - MQT.21L6.B2:MQT, at= -973.1227+(192-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307264, assembly_id= 103220, from= IP6; -MQ.21L6.B2:MQ, at= -971.1147+(192-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308248, assembly_id= 103220, from= IP6; - MS.21L6.B2:MS, at= -969.2197+(192-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252011, assembly_id= 103220, from= IP6; - MCBV.21L6.B2:MCBV, at= -968.6267+(192-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252013, assembly_id= 103220, from= IP6; - MCO.B21L6.B2:MCO, at= -967.5357+(192-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252016, assembly_id= 103221, from= IP6; - MCD.B21L6.B2:MCD, at= -967.5342+(192-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252017, assembly_id= 103221, from= IP6; - MB.C21L6.B2:MB, at= -960.0497+(191.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837570, assembly_id= 103221, from= IP6; - MCS.C21L6.B2:MCS, at= -952.6257+(191-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246383, assembly_id= 103221, from= IP6; - MB.B21L6.B2:MB, at= -944.3897+(190.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837594, assembly_id= 103222, from= IP6; - MCS.B21L6.B2:MCS, at= -936.9657+(190-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246386, assembly_id= 103222, from= IP6; - MCO.A21L6.B2:MCO, at= -936.2157+(190-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252020, assembly_id= 103223, from= IP6; - MCD.A21L6.B2:MCD, at= -936.2142+(190-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252021, assembly_id= 103223, from= IP6; - MB.A21L6.B2:MB, at= -928.7297+(189.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837618, assembly_id= 103223, from= IP6; - MCS.A21L6.B2:MCS, at= -921.3057+(189-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246391, assembly_id= 103223, from= IP6; - BPM.20L6.B2:BPM, at= -920.4267+(189-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246393, assembly_id= 103224, from= IP6; - MQT.20L6.B2:MQT, at= -919.6727+(189-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307467, assembly_id= 103224, from= IP6; -MQ.20L6.B2:MQ, at= -917.6647+(189-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308218, assembly_id= 103224, from= IP6; - MS.20L6.B2:MS, at= -915.7697+(189-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252023, assembly_id= 103224, from= IP6; - MCBH.20L6.B2:MCBH, at= -915.1767+(189-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252025, assembly_id= 103224, from= IP6; - MB.C20L6.B2:MB, at= -906.5997+(188.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837642, assembly_id= 103225, from= IP6; - MCS.C20L6.B2:MCS, at= -899.1757+(188-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246399, assembly_id= 103225, from= IP6; - MCO.20L6.B2:MCO, at= -898.4257+(188-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252028, assembly_id= 103226, from= IP6; - MCD.20L6.B2:MCD, at= -898.4242+(188-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252029, assembly_id= 103226, from= IP6; - MB.B20L6.B2:MB, at= -890.9397+(187.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837666, assembly_id= 103226, from= IP6; - MCS.B20L6.B2:MCS, at= -883.5157+(187-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246404, assembly_id= 103226, from= IP6; - MB.A20L6.B2:MB, at= -875.2797+(186.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837690, assembly_id= 103227, from= IP6; - MCS.A20L6.B2:MCS, at= -867.8557+(186-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246407, assembly_id= 103227, from= IP6; - BPM.19L6.B2:BPM, at= -866.9767+(186-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246409, assembly_id= 103228, from= IP6; - MQT.19L6.B2:MQT, at= -866.2227+(186-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307437, assembly_id= 103228, from= IP6; -MQ.19L6.B2:MQ, at= -864.2147+(186-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308427, assembly_id= 103228, from= IP6; - MS.19L6.B2:MS, at= -862.3197+(186-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252031, assembly_id= 103228, from= IP6; - MCBV.19L6.B2:MCBV, at= -861.7267+(186-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252033, assembly_id= 103228, from= IP6; - MCO.B19L6.B2:MCO, at= -860.6357+(186-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252036, assembly_id= 103229, from= IP6; - MCD.B19L6.B2:MCD, at= -860.6342+(186-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252037, assembly_id= 103229, from= IP6; - MB.C19L6.B2:MB, at= -853.1497+(185.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837714, assembly_id= 103229, from= IP6; - MCS.C19L6.B2:MCS, at= -845.7257+(185-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246417, assembly_id= 103229, from= IP6; - MB.B19L6.B2:MB, at= -837.4897+(184.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837738, assembly_id= 103230, from= IP6; - MCS.B19L6.B2:MCS, at= -830.0657+(184-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246420, assembly_id= 103230, from= IP6; - MCO.A19L6.B2:MCO, at= -829.3157+(184-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252040, assembly_id= 103231, from= IP6; - MCD.A19L6.B2:MCD, at= -829.3142+(184-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252041, assembly_id= 103231, from= IP6; - MB.A19L6.B2:MB, at= -821.8297+(183.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837762, assembly_id= 103231, from= IP6; - MCS.A19L6.B2:MCS, at= -814.4057+(183-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246425, assembly_id= 103231, from= IP6; - BPM.18L6.B2:BPM, at= -813.5267+(183-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246427, assembly_id= 103232, from= IP6; - MQT.18L6.B2:MQT, at= -812.7727+(183-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307406, assembly_id= 103232, from= IP6; -MQ.18L6.B2:MQ, at= -810.7647+(183-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308395, assembly_id= 103232, from= IP6; - MS.18L6.B2:MS, at= -808.8697+(183-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252043, assembly_id= 103232, from= IP6; - MCBH.18L6.B2:MCBH, at= -808.2767+(183-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252045, assembly_id= 103232, from= IP6; - MB.C18L6.B2:MB, at= -799.6997+(182.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837786, assembly_id= 103233, from= IP6; - MCS.C18L6.B2:MCS, at= -792.2757+(182-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246433, assembly_id= 103233, from= IP6; - MCO.18L6.B2:MCO, at= -791.5257+(182-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252048, assembly_id= 103234, from= IP6; - MCD.18L6.B2:MCD, at= -791.5242+(182-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252049, assembly_id= 103234, from= IP6; - MB.B18L6.B2:MB, at= -784.0397+(181.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837810, assembly_id= 103234, from= IP6; - MCS.B18L6.B2:MCS, at= -776.6157+(181-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246438, assembly_id= 103234, from= IP6; - MB.A18L6.B2:MB, at= -768.3797+(180.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837834, assembly_id= 103235, from= IP6; - MCS.A18L6.B2:MCS, at= -760.9557+(180-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246441, assembly_id= 103235, from= IP6; - BPM.17L6.B2:BPM, at= -760.0767+(180-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246443, assembly_id= 103236, from= IP6; - MQT.17L6.B2:MQT, at= -759.3227+(180-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307374, assembly_id= 103236, from= IP6; -MQ.17L6.B2:MQ, at= -757.3147+(180-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348481, assembly_id= 103236, from= IP6; - MS.17L6.B2:MS, at= -755.4197+(180-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252051, assembly_id= 103236, from= IP6; - MCBV.17L6.B2:MCBV, at= -754.8267+(180-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252053, assembly_id= 103236, from= IP6; - MCO.B17L6.B2:MCO, at= -753.7357+(180-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252056, assembly_id= 103237, from= IP6; - MCD.B17L6.B2:MCD, at= -753.7342+(180-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252057, assembly_id= 103237, from= IP6; - MB.C17L6.B2:MB, at= -746.2497+(179.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837858, assembly_id= 103237, from= IP6; - MCS.C17L6.B2:MCS, at= -738.8257+(179-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246451, assembly_id= 103237, from= IP6; - MB.B17L6.B2:MB, at= -730.5897+(178.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837882, assembly_id= 103238, from= IP6; - MCS.B17L6.B2:MCS, at= -723.1657+(178-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246454, assembly_id= 103238, from= IP6; - MCO.A17L6.B2:MCO, at= -722.4157+(178-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252060, assembly_id= 103239, from= IP6; - MCD.A17L6.B2:MCD, at= -722.4142+(178-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252061, assembly_id= 103239, from= IP6; - MB.A17L6.B2:MB, at= -714.9297+(177.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837906, assembly_id= 103239, from= IP6; - MCS.A17L6.B2:MCS, at= -707.5057+(177-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246459, assembly_id= 103239, from= IP6; - BPM.16L6.B2:BPM, at= -706.6267+(177-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246461, assembly_id= 103240, from= IP6; - MQT.16L6.B2:MQT, at= -705.8727+(177-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307581, assembly_id= 103240, from= IP6; -MQ.16L6.B2:MQ, at= -703.8647+(177-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308336, assembly_id= 103240, from= IP6; - MS.16L6.B2:MS, at= -701.9697+(177-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252063, assembly_id= 103240, from= IP6; - MCBH.16L6.B2:MCBH, at= -701.3767+(177-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252065, assembly_id= 103240, from= IP6; - MB.C16L6.B2:MB, at= -692.7997+(176.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837930, assembly_id= 103241, from= IP6; - MCS.C16L6.B2:MCS, at= -685.3757+(176-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246467, assembly_id= 103241, from= IP6; - MCO.16L6.B2:MCO, at= -684.6257+(176-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252068, assembly_id= 103242, from= IP6; - MCD.16L6.B2:MCD, at= -684.6242+(176-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252069, assembly_id= 103242, from= IP6; - MB.B16L6.B2:MB, at= -677.1397+(175.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837954, assembly_id= 103242, from= IP6; - MCS.B16L6.B2:MCS, at= -669.7157+(175-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246472, assembly_id= 103242, from= IP6; - MB.A16L6.B2:MB, at= -661.4797+(174.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52837978, assembly_id= 103243, from= IP6; - MCS.A16L6.B2:MCS, at= -654.0557+(174-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246475, assembly_id= 103243, from= IP6; - BPM.15L6.B2:BPM, at= -653.1767+(174-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246477, assembly_id= 103244, from= IP6; - MQT.15L6.B2:MQT, at= -652.4227+(174-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307550, assembly_id= 103244, from= IP6; -MQ.15L6.B2:MQ, at= -650.4147+(174-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308542, assembly_id= 103244, from= IP6; - MS.15L6.B2:MS, at= -648.5197+(174-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252071, assembly_id= 103244, from= IP6; - MCBV.15L6.B2:MCBV, at= -647.9267+(174-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252073, assembly_id= 103244, from= IP6; - MCO.B15L6.B2:MCO, at= -646.8357+(174-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252076, assembly_id= 103245, from= IP6; - MCD.B15L6.B2:MCD, at= -646.8342+(174-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252077, assembly_id= 103245, from= IP6; - MB.C15L6.B2:MB, at= -639.3497+(173.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838002, assembly_id= 103245, from= IP6; - MCS.C15L6.B2:MCS, at= -631.9257+(173-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246485, assembly_id= 103245, from= IP6; - MB.B15L6.B2:MB, at= -623.6897+(172.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838026, assembly_id= 103246, from= IP6; - MCS.B15L6.B2:MCS, at= -616.2657+(172-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246488, assembly_id= 103246, from= IP6; - MCO.A15L6.B2:MCO, at= -615.5157+(172-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252080, assembly_id= 103247, from= IP6; - MCD.A15L6.B2:MCD, at= -615.5142+(172-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252081, assembly_id= 103247, from= IP6; - MB.A15L6.B2:MB, at= -608.0297+(171.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838050, assembly_id= 103247, from= IP6; - MCS.A15L6.B2:MCS, at= -600.6057+(171-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246493, assembly_id= 103247, from= IP6; - BPM.14L6.B2:BPM, at= -599.7267+(171-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246495, assembly_id= 103248, from= IP6; - MQT.14L6.B2:MQT, at= -598.9727+(171-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307518, assembly_id= 103248, from= IP6; -MQ.14L6.B2:MQ, at= -596.9647+(171-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308513, assembly_id= 103248, from= IP6; - MS.14L6.B2:MS, at= -595.0697+(171-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252083, assembly_id= 103248, from= IP6; - MCBH.14L6.B2:MCBH, at= -594.4767+(171-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252085, assembly_id= 103248, from= IP6; - MB.C14L6.B2:MB, at= -585.8997+(170.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838074, assembly_id= 103249, from= IP6; - MCS.C14L6.B2:MCS, at= -578.4757+(170-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246501, assembly_id= 103249, from= IP6; - MCO.14L6.B2:MCO, at= -577.7257+(170-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252088, assembly_id= 103250, from= IP6; - MCD.14L6.B2:MCD, at= -577.7242+(170-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252089, assembly_id= 103250, from= IP6; - MB.B14L6.B2:MB, at= -570.2397+(169.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838098, assembly_id= 103250, from= IP6; - MCS.B14L6.B2:MCS, at= -562.8157+(169-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246506, assembly_id= 103250, from= IP6; - MB.A14L6.B2:MB, at= -554.5797+(168.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838122, assembly_id= 103251, from= IP6; - MCS.A14L6.B2:MCS, at= -547.1557+(168-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246509, assembly_id= 103251, from= IP6; -S.DS.L6.B2:OMK, at= -546.7497+(168-IP6OFS.B2)*DS, slot_id= 100932, from= IP6; - BPM.13L6.B2:BPM, at= -546.2767+(168-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246511, assembly_id= 103252, from= IP6; - MQT.13L6.B2:MQT, at= -545.5227+(168-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348451, assembly_id= 103252, from= IP6; -MQ.13L6.B2:MQ, at= -543.5147+(168-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308483, assembly_id= 103252, from= IP6; - MS.13L6.B2:MS, at= -541.6197+(168-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252091, assembly_id= 103252, from= IP6; - MCBV.13L6.B2:MCBV, at= -541.0267+(168-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252093, assembly_id= 103252, from= IP6; - MCO.B13L6.B2:MCO, at= -539.9357+(168-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252096, assembly_id= 103253, from= IP6; - MCD.B13L6.B2:MCD, at= -539.9342+(168-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252097, assembly_id= 103253, from= IP6; - MB.C13L6.B2:MB, at= -532.4497+(167.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838146, assembly_id= 103253, from= IP6; - MCS.C13L6.B2:MCS, at= -525.0257+(167-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246519, assembly_id= 103253, from= IP6; - MB.B13L6.B2:MB, at= -516.7897+(166.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838170, assembly_id= 103254, from= IP6; - MCS.B13L6.B2:MCS, at= -509.3657+(166-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246522, assembly_id= 103254, from= IP6; - MCO.A13L6.B2:MCO, at= -508.6157+(166-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252100, assembly_id= 103255, from= IP6; - MCD.A13L6.B2:MCD, at= -508.6142+(166-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252101, assembly_id= 103255, from= IP6; - MB.A13L6.B2:MB, at= -501.1297+(165.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838194, assembly_id= 103255, from= IP6; - MCS.A13L6.B2:MCS, at= -493.7057+(165-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246527, assembly_id= 103255, from= IP6; - BPM.12L6.B2:BPM, at= -492.8267+(165-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246529, assembly_id= 103256, from= IP6; - MQT.12L6.B2:MQT, at= -492.0727+(165-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307694, assembly_id= 103256, from= IP6; -MQ.12L6.B2:MQ, at= -490.0647+(165-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308453, assembly_id= 103256, from= IP6; - MS.12L6.B2:MS, at= -488.1697+(165-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252103, assembly_id= 103256, from= IP6; - MCBH.12L6.B2:MCBH, at= -487.5767+(165-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252105, assembly_id= 103256, from= IP6; - MB.C12L6.B2:MB, at= -478.9997+(164.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838218, assembly_id= 103257, from= IP6; - MCS.C12L6.B2:MCS, at= -471.5757+(164-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246535, assembly_id= 103257, from= IP6; - MCO.12L6.B2:MCO, at= -470.8257+(164-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252108, assembly_id= 103258, from= IP6; - MCD.12L6.B2:MCD, at= -470.8242+(164-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252109, assembly_id= 103258, from= IP6; - MB.B12L6.B2:MB, at= -463.3397+(163.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838242, assembly_id= 103258, from= IP6; - MCS.B12L6.B2:MCS, at= -455.9157+(163-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246540, assembly_id= 103258, from= IP6; - MB.A12L6.B2:MB, at= -447.6797+(162.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838266, assembly_id= 103259, from= IP6; - MCS.A12L6.B2:MCS, at= -440.2557+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246543, assembly_id= 103259, from= IP6; -E.ARC.56.B2:OMK, at= -439.8497+(162-IP6OFS.B2)*DS, slot_id= 100932, from= IP6; - BPM.11L6.B2:BPM, at= -439.3767+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246545, assembly_id= 103260, from= IP6; -MQ.11L6.B2:MQ, at= -436.8297+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308660, assembly_id= 103260, from= IP6; - MQTLI.11L6.B2:MQTLI, at= -434.4607+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307348, assembly_id= 103260, from= IP6; - MS.11L6.B2:MS, at= -433.4487+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252111, assembly_id= 103260, from= IP6; - MCBV.11L6.B2:MCBV, at= -432.8557+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252113, assembly_id= 103260, from= IP6; - LEBR.11L6.B2:LEBR, at= -425.71735+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52997694, assembly_id= 103261, from= IP6; - MCO.11L6.B2:MCO, at= -418.986+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252116, assembly_id= 103262, from= IP6; - MCD.11L6.B2:MCD, at= -418.9845+(162-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252117, assembly_id= 103262, from= IP6; - MB.B11L6.B2:MB, at= -411.5+(161.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838290, assembly_id= 103262, from= IP6; - MCS.B11L6.B2:MCS, at= -404.076+(161-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246553, assembly_id= 103262, from= IP6; - MB.A11L6.B2:MB, at= -395.84+(160.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838314, assembly_id= 103263, from= IP6; - MCS.A11L6.B2:MCS, at= -388.416+(160-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246556, assembly_id= 103263, from= IP6; - BPM.10L6.B2:BPM, at= -387.537+(160-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246558, assembly_id= 103264, from= IP6; - MQML.10L6.B2:MQML, at= -384.392+(160-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307813, assembly_id= 103264, from= IP6; - MCBCH.10L6.B2:MCBCH, at= -381.35+(160-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252118, assembly_id= 103264, from= IP6; - MCO.10L6.B2:MCO, at= -379.921+(160-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252122, assembly_id= 103265, from= IP6; - MCD.10L6.B2:MCD, at= -379.9195+(160-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252123, assembly_id= 103265, from= IP6; - MB.B10L6.B2:MB, at= -372.435+(159.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838338, assembly_id= 103265, from= IP6; - MCS.B10L6.B2:MCS, at= -365.011+(159-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246565, assembly_id= 103265, from= IP6; - MB.A10L6.B2:MB, at= -356.775+(158.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838362, assembly_id= 103266, from= IP6; - MCS.A10L6.B2:MCS, at= -349.351+(158-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246568, assembly_id= 103266, from= IP6; - BPM.9L6.B2:BPM, at= -348.471+(158-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246570, assembly_id= 103267, from= IP6; - MQMC.9L6.B2:MQMC, at= -346.495+(158-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307790, assembly_id= 103267, from= IP6; - MQM.9L6.B2:MQM, at= -343.229+(158-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307738, assembly_id= 103267, from= IP6; - MCBCV.9L6.B2:MCBCV, at= -340.888+(158-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252124, assembly_id= 103267, from= IP6; - MCO.9L6.B2:MCO, at= -339.456+(158-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252128, assembly_id= 103268, from= IP6; - MCD.9L6.B2:MCD, at= -339.4545+(158-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252129, assembly_id= 103268, from= IP6; - MB.B9L6.B2:MB, at= -331.97+(157.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838386, assembly_id= 103268, from= IP6; - MCS.B9L6.B2:MCS, at= -324.546+(157-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246578, assembly_id= 103268, from= IP6; - MB.A9L6.B2:MB, at= -316.31+(156.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838410, assembly_id= 103269, from= IP6; - MCS.A9L6.B2:MCS, at= -308.886+(156-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246581, assembly_id= 103269, from= IP6; - BPM.8L6.B2:BPM, at= -308.007+(156-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378005, assembly_id= 103270, from= IP6; - MQML.8L6.B2:MQML, at= -304.862+(156-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307845, assembly_id= 103270, from= IP6; - MCBCH.8L6.B2:MCBCH, at= -301.82+(156-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378117, assembly_id= 103270, from= IP6; - MCO.8L6.B2:MCO, at= -300.391+(156-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252134, assembly_id= 103271, from= IP6; - MCD.8L6.B2:MCD, at= -300.3895+(156-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252135, assembly_id= 103271, from= IP6; - MB.B8L6.B2:MB, at= -292.905+(155.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838434, assembly_id= 103271, from= IP6; - MCS.B8L6.B2:MCS, at= -285.481+(155-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246590, assembly_id= 103271, from= IP6; - MB.A8L6.B2:MB, at= -277.245+(154.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838458, assembly_id= 103272, from= IP6; - MCS.A8L6.B2:MCS, at= -269.821+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246593, assembly_id= 103272, from= IP6; -E.DS.L6.B2:OMK, at= -269.415+(154-IP6OFS.B2)*DS, slot_id= 100932, from= IP6; - LEJL.5L6.B2:LEJL, at= -264.355+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52997982, assembly_id= 791286, from= IP6; - DFBAK.5L6.B2:DFBAK, at= -258.2075+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52996791, assembly_id= 104686, from= IP6; - BPMYB.5L6.B2:BPMYB, at= -210.918+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 298233, assembly_id= 103273, from= IP6; - MQY.5L6.B2:MQY, at= -208.2+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303185, assembly_id= 103273, from= IP6; - MCBYV.5L6.B2:MCBYV, at= -205.853+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252136, assembly_id= 103273, from= IP6; - BPMYA.4L6.B2:BPMYA, at= -174.518+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246599, assembly_id= 103275, from= IP6; - MQY.4L6.B2:MQY, at= -171.8+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 241848, assembly_id= 103275, from= IP6; - MCBYH.4L6.B2:MCBYH, at= -169.453+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252138, assembly_id= 103275, from= IP6; - TCDQM.B4L6.B2:TCDQM, at= -166.448+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52998764, assembly_id= 377626, from= IP6; - TCDQM.A4L6.B2:TCDQM, at= -165.098+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52998812, assembly_id= 829888, from= IP6; - BPTDH.A4L6.B2:BPTDH, at= -154.845+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 10338545, assembly_id= 377627, from= IP6; - TCSP.A4L6.B2:TCSP, at= -154.25+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377627, from= IP6; - BPTUH.A4L6.B2:BPTUH, at= -153.655+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 10338547, assembly_id= 377627, from= IP6; - TCDQA.B4L6.B2:TCDQA, at= -150.34+(154-IP6OFS.B2)*DS, mech_sep= -0.2140, slot_id= 629257, assembly_id= 103278, from= IP6; - TCDQA.C4L6.B2:TCDQA, at= -146.79+(154-IP6OFS.B2)*DS, mech_sep= -0.2140, slot_id= 6030079, assembly_id= 6030066, from= IP6; - TCDQA.A4L6.B2:TCDQA, at= -143.24+(154-IP6OFS.B2)*DS, mech_sep= -0.2140, slot_id= 629263, assembly_id= 616959, from= IP6; - BPMSI.B4L6.B2_ITLK:BPMSI002, at= -140.1975+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 14305625, assembly_id= 377628, from= IP6; - BPMSI.A4L6.B2_ITLK:BPMSI002, at= -139.5625+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 14305627, assembly_id= 377629, from= IP6; - BPMSA.4L6.B2:BPMSA, at= -46.3025+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377632, from= IP6; - MSDC.E4L6.B2:MSDC, at= -34.37+(154-IP6OFS.B2)*DS, mech_sep= -0.2041, slot_id= 134592, from= IP6; - MSDC.D4L6.B2:MSDC, at= -29.46+(154-IP6OFS.B2)*DS, mech_sep= -0.2018, slot_id= 134594, from= IP6; - MSDC.C4L6.B2:MSDC, at= -24.55+(154-IP6OFS.B2)*DS, mech_sep= -0.1995, slot_id= 134596, from= IP6; - MSDC.B4L6.B2:MSDC, at= -19.64+(154-IP6OFS.B2)*DS, mech_sep= -0.1972, slot_id= 134598, from= IP6; - MSDC.A4L6.B2:MSDC, at= -14.73+(154-IP6OFS.B2)*DS, mech_sep= -0.1949, slot_id= 134599, from= IP6; - MSDB.C4L6.B2:MSDB, at= -9.82+(154-IP6OFS.B2)*DS, mech_sep= -0.2007, slot_id= 134602, from= IP6; - MSDB.B4L6.B2:MSDB, at= -4.91+(154-IP6OFS.B2)*DS, mech_sep= -0.1988, slot_id= 134603, from= IP6; - MSDB2.4L6.B2:MSDB2, at= -1.022+(154-IP6OFS.B2)*DS, mech_sep= -0.1972, slot_id= 52895942, assembly_id= 134606, from= IP6; -IP6:OMK, at= pIP6+IP6OFS.B2*DS; - MSDB2.4R6.B2:MSDB2, at= 1.022+(154-IP6OFS.B2)*DS, mech_sep= -0.1964, slot_id= 52895971, assembly_id= 134606, from= IP6; - MSDB.A4R6.B2:MSDB, at= 4.91+(154-IP6OFS.B2)*DS, mech_sep= -0.1948, slot_id= 134607, from= IP6; - MSDB.B4R6.B2:MSDB, at= 9.82+(154-IP6OFS.B2)*DS, mech_sep= -0.1929, slot_id= 134609, from= IP6; - MSDA.A4R6.B2:MSDA, at= 14.73+(154-IP6OFS.B2)*DS, mech_sep= -0.1971, slot_id= 134611, from= IP6; - MSDA.B4R6.B2:MSDA, at= 19.64+(154-IP6OFS.B2)*DS, mech_sep= -0.1952, slot_id= 134614, from= IP6; - MSDA.C4R6.B2:MSDA, at= 24.55+(154-IP6OFS.B2)*DS, mech_sep= -0.1932, slot_id= 134616, from= IP6; - MSDA.D4R6.B2:MSDA, at= 29.46+(154-IP6OFS.B2)*DS, mech_sep= -0.1912, slot_id= 134618, from= IP6; - MSDA.E4R6.B2:MSDA, at= 34.37+(154-IP6OFS.B2)*DS, mech_sep= -0.1893, slot_id= 134619, from= IP6; - TCDSB.4R6.B2:TCDSB, at= 38.825+(154-IP6OFS.B2)*DS, mech_sep= -0.2461, slot_id= 631494, assembly_id= 103281, from= IP6; - TCDSA.4R6.B2:TCDSA, at= 42.375+(154-IP6OFS.B2)*DS, mech_sep= -0.2450, slot_id= 631490, assembly_id= 616849, from= IP6; - BTVSE.A4R6.B2:BTVSE, at= 44.575+(154-IP6OFS.B2)*DS, mech_sep= -0.2440, slot_id= 181627, from= IP6; - BPMSE.4R6.B2:BPMSE, at= 45.2675+(154-IP6OFS.B2)*DS, mech_sep= -0.2440, slot_id= 181628, from= IP6; - BPMSX.A4R6.B2:BPMSX004, at= 138.3925+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377634, from= IP6; - BPMSX.A4R6.B2_ITLK:BPMSX002, at= 138.3925+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 14271450, assembly_id= 377634, from= IP6; - BPMSX.B4R6.B2:BPMSX004, at= 138.9775+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 377635, from= IP6; - BPMSX.B4R6.B2_ITLK:BPMSX002, at= 138.9775+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 14271452, assembly_id= 377635, from= IP6; - TCDQM.A4R6.B2:TCDQM, at= 165.098+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52998836, assembly_id= 829889, from= IP6; - TCDQM.B4R6.B2:TCDQM, at= 166.448+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52998788, assembly_id= 377639, from= IP6; - BPMYB.4R6.B2:BPMYB, at= 169.082+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 298235, assembly_id= 103285, from= IP6; - MQY.4R6.B2:MQY, at= 171.8+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303140, assembly_id= 103285, from= IP6; - MCBYV.4R6.B2:MCBYV, at= 174.147+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252140, assembly_id= 103285, from= IP6; - MKD.A5R6.B2:MKD, at= 177.0995+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134623, from= IP6; - MKD.B5R6.B2:MKD, at= 178.8025+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134624, from= IP6; - MKD.C5R6.B2:MKD, at= 180.7855+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134625, from= IP6; - MKD.D5R6.B2:MKD, at= 182.4885+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134626, from= IP6; - MKD.E5R6.B2:MKD, at= 184.4715+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134627, from= IP6; - MKD.F5R6.B2:MKD, at= 186.3295+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134628, from= IP6; - MKD.G5R6.B2:MKD, at= 188.3125+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134629, from= IP6; - MKD.H5R6.B2:MKD, at= 190.0155+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134630, from= IP6; - MKD.I5R6.B2:MKD, at= 191.7185+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134631, from= IP6; - MKD.J5R6.B2:MKD, at= 193.7015+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134632, from= IP6; - MKD.K5R6.B2:MKD, at= 195.5595+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134633, from= IP6; - MKD.L5R6.B2:MKD, at= 197.5425+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134634, from= IP6; - MKD.M5R6.B2:MKD, at= 199.2455+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134635, from= IP6; - MKD.N5R6.B2:MKD, at= 201.2285+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134636, from= IP6; - MKD.O5R6.B2:MKD, at= 202.9315+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 134637, from= IP6; - BPMYA.5R6.B2:BPMYA, at= 205.482+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246611, assembly_id= 103287, from= IP6; - MQY.5R6.B2:MQY, at= 208.2+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2302996, assembly_id= 103287, from= IP6; - MCBYH.5R6.B2:MCBYH, at= 210.547+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252142, assembly_id= 103287, from= IP6; - DFBAL.5R6.B2:DFBAL, at= 268.0775+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52996815, assembly_id= 104687, from= IP6; -S.DS.R6.B2:OMK, at= 269.415+(154-IP6OFS.B2)*DS, slot_id= 100932, from= IP6; - MCO.8R6.B2:MCO, at= 269.759+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252146, assembly_id= 103288, from= IP6; - MCD.8R6.B2:MCD, at= 269.7605+(154-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252147, assembly_id= 103288, from= IP6; - MB.A8R6.B2:MB, at= 277.245+(153.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838482, assembly_id= 103288, from= IP6; - MCS.A8R6.B2:MCS, at= 284.669+(153-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246618, assembly_id= 103288, from= IP6; - MB.B8R6.B2:MB, at= 292.905+(152.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838506, assembly_id= 103289, from= IP6; - MCS.B8R6.B2:MCS, at= 300.329+(152-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246621, assembly_id= 103289, from= IP6; - BPM.8R6.B2:BPM, at= 301.208+(152-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246623, assembly_id= 103290, from= IP6; - MQML.8R6.B2:MQML, at= 304.353+(152-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307618, assembly_id= 103290, from= IP6; - MCBCV.8R6.B2:MCBCV, at= 307.395+(152-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252148, assembly_id= 103290, from= IP6; - MCO.9R6.B2:MCO, at= 308.824+(152-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252152, assembly_id= 103291, from= IP6; - MCD.9R6.B2:MCD, at= 308.8255+(152-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252153, assembly_id= 103291, from= IP6; - MB.A9R6.B2:MB, at= 316.31+(151.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838530, assembly_id= 103291, from= IP6; - MCS.A9R6.B2:MCS, at= 323.734+(151-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246630, assembly_id= 103291, from= IP6; - MB.B9R6.B2:MB, at= 331.97+(150.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849690, assembly_id= 103292, from= IP6; - MCS.B9R6.B2:MCS, at= 339.394+(150-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 357323, assembly_id= 103292, from= IP6; - BPM.9R6.B2:BPM, at= 340.274+(150-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246635, assembly_id= 103293, from= IP6; - MQMC.9R6.B2:MQMC, at= 342.25+(150-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307801, assembly_id= 103293, from= IP6; - MQM.9R6.B2:MQM, at= 345.516+(150-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307749, assembly_id= 103293, from= IP6; - MCBCH.9R6.B2:MCBCH, at= 347.857+(150-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252154, assembly_id= 103293, from= IP6; - MCO.10R6.B2:MCO, at= 349.289+(150-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252158, assembly_id= 103294, from= IP6; - MCD.10R6.B2:MCD, at= 349.2905+(150-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252159, assembly_id= 103294, from= IP6; - MB.A10R6.B2:MB, at= 356.775+(149.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838554, assembly_id= 103294, from= IP6; - MCS.A10R6.B2:MCS, at= 364.199+(149-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246643, assembly_id= 103294, from= IP6; - MB.B10R6.B2:MB, at= 372.435+(148.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838578, assembly_id= 103295, from= IP6; - MCS.B10R6.B2:MCS, at= 379.859+(148-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246646, assembly_id= 103295, from= IP6; - BPM.10R6.B2:BPM, at= 380.738+(148-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246648, assembly_id= 103296, from= IP6; - MQML.10R6.B2:MQML, at= 383.883+(148-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307825, assembly_id= 103296, from= IP6; - MCBCV.10R6.B2:MCBCV, at= 386.925+(148-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252160, assembly_id= 103296, from= IP6; - MCO.11R6.B2:MCO, at= 388.354+(148-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252164, assembly_id= 103297, from= IP6; - MCD.11R6.B2:MCD, at= 388.3555+(148-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252165, assembly_id= 103297, from= IP6; - MB.A11R6.B2:MB, at= 395.84+(147.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838602, assembly_id= 103297, from= IP6; - MCS.A11R6.B2:MCS, at= 403.264+(147-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246655, assembly_id= 103297, from= IP6; - MB.B11R6.B2:MB, at= 411.5+(146.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838626, assembly_id= 103298, from= IP6; - MCS.B11R6.B2:MCS, at= 418.924+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246658, assembly_id= 103298, from= IP6; - LEAR.11R6.B2:LEAR, at= 425.71735+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52997622, assembly_id= 103299, from= IP6; - BPM.11R6.B2:BPM, at= 432.5777+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246660, assembly_id= 103300, from= IP6; -MQ.11R6.B2:MQ, at= 435.1247+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308675, assembly_id= 103300, from= IP6; - MQTLI.11R6.B2:MQTLI, at= 437.4937+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307363, assembly_id= 103300, from= IP6; - MS.11R6.B2:MS, at= 438.5057+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252167, assembly_id= 103300, from= IP6; - MCBH.11R6.B2:MCBH, at= 439.0987+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252169, assembly_id= 103300, from= IP6; -S.ARC.67.B2:OMK, at= 439.8497+(146-IP6OFS.B2)*DS, slot_id= 100932, from= IP6; - MCO.A12R6.B2:MCO, at= 440.1937+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252172, assembly_id= 103301, from= IP6; - MCD.A12R6.B2:MCD, at= 440.1952+(146-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252173, assembly_id= 103301, from= IP6; - MB.A12R6.B2:MB, at= 447.6797+(145.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838650, assembly_id= 103301, from= IP6; - MCS.A12R6.B2:MCS, at= 455.1037+(145-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246668, assembly_id= 103301, from= IP6; - MB.B12R6.B2:MB, at= 463.3397+(144.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838674, assembly_id= 103302, from= IP6; - MCS.B12R6.B2:MCS, at= 470.7637+(144-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246671, assembly_id= 103302, from= IP6; - MCO.B12R6.B2:MCO, at= 471.5137+(144-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252176, assembly_id= 103303, from= IP6; - MCD.B12R6.B2:MCD, at= 471.5152+(144-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252177, assembly_id= 103303, from= IP6; - MB.C12R6.B2:MB, at= 478.9997+(143.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838698, assembly_id= 103303, from= IP6; - MCS.C12R6.B2:MCS, at= 486.4237+(143-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246676, assembly_id= 103303, from= IP6; - BPM.12R6.B2:BPM, at= 487.3027+(143-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246678, assembly_id= 103304, from= IP6; - MQT.12R6.B2:MQT, at= 488.0567+(143-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307710, assembly_id= 103304, from= IP6; -MQ.12R6.B2:MQ, at= 490.0647+(143-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308468, assembly_id= 103304, from= IP6; - MS.12R6.B2:MS, at= 491.9597+(143-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252179, assembly_id= 103304, from= IP6; - MCBV.12R6.B2:MCBV, at= 492.5527+(143-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252181, assembly_id= 103304, from= IP6; - MB.A13R6.B2:MB, at= 501.1297+(142.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838722, assembly_id= 103305, from= IP6; - MCS.A13R6.B2:MCS, at= 508.5537+(142-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246684, assembly_id= 103305, from= IP6; - MCO.13R6.B2:MCO, at= 509.3037+(142-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252184, assembly_id= 103306, from= IP6; - MCD.13R6.B2:MCD, at= 509.3052+(142-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252185, assembly_id= 103306, from= IP6; - MB.B13R6.B2:MB, at= 516.7897+(141.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838746, assembly_id= 103306, from= IP6; - MCS.B13R6.B2:MCS, at= 524.2137+(141-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246689, assembly_id= 103306, from= IP6; - MB.C13R6.B2:MB, at= 532.4497+(140.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838770, assembly_id= 103307, from= IP6; - MCS.C13R6.B2:MCS, at= 539.8737+(140-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246692, assembly_id= 103307, from= IP6; - BPM.13R6.B2:BPM, at= 540.7527+(140-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246694, assembly_id= 103308, from= IP6; - MQT.13R6.B2:MQT, at= 541.5067+(140-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307502, assembly_id= 103308, from= IP6; -MQ.13R6.B2:MQ, at= 543.5147+(140-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308498, assembly_id= 103308, from= IP6; - MS.13R6.B2:MS, at= 545.4097+(140-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252187, assembly_id= 103308, from= IP6; - MCBH.13R6.B2:MCBH, at= 546.0027+(140-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252189, assembly_id= 103308, from= IP6; -E.DS.R6.B2:OMK, at= 546.7497+(140-IP6OFS.B2)*DS, slot_id= 100932, from= IP6; - MCO.A14R6.B2:MCO, at= 547.0937+(140-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252192, assembly_id= 103309, from= IP6; - MCD.A14R6.B2:MCD, at= 547.0952+(140-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252193, assembly_id= 103309, from= IP6; - MB.A14R6.B2:MB, at= 554.5797+(139.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838794, assembly_id= 103309, from= IP6; - MCS.A14R6.B2:MCS, at= 562.0037+(139-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246702, assembly_id= 103309, from= IP6; - MB.B14R6.B2:MB, at= 570.2397+(138.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838818, assembly_id= 103310, from= IP6; - MCS.B14R6.B2:MCS, at= 577.6637+(138-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246705, assembly_id= 103310, from= IP6; - MCO.B14R6.B2:MCO, at= 578.4137+(138-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252196, assembly_id= 103311, from= IP6; - MCD.B14R6.B2:MCD, at= 578.4152+(138-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252197, assembly_id= 103311, from= IP6; - MB.C14R6.B2:MB, at= 585.8997+(137.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838842, assembly_id= 103311, from= IP6; - MCS.C14R6.B2:MCS, at= 593.3237+(137-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246710, assembly_id= 103311, from= IP6; - BPM.14R6.B2:BPM, at= 594.2027+(137-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246712, assembly_id= 103312, from= IP6; - MQT.14R6.B2:MQT, at= 594.9567+(137-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307534, assembly_id= 103312, from= IP6; -MQ.14R6.B2:MQ, at= 596.9647+(137-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308527, assembly_id= 103312, from= IP6; - MS.14R6.B2:MS, at= 598.8597+(137-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252199, assembly_id= 103312, from= IP6; - MCBV.14R6.B2:MCBV, at= 599.4527+(137-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252201, assembly_id= 103312, from= IP6; - MB.A15R6.B2:MB, at= 608.0297+(136.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838866, assembly_id= 103313, from= IP6; - MCS.A15R6.B2:MCS, at= 615.4537+(136-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246718, assembly_id= 103313, from= IP6; - MCO.15R6.B2:MCO, at= 616.2037+(136-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252204, assembly_id= 103314, from= IP6; - MCD.15R6.B2:MCD, at= 616.2052+(136-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252205, assembly_id= 103314, from= IP6; - MB.B15R6.B2:MB, at= 623.6897+(135.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838890, assembly_id= 103314, from= IP6; - MCS.B15R6.B2:MCS, at= 631.1137+(135-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246723, assembly_id= 103314, from= IP6; - MB.C15R6.B2:MB, at= 639.3497+(134.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838914, assembly_id= 103315, from= IP6; - MCS.C15R6.B2:MCS, at= 646.7737+(134-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246726, assembly_id= 103315, from= IP6; - BPM.15R6.B2:BPM, at= 647.6527+(134-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 266531, assembly_id= 103316, from= IP6; - MQT.15R6.B2:MQT, at= 648.4067+(134-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307566, assembly_id= 103316, from= IP6; -MQ.15R6.B2:MQ, at= 650.4147+(134-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308558, assembly_id= 103316, from= IP6; - MS.15R6.B2:MS, at= 652.3097+(134-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252207, assembly_id= 103316, from= IP6; - MCBH.15R6.B2:MCBH, at= 652.9027+(134-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252209, assembly_id= 103316, from= IP6; - MCO.A16R6.B2:MCO, at= 653.9937+(134-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252212, assembly_id= 103317, from= IP6; - MCD.A16R6.B2:MCD, at= 653.9952+(134-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252213, assembly_id= 103317, from= IP6; - MB.A16R6.B2:MB, at= 661.4797+(133.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838938, assembly_id= 103317, from= IP6; - MCS.A16R6.B2:MCS, at= 668.9037+(133-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246734, assembly_id= 103317, from= IP6; - MB.B16R6.B2:MB, at= 677.1397+(132.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838962, assembly_id= 103318, from= IP6; - MCS.B16R6.B2:MCS, at= 684.5637+(132-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246737, assembly_id= 103318, from= IP6; - MCO.B16R6.B2:MCO, at= 685.3137+(132-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252216, assembly_id= 103319, from= IP6; - MCD.B16R6.B2:MCD, at= 685.3152+(132-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252217, assembly_id= 103319, from= IP6; - MB.C16R6.B2:MB, at= 692.7997+(131.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52838986, assembly_id= 103319, from= IP6; - MCS.C16R6.B2:MCS, at= 700.2237+(131-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246742, assembly_id= 103319, from= IP6; - BPM.16R6.B2:BPM, at= 701.1027+(131-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246744, assembly_id= 103320, from= IP6; - MQT.16R6.B2:MQT, at= 701.8567+(131-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307596, assembly_id= 103320, from= IP6; -MQ.16R6.B2:MQ, at= 703.8647+(131-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308351, assembly_id= 103320, from= IP6; - MS.16R6.B2:MS, at= 705.7597+(131-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252219, assembly_id= 103320, from= IP6; - MCBV.16R6.B2:MCBV, at= 706.3527+(131-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252221, assembly_id= 103320, from= IP6; - MB.A17R6.B2:MB, at= 714.9297+(130.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839010, assembly_id= 103321, from= IP6; - MCS.A17R6.B2:MCS, at= 722.3537+(130-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246750, assembly_id= 103321, from= IP6; - MCO.17R6.B2:MCO, at= 723.1037+(130-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252224, assembly_id= 103322, from= IP6; - MCD.17R6.B2:MCD, at= 723.1052+(130-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252225, assembly_id= 103322, from= IP6; - MB.B17R6.B2:MB, at= 730.5897+(129.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839034, assembly_id= 103322, from= IP6; - MCS.B17R6.B2:MCS, at= 738.0137+(129-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246755, assembly_id= 103322, from= IP6; - MB.C17R6.B2:MB, at= 746.2497+(128.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839058, assembly_id= 103323, from= IP6; - MCS.C17R6.B2:MCS, at= 753.6737+(128-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246758, assembly_id= 103323, from= IP6; - BPM.17R6.B2:BPM, at= 754.5527+(128-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246760, assembly_id= 103324, from= IP6; - MQT.17R6.B2:MQT, at= 755.3067+(128-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307390, assembly_id= 103324, from= IP6; -MQ.17R6.B2:MQ, at= 757.3147+(128-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308380, assembly_id= 103324, from= IP6; - MS.17R6.B2:MS, at= 759.2097+(128-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252227, assembly_id= 103324, from= IP6; - MCBH.17R6.B2:MCBH, at= 759.8027+(128-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252229, assembly_id= 103324, from= IP6; - MCO.A18R6.B2:MCO, at= 760.8937+(128-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252232, assembly_id= 103325, from= IP6; - MCD.A18R6.B2:MCD, at= 760.8952+(128-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252233, assembly_id= 103325, from= IP6; - MB.A18R6.B2:MB, at= 768.3797+(127.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839082, assembly_id= 103325, from= IP6; - MCS.A18R6.B2:MCS, at= 775.8037+(127-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246768, assembly_id= 103325, from= IP6; - MB.B18R6.B2:MB, at= 784.0397+(126.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839106, assembly_id= 103326, from= IP6; - MCS.B18R6.B2:MCS, at= 791.4637+(126-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246771, assembly_id= 103326, from= IP6; - MCO.B18R6.B2:MCO, at= 792.2137+(126-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252236, assembly_id= 103327, from= IP6; - MCD.B18R6.B2:MCD, at= 792.2152+(126-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252237, assembly_id= 103327, from= IP6; - MB.C18R6.B2:MB, at= 799.6997+(125.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839130, assembly_id= 103327, from= IP6; - MCS.C18R6.B2:MCS, at= 807.1237+(125-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246776, assembly_id= 103327, from= IP6; - BPM.18R6.B2:BPM, at= 808.0027+(125-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246778, assembly_id= 103328, from= IP6; - MQT.18R6.B2:MQT, at= 808.7567+(125-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307422, assembly_id= 103328, from= IP6; -MQ.18R6.B2:MQ, at= 810.7647+(125-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308411, assembly_id= 103328, from= IP6; - MS.18R6.B2:MS, at= 812.6597+(125-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252239, assembly_id= 103328, from= IP6; - MCBV.18R6.B2:MCBV, at= 813.2527+(125-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252241, assembly_id= 103328, from= IP6; - MB.A19R6.B2:MB, at= 821.8297+(124.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839154, assembly_id= 103329, from= IP6; - MCS.A19R6.B2:MCS, at= 829.2537+(124-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246784, assembly_id= 103329, from= IP6; - MCO.19R6.B2:MCO, at= 830.0037+(124-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252244, assembly_id= 103330, from= IP6; - MCD.19R6.B2:MCD, at= 830.0052+(124-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252245, assembly_id= 103330, from= IP6; - MB.B19R6.B2:MB, at= 837.4897+(123.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839178, assembly_id= 103330, from= IP6; - MCS.B19R6.B2:MCS, at= 844.9137+(123-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246789, assembly_id= 103330, from= IP6; - MB.C19R6.B2:MB, at= 853.1497+(122.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839202, assembly_id= 103331, from= IP6; - MCS.C19R6.B2:MCS, at= 860.5737+(122-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246792, assembly_id= 103331, from= IP6; - BPM.19R6.B2:BPM, at= 861.4527+(122-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 266533, assembly_id= 103332, from= IP6; - MQT.19R6.B2:MQT, at= 862.2067+(122-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307452, assembly_id= 103332, from= IP6; -MQ.19R6.B2:MQ, at= 864.2147+(122-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308443, assembly_id= 103332, from= IP6; - MS.19R6.B2:MS, at= 866.1097+(122-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252247, assembly_id= 103332, from= IP6; - MCBH.19R6.B2:MCBH, at= 866.7027+(122-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252249, assembly_id= 103332, from= IP6; - MCO.A20R6.B2:MCO, at= 867.7937+(122-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252252, assembly_id= 103333, from= IP6; - MCD.A20R6.B2:MCD, at= 867.7952+(122-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252253, assembly_id= 103333, from= IP6; - MB.A20R6.B2:MB, at= 875.2797+(121.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839226, assembly_id= 103333, from= IP6; - MCS.A20R6.B2:MCS, at= 882.7037+(121-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246800, assembly_id= 103333, from= IP6; - MB.B20R6.B2:MB, at= 890.9397+(120.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839250, assembly_id= 103334, from= IP6; - MCS.B20R6.B2:MCS, at= 898.3637+(120-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246803, assembly_id= 103334, from= IP6; - MCO.B20R6.B2:MCO, at= 899.1137+(120-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252256, assembly_id= 103335, from= IP6; - MCD.B20R6.B2:MCD, at= 899.1152+(120-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252257, assembly_id= 103335, from= IP6; - MB.C20R6.B2:MB, at= 906.5997+(119.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839274, assembly_id= 103335, from= IP6; - MCS.C20R6.B2:MCS, at= 914.0237+(119-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246808, assembly_id= 103335, from= IP6; - BPM.20R6.B2:BPM, at= 914.9027+(119-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246810, assembly_id= 103336, from= IP6; - MQT.20R6.B2:MQT, at= 915.6567+(119-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307482, assembly_id= 103336, from= IP6; -MQ.20R6.B2:MQ, at= 917.6647+(119-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308233, assembly_id= 103336, from= IP6; - MS.20R6.B2:MS, at= 919.5597+(119-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252259, assembly_id= 103336, from= IP6; - MCBV.20R6.B2:MCBV, at= 920.1527+(119-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252261, assembly_id= 103336, from= IP6; - MB.A21R6.B2:MB, at= 928.7297+(118.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839298, assembly_id= 103337, from= IP6; - MCS.A21R6.B2:MCS, at= 936.1537+(118-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246816, assembly_id= 103337, from= IP6; - MCO.21R6.B2:MCO, at= 936.9037+(118-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252264, assembly_id= 103338, from= IP6; - MCD.21R6.B2:MCD, at= 936.9052+(118-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252265, assembly_id= 103338, from= IP6; - MB.B21R6.B2:MB, at= 944.3897+(117.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839322, assembly_id= 103338, from= IP6; - MCS.B21R6.B2:MCS, at= 951.8137+(117-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246821, assembly_id= 103338, from= IP6; - MB.C21R6.B2:MB, at= 960.0497+(116.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839346, assembly_id= 103339, from= IP6; - MCS.C21R6.B2:MCS, at= 967.4737+(116-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246824, assembly_id= 103339, from= IP6; - BPM.21R6.B2:BPM, at= 968.3527+(116-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246826, assembly_id= 103340, from= IP6; - MQT.21R6.B2:MQT, at= 969.1067+(116-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307280, assembly_id= 103340, from= IP6; -MQ.21R6.B2:MQ, at= 971.1147+(116-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308264, assembly_id= 103340, from= IP6; - MS.21R6.B2:MS, at= 973.0097+(116-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252267, assembly_id= 103340, from= IP6; - MCBH.21R6.B2:MCBH, at= 973.6027+(116-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252269, assembly_id= 103340, from= IP6; - MCO.A22R6.B2:MCO, at= 974.6937+(116-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252272, assembly_id= 103341, from= IP6; - MCD.A22R6.B2:MCD, at= 974.6952+(116-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252273, assembly_id= 103341, from= IP6; - MB.A22R6.B2:MB, at= 982.1797+(115.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839370, assembly_id= 103341, from= IP6; - MCS.A22R6.B2:MCS, at= 989.6037+(115-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246834, assembly_id= 103341, from= IP6; - MB.B22R6.B2:MB, at= 997.8397+(114.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839394, assembly_id= 103342, from= IP6; - MCS.B22R6.B2:MCS, at= 1005.2637+(114-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246837, assembly_id= 103342, from= IP6; - MCO.B22R6.B2:MCO, at= 1006.0137+(114-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252276, assembly_id= 103343, from= IP6; - MCD.B22R6.B2:MCD, at= 1006.0152+(114-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252277, assembly_id= 103343, from= IP6; - MB.C22R6.B2:MB, at= 1013.4997+(113.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839418, assembly_id= 103343, from= IP6; - MCS.C22R6.B2:MCS, at= 1020.9237+(113-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246842, assembly_id= 103343, from= IP6; - BPM.22R6.B2:BPM, at= 1021.8027+(113-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246844, assembly_id= 103344, from= IP6; - MO.22R6.B2:MO, at= 1022.5537+(113-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308824, assembly_id= 103344, from= IP6; -MQ.22R6.B2:MQ, at= 1024.5647+(113-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308296, assembly_id= 103344, from= IP6; - MS.22R6.B2:MS, at= 1026.4597+(113-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252279, assembly_id= 103344, from= IP6; - MCBV.22R6.B2:MCBV, at= 1027.0527+(113-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252281, assembly_id= 103344, from= IP6; - MB.A23R6.B2:MB, at= 1035.6297+(112.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839442, assembly_id= 103345, from= IP6; - MCS.A23R6.B2:MCS, at= 1043.0537+(112-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246850, assembly_id= 103345, from= IP6; - MCO.23R6.B2:MCO, at= 1043.8037+(112-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252284, assembly_id= 103346, from= IP6; - MCD.23R6.B2:MCD, at= 1043.8052+(112-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252285, assembly_id= 103346, from= IP6; - MB.B23R6.B2:MB, at= 1051.2897+(111.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839466, assembly_id= 103346, from= IP6; - MCS.B23R6.B2:MCS, at= 1058.7137+(111-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246855, assembly_id= 103346, from= IP6; - MB.C23R6.B2:MB, at= 1066.9497+(110.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839490, assembly_id= 103347, from= IP6; - MCS.C23R6.B2:MCS, at= 1074.3737+(110-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246858, assembly_id= 103347, from= IP6; - BPM.23R6.B2:BPM, at= 1075.2527+(110-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246860, assembly_id= 103348, from= IP6; - MQS.23R6.B2:MQS, at= 1076.0067+(110-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307646, assembly_id= 103348, from= IP6; -MQ.23R6.B2:MQ, at= 1078.0147+(110-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308326, assembly_id= 103348, from= IP6; - MS.23R6.B2:MS, at= 1079.9097+(110-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252287, assembly_id= 103348, from= IP6; - MCBH.23R6.B2:MCBH, at= 1080.5027+(110-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252289, assembly_id= 103348, from= IP6; - MCO.A24R6.B2:MCO, at= 1081.5937+(110-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252292, assembly_id= 103349, from= IP6; - MCD.A24R6.B2:MCD, at= 1081.5952+(110-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252293, assembly_id= 103349, from= IP6; - MB.A24R6.B2:MB, at= 1089.0797+(109.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839514, assembly_id= 103349, from= IP6; - MCS.A24R6.B2:MCS, at= 1096.5037+(109-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246868, assembly_id= 103349, from= IP6; - MB.B24R6.B2:MB, at= 1104.7397+(108.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839538, assembly_id= 103350, from= IP6; - MCS.B24R6.B2:MCS, at= 1112.1637+(108-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246871, assembly_id= 103350, from= IP6; - MCO.B24R6.B2:MCO, at= 1112.9137+(108-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252296, assembly_id= 103351, from= IP6; - MCD.B24R6.B2:MCD, at= 1112.9152+(108-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252297, assembly_id= 103351, from= IP6; - MB.C24R6.B2:MB, at= 1120.3997+(107.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839562, assembly_id= 103351, from= IP6; - MCS.C24R6.B2:MCS, at= 1127.8237+(107-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246876, assembly_id= 103351, from= IP6; - BPM.24R6.B2:BPM, at= 1128.7027+(107-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246878, assembly_id= 103352, from= IP6; - MO.24R6.B2:MO, at= 1129.4537+(107-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308854, assembly_id= 103352, from= IP6; -MQ.24R6.B2:MQ, at= 1131.4647+(107-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308117, assembly_id= 103352, from= IP6; - MS.24R6.B2:MS, at= 1133.3597+(107-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252299, assembly_id= 103352, from= IP6; - MCBV.24R6.B2:MCBV, at= 1133.9527+(107-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252301, assembly_id= 103352, from= IP6; - MB.A25R6.B2:MB, at= 1142.5297+(106.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839586, assembly_id= 103353, from= IP6; - MCS.A25R6.B2:MCS, at= 1149.9537+(106-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246884, assembly_id= 103353, from= IP6; - MCO.25R6.B2:MCO, at= 1150.7037+(106-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252304, assembly_id= 103354, from= IP6; - MCD.25R6.B2:MCD, at= 1150.7052+(106-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252305, assembly_id= 103354, from= IP6; - MB.B25R6.B2:MB, at= 1158.1897+(105.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839610, assembly_id= 103354, from= IP6; - MCS.B25R6.B2:MCS, at= 1165.6137+(105-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246889, assembly_id= 103354, from= IP6; - MB.C25R6.B2:MB, at= 1173.8497+(104.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839634, assembly_id= 103355, from= IP6; - MCS.C25R6.B2:MCS, at= 1181.2737+(104-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246892, assembly_id= 103355, from= IP6; - BPM.25R6.B2:BPM, at= 1182.1527+(104-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246894, assembly_id= 103356, from= IP6; - MO.25R6.B2:MO, at= 1182.9037+(104-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308886, assembly_id= 103356, from= IP6; -MQ.25R6.B2:MQ, at= 1184.9147+(104-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308149, assembly_id= 103356, from= IP6; - MS.25R6.B2:MS, at= 1186.8097+(104-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252307, assembly_id= 103356, from= IP6; - MCBH.25R6.B2:MCBH, at= 1187.4027+(104-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252309, assembly_id= 103356, from= IP6; - MCO.A26R6.B2:MCO, at= 1188.4937+(104-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252312, assembly_id= 103357, from= IP6; - MCD.A26R6.B2:MCD, at= 1188.4952+(104-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252313, assembly_id= 103357, from= IP6; - MB.A26R6.B2:MB, at= 1195.9797+(103.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839658, assembly_id= 103357, from= IP6; - MCS.A26R6.B2:MCS, at= 1203.4037+(103-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246902, assembly_id= 103357, from= IP6; - MB.B26R6.B2:MB, at= 1211.6397+(102.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839682, assembly_id= 103358, from= IP6; - MCS.B26R6.B2:MCS, at= 1219.0637+(102-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246905, assembly_id= 103358, from= IP6; - MCO.B26R6.B2:MCO, at= 1219.8137+(102-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252316, assembly_id= 103359, from= IP6; - MCD.B26R6.B2:MCD, at= 1219.8152+(102-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252317, assembly_id= 103359, from= IP6; - MB.C26R6.B2:MB, at= 1227.2997+(101.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839706, assembly_id= 103359, from= IP6; - MCS.C26R6.B2:MCS, at= 1234.7237+(101-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246910, assembly_id= 103359, from= IP6; - BPM.26R6.B2:BPM, at= 1235.6027+(101-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246912, assembly_id= 103360, from= IP6; - MO.26R6.B2:MO, at= 1236.3537+(101-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308917, assembly_id= 103360, from= IP6; -MQ.26R6.B2:MQ, at= 1238.3647+(101-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308179, assembly_id= 103360, from= IP6; - MS.26R6.B2:MS, at= 1240.2597+(101-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252319, assembly_id= 103360, from= IP6; - MCBV.26R6.B2:MCBV, at= 1240.8527+(101-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252321, assembly_id= 103360, from= IP6; - MB.A27R6.B2:MB, at= 1249.4297+(100.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839730, assembly_id= 103361, from= IP6; - MCS.A27R6.B2:MCS, at= 1256.8537+(100-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246918, assembly_id= 103361, from= IP6; - MCO.27R6.B2:MCO, at= 1257.6037+(100-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252324, assembly_id= 103362, from= IP6; - MCD.27R6.B2:MCD, at= 1257.6052+(100-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252325, assembly_id= 103362, from= IP6; - MB.B27R6.B2:MB, at= 1265.0897+(99.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839754, assembly_id= 103362, from= IP6; - MCS.B27R6.B2:MCS, at= 1272.5137+(99-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246923, assembly_id= 103362, from= IP6; - MB.C27R6.B2:MB, at= 1280.7497+(98.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839778, assembly_id= 103363, from= IP6; - MCS.C27R6.B2:MCS, at= 1288.1737+(98-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246926, assembly_id= 103363, from= IP6; - BPM.27R6.B2:BPM, at= 1289.0527+(98-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246928, assembly_id= 103364, from= IP6; - MQS.27R6.B2:MQS, at= 1289.8067+(98-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307678, assembly_id= 103364, from= IP6; -MQ.27R6.B2:MQ, at= 1291.8147+(98-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307969, assembly_id= 103364, from= IP6; - MS.27R6.B2:MS, at= 1293.7097+(98-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252327, assembly_id= 103364, from= IP6; - MCBH.27R6.B2:MCBH, at= 1294.3027+(98-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252329, assembly_id= 103364, from= IP6; - MCO.A28R6.B2:MCO, at= 1295.3937+(98-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252332, assembly_id= 103365, from= IP6; - MCD.A28R6.B2:MCD, at= 1295.3952+(98-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252333, assembly_id= 103365, from= IP6; - MB.A28R6.B2:MB, at= 1302.8797+(97.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839802, assembly_id= 103365, from= IP6; - MCS.A28R6.B2:MCS, at= 1310.3037+(97-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246936, assembly_id= 103365, from= IP6; - MB.B28R6.B2:MB, at= 1318.5397+(96.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839826, assembly_id= 103366, from= IP6; - MCS.B28R6.B2:MCS, at= 1325.9637+(96-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246939, assembly_id= 103366, from= IP6; - MCO.B28R6.B2:MCO, at= 1326.7137+(96-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252336, assembly_id= 103367, from= IP6; - MCD.B28R6.B2:MCD, at= 1326.7152+(96-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252337, assembly_id= 103367, from= IP6; - MB.C28R6.B2:MB, at= 1334.1997+(95.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839850, assembly_id= 103367, from= IP6; - MCS.C28R6.B2:MCS, at= 1341.6237+(95-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246944, assembly_id= 103367, from= IP6; - BPM.28R6.B2:BPM, at= 1342.5027+(95-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246946, assembly_id= 103368, from= IP6; - MO.28R6.B2:MO, at= 1343.2537+(95-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308707, assembly_id= 103368, from= IP6; -MQ.28R6.B2:MQ, at= 1345.2647+(95-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308001, assembly_id= 103368, from= IP6; - MS.28R6.B2:MS, at= 1347.1597+(95-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252339, assembly_id= 103368, from= IP6; - MCBV.28R6.B2:MCBV, at= 1347.7527+(95-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252341, assembly_id= 103368, from= IP6; - MB.A29R6.B2:MB, at= 1356.3297+(94.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839874, assembly_id= 103369, from= IP6; - MCS.A29R6.B2:MCS, at= 1363.7537+(94-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246952, assembly_id= 103369, from= IP6; - MCO.29R6.B2:MCO, at= 1364.5037+(94-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252344, assembly_id= 103370, from= IP6; - MCD.29R6.B2:MCD, at= 1364.5052+(94-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252345, assembly_id= 103370, from= IP6; - MB.B29R6.B2:MB, at= 1371.9897+(93.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839898, assembly_id= 103370, from= IP6; - MCS.B29R6.B2:MCS, at= 1379.4137+(93-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246957, assembly_id= 103370, from= IP6; - MB.C29R6.B2:MB, at= 1387.6497+(92.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839922, assembly_id= 103371, from= IP6; - MCS.C29R6.B2:MCS, at= 1395.0737+(92-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246960, assembly_id= 103371, from= IP6; - BPM.29R6.B2:BPM, at= 1395.9527+(92-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246962, assembly_id= 103372, from= IP6; - MO.29R6.B2:MO, at= 1396.7037+(92-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308739, assembly_id= 103372, from= IP6; -MQ.29R6.B2:MQ, at= 1398.7147+(92-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308031, assembly_id= 103372, from= IP6; - MSS.29R6.B2:MSS, at= 1400.6097+(92-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252347, assembly_id= 103372, from= IP6; - MCBH.29R6.B2:MCBH, at= 1401.2027+(92-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252349, assembly_id= 103372, from= IP6; - MCO.A30R6.B2:MCO, at= 1402.2937+(92-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252352, assembly_id= 103373, from= IP6; - MCD.A30R6.B2:MCD, at= 1402.2952+(92-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252353, assembly_id= 103373, from= IP6; - MB.A30R6.B2:MB, at= 1409.7797+(91.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839946, assembly_id= 103373, from= IP6; - MCS.A30R6.B2:MCS, at= 1417.2037+(91-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246970, assembly_id= 103373, from= IP6; - MB.B30R6.B2:MB, at= 1425.4397+(90.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839970, assembly_id= 103374, from= IP6; - MCS.B30R6.B2:MCS, at= 1432.8637+(90-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246973, assembly_id= 103374, from= IP6; - MCO.B30R6.B2:MCO, at= 1433.6137+(90-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252356, assembly_id= 103375, from= IP6; - MCD.B30R6.B2:MCD, at= 1433.6152+(90-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252357, assembly_id= 103375, from= IP6; - MB.C30R6.B2:MB, at= 1441.0997+(89.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52839994, assembly_id= 103375, from= IP6; - MCS.C30R6.B2:MCS, at= 1448.5237+(89-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246978, assembly_id= 103375, from= IP6; - BPM.30R6.B2:BPM, at= 1449.4027+(89-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246980, assembly_id= 103376, from= IP6; - MO.30R6.B2:MO, at= 1450.1537+(89-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308770, assembly_id= 103376, from= IP6; -MQ.30R6.B2:MQ, at= 1452.1647+(89-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308061, assembly_id= 103376, from= IP6; - MS.30R6.B2:MS, at= 1454.0597+(89-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252359, assembly_id= 103376, from= IP6; - MCBV.30R6.B2:MCBV, at= 1454.6527+(89-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252361, assembly_id= 103376, from= IP6; - MB.A31R6.B2:MB, at= 1463.2297+(88.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840018, assembly_id= 103377, from= IP6; - MCS.A31R6.B2:MCS, at= 1470.6537+(88-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246986, assembly_id= 103377, from= IP6; - MCO.31R6.B2:MCO, at= 1471.4037+(88-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252364, assembly_id= 103378, from= IP6; - MCD.31R6.B2:MCD, at= 1471.4052+(88-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252365, assembly_id= 103378, from= IP6; - MB.B31R6.B2:MB, at= 1478.8897+(87.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840042, assembly_id= 103378, from= IP6; - MCS.B31R6.B2:MCS, at= 1486.3137+(87-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246991, assembly_id= 103378, from= IP6; - MB.C31R6.B2:MB, at= 1494.5497+(86.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840066, assembly_id= 103379, from= IP6; - MCS.C31R6.B2:MCS, at= 1501.9737+(86-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246994, assembly_id= 103379, from= IP6; - BPM.31R6.B2:BPM, at= 1502.8527+(86-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 246996, assembly_id= 103380, from= IP6; - MO.31R6.B2:MO, at= 1503.6037+(86-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308799, assembly_id= 103380, from= IP6; -MQ.31R6.B2:MQ, at= 1505.6147+(86-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307853, assembly_id= 103380, from= IP6; - MS.31R6.B2:MS, at= 1507.5097+(86-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252367, assembly_id= 103380, from= IP6; - MCBH.31R6.B2:MCBH, at= 1508.1027+(86-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252369, assembly_id= 103380, from= IP6; -S.CELL.67.B2:OMK, at= 1508.8497+(86-IP6OFS.B2)*DS, slot_id= 100932, from= IP6; - MCO.A32R6.B2:MCO, at= 1509.1937+(86-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252372, assembly_id= 103381, from= IP6; - MCD.A32R6.B2:MCD, at= 1509.1952+(86-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252373, assembly_id= 103381, from= IP6; - MB.A32R6.B2:MB, at= 1516.6797+(85.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840090, assembly_id= 103381, from= IP6; - MCS.A32R6.B2:MCS, at= 1524.1037+(85-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247004, assembly_id= 103381, from= IP6; - MB.B32R6.B2:MB, at= 1532.3397+(84.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840114, assembly_id= 103382, from= IP6; - MCS.B32R6.B2:MCS, at= 1539.7637+(84-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247007, assembly_id= 103382, from= IP6; - MCO.B32R6.B2:MCO, at= 1540.5137+(84-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252376, assembly_id= 103383, from= IP6; - MCD.B32R6.B2:MCD, at= 1540.5152+(84-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252377, assembly_id= 103383, from= IP6; - MB.C32R6.B2:MB, at= 1547.9997+(83.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840138, assembly_id= 103383, from= IP6; - MCS.C32R6.B2:MCS, at= 1555.4237+(83-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247012, assembly_id= 103383, from= IP6; - BPM.32R6.B2:BPM, at= 1556.3027+(83-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247014, assembly_id= 103384, from= IP6; - MO.32R6.B2:MO, at= 1557.0537+(83-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308592, assembly_id= 103384, from= IP6; -MQ.32R6.B2:MQ, at= 1559.0647+(83-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307883, assembly_id= 103384, from= IP6; - MS.32R6.B2:MS, at= 1560.9597+(83-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252379, assembly_id= 103384, from= IP6; - MCBV.32R6.B2:MCBV, at= 1561.5527+(83-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252381, assembly_id= 103384, from= IP6; - MB.A33R6.B2:MB, at= 1570.1297+(82.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840162, assembly_id= 103385, from= IP6; - MCS.A33R6.B2:MCS, at= 1577.5537+(82-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247020, assembly_id= 103385, from= IP6; - MCO.33R6.B2:MCO, at= 1578.3037+(82-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252384, assembly_id= 103386, from= IP6; - MCD.33R6.B2:MCD, at= 1578.3052+(82-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252385, assembly_id= 103386, from= IP6; - MB.B33R6.B2:MB, at= 1585.7897+(81.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840186, assembly_id= 103386, from= IP6; - MCS.B33R6.B2:MCS, at= 1593.2137+(81-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247025, assembly_id= 103386, from= IP6; - MB.C33R6.B2:MB, at= 1601.4497+(80.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840210, assembly_id= 103387, from= IP6; - MCS.C33R6.B2:MCS, at= 1608.8737+(80-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247028, assembly_id= 103387, from= IP6; - BPM.33R6.B2:BPM, at= 1609.7527+(80-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247030, assembly_id= 103388, from= IP6; - MO.33R6.B2:MO, at= 1610.5037+(80-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308623, assembly_id= 103388, from= IP6; -MQ.33R6.B2:MQ, at= 1612.5147+(80-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307913, assembly_id= 103388, from= IP6; - MSS.33R6.B2:MSS, at= 1614.4097+(80-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252387, assembly_id= 103388, from= IP6; - MCBH.33R6.B2:MCBH, at= 1615.0027+(80-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252389, assembly_id= 103388, from= IP6; -E.CELL.67.B2:OMK, at= 1615.7497+(80-IP6OFS.B2)*DS, slot_id= 100932, from= IP6; - MCO.A34R6.B2:MCO, at= 1616.0937+(80-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252392, assembly_id= 103389, from= IP6; - MCD.A34R6.B2:MCD, at= 1616.0952+(80-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252393, assembly_id= 103389, from= IP6; - MB.A34R6.B2:MB, at= 1623.5797+(79.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840234, assembly_id= 103389, from= IP6; - MCS.A34R6.B2:MCS, at= 1631.0037+(79-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247038, assembly_id= 103389, from= IP6; - MB.B34R6.B2:MB, at= 1639.2397+(78.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840258, assembly_id= 103390, from= IP6; - MCS.B34R6.B2:MCS, at= 1646.6637+(78-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247041, assembly_id= 103390, from= IP6; - MCO.B34R6.B2:MCO, at= 1647.4137+(78-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252396, assembly_id= 103391, from= IP6; - MCD.B34R6.B2:MCD, at= 1647.4152+(78-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252397, assembly_id= 103391, from= IP6; - MB.C34R6.B2:MB, at= 1654.8997+(77.5-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840282, assembly_id= 103391, from= IP6; - MCS.C34R6.B2:MCS, at= 1662.3237+(77-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247046, assembly_id= 103391, from= IP6; - BPM.34R6.B2:BPM, at= 1663.2027+(77-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247048, assembly_id= 103392, from= IP6; - MO.34R6.B2:MO, at= 1663.9537+(77-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308637, assembly_id= 103392, from= IP6; -MQ.34R6.B2:MQ, at= 1665.9647+(77-IP6OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348462, assembly_id= 103392, from= IP6; - MS.34L7.B2:MS, at= -1664.5007+(77-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252399, assembly_id= 103392, from= IP7; - MCBV.34L7.B2:MCBV, at= -1663.9077+(77-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252401, assembly_id= 103392, from= IP7; - MB.C34L7.B2:MB, at= -1655.3307+(76.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840306, assembly_id= 103393, from= IP7; - MCS.C34L7.B2:MCS, at= -1647.9067+(76-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247054, assembly_id= 103393, from= IP7; - MCO.34L7.B2:MCO, at= -1647.1567+(76-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252404, assembly_id= 103394, from= IP7; - MCD.34L7.B2:MCD, at= -1647.1552+(76-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252405, assembly_id= 103394, from= IP7; - MB.B34L7.B2:MB, at= -1639.6707+(75.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840330, assembly_id= 103394, from= IP7; - MCS.B34L7.B2:MCS, at= -1632.2467+(75-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247059, assembly_id= 103394, from= IP7; - MB.A34L7.B2:MB, at= -1624.0107+(74.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840354, assembly_id= 103395, from= IP7; - MCS.A34L7.B2:MCS, at= -1616.5867+(74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247062, assembly_id= 103395, from= IP7; - BPM.33L7.B2:BPM, at= -1615.7077+(74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247064, assembly_id= 103396, from= IP7; - MO.33L7.B2:MO, at= -1614.9567+(74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308610, assembly_id= 103396, from= IP7; -MQ.33L7.B2:MQ, at= -1612.9457+(74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307900, assembly_id= 103396, from= IP7; - MSS.33L7.B2:MSS, at= -1611.0507+(74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252407, assembly_id= 103396, from= IP7; - MCBH.33L7.B2:MCBH, at= -1610.4577+(74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252409, assembly_id= 103396, from= IP7; - MCO.B33L7.B2:MCO, at= -1609.3667+(74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252412, assembly_id= 103397, from= IP7; - MCD.B33L7.B2:MCD, at= -1609.3652+(74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252413, assembly_id= 103397, from= IP7; - MB.C33L7.B2:MB, at= -1601.8807+(73.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840378, assembly_id= 103397, from= IP7; - MCS.C33L7.B2:MCS, at= -1594.4567+(73-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247072, assembly_id= 103397, from= IP7; - MB.B33L7.B2:MB, at= -1586.2207+(72.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840402, assembly_id= 103398, from= IP7; - MCS.B33L7.B2:MCS, at= -1578.7967+(72-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247075, assembly_id= 103398, from= IP7; - MCO.A33L7.B2:MCO, at= -1578.0467+(72-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252416, assembly_id= 103399, from= IP7; - MCD.A33L7.B2:MCD, at= -1578.0452+(72-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252417, assembly_id= 103399, from= IP7; - MB.A33L7.B2:MB, at= -1570.5607+(71.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840426, assembly_id= 103399, from= IP7; - MCS.A33L7.B2:MCS, at= -1563.1367+(71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247080, assembly_id= 103399, from= IP7; - BPM.32L7.B2:BPM, at= -1562.2577+(71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247082, assembly_id= 103400, from= IP7; - MO.32L7.B2:MO, at= -1561.5067+(71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308578, assembly_id= 103400, from= IP7; -MQ.32L7.B2:MQ, at= -1559.4957+(71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307870, assembly_id= 103400, from= IP7; - MS.32L7.B2:MS, at= -1557.6007+(71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252419, assembly_id= 103400, from= IP7; - MCBV.32L7.B2:MCBV, at= -1557.0077+(71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252421, assembly_id= 103400, from= IP7; - MB.C32L7.B2:MB, at= -1548.4307+(70.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840450, assembly_id= 103401, from= IP7; - MCS.C32L7.B2:MCS, at= -1541.0067+(70-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247088, assembly_id= 103401, from= IP7; - MCO.32L7.B2:MCO, at= -1540.2567+(70-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252424, assembly_id= 103402, from= IP7; - MCD.32L7.B2:MCD, at= -1540.2552+(70-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252425, assembly_id= 103402, from= IP7; - MB.B32L7.B2:MB, at= -1532.7707+(69.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840474, assembly_id= 103402, from= IP7; - MCS.B32L7.B2:MCS, at= -1525.3467+(69-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247093, assembly_id= 103402, from= IP7; - MB.A32L7.B2:MB, at= -1517.1107+(68.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840498, assembly_id= 103403, from= IP7; - MCS.A32L7.B2:MCS, at= -1509.6867+(68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247096, assembly_id= 103403, from= IP7; - BPM.31L7.B2:BPM, at= -1508.8077+(68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247098, assembly_id= 103404, from= IP7; - MO.31L7.B2:MO, at= -1508.0567+(68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308786, assembly_id= 103404, from= IP7; -MQ.31L7.B2:MQ, at= -1506.0457+(68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308078, assembly_id= 103404, from= IP7; - MS.31L7.B2:MS, at= -1504.1507+(68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252427, assembly_id= 103404, from= IP7; - MCBH.31L7.B2:MCBH, at= -1503.5577+(68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252429, assembly_id= 103404, from= IP7; - MCO.B31L7.B2:MCO, at= -1502.4667+(68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252432, assembly_id= 103405, from= IP7; - MCD.B31L7.B2:MCD, at= -1502.4652+(68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252433, assembly_id= 103405, from= IP7; - MB.C31L7.B2:MB, at= -1494.9807+(67.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840522, assembly_id= 103405, from= IP7; - MCS.C31L7.B2:MCS, at= -1487.5567+(67-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247106, assembly_id= 103405, from= IP7; - MB.B31L7.B2:MB, at= -1479.3207+(66.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840546, assembly_id= 103406, from= IP7; - MCS.B31L7.B2:MCS, at= -1471.8967+(66-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247109, assembly_id= 103406, from= IP7; - MCO.A31L7.B2:MCO, at= -1471.1467+(66-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252436, assembly_id= 103407, from= IP7; - MCD.A31L7.B2:MCD, at= -1471.1452+(66-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252437, assembly_id= 103407, from= IP7; - MB.A31L7.B2:MB, at= -1463.6607+(65.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840570, assembly_id= 103407, from= IP7; - MCS.A31L7.B2:MCS, at= -1456.2367+(65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247114, assembly_id= 103407, from= IP7; - BPM.30L7.B2:BPM, at= -1455.3577+(65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247116, assembly_id= 103408, from= IP7; - MO.30L7.B2:MO, at= -1454.6067+(65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308757, assembly_id= 103408, from= IP7; -MQ.30L7.B2:MQ, at= -1452.5957+(65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308048, assembly_id= 103408, from= IP7; - MS.30L7.B2:MS, at= -1450.7007+(65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252439, assembly_id= 103408, from= IP7; - MCBV.30L7.B2:MCBV, at= -1450.1077+(65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252441, assembly_id= 103408, from= IP7; - MB.C30L7.B2:MB, at= -1441.5307+(64.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840594, assembly_id= 103409, from= IP7; - MCS.C30L7.B2:MCS, at= -1434.1067+(64-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247122, assembly_id= 103409, from= IP7; - MCO.30L7.B2:MCO, at= -1433.3567+(64-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252444, assembly_id= 103410, from= IP7; - MCD.30L7.B2:MCD, at= -1433.3552+(64-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252445, assembly_id= 103410, from= IP7; - MB.B30L7.B2:MB, at= -1425.8707+(63.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840618, assembly_id= 103410, from= IP7; - MCS.B30L7.B2:MCS, at= -1418.4467+(63-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247127, assembly_id= 103410, from= IP7; - MB.A30L7.B2:MB, at= -1410.2107+(62.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840642, assembly_id= 103411, from= IP7; - MCS.A30L7.B2:MCS, at= -1402.7867+(62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247130, assembly_id= 103411, from= IP7; - BPM.29L7.B2:BPM, at= -1401.9077+(62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247132, assembly_id= 103412, from= IP7; - MO.29L7.B2:MO, at= -1401.1567+(62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308725, assembly_id= 103412, from= IP7; -MQ.29L7.B2:MQ, at= -1399.1457+(62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308018, assembly_id= 103412, from= IP7; - MSS.29L7.B2:MSS, at= -1397.2507+(62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252447, assembly_id= 103412, from= IP7; - MCBH.29L7.B2:MCBH, at= -1396.6577+(62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252449, assembly_id= 103412, from= IP7; - MCO.B29L7.B2:MCO, at= -1395.5667+(62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252452, assembly_id= 103413, from= IP7; - MCD.B29L7.B2:MCD, at= -1395.5652+(62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252453, assembly_id= 103413, from= IP7; - MB.C29L7.B2:MB, at= -1388.0807+(61.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840666, assembly_id= 103413, from= IP7; - MCS.C29L7.B2:MCS, at= -1380.6567+(61-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247140, assembly_id= 103413, from= IP7; - MB.B29L7.B2:MB, at= -1372.4207+(60.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840690, assembly_id= 103414, from= IP7; - MCS.B29L7.B2:MCS, at= -1364.9967+(60-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247143, assembly_id= 103414, from= IP7; - MCO.A29L7.B2:MCO, at= -1364.2467+(60-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252456, assembly_id= 103415, from= IP7; - MCD.A29L7.B2:MCD, at= -1364.2452+(60-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252457, assembly_id= 103415, from= IP7; - MB.A29L7.B2:MB, at= -1356.7607+(59.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840714, assembly_id= 103415, from= IP7; - MCS.A29L7.B2:MCS, at= -1349.3367+(59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247148, assembly_id= 103415, from= IP7; - BPM.28L7.B2:BPM, at= -1348.4577+(59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247150, assembly_id= 103416, from= IP7; - MO.28L7.B2:MO, at= -1347.7067+(59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308693, assembly_id= 103416, from= IP7; -MQ.28L7.B2:MQ, at= -1345.6957+(59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307987, assembly_id= 103416, from= IP7; - MS.28L7.B2:MS, at= -1343.8007+(59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252459, assembly_id= 103416, from= IP7; - MCBV.28L7.B2:MCBV, at= -1343.2077+(59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252461, assembly_id= 103416, from= IP7; - MB.C28L7.B2:MB, at= -1334.6307+(58.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840738, assembly_id= 103417, from= IP7; - MCS.C28L7.B2:MCS, at= -1327.2067+(58-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247156, assembly_id= 103417, from= IP7; - MCO.28L7.B2:MCO, at= -1326.4567+(58-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252464, assembly_id= 103418, from= IP7; - MCD.28L7.B2:MCD, at= -1326.4552+(58-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252465, assembly_id= 103418, from= IP7; - MB.B28L7.B2:MB, at= -1318.9707+(57.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840762, assembly_id= 103418, from= IP7; - MCS.B28L7.B2:MCS, at= -1311.5467+(57-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247161, assembly_id= 103418, from= IP7; - MB.A28L7.B2:MB, at= -1303.3107+(56.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840786, assembly_id= 103419, from= IP7; - MCS.A28L7.B2:MCS, at= -1295.8867+(56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247164, assembly_id= 103419, from= IP7; - BPM.27L7.B2:BPM, at= -1295.0077+(56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247166, assembly_id= 103420, from= IP7; - MQS.27L7.B2:MQS, at= -1294.2537+(56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307664, assembly_id= 103420, from= IP7; -MQ.27L7.B2:MQ, at= -1292.2457+(56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308196, assembly_id= 103420, from= IP7; - MS.27L7.B2:MS, at= -1290.3507+(56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252467, assembly_id= 103420, from= IP7; - MCBH.27L7.B2:MCBH, at= -1289.7577+(56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252469, assembly_id= 103420, from= IP7; - MCO.B27L7.B2:MCO, at= -1288.6667+(56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252472, assembly_id= 103421, from= IP7; - MCD.B27L7.B2:MCD, at= -1288.6652+(56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252473, assembly_id= 103421, from= IP7; - MB.C27L7.B2:MB, at= -1281.1807+(55.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840810, assembly_id= 103421, from= IP7; - MCS.C27L7.B2:MCS, at= -1273.7567+(55-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247174, assembly_id= 103421, from= IP7; - MB.B27L7.B2:MB, at= -1265.5207+(54.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840834, assembly_id= 103422, from= IP7; - MCS.B27L7.B2:MCS, at= -1258.0967+(54-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247177, assembly_id= 103422, from= IP7; - MCO.A27L7.B2:MCO, at= -1257.3467+(54-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252476, assembly_id= 103423, from= IP7; - MCD.A27L7.B2:MCD, at= -1257.3452+(54-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252477, assembly_id= 103423, from= IP7; - MB.A27L7.B2:MB, at= -1249.8607+(53.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840858, assembly_id= 103423, from= IP7; - MCS.A27L7.B2:MCS, at= -1242.4367+(53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247182, assembly_id= 103423, from= IP7; - BPM.26L7.B2:BPM, at= -1241.5577+(53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247184, assembly_id= 103424, from= IP7; - MO.26L7.B2:MO, at= -1240.8067+(53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308904, assembly_id= 103424, from= IP7; -MQ.26L7.B2:MQ, at= -1238.7957+(53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308166, assembly_id= 103424, from= IP7; - MS.26L7.B2:MS, at= -1236.9007+(53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252479, assembly_id= 103424, from= IP7; - MCBV.26L7.B2:MCBV, at= -1236.3077+(53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252481, assembly_id= 103424, from= IP7; - MB.C26L7.B2:MB, at= -1227.7307+(52.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840882, assembly_id= 103425, from= IP7; - MCS.C26L7.B2:MCS, at= -1220.3067+(52-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247190, assembly_id= 103425, from= IP7; - MCO.26L7.B2:MCO, at= -1219.5567+(52-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252484, assembly_id= 103426, from= IP7; - MCD.26L7.B2:MCD, at= -1219.5552+(52-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252485, assembly_id= 103426, from= IP7; - MB.B26L7.B2:MB, at= -1212.0707+(51.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840906, assembly_id= 103426, from= IP7; - MCS.B26L7.B2:MCS, at= -1204.6467+(51-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247195, assembly_id= 103426, from= IP7; - MB.A26L7.B2:MB, at= -1196.4107+(50.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840930, assembly_id= 103427, from= IP7; - MCS.A26L7.B2:MCS, at= -1188.9867+(50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247198, assembly_id= 103427, from= IP7; - BPM.25L7.B2:BPM, at= -1188.1077+(50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247200, assembly_id= 103428, from= IP7; - MO.25L7.B2:MO, at= -1187.3567+(50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308872, assembly_id= 103428, from= IP7; -MQ.25L7.B2:MQ, at= -1185.3457+(50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308135, assembly_id= 103428, from= IP7; - MS.25L7.B2:MS, at= -1183.4507+(50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252487, assembly_id= 103428, from= IP7; - MCBH.25L7.B2:MCBH, at= -1182.8577+(50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252489, assembly_id= 103428, from= IP7; - MCO.B25L7.B2:MCO, at= -1181.7667+(50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252492, assembly_id= 103429, from= IP7; - MCD.B25L7.B2:MCD, at= -1181.7652+(50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252493, assembly_id= 103429, from= IP7; - MB.C25L7.B2:MB, at= -1174.2807+(49.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840954, assembly_id= 103429, from= IP7; - MCS.C25L7.B2:MCS, at= -1166.8567+(49-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247208, assembly_id= 103429, from= IP7; - MB.B25L7.B2:MB, at= -1158.6207+(48.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52840978, assembly_id= 103430, from= IP7; - MCS.B25L7.B2:MCS, at= -1151.1967+(48-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247211, assembly_id= 103430, from= IP7; - MCO.A25L7.B2:MCO, at= -1150.4467+(48-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252496, assembly_id= 103431, from= IP7; - MCD.A25L7.B2:MCD, at= -1150.4452+(48-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252497, assembly_id= 103431, from= IP7; - MB.A25L7.B2:MB, at= -1142.9607+(47.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841002, assembly_id= 103431, from= IP7; - MCS.A25L7.B2:MCS, at= -1135.5367+(47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247216, assembly_id= 103431, from= IP7; - BPM.24L7.B2:BPM, at= -1134.6577+(47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247218, assembly_id= 103432, from= IP7; - MO.24L7.B2:MO, at= -1133.9067+(47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308840, assembly_id= 103432, from= IP7; -MQ.24L7.B2:MQ, at= -1131.8957+(47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308103, assembly_id= 103432, from= IP7; - MS.24L7.B2:MS, at= -1130.0007+(47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252499, assembly_id= 103432, from= IP7; - MCBV.24L7.B2:MCBV, at= -1129.4077+(47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252501, assembly_id= 103432, from= IP7; - MB.C24L7.B2:MB, at= -1120.8307+(46.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841026, assembly_id= 103433, from= IP7; - MCS.C24L7.B2:MCS, at= -1113.4067+(46-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247224, assembly_id= 103433, from= IP7; - MCO.24L7.B2:MCO, at= -1112.6567+(46-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252504, assembly_id= 103434, from= IP7; - MCD.24L7.B2:MCD, at= -1112.6552+(46-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252505, assembly_id= 103434, from= IP7; - MB.B24L7.B2:MB, at= -1105.1707+(45.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841050, assembly_id= 103434, from= IP7; - MCS.B24L7.B2:MCS, at= -1097.7467+(45-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247229, assembly_id= 103434, from= IP7; - MB.A24L7.B2:MB, at= -1089.5107+(44.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841074, assembly_id= 103435, from= IP7; - MCS.A24L7.B2:MCS, at= -1082.0867+(44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247232, assembly_id= 103435, from= IP7; - BPM.23L7.B2:BPM, at= -1081.2077+(44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247234, assembly_id= 103436, from= IP7; - MQS.23L7.B2:MQS, at= -1080.4537+(44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307633, assembly_id= 103436, from= IP7; -MQ.23L7.B2:MQ, at= -1078.4457+(44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308313, assembly_id= 103436, from= IP7; - MS.23L7.B2:MS, at= -1076.5507+(44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252507, assembly_id= 103436, from= IP7; - MCBH.23L7.B2:MCBH, at= -1075.9577+(44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252509, assembly_id= 103436, from= IP7; - MCO.B23L7.B2:MCO, at= -1074.8667+(44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252512, assembly_id= 103437, from= IP7; - MCD.B23L7.B2:MCD, at= -1074.8652+(44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252513, assembly_id= 103437, from= IP7; - MB.C23L7.B2:MB, at= -1067.3807+(43.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841098, assembly_id= 103437, from= IP7; - MCS.C23L7.B2:MCS, at= -1059.9567+(43-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247242, assembly_id= 103437, from= IP7; - MB.B23L7.B2:MB, at= -1051.7207+(42.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841122, assembly_id= 103438, from= IP7; - MCS.B23L7.B2:MCS, at= -1044.2967+(42-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247245, assembly_id= 103438, from= IP7; - MCO.A23L7.B2:MCO, at= -1043.5467+(42-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252516, assembly_id= 103439, from= IP7; - MCD.A23L7.B2:MCD, at= -1043.5452+(42-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252517, assembly_id= 103439, from= IP7; - MB.A23L7.B2:MB, at= -1036.0607+(41.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841146, assembly_id= 103439, from= IP7; - MCS.A23L7.B2:MCS, at= -1028.6367+(41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247250, assembly_id= 103439, from= IP7; - BPM.22L7.B2:BPM, at= -1027.7577+(41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247252, assembly_id= 103440, from= IP7; - MO.22L7.B2:MO, at= -1027.0067+(41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308811, assembly_id= 103440, from= IP7; -MQ.22L7.B2:MQ, at= -1024.9957+(41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308282, assembly_id= 103440, from= IP7; - MS.22L7.B2:MS, at= -1023.1007+(41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252519, assembly_id= 103440, from= IP7; - MCBV.22L7.B2:MCBV, at= -1022.5077+(41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252521, assembly_id= 103440, from= IP7; - MB.C22L7.B2:MB, at= -1013.9307+(40.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841170, assembly_id= 103441, from= IP7; - MCS.C22L7.B2:MCS, at= -1006.5067+(40-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247258, assembly_id= 103441, from= IP7; - MCO.22L7.B2:MCO, at= -1005.7567+(40-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252524, assembly_id= 103442, from= IP7; - MCD.22L7.B2:MCD, at= -1005.7552+(40-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252525, assembly_id= 103442, from= IP7; - MB.B22L7.B2:MB, at= -998.2707+(39.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841194, assembly_id= 103442, from= IP7; - MCS.B22L7.B2:MCS, at= -990.8467+(39-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247263, assembly_id= 103442, from= IP7; - MB.A22L7.B2:MB, at= -982.6107+(38.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841218, assembly_id= 103443, from= IP7; - MCS.A22L7.B2:MCS, at= -975.1867+(38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247266, assembly_id= 103443, from= IP7; - BPM.21L7.B2:BPM, at= -974.3077+(38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247268, assembly_id= 103444, from= IP7; - MQT.21L7.B2:MQT, at= -973.5537+(38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307266, assembly_id= 103444, from= IP7; -MQ.21L7.B2:MQ, at= -971.5457+(38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308250, assembly_id= 103444, from= IP7; - MS.21L7.B2:MS, at= -969.6507+(38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252527, assembly_id= 103444, from= IP7; - MCBH.21L7.B2:MCBH, at= -969.0577+(38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252529, assembly_id= 103444, from= IP7; - MCO.B21L7.B2:MCO, at= -967.9667+(38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252532, assembly_id= 103445, from= IP7; - MCD.B21L7.B2:MCD, at= -967.9652+(38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252533, assembly_id= 103445, from= IP7; - MB.C21L7.B2:MB, at= -960.4807+(37.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841242, assembly_id= 103445, from= IP7; - MCS.C21L7.B2:MCS, at= -953.0567+(37-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247276, assembly_id= 103445, from= IP7; - MB.B21L7.B2:MB, at= -944.8207+(36.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841266, assembly_id= 103446, from= IP7; - MCS.B21L7.B2:MCS, at= -937.3967+(36-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247279, assembly_id= 103446, from= IP7; - MCO.A21L7.B2:MCO, at= -936.6467+(36-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252536, assembly_id= 103447, from= IP7; - MCD.A21L7.B2:MCD, at= -936.6452+(36-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252537, assembly_id= 103447, from= IP7; - MB.A21L7.B2:MB, at= -929.1607+(35.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841290, assembly_id= 103447, from= IP7; - MCS.A21L7.B2:MCS, at= -921.7367+(35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247284, assembly_id= 103447, from= IP7; - BPM.20L7.B2:BPM, at= -920.8577+(35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247286, assembly_id= 103448, from= IP7; - MQT.20L7.B2:MQT, at= -920.1037+(35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307469, assembly_id= 103448, from= IP7; -MQ.20L7.B2:MQ, at= -918.0957+(35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308220, assembly_id= 103448, from= IP7; - MS.20L7.B2:MS, at= -916.2007+(35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252539, assembly_id= 103448, from= IP7; - MCBV.20L7.B2:MCBV, at= -915.6077+(35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252541, assembly_id= 103448, from= IP7; - MB.C20L7.B2:MB, at= -907.0307+(34.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841314, assembly_id= 103449, from= IP7; - MCS.C20L7.B2:MCS, at= -899.6067+(34-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247292, assembly_id= 103449, from= IP7; - MCO.20L7.B2:MCO, at= -898.8567+(34-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252544, assembly_id= 103450, from= IP7; - MCD.20L7.B2:MCD, at= -898.8552+(34-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252545, assembly_id= 103450, from= IP7; - MB.B20L7.B2:MB, at= -891.3707+(33.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841338, assembly_id= 103450, from= IP7; - MCS.B20L7.B2:MCS, at= -883.9467+(33-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247297, assembly_id= 103450, from= IP7; - MB.A20L7.B2:MB, at= -875.7107+(32.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841362, assembly_id= 103451, from= IP7; - MCS.A20L7.B2:MCS, at= -868.2867+(32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247300, assembly_id= 103451, from= IP7; - BPM.19L7.B2:BPM, at= -867.4077+(32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 266535, assembly_id= 103452, from= IP7; - MQT.19L7.B2:MQT, at= -866.6537+(32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307439, assembly_id= 103452, from= IP7; -MQ.19L7.B2:MQ, at= -864.6457+(32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308429, assembly_id= 103452, from= IP7; - MS.19L7.B2:MS, at= -862.7507+(32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252547, assembly_id= 103452, from= IP7; - MCBH.19L7.B2:MCBH, at= -862.1577+(32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252549, assembly_id= 103452, from= IP7; - MCO.B19L7.B2:MCO, at= -861.0667+(32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252552, assembly_id= 103453, from= IP7; - MCD.B19L7.B2:MCD, at= -861.0652+(32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252553, assembly_id= 103453, from= IP7; - MB.C19L7.B2:MB, at= -853.5807+(31.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841386, assembly_id= 103453, from= IP7; - MCS.C19L7.B2:MCS, at= -846.1567+(31-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247308, assembly_id= 103453, from= IP7; - MB.B19L7.B2:MB, at= -837.9207+(30.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841410, assembly_id= 103454, from= IP7; - MCS.B19L7.B2:MCS, at= -830.4967+(30-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247311, assembly_id= 103454, from= IP7; - MCO.A19L7.B2:MCO, at= -829.7467+(30-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252556, assembly_id= 103455, from= IP7; - MCD.A19L7.B2:MCD, at= -829.7452+(30-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252557, assembly_id= 103455, from= IP7; - MB.A19L7.B2:MB, at= -822.2607+(29.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841434, assembly_id= 103455, from= IP7; - MCS.A19L7.B2:MCS, at= -814.8367+(29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247316, assembly_id= 103455, from= IP7; - BPM.18L7.B2:BPM, at= -813.9577+(29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247318, assembly_id= 103456, from= IP7; - MQT.18L7.B2:MQT, at= -813.2037+(29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307408, assembly_id= 103456, from= IP7; -MQ.18L7.B2:MQ, at= -811.1957+(29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308397, assembly_id= 103456, from= IP7; - MS.18L7.B2:MS, at= -809.3007+(29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252559, assembly_id= 103456, from= IP7; - MCBV.18L7.B2:MCBV, at= -808.7077+(29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252561, assembly_id= 103456, from= IP7; - MB.C18L7.B2:MB, at= -800.1307+(28.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841458, assembly_id= 103457, from= IP7; - MCS.C18L7.B2:MCS, at= -792.7067+(28-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247324, assembly_id= 103457, from= IP7; - MCO.18L7.B2:MCO, at= -791.9567+(28-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252564, assembly_id= 103458, from= IP7; - MCD.18L7.B2:MCD, at= -791.9552+(28-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252565, assembly_id= 103458, from= IP7; - MB.B18L7.B2:MB, at= -784.4707+(27.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841482, assembly_id= 103458, from= IP7; - MCS.B18L7.B2:MCS, at= -777.0467+(27-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247329, assembly_id= 103458, from= IP7; - MB.A18L7.B2:MB, at= -768.8107+(26.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841506, assembly_id= 103459, from= IP7; - MCS.A18L7.B2:MCS, at= -761.3867+(26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247332, assembly_id= 103459, from= IP7; - BPM.17L7.B2:BPM, at= -760.5077+(26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247334, assembly_id= 103460, from= IP7; - MQT.17L7.B2:MQT, at= -759.7537+(26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307376, assembly_id= 103460, from= IP7; -MQ.17L7.B2:MQ, at= -757.7457+(26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308367, assembly_id= 103460, from= IP7; - MS.17L7.B2:MS, at= -755.8507+(26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252567, assembly_id= 103460, from= IP7; - MCBH.17L7.B2:MCBH, at= -755.2577+(26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252569, assembly_id= 103460, from= IP7; - MCO.B17L7.B2:MCO, at= -754.1667+(26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252572, assembly_id= 103461, from= IP7; - MCD.B17L7.B2:MCD, at= -754.1652+(26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252573, assembly_id= 103461, from= IP7; - MB.C17L7.B2:MB, at= -746.6807+(25.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841530, assembly_id= 103461, from= IP7; - MCS.C17L7.B2:MCS, at= -739.2567+(25-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247342, assembly_id= 103461, from= IP7; - MB.B17L7.B2:MB, at= -731.0207+(24.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841554, assembly_id= 103462, from= IP7; - MCS.B17L7.B2:MCS, at= -723.5967+(24-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247345, assembly_id= 103462, from= IP7; - MCO.A17L7.B2:MCO, at= -722.8467+(24-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252576, assembly_id= 103463, from= IP7; - MCD.A17L7.B2:MCD, at= -722.8452+(24-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252577, assembly_id= 103463, from= IP7; - MB.A17L7.B2:MB, at= -715.3607+(23.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841578, assembly_id= 103463, from= IP7; - MCS.A17L7.B2:MCS, at= -707.9367+(23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247350, assembly_id= 103463, from= IP7; - BPM.16L7.B2:BPM, at= -707.0577+(23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247352, assembly_id= 103464, from= IP7; - MQT.16L7.B2:MQT, at= -706.3037+(23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307583, assembly_id= 103464, from= IP7; -MQ.16L7.B2:MQ, at= -704.2957+(23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308338, assembly_id= 103464, from= IP7; - MS.16L7.B2:MS, at= -702.4007+(23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252579, assembly_id= 103464, from= IP7; - MCBV.16L7.B2:MCBV, at= -701.8077+(23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252581, assembly_id= 103464, from= IP7; - MB.C16L7.B2:MB, at= -693.2307+(22.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841602, assembly_id= 103465, from= IP7; - MCS.C16L7.B2:MCS, at= -685.8067+(22-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247358, assembly_id= 103465, from= IP7; - MCO.16L7.B2:MCO, at= -685.0567+(22-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252584, assembly_id= 103466, from= IP7; - MCD.16L7.B2:MCD, at= -685.0552+(22-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252585, assembly_id= 103466, from= IP7; - MB.B16L7.B2:MB, at= -677.5707+(21.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841626, assembly_id= 103466, from= IP7; - MCS.B16L7.B2:MCS, at= -670.1467+(21-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247363, assembly_id= 103466, from= IP7; - MB.A16L7.B2:MB, at= -661.9107+(20.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841650, assembly_id= 103467, from= IP7; - MCS.A16L7.B2:MCS, at= -654.4867+(20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247366, assembly_id= 103467, from= IP7; - BPM.15L7.B2:BPM, at= -653.6077+(20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 266537, assembly_id= 103468, from= IP7; - MQT.15L7.B2:MQT, at= -652.8537+(20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307552, assembly_id= 103468, from= IP7; -MQ.15L7.B2:MQ, at= -650.8457+(20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308544, assembly_id= 103468, from= IP7; - MS.15L7.B2:MS, at= -648.9507+(20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252587, assembly_id= 103468, from= IP7; - MCBH.15L7.B2:MCBH, at= -648.3577+(20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252589, assembly_id= 103468, from= IP7; - MCO.B15L7.B2:MCO, at= -647.2667+(20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252592, assembly_id= 103469, from= IP7; - MCD.B15L7.B2:MCD, at= -647.2652+(20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252593, assembly_id= 103469, from= IP7; - MB.C15L7.B2:MB, at= -639.7807+(19.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841674, assembly_id= 103469, from= IP7; - MCS.C15L7.B2:MCS, at= -632.3567+(19-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247374, assembly_id= 103469, from= IP7; - MB.B15L7.B2:MB, at= -624.1207+(18.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841698, assembly_id= 103470, from= IP7; - MCS.B15L7.B2:MCS, at= -616.6967+(18-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247377, assembly_id= 103470, from= IP7; - MCO.A15L7.B2:MCO, at= -615.9467+(18-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252596, assembly_id= 103471, from= IP7; - MCD.A15L7.B2:MCD, at= -615.9452+(18-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252597, assembly_id= 103471, from= IP7; - MB.A15L7.B2:MB, at= -608.4607+(17.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841722, assembly_id= 103471, from= IP7; - MCS.A15L7.B2:MCS, at= -601.0367+(17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247382, assembly_id= 103471, from= IP7; - BPM.14L7.B2:BPM, at= -600.1577+(17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247384, assembly_id= 103472, from= IP7; - MQT.14L7.B2:MQT, at= -599.4037+(17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307520, assembly_id= 103472, from= IP7; -MQ.14L7.B2:MQ, at= -597.3957+(17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308514, assembly_id= 103472, from= IP7; - MS.14L7.B2:MS, at= -595.5007+(17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252599, assembly_id= 103472, from= IP7; - MCBV.14L7.B2:MCBV, at= -594.9077+(17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252601, assembly_id= 103472, from= IP7; - MB.C14L7.B2:MB, at= -586.3307+(16.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841746, assembly_id= 103473, from= IP7; - MCS.C14L7.B2:MCS, at= -578.9067+(16-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247390, assembly_id= 103473, from= IP7; - MCO.14L7.B2:MCO, at= -578.1567+(16-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252604, assembly_id= 103474, from= IP7; - MCD.14L7.B2:MCD, at= -578.1552+(16-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252605, assembly_id= 103474, from= IP7; - MB.B14L7.B2:MB, at= -570.6707+(15.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841770, assembly_id= 103474, from= IP7; - MCS.B14L7.B2:MCS, at= -563.2467+(15-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247395, assembly_id= 103474, from= IP7; - MB.A14L7.B2:MB, at= -555.0107+(14.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841794, assembly_id= 103475, from= IP7; - MCS.A14L7.B2:MCS, at= -547.5867+(14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247398, assembly_id= 103475, from= IP7; -S.DS.L7.B2:OMK, at= -547.1807+(14-IP7OFS.B2)*DS, slot_id= 100932, from= IP7; - BPM.13L7.B2:BPM, at= -546.7077+(14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247400, assembly_id= 103476, from= IP7; - MQT.13L7.B2:MQT, at= -545.9537+(14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307727, assembly_id= 103476, from= IP7; -MQ.13L7.B2:MQ, at= -543.9457+(14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308485, assembly_id= 103476, from= IP7; - MS.13L7.B2:MS, at= -542.0507+(14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252607, assembly_id= 103476, from= IP7; - MCBH.13L7.B2:MCBH, at= -541.4577+(14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252609, assembly_id= 103476, from= IP7; - MCO.B13L7.B2:MCO, at= -540.3667+(14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252612, assembly_id= 103477, from= IP7; - MCD.B13L7.B2:MCD, at= -540.3652+(14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252613, assembly_id= 103477, from= IP7; - MB.C13L7.B2:MB, at= -532.8807+(13.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841818, assembly_id= 103477, from= IP7; - MCS.C13L7.B2:MCS, at= -525.4567+(13-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247408, assembly_id= 103477, from= IP7; - MB.B13L7.B2:MB, at= -517.2207+(12.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841842, assembly_id= 103478, from= IP7; - MCS.B13L7.B2:MCS, at= -509.7967+(12-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247411, assembly_id= 103478, from= IP7; - MCO.A13L7.B2:MCO, at= -509.0467+(12-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252616, assembly_id= 103479, from= IP7; - MCD.A13L7.B2:MCD, at= -509.0452+(12-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252617, assembly_id= 103479, from= IP7; - MB.A13L7.B2:MB, at= -501.5607+(11.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841866, assembly_id= 103479, from= IP7; - MCS.A13L7.B2:MCS, at= -494.1367+(11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247416, assembly_id= 103479, from= IP7; - BPM.12L7.B2:BPM, at= -493.2577+(11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247418, assembly_id= 103480, from= IP7; - MQT.12L7.B2:MQT, at= -492.5037+(11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307696, assembly_id= 103480, from= IP7; -MQ.12L7.B2:MQ, at= -490.4957+(11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308455, assembly_id= 103480, from= IP7; - MS.12L7.B2:MS, at= -488.6007+(11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252619, assembly_id= 103480, from= IP7; - MCBV.12L7.B2:MCBV, at= -488.0077+(11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252621, assembly_id= 103480, from= IP7; - MB.C12L7.B2:MB, at= -479.4307+(10.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841890, assembly_id= 103481, from= IP7; - MCS.C12L7.B2:MCS, at= -472.0067+(10-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247424, assembly_id= 103481, from= IP7; - MCO.12L7.B2:MCO, at= -471.2567+(10-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252624, assembly_id= 103482, from= IP7; - MCD.12L7.B2:MCD, at= -471.2552+(10-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252625, assembly_id= 103482, from= IP7; - MB.B12L7.B2:MB, at= -463.7707+(9.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841914, assembly_id= 103482, from= IP7; - MCS.B12L7.B2:MCS, at= -456.3467+(9-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247429, assembly_id= 103482, from= IP7; - MB.A12L7.B2:MB, at= -448.1107+(8.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841938, assembly_id= 103483, from= IP7; - MCS.A12L7.B2:MCS, at= -440.6867+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247432, assembly_id= 103483, from= IP7; -E.ARC.67.B2:OMK, at= -440.2807+(8-IP7OFS.B2)*DS, slot_id= 100932, from= IP7; - BPM.11L7.B2:BPM, at= -439.8077+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247434, assembly_id= 103484, from= IP7; -MQ.11L7.B2:MQ, at= -437.2607+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308662, assembly_id= 103484, from= IP7; - MQTLI.11L7.B2:MQTLI, at= -434.8917+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307350, assembly_id= 103484, from= IP7; - MS.11L7.B2:MS, at= -433.8797+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252627, assembly_id= 103484, from= IP7; - MCBH.11L7.B2:MCBH, at= -433.2867+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252629, assembly_id= 103484, from= IP7; - LEIR.11L7.B2:LEIR, at= -425.67735+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52997958, assembly_id= 103485, from= IP7; - MCO.11L7.B2:MCO, at= -418.475+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252632, assembly_id= 103486, from= IP7; - MCD.11L7.B2:MCD, at= -418.4735+(8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252633, assembly_id= 103486, from= IP7; - MB.B11L7.B2:MB, at= -410.989+(7.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841962, assembly_id= 103486, from= IP7; - MCS.B11L7.B2:MCS, at= -403.565+(7-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247442, assembly_id= 103486, from= IP7; - MB.A11L7.B2:MB, at= -395.329+(6.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52841986, assembly_id= 103487, from= IP7; - MCS.A11L7.B2:MCS, at= -387.905+(6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247445, assembly_id= 103487, from= IP7; - BPM.10L7.B2:BPM, at= -387.026+(6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247447, assembly_id= 103488, from= IP7; -MQ.10L7.B2:MQ, at= -384.479+(6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308645, assembly_id= 103488, from= IP7; - MQTLI.10L7.B2:MQTLI, at= -382.11+(6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307333, assembly_id= 103488, from= IP7; - MCBCV.10L7.B2:MCBCV, at= -380.82+(6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252635, assembly_id= 103488, from= IP7; - MCO.10L7.B2:MCO, at= -379.41+(6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252638, assembly_id= 103489, from= IP7; - MCD.10L7.B2:MCD, at= -379.4085+(6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252639, assembly_id= 103489, from= IP7; - MB.B10L7.B2:MB, at= -371.924+(5.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842010, assembly_id= 103489, from= IP7; - MCS.B10L7.B2:MCS, at= -364.5+(5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247455, assembly_id= 103489, from= IP7; - MB.A10L7.B2:MB, at= -356.264+(4.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842034, assembly_id= 103490, from= IP7; - MCS.A10L7.B2:MCS, at= -348.84+(4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247458, assembly_id= 103490, from= IP7; - BPM.9L7.B2:BPM, at= -347.96+(4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247460, assembly_id= 103491, from= IP7; -MQ.9L7.B2:MQ, at= -345.413+(4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307950, assembly_id= 103491, from= IP7; - MQTLI.B9L7.B2:MQTLI, at= -343.044+(4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307160, assembly_id= 103491, from= IP7; - MQTLI.A9L7.B2:MQTLI, at= -341.589+(4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307153, assembly_id= 103491, from= IP7; - MCBCH.9L7.B2:MCBCH, at= -340.299+(4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252641, assembly_id= 103491, from= IP7; - MCO.9L7.B2:MCO, at= -338.945+(4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252644, assembly_id= 103492, from= IP7; - MCD.9L7.B2:MCD, at= -338.9435+(4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252645, assembly_id= 103492, from= IP7; - MB.B9L7.B2:MB, at= -331.459+(3.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842058, assembly_id= 103492, from= IP7; - MCS.B9L7.B2:MCS, at= -324.035+(3-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247469, assembly_id= 103492, from= IP7; - MB.A9L7.B2:MB, at= -315.799+(2.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842082, assembly_id= 103493, from= IP7; - MCS.A9L7.B2:MCS, at= -308.375+(2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247472, assembly_id= 103493, from= IP7; - BPM.8L7.B2:BPM, at= -307.496+(2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247474, assembly_id= 103494, from= IP7; -MQ.8L7.B2:MQ, at= -304.949+(2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307942, assembly_id= 103494, from= IP7; - MQTLI.8L7.B2:MQTLI, at= -302.58+(2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307145, assembly_id= 103494, from= IP7; - MCBCV.8L7.B2:MCBCV, at= -301.29+(2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252647, assembly_id= 103494, from= IP7; - MCO.8L7.B2:MCO, at= -299.88+(2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252650, assembly_id= 103495, from= IP7; - MCD.8L7.B2:MCD, at= -299.8785+(2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252651, assembly_id= 103495, from= IP7; - MB.B8L7.B2:MB, at= -292.394+(1.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842106, assembly_id= 103495, from= IP7; - MCS.B8L7.B2:MCS, at= -284.97+(1-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247482, assembly_id= 103495, from= IP7; - MB.A8L7.B2:MB, at= -276.734+(.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849714, assembly_id= 103496, from= IP7; - MCS.A8L7.B2:MCS, at= -269.31+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 357326, assembly_id= 103496, from= IP7; -E.DS.L7.B2:OMK, at= -268.904+(0-IP7OFS.B2)*DS, slot_id= 100932, from= IP7; - BPM.7L7.B2:BPM, at= -268.431+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247487, assembly_id= 103497, from= IP7; -MQ.7L7.B2:MQ, at= -265.884+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307935, assembly_id= 103497, from= IP7; - MQTLI.7L7.B2:MQTLI, at= -263.515+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307371, assembly_id= 103497, from= IP7; - MCBCH.7L7.B2:MCBCH, at= -262.225+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252653, assembly_id= 103497, from= IP7; - DFBAM.7L7.B2:DFBAM, at= -260.0715+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52996839, assembly_id= 104688, from= IP7; - TCLA.A7L7.B2:TCLA, at= -237.698+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 691015, from= IP7; - BPMR.6L7.B2:BPMR, at= -233.613+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378022, assembly_id= 103498, from= IP7; - MQTLH.F6L7.B2:MQTLH, at= -232.243+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348436, assembly_id= 103498, from= IP7; - MQTLH.E6L7.B2:MQTLH, at= -230.788+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307318, assembly_id= 103498, from= IP7; - MQTLH.D6L7.B2:MQTLH, at= -229.333+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307311, assembly_id= 103498, from= IP7; - MQTLH.C6L7.B2:MQTLH, at= -227.878+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307303, assembly_id= 103498, from= IP7; - MQTLH.B6L7.B2:MQTLH, at= -226.422+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307296, assembly_id= 103498, from= IP7; - MQTLH.A6L7.B2:MQTLH, at= -224.966+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307288, assembly_id= 103498, from= IP7; - MCBCV.6L7.B2:MCBCV, at= -223.675+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252654, assembly_id= 103498, from= IP7; - BPMWC.6L7.B2:BPMWC, at= -221.4345+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 104614, from= IP7; - TCLA.D6L7.B2:TCLA, at= -220.07+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 691014, from= IP7; - TCLA.C6L7.B2:TCLA, at= -218.07+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 691013, from= IP7; - MBW.D6L7.B2:MBW, at= -214.413+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820098, from= IP7; - MBW.C6L7.B2:MBW, at= -210.178+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820122, from= IP7; - TCLA.B6L7.B2:TCLA, at= -184.801+(0-IP7OFS.B2)*DS, mech_sep= -0.2148, slot_id= 691012, from= IP7; - MBW.B6L7.B2:MBW, at= -175.0235+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52820146, from= IP7; - MBW.A6L7.B2:MBW, at= -170.0885+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52820170, from= IP7; - TCLA.A6L7.B2:TCLA, at= -153.927+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 691011, from= IP7; - BPTDH.6L7.B2:BPTDH, at= -149.456+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52650820, assembly_id= 52431267, from= IP7; - TCSPM.6L7.B2:TCSPM, at= -148.861+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52431267, from= IP7; - BPTUH.6L7.B2:BPTUH, at= -148.266+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52650805, assembly_id= 52431267, from= IP7; - BPTUV.6L7.B2:BPTUV, at= -148.1755+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52650835, assembly_id= 52431267, from= IP7; - TCSG.6L7.B2:TCSG, at= -146.861+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 281854, from= IP7; - BPMWE.5L7.B2:BPMWE003, at= -144.3805+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 297898, from= IP7; - MQWA.D5L7.B2:MQWA, at= -138.566+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241715, from= IP7; - MQWA.C5L7.B2:MQWA, at= -134.766+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241716, from= IP7; - MQWA.F5L7.B2:MQWA, at= -130.966+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52778374, from= IP7; - MQWA.B5L7.B2:MQWA, at= -127.166+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241717, from= IP7; - MQWA.A5L7.B2:MQWA, at= -123.366+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241718, from= IP7; - BPMW.5L7.B2:BPMW_010, at= -121.1755+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 297890, from= IP7; - MCBWH.5L7.B2:MCBWH, at= -117.431+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 297887, from= IP7; - BPTDJ.E5L7.B2:BPTDJ, at= -114.851+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52650775, assembly_id= 52431144, from= IP7; - TCSPM.E5L7.B2:TCSPM, at= -114.256+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52431144, from= IP7; - BPTUJ.E5L7.B2:BPTUJ, at= -113.661+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52650760, assembly_id= 52431144, from= IP7; - BPTUT.E5L7.B2:BPTUT, at= -113.5705+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52650790, assembly_id= 52431144, from= IP7; - TCSG.E5L7.B2:TCSG, at= -112.256+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 103510, from= IP7; - TCSG.D5L7.B2:TCSG, at= -108.256+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 281856, from= IP7; - TCSG.B5L7.B2:TCSG, at= -92.256+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 281864, from= IP7; - BPMWE.4L7.B2:BPMWE008, at= -86.0905+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 297886, from= IP7; - MQWA.E4L7.B2:MQWA, at= -84.076+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241721, from= IP7; - MQWA.D4L7.B2:MQWA, at= -80.276+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241722, from= IP7; - MQWA.C4L7.B2:MQWA, at= -71.576+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241723, from= IP7; - MQWB.4L7.B2:MQWB, at= -67.776+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241720, from= IP7; - MQWA.B4L7.B2:MQWA, at= -63.976+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241724, from= IP7; - MQWA.A4L7.B2:MQWA, at= -60.176+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241725, from= IP7; - BPMW.4L7.B2:BPMW_015, at= -57.9855+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 297876, from= IP7; - MCBWV.4L7.B2:MCBWV, at= -54.191+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 297873, from= IP7; - TCSG.A4L7.B2:TCSG, at= -9+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 103517, from= IP7; -IP7:OMK, at= pIP7+IP7OFS.B2*DS; - TCSG.A4R7.B2:TCSG, at= 7+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 103521, from= IP7; - BPTDH.B4R7.B2:BPTDH, at= 8.405+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52502427, assembly_id= 52431037, from= IP7; - TCSPM.B4R7.B2:TCSPM, at= 9+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52431037, from= IP7; - BPTUH.B4R7.B2:BPTUH, at= 9.595+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52502418, assembly_id= 52431037, from= IP7; - BPTUV.B4R7.B2:BPTUV, at= 9.6855+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52502436, assembly_id= 52431037, from= IP7; - TCSG.B4R7.B2:TCSG, at= 11+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 103523, from= IP7; - MCBWH.4R7.B2:MCBWH, at= 56.521+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 134658, from= IP7; - BPMW.4R7.B2:BPMW_013, at= 58.0615+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 134748, from= IP7; - MQWA.A4R7.B2:MQWA, at= 60.176+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241728, from= IP7; - MQWA.B4R7.B2:MQWA, at= 63.976+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241729, from= IP7; - MQWB.4R7.B2:MQWB, at= 67.776+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241727, from= IP7; - MQWA.C4R7.B2:MQWA, at= 71.576+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241730, from= IP7; - BPTDV.A4R7.B2:BPTDV, at= 74.331+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 39989922, from= IP7; - TCSPM.D4R7.B2:TCSPM, at= 74.926+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 53749744, from= IP7; - BPTUV.A4R7.B2:BPTUV, at= 75.521+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 39989976, from= IP7; - BPTUH.A4R7.B2:BPTUH, at= 75.6115+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 39989924, from= IP7; - BPTDV.D4R7.B2:BPTDV, at= 76.331+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52502369, from= IP7; - TCSG.D4R7.B2:TCSPM, at= 76.926+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52431456, from= IP7; - BPTUV.D4R7.B2:BPTUV, at= 77.521+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52502360, from= IP7; - BPTUH.D4R7.B2:BPTUH, at= 77.6115+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52502378, from= IP7; - MQWA.D4R7.B2:MQWA, at= 80.276+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241731, from= IP7; - MQWA.E4R7.B2:MQWA, at= 84.076+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241732, from= IP7; - BPMWE.4R7.B2:BPMWE009, at= 86.1665+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 134749, from= IP7; - TCPCH.A5R7.B2:TCPCH, at= 95.9935+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 281879, from= IP7; - TCSG.A5R7.B2:TCSG, at= 98.256+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 281880, from= IP7; - TCSG.B5R7.B2:TCSG, at= 102.256+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 281882, from= IP7; - MCBWV.5R7.B2:MCBWV, at= 119.761+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 134666, from= IP7; - BPMW.5R7.B2:BPMW_014, at= 121.2515+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 134750, from= IP7; - MQWA.A5R7.B2:MQWA, at= 123.366+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241735, from= IP7; - MQWA.B5R7.B2:MQWA, at= 127.166+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241736, from= IP7; - MQWA.F5R7.B2:MQWA, at= 130.966+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52778518, from= IP7; - MQWA.C5R7.B2:MQWA, at= 134.766+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241737, from= IP7; - MQWA.D5R7.B2:MQWA, at= 138.566+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 241738, from= IP7; - TCAPM.A5R7.B2:TCAPM, at= 142.316+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 53020562, assembly_id= 51085508, from= IP7; - BPMWE.5R7.B2:BPMWE007, at= 144.4565+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 134751, from= IP7; - TCAPC.6R7.B2:TCAPC, at= 145.161+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 820155, from= IP7; - TCPCV.A6R7.B2:TCPCV, at= 150.5385+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 40086475, from= IP7; - TCSG.A6R7.B2:TCSG, at= 161.4835+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 103528, from= IP7; - MBW.A6R7.B2:MBW, at= 170.0885+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52820194, from= IP7; - TCAPB.6R7.B2:TCAPB, at= 172.4885+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 820121, from= IP7; - MBW.B6R7.B2:MBW, at= 175.0235+(0-IP7OFS.B2)*DS, mech_sep= -0.2240, slot_id= 52820218, from= IP7; - TCAPA.6R7.B2:TCAPA019, at= 177.9735+(0-IP7OFS.B2)*DS, mech_sep= -0.2220, slot_id= 820101, from= IP7; - TCP.B6R7.B2:TCP, at= 200.978+(0-IP7OFS.B2)*DS, mech_sep= -0.2026, slot_id= 281890, from= IP7; - BPTDH.C6R7.B2:BPTDH, at= 202.383+(0-IP7OFS.B2)*DS, mech_sep= -0.2014, slot_id= 50605684, assembly_id= 281891, from= IP7; - TCP.C6R7.B2:TCPPM, at= 202.978+(0-IP7OFS.B2)*DS, mech_sep= -0.2010, slot_id= 281891, from= IP7; - BPTUH.C6R7.B2:BPTUH, at= 203.573+(0-IP7OFS.B2)*DS, mech_sep= -0.2005, slot_id= 50605686, assembly_id= 281891, from= IP7; - BPTUV.C6R7.B2:BPTUV, at= 203.6635+(0-IP7OFS.B2)*DS, mech_sep= -0.2004, slot_id= 50605688, assembly_id= 281891, from= IP7; - BPTDV.D6R7.B2:BPTDV, at= 204.383+(0-IP7OFS.B2)*DS, mech_sep= -0.2190, slot_id= 50605675, assembly_id= 281892, from= IP7; - TCP.D6R7.B2:TCPPM, at= 204.978+(0-IP7OFS.B2)*DS, mech_sep= -0.2186, slot_id= 281892, from= IP7; - BPTUV.D6R7.B2:BPTUV, at= 205.573+(0-IP7OFS.B2)*DS, mech_sep= -0.2181, slot_id= 50605679, assembly_id= 281892, from= IP7; - BPTUH.D6R7.B2:BPTUH, at= 205.6635+(0-IP7OFS.B2)*DS, mech_sep= -0.2180, slot_id= 50605677, assembly_id= 281892, from= IP7; - MBW.C6R7.B2:MBW, at= 210.178+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820242, from= IP7; - MBW.D6R7.B2:MBW, at= 214.413+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52820266, from= IP7; - BPM.6R7.B2:BPM, at= 223.596+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378032, assembly_id= 103537, from= IP7; - MQTLH.A6R7.B2:MQTLH, at= 224.966+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307292, assembly_id= 103537, from= IP7; - MQTLH.B6R7.B2:MQTLH, at= 226.421+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307299, assembly_id= 103537, from= IP7; - MQTLH.C6R7.B2:MQTLH, at= 227.876+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307307, assembly_id= 103537, from= IP7; - MQTLH.D6R7.B2:MQTLH, at= 229.331+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307314, assembly_id= 103537, from= IP7; - MQTLH.E6R7.B2:MQTLH, at= 230.787+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307322, assembly_id= 103537, from= IP7; - MQTLH.F6R7.B2:MQTLH, at= 232.243+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307329, assembly_id= 103537, from= IP7; - MCBCH.6R7.B2:MCBCH, at= 233.534+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252656, assembly_id= 103537, from= IP7; - BTVSI.A7R7.B2:BTVSI088, at= 235.844+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 181629, from= IP7; - DFBAN.7R7.B2:DFBAN, at= 259.8215+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52996863, assembly_id= 104689, from= IP7; - BPM_A.7R7.B2:BPM_A, at= 261.632+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378034, assembly_id= 103538, from= IP7; -MQ.7R7.B2:MQ, at= 264.179+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307939, assembly_id= 103538, from= IP7; - MQTLI.7R7.B2:MQTLI, at= 266.548+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307141, assembly_id= 103538, from= IP7; - MCBCV.7R7.B2:MCBCV, at= 267.838+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252659, assembly_id= 103538, from= IP7; -S.DS.R7.B2:OMK, at= 268.904+(0-IP7OFS.B2)*DS, slot_id= 100932, from= IP7; - MCO.8R7.B2:MCO_UNPLUGGED, at= 269.248+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252662, assembly_id= 103539, from= IP7; - MCD.8R7.B2:MCD, at= 269.2495+(0-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252663, assembly_id= 103539, from= IP7; - MB.A8R7.B2:MB, at= 276.734+(-.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842130, assembly_id= 103539, from= IP7; - MCS.A8R7.B2:MCS, at= 284.158+(-1-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247576, assembly_id= 103539, from= IP7; - MB.B8R7.B2:MB, at= 292.394+(-1.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842154, assembly_id= 103540, from= IP7; - MCS.B8R7.B2:MCS, at= 299.818+(-2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247579, assembly_id= 103540, from= IP7; - BPM.8R7.B2:BPM, at= 300.697+(-2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247581, assembly_id= 103541, from= IP7; -MQ.8R7.B2:MQ, at= 303.244+(-2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307946, assembly_id= 103541, from= IP7; - MQTLI.8R7.B2:MQTLI, at= 305.613+(-2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307149, assembly_id= 103541, from= IP7; - MCBCH.8R7.B2:MCBCH, at= 306.903+(-2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252665, assembly_id= 103541, from= IP7; - MCO.9R7.B2:MCO_UNPLUGGED, at= 308.313+(-2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252668, assembly_id= 103542, from= IP7; - MCD.9R7.B2:MCD, at= 308.3145+(-2-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252669, assembly_id= 103542, from= IP7; - MB.A9R7.B2:MB, at= 315.799+(-2.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842178, assembly_id= 103542, from= IP7; - MCS.A9R7.B2:MCS, at= 323.223+(-3-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247589, assembly_id= 103542, from= IP7; - MB.B9R7.B2:MB, at= 331.459+(-3.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842202, assembly_id= 103543, from= IP7; - MCS.B9R7.B2:MCS, at= 338.883+(-4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247592, assembly_id= 103543, from= IP7; - BPM.9R7.B2:BPM, at= 339.763+(-4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247594, assembly_id= 103544, from= IP7; -MQ.9R7.B2:MQ, at= 342.31+(-4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307954, assembly_id= 103544, from= IP7; - MQTLI.A9R7.B2:MQTLI, at= 344.679+(-4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307156, assembly_id= 103544, from= IP7; - MQTLI.B9R7.B2:MQTLI, at= 346.134+(-4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307164, assembly_id= 103544, from= IP7; - MCBCV.9R7.B2:MCBCV, at= 347.424+(-4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252671, assembly_id= 103544, from= IP7; - MCO.10R7.B2:MCO_UNPLUGGED, at= 348.778+(-4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252674, assembly_id= 103545, from= IP7; - MCD.10R7.B2:MCD, at= 348.7795+(-4-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252675, assembly_id= 103545, from= IP7; - MB.A10R7.B2:MB, at= 356.264+(-4.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842226, assembly_id= 103545, from= IP7; - MCS.A10R7.B2:MCS, at= 363.688+(-5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247603, assembly_id= 103545, from= IP7; - MB.B10R7.B2:MB, at= 371.924+(-5.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842250, assembly_id= 103546, from= IP7; - MCS.B10R7.B2:MCS, at= 379.348+(-6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247606, assembly_id= 103546, from= IP7; - BPM.10R7.B2:BPM, at= 380.227+(-6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247608, assembly_id= 103547, from= IP7; -MQ.10R7.B2:MQ, at= 382.774+(-6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308649, assembly_id= 103547, from= IP7; - MQTLI.10R7.B2:MQTLI, at= 385.143+(-6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307337, assembly_id= 103547, from= IP7; - MCBCH.10R7.B2:MCBCH, at= 386.433+(-6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252677, assembly_id= 103547, from= IP7; - MCO.11R7.B2:MCO_UNPLUGGED, at= 387.843+(-6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252680, assembly_id= 103548, from= IP7; - MCD.11R7.B2:MCD, at= 387.8445+(-6-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252681, assembly_id= 103548, from= IP7; - MB.A11R7.B2:MB, at= 395.329+(-6.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842274, assembly_id= 103548, from= IP7; - MCS.A11R7.B2:MCS, at= 402.753+(-7-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247616, assembly_id= 103548, from= IP7; - MB.B11R7.B2:MB, at= 410.989+(-7.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842298, assembly_id= 103549, from= IP7; - MCS.B11R7.B2:MCS, at= 418.413+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247619, assembly_id= 103549, from= IP7; - LEDR.11R7.B2:LEDR, at= 425.67735+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52997790, assembly_id= 103550, from= IP7; - BPM.11R7.B2:BPM, at= 433.0087+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247621, assembly_id= 103551, from= IP7; -MQ.11R7.B2:MQ, at= 435.5557+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348496, assembly_id= 103551, from= IP7; - MQTLI.11R7.B2:MQTLI, at= 437.9247+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307365, assembly_id= 103551, from= IP7; - MS.11R7.B2:MS, at= 438.9367+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252683, assembly_id= 103551, from= IP7; - MCBV.11R7.B2:MCBV, at= 439.5297+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252685, assembly_id= 103551, from= IP7; -S.ARC.78.B2:OMK, at= 440.2807+(-8-IP7OFS.B2)*DS, slot_id= 100932, from= IP7; - MCO.A12R7.B2:MCO_UNPLUGGED, at= 440.6247+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252688, assembly_id= 103552, from= IP7; - MCD.A12R7.B2:MCD, at= 440.6262+(-8-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252689, assembly_id= 103552, from= IP7; - MB.A12R7.B2:MB, at= 448.1107+(-8.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842322, assembly_id= 103552, from= IP7; - MCS.A12R7.B2:MCS, at= 455.5347+(-9-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247629, assembly_id= 103552, from= IP7; - MB.B12R7.B2:MB, at= 463.7707+(-9.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842346, assembly_id= 103553, from= IP7; - MCS.B12R7.B2:MCS, at= 471.1947+(-10-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247632, assembly_id= 103553, from= IP7; - MCO.B12R7.B2:MCO_UNPLUGGED, at= 471.9447+(-10-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252692, assembly_id= 103554, from= IP7; - MCD.B12R7.B2:MCD, at= 471.9462+(-10-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252693, assembly_id= 103554, from= IP7; - MB.C12R7.B2:MB, at= 479.4307+(-10.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842370, assembly_id= 103554, from= IP7; - MCS.C12R7.B2:MCS, at= 486.8547+(-11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247637, assembly_id= 103554, from= IP7; - BPM.12R7.B2:BPM, at= 487.7337+(-11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247639, assembly_id= 103555, from= IP7; - MQT.12R7.B2:MQT, at= 488.4877+(-11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307712, assembly_id= 103555, from= IP7; -MQ.12R7.B2:MQ, at= 490.4957+(-11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308470, assembly_id= 103555, from= IP7; - MS.12R7.B2:MS, at= 492.3907+(-11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252695, assembly_id= 103555, from= IP7; - MCBH.12R7.B2:MCBH, at= 492.9837+(-11-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252697, assembly_id= 103555, from= IP7; - MB.A13R7.B2:MB, at= 501.5607+(-11.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842394, assembly_id= 103556, from= IP7; - MCS.A13R7.B2:MCS, at= 508.9847+(-12-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247645, assembly_id= 103556, from= IP7; - MCO.13R7.B2:MCO_UNPLUGGED, at= 509.7347+(-12-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252700, assembly_id= 103557, from= IP7; - MCD.13R7.B2:MCD, at= 509.7362+(-12-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252701, assembly_id= 103557, from= IP7; - MB.B13R7.B2:MB, at= 517.2207+(-12.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842418, assembly_id= 103557, from= IP7; - MCS.B13R7.B2:MCS, at= 524.6447+(-13-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247650, assembly_id= 103557, from= IP7; - MB.C13R7.B2:MB, at= 532.8807+(-13.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842442, assembly_id= 103558, from= IP7; - MCS.C13R7.B2:MCS, at= 540.3047+(-14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247653, assembly_id= 103558, from= IP7; - BPM.13R7.B2:BPM, at= 541.1837+(-14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247655, assembly_id= 103559, from= IP7; - MQT.13R7.B2:MQT, at= 541.9377+(-14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307504, assembly_id= 103559, from= IP7; -MQ.13R7.B2:MQ, at= 543.9457+(-14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308500, assembly_id= 103559, from= IP7; - MS.13R7.B2:MS, at= 545.8407+(-14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252703, assembly_id= 103559, from= IP7; - MCBV.13R7.B2:MCBV, at= 546.4337+(-14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252705, assembly_id= 103559, from= IP7; -E.DS.R7.B2:OMK, at= 547.1807+(-14-IP7OFS.B2)*DS, slot_id= 100932, from= IP7; - MCO.A14R7.B2:MCO_UNPLUGGED, at= 547.5247+(-14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252708, assembly_id= 103560, from= IP7; - MCD.A14R7.B2:MCD, at= 547.5262+(-14-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252709, assembly_id= 103560, from= IP7; - MB.A14R7.B2:MB, at= 555.0107+(-14.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842466, assembly_id= 103560, from= IP7; - MCS.A14R7.B2:MCS, at= 562.4347+(-15-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247663, assembly_id= 103560, from= IP7; - MB.B14R7.B2:MB, at= 570.6707+(-15.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842490, assembly_id= 103561, from= IP7; - MCS.B14R7.B2:MCS, at= 578.0947+(-16-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247666, assembly_id= 103561, from= IP7; - MCO.B14R7.B2:MCO_UNPLUGGED, at= 578.8447+(-16-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252712, assembly_id= 103562, from= IP7; - MCD.B14R7.B2:MCD, at= 578.8462+(-16-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252713, assembly_id= 103562, from= IP7; - MB.C14R7.B2:MB, at= 586.3307+(-16.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842514, assembly_id= 103562, from= IP7; - MCS.C14R7.B2:MCS, at= 593.7547+(-17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247671, assembly_id= 103562, from= IP7; - BPM.14R7.B2:BPM, at= 594.6337+(-17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247673, assembly_id= 103563, from= IP7; - MQT.14R7.B2:MQT, at= 595.3877+(-17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307536, assembly_id= 103563, from= IP7; -MQ.14R7.B2:MQ, at= 597.3957+(-17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308529, assembly_id= 103563, from= IP7; - MS.14R7.B2:MS, at= 599.2907+(-17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252715, assembly_id= 103563, from= IP7; - MCBH.14R7.B2:MCBH, at= 599.8837+(-17-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252717, assembly_id= 103563, from= IP7; - MB.A15R7.B2:MB, at= 608.4607+(-17.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842538, assembly_id= 103564, from= IP7; - MCS.A15R7.B2:MCS, at= 615.8847+(-18-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247679, assembly_id= 103564, from= IP7; - MCO.15R7.B2:MCO_UNPLUGGED, at= 616.6347+(-18-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252720, assembly_id= 103565, from= IP7; - MCD.15R7.B2:MCD, at= 616.6362+(-18-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252721, assembly_id= 103565, from= IP7; - MB.B15R7.B2:MB, at= 624.1207+(-18.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842562, assembly_id= 103565, from= IP7; - MCS.B15R7.B2:MCS, at= 631.5447+(-19-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247684, assembly_id= 103565, from= IP7; - MB.C15R7.B2:MB, at= 639.7807+(-19.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842586, assembly_id= 103566, from= IP7; - MCS.C15R7.B2:MCS, at= 647.2047+(-20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247687, assembly_id= 103566, from= IP7; - BPM.15R7.B2:BPM, at= 648.0837+(-20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247689, assembly_id= 103567, from= IP7; - MQT.15R7.B2:MQT, at= 648.8377+(-20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307568, assembly_id= 103567, from= IP7; -MQ.15R7.B2:MQ, at= 650.8457+(-20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308560, assembly_id= 103567, from= IP7; - MS.15R7.B2:MS, at= 652.7407+(-20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252723, assembly_id= 103567, from= IP7; - MCBV.15R7.B2:MCBV, at= 653.3337+(-20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252725, assembly_id= 103567, from= IP7; - MCO.A16R7.B2:MCO_UNPLUGGED, at= 654.4247+(-20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252728, assembly_id= 103568, from= IP7; - MCD.A16R7.B2:MCD, at= 654.4262+(-20-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252729, assembly_id= 103568, from= IP7; - MB.A16R7.B2:MB, at= 661.9107+(-20.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842610, assembly_id= 103568, from= IP7; - MCS.A16R7.B2:MCS, at= 669.3347+(-21-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247697, assembly_id= 103568, from= IP7; - MB.B16R7.B2:MB, at= 677.5707+(-21.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842634, assembly_id= 103569, from= IP7; - MCS.B16R7.B2:MCS, at= 684.9947+(-22-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247700, assembly_id= 103569, from= IP7; - MCO.B16R7.B2:MCO_UNPLUGGED, at= 685.7447+(-22-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252732, assembly_id= 103570, from= IP7; - MCD.B16R7.B2:MCD, at= 685.7462+(-22-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252733, assembly_id= 103570, from= IP7; - MB.C16R7.B2:MB, at= 693.2307+(-22.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842658, assembly_id= 103570, from= IP7; - MCS.C16R7.B2:MCS, at= 700.6547+(-23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247705, assembly_id= 103570, from= IP7; - BPM.16R7.B2:BPM, at= 701.5337+(-23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247707, assembly_id= 103571, from= IP7; - MQT.16R7.B2:MQT, at= 702.2877+(-23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348447, assembly_id= 103571, from= IP7; -MQ.16R7.B2:MQ, at= 704.2957+(-23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348480, assembly_id= 103571, from= IP7; - MS.16R7.B2:MS, at= 706.1907+(-23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252735, assembly_id= 103571, from= IP7; - MCBH.16R7.B2:MCBH, at= 706.7837+(-23-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252737, assembly_id= 103571, from= IP7; - MB.A17R7.B2:MB, at= 715.3607+(-23.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842682, assembly_id= 103572, from= IP7; - MCS.A17R7.B2:MCS, at= 722.7847+(-24-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247713, assembly_id= 103572, from= IP7; - MCO.17R7.B2:MCO_UNPLUGGED, at= 723.5347+(-24-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252740, assembly_id= 103573, from= IP7; - MCD.17R7.B2:MCD, at= 723.5362+(-24-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252741, assembly_id= 103573, from= IP7; - MB.B17R7.B2:MB, at= 731.0207+(-24.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842706, assembly_id= 103573, from= IP7; - MCS.B17R7.B2:MCS, at= 738.4447+(-25-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247718, assembly_id= 103573, from= IP7; - MB.C17R7.B2:MB, at= 746.6807+(-25.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842730, assembly_id= 103574, from= IP7; - MCS.C17R7.B2:MCS, at= 754.1047+(-26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247721, assembly_id= 103574, from= IP7; - BPM.17R7.B2:BPM, at= 754.9837+(-26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247723, assembly_id= 103575, from= IP7; - MQT.17R7.B2:MQT, at= 755.7377+(-26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307392, assembly_id= 103575, from= IP7; -MQ.17R7.B2:MQ, at= 757.7457+(-26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308382, assembly_id= 103575, from= IP7; - MS.17R7.B2:MS, at= 759.6407+(-26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252743, assembly_id= 103575, from= IP7; - MCBV.17R7.B2:MCBV, at= 760.2337+(-26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252745, assembly_id= 103575, from= IP7; - MCO.A18R7.B2:MCO_UNPLUGGED, at= 761.3247+(-26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252748, assembly_id= 103576, from= IP7; - MCD.A18R7.B2:MCD, at= 761.3262+(-26-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252749, assembly_id= 103576, from= IP7; - MB.A18R7.B2:MB, at= 768.8107+(-26.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842754, assembly_id= 103576, from= IP7; - MCS.A18R7.B2:MCS, at= 776.2347+(-27-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247731, assembly_id= 103576, from= IP7; - MB.B18R7.B2:MB, at= 784.4707+(-27.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842778, assembly_id= 103577, from= IP7; - MCS.B18R7.B2:MCS, at= 791.8947+(-28-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247734, assembly_id= 103577, from= IP7; - MCO.B18R7.B2:MCO_UNPLUGGED, at= 792.6447+(-28-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252752, assembly_id= 103578, from= IP7; - MCD.B18R7.B2:MCD, at= 792.6462+(-28-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252753, assembly_id= 103578, from= IP7; - MB.C18R7.B2:MB, at= 800.1307+(-28.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842802, assembly_id= 103578, from= IP7; - MCS.C18R7.B2:MCS, at= 807.5547+(-29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247739, assembly_id= 103578, from= IP7; - BPM.18R7.B2:BPM, at= 808.4337+(-29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247741, assembly_id= 103579, from= IP7; - MQT.18R7.B2:MQT, at= 809.1877+(-29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307424, assembly_id= 103579, from= IP7; -MQ.18R7.B2:MQ, at= 811.1957+(-29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308413, assembly_id= 103579, from= IP7; - MS.18R7.B2:MS, at= 813.0907+(-29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252755, assembly_id= 103579, from= IP7; - MCBH.18R7.B2:MCBH, at= 813.6837+(-29-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252757, assembly_id= 103579, from= IP7; - MB.A19R7.B2:MB, at= 822.2607+(-29.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842826, assembly_id= 103580, from= IP7; - MCS.A19R7.B2:MCS, at= 829.6847+(-30-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247747, assembly_id= 103580, from= IP7; - MCO.19R7.B2:MCO_UNPLUGGED, at= 830.4347+(-30-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252760, assembly_id= 103581, from= IP7; - MCD.19R7.B2:MCD, at= 830.4362+(-30-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252761, assembly_id= 103581, from= IP7; - MB.B19R7.B2:MB, at= 837.9207+(-30.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842850, assembly_id= 103581, from= IP7; - MCS.B19R7.B2:MCS, at= 845.3447+(-31-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247752, assembly_id= 103581, from= IP7; - MB.C19R7.B2:MB, at= 853.5807+(-31.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842874, assembly_id= 103582, from= IP7; - MCS.C19R7.B2:MCS, at= 861.0047+(-32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247755, assembly_id= 103582, from= IP7; - BPM.19R7.B2:BPM, at= 861.8837+(-32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247757, assembly_id= 103583, from= IP7; - MQT.19R7.B2:MQT, at= 862.6377+(-32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307454, assembly_id= 103583, from= IP7; -MQ.19R7.B2:MQ, at= 864.6457+(-32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308445, assembly_id= 103583, from= IP7; - MS.19R7.B2:MS, at= 866.5407+(-32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252763, assembly_id= 103583, from= IP7; - MCBV.19R7.B2:MCBV, at= 867.1337+(-32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252765, assembly_id= 103583, from= IP7; - MCO.A20R7.B2:MCO_UNPLUGGED, at= 868.2247+(-32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252768, assembly_id= 103584, from= IP7; - MCD.A20R7.B2:MCD, at= 868.2262+(-32-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252769, assembly_id= 103584, from= IP7; - MB.A20R7.B2:MB, at= 875.7107+(-32.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842898, assembly_id= 103584, from= IP7; - MCS.A20R7.B2:MCS, at= 883.1347+(-33-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247765, assembly_id= 103584, from= IP7; - MB.B20R7.B2:MB, at= 891.3707+(-33.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842922, assembly_id= 103585, from= IP7; - MCS.B20R7.B2:MCS, at= 898.7947+(-34-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247768, assembly_id= 103585, from= IP7; - MCO.B20R7.B2:MCO_UNPLUGGED, at= 899.5447+(-34-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252772, assembly_id= 103586, from= IP7; - MCD.B20R7.B2:MCD, at= 899.5462+(-34-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252773, assembly_id= 103586, from= IP7; - MB.C20R7.B2:MB, at= 907.0307+(-34.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842946, assembly_id= 103586, from= IP7; - MCS.C20R7.B2:MCS, at= 914.4547+(-35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247773, assembly_id= 103586, from= IP7; - BPM.20R7.B2:BPM, at= 915.3337+(-35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247775, assembly_id= 103587, from= IP7; - MQT.20R7.B2:MQT, at= 916.0877+(-35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307484, assembly_id= 103587, from= IP7; -MQ.20R7.B2:MQ, at= 918.0957+(-35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308235, assembly_id= 103587, from= IP7; - MS.20R7.B2:MS, at= 919.9907+(-35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252775, assembly_id= 103587, from= IP7; - MCBH.20R7.B2:MCBH, at= 920.5837+(-35-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252777, assembly_id= 103587, from= IP7; - MB.A21R7.B2:MB, at= 929.1607+(-35.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842970, assembly_id= 103588, from= IP7; - MCS.A21R7.B2:MCS, at= 936.5847+(-36-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247781, assembly_id= 103588, from= IP7; - MCO.21R7.B2:MCO_UNPLUGGED, at= 937.3347+(-36-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252780, assembly_id= 103589, from= IP7; - MCD.21R7.B2:MCD, at= 937.3362+(-36-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252781, assembly_id= 103589, from= IP7; - MB.B21R7.B2:MB, at= 944.8207+(-36.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52842994, assembly_id= 103589, from= IP7; - MCS.B21R7.B2:MCS, at= 952.2447+(-37-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247786, assembly_id= 103589, from= IP7; - MB.C21R7.B2:MB, at= 960.4807+(-37.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843018, assembly_id= 103590, from= IP7; - MCS.C21R7.B2:MCS, at= 967.9047+(-38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247789, assembly_id= 103590, from= IP7; - BPM.21R7.B2:BPM, at= 968.7837+(-38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247791, assembly_id= 103591, from= IP7; - MQT.21R7.B2:MQT, at= 969.5377+(-38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307282, assembly_id= 103591, from= IP7; -MQ.21R7.B2:MQ, at= 971.5457+(-38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308266, assembly_id= 103591, from= IP7; - MS.21R7.B2:MS, at= 973.4407+(-38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252783, assembly_id= 103591, from= IP7; - MCBV.21R7.B2:MCBV, at= 974.0337+(-38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252785, assembly_id= 103591, from= IP7; - MCO.A22R7.B2:MCO_UNPLUGGED, at= 975.1247+(-38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252788, assembly_id= 103592, from= IP7; - MCD.A22R7.B2:MCD, at= 975.1262+(-38-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252789, assembly_id= 103592, from= IP7; - MB.A22R7.B2:MB, at= 982.6107+(-38.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843042, assembly_id= 103592, from= IP7; - MCS.A22R7.B2:MCS, at= 990.0347+(-39-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247799, assembly_id= 103592, from= IP7; - MB.B22R7.B2:MB, at= 998.2707+(-39.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843066, assembly_id= 103593, from= IP7; - MCS.B22R7.B2:MCS, at= 1005.6947+(-40-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247802, assembly_id= 103593, from= IP7; - MCO.B22R7.B2:MCO_UNPLUGGED, at= 1006.4447+(-40-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252792, assembly_id= 103594, from= IP7; - MCD.B22R7.B2:MCD, at= 1006.4462+(-40-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252793, assembly_id= 103594, from= IP7; - MB.C22R7.B2:MB, at= 1013.9307+(-40.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843090, assembly_id= 103594, from= IP7; - MCS.C22R7.B2:MCS, at= 1021.3547+(-41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247807, assembly_id= 103594, from= IP7; - BPM.22R7.B2:BPM, at= 1022.2337+(-41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247809, assembly_id= 103595, from= IP7; - MO.22R7.B2:MO, at= 1022.9847+(-41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308825, assembly_id= 103595, from= IP7; -MQ.22R7.B2:MQ, at= 1024.9957+(-41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308298, assembly_id= 103595, from= IP7; - MS.22R7.B2:MS, at= 1026.8907+(-41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252795, assembly_id= 103595, from= IP7; - MCBH.22R7.B2:MCBH, at= 1027.4837+(-41-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252797, assembly_id= 103595, from= IP7; - MB.A23R7.B2:MB, at= 1036.0607+(-41.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843114, assembly_id= 103596, from= IP7; - MCS.A23R7.B2:MCS, at= 1043.4847+(-42-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247815, assembly_id= 103596, from= IP7; - MCO.23R7.B2:MCO_UNPLUGGED, at= 1044.2347+(-42-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252800, assembly_id= 103597, from= IP7; - MCD.23R7.B2:MCD, at= 1044.2362+(-42-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252801, assembly_id= 103597, from= IP7; - MB.B23R7.B2:MB, at= 1051.7207+(-42.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843138, assembly_id= 103597, from= IP7; - MCS.B23R7.B2:MCS, at= 1059.1447+(-43-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247820, assembly_id= 103597, from= IP7; - MB.C23R7.B2:MB, at= 1067.3807+(-43.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843162, assembly_id= 103598, from= IP7; - MCS.C23R7.B2:MCS, at= 1074.8047+(-44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247823, assembly_id= 103598, from= IP7; - BPM.23R7.B2:BPM, at= 1075.6837+(-44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247825, assembly_id= 103599, from= IP7; - MQS.23R7.B2:MQS, at= 1076.4377+(-44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307648, assembly_id= 103599, from= IP7; -MQ.23R7.B2:MQ, at= 1078.4457+(-44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308087, assembly_id= 103599, from= IP7; - MS.23R7.B2:MS, at= 1080.3407+(-44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252803, assembly_id= 103599, from= IP7; - MCBV.23R7.B2:MCBV, at= 1080.9337+(-44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252805, assembly_id= 103599, from= IP7; - MCO.A24R7.B2:MCO_UNPLUGGED, at= 1082.0247+(-44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252808, assembly_id= 103600, from= IP7; - MCD.A24R7.B2:MCD, at= 1082.0262+(-44-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252809, assembly_id= 103600, from= IP7; - MB.A24R7.B2:MB, at= 1089.5107+(-44.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843186, assembly_id= 103600, from= IP7; - MCS.A24R7.B2:MCS, at= 1096.9347+(-45-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247833, assembly_id= 103600, from= IP7; - MB.B24R7.B2:MB, at= 1105.1707+(-45.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843210, assembly_id= 103601, from= IP7; - MCS.B24R7.B2:MCS, at= 1112.5947+(-46-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247836, assembly_id= 103601, from= IP7; - MCO.B24R7.B2:MCO_UNPLUGGED, at= 1113.3447+(-46-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252812, assembly_id= 103602, from= IP7; - MCD.B24R7.B2:MCD, at= 1113.3462+(-46-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252813, assembly_id= 103602, from= IP7; - MB.C24R7.B2:MB, at= 1120.8307+(-46.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843234, assembly_id= 103602, from= IP7; - MCS.C24R7.B2:MCS, at= 1128.2547+(-47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247841, assembly_id= 103602, from= IP7; - BPM.24R7.B2:BPM, at= 1129.1337+(-47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247843, assembly_id= 103603, from= IP7; - MO.24R7.B2:MO, at= 1129.8847+(-47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308856, assembly_id= 103603, from= IP7; -MQ.24R7.B2:MQ, at= 1131.8957+(-47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308119, assembly_id= 103603, from= IP7; - MS.24R7.B2:MS, at= 1133.7907+(-47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252815, assembly_id= 103603, from= IP7; - MCBH.24R7.B2:MCBH, at= 1134.3837+(-47-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252817, assembly_id= 103603, from= IP7; - MB.A25R7.B2:MB, at= 1142.9607+(-47.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843258, assembly_id= 103604, from= IP7; - MCS.A25R7.B2:MCS, at= 1150.3847+(-48-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247849, assembly_id= 103604, from= IP7; - MCO.25R7.B2:MCO_UNPLUGGED, at= 1151.1347+(-48-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252820, assembly_id= 103605, from= IP7; - MCD.25R7.B2:MCD, at= 1151.1362+(-48-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252821, assembly_id= 103605, from= IP7; - MB.B25R7.B2:MB, at= 1158.6207+(-48.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843282, assembly_id= 103605, from= IP7; - MCS.B25R7.B2:MCS, at= 1166.0447+(-49-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247854, assembly_id= 103605, from= IP7; - MB.C25R7.B2:MB, at= 1174.2807+(-49.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843306, assembly_id= 103606, from= IP7; - MCS.C25R7.B2:MCS, at= 1181.7047+(-50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247857, assembly_id= 103606, from= IP7; - BPM.25R7.B2:BPM, at= 1182.5837+(-50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247859, assembly_id= 103607, from= IP7; - MO.25R7.B2:MO, at= 1183.3347+(-50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308888, assembly_id= 103607, from= IP7; -MQ.25R7.B2:MQ, at= 1185.3457+(-50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308151, assembly_id= 103607, from= IP7; - MS.25R7.B2:MS, at= 1187.2407+(-50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252823, assembly_id= 103607, from= IP7; - MCBV.25R7.B2:MCBV, at= 1187.8337+(-50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252825, assembly_id= 103607, from= IP7; - MCO.A26R7.B2:MCO_UNPLUGGED, at= 1188.9247+(-50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252828, assembly_id= 103608, from= IP7; - MCD.A26R7.B2:MCD, at= 1188.9262+(-50-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252829, assembly_id= 103608, from= IP7; - MB.A26R7.B2:MB, at= 1196.4107+(-50.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843330, assembly_id= 103608, from= IP7; - MCS.A26R7.B2:MCS, at= 1203.8347+(-51-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247867, assembly_id= 103608, from= IP7; - MB.B26R7.B2:MB, at= 1212.0707+(-51.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843354, assembly_id= 103609, from= IP7; - MCS.B26R7.B2:MCS, at= 1219.4947+(-52-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247870, assembly_id= 103609, from= IP7; - MCO.B26R7.B2:MCO_UNPLUGGED, at= 1220.2447+(-52-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252832, assembly_id= 103610, from= IP7; - MCD.B26R7.B2:MCD, at= 1220.2462+(-52-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252833, assembly_id= 103610, from= IP7; - MB.C26R7.B2:MB, at= 1227.7307+(-52.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843378, assembly_id= 103610, from= IP7; - MCS.C26R7.B2:MCS, at= 1235.1547+(-53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247875, assembly_id= 103610, from= IP7; - BPM.26R7.B2:BPM, at= 1236.0337+(-53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247877, assembly_id= 103611, from= IP7; - MO.26R7.B2:MO, at= 1236.7847+(-53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308919, assembly_id= 103611, from= IP7; -MQ.26R7.B2:MQ, at= 1238.7957+(-53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308181, assembly_id= 103611, from= IP7; - MS.26R7.B2:MS, at= 1240.6907+(-53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252835, assembly_id= 103611, from= IP7; - MCBH.26R7.B2:MCBH, at= 1241.2837+(-53-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252837, assembly_id= 103611, from= IP7; - MB.A27R7.B2:MB, at= 1249.8607+(-53.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843402, assembly_id= 103612, from= IP7; - MCS.A27R7.B2:MCS, at= 1257.2847+(-54-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247883, assembly_id= 103612, from= IP7; - MCO.27R7.B2:MCO_UNPLUGGED, at= 1258.0347+(-54-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252840, assembly_id= 103613, from= IP7; - MCD.27R7.B2:MCD, at= 1258.0362+(-54-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252841, assembly_id= 103613, from= IP7; - MB.B27R7.B2:MB, at= 1265.5207+(-54.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843426, assembly_id= 103613, from= IP7; - MCS.B27R7.B2:MCS, at= 1272.9447+(-55-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247888, assembly_id= 103613, from= IP7; - MB.C27R7.B2:MB, at= 1281.1807+(-55.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843450, assembly_id= 103614, from= IP7; - MCS.C27R7.B2:MCS_UNPLUGGED, at= 1288.6047+(-56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247891, assembly_id= 103614, from= IP7; - BPM.27R7.B2:BPM, at= 1289.4837+(-56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247893, assembly_id= 103615, from= IP7; - MQS.27R7.B2:MQS, at= 1290.2377+(-56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307680, assembly_id= 103615, from= IP7; -MQ.27R7.B2:MQ, at= 1292.2457+(-56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307971, assembly_id= 103615, from= IP7; - MS.27R7.B2:MS, at= 1294.1407+(-56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252843, assembly_id= 103615, from= IP7; - MCBV.27R7.B2:MCBV, at= 1294.7337+(-56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252845, assembly_id= 103615, from= IP7; - MCO.A28R7.B2:MCO_UNPLUGGED, at= 1295.8247+(-56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252848, assembly_id= 103616, from= IP7; - MCD.A28R7.B2:MCD, at= 1295.8262+(-56-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252849, assembly_id= 103616, from= IP7; - MB.A28R7.B2:MB, at= 1303.3107+(-56.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843474, assembly_id= 103616, from= IP7; - MCS.A28R7.B2:MCS, at= 1310.7347+(-57-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247901, assembly_id= 103616, from= IP7; - MB.B28R7.B2:MB, at= 1318.9707+(-57.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843498, assembly_id= 103617, from= IP7; - MCS.B28R7.B2:MCS_UNPLUGGED, at= 1326.3947+(-58-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247904, assembly_id= 103617, from= IP7; - MCO.B28R7.B2:MCO_UNPLUGGED, at= 1327.1447+(-58-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252852, assembly_id= 103618, from= IP7; - MCD.B28R7.B2:MCD, at= 1327.1462+(-58-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252853, assembly_id= 103618, from= IP7; - MB.C28R7.B2:MB, at= 1334.6307+(-58.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843522, assembly_id= 103618, from= IP7; - MCS.C28R7.B2:MCS, at= 1342.0547+(-59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247909, assembly_id= 103618, from= IP7; - BPM.28R7.B2:BPM, at= 1342.9337+(-59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247911, assembly_id= 103619, from= IP7; - MO.28R7.B2:MO, at= 1343.6847+(-59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308709, assembly_id= 103619, from= IP7; -MQ.28R7.B2:MQ, at= 1345.6957+(-59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308003, assembly_id= 103619, from= IP7; - MS.28R7.B2:MS, at= 1347.5907+(-59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252855, assembly_id= 103619, from= IP7; - MCBH.28R7.B2:MCBH, at= 1348.1837+(-59-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252857, assembly_id= 103619, from= IP7; - MB.A29R7.B2:MB, at= 1356.7607+(-59.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843546, assembly_id= 103620, from= IP7; - MCS.A29R7.B2:MCS_UNPLUGGED, at= 1364.1847+(-60-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247917, assembly_id= 103620, from= IP7; - MCO.29R7.B2:MCO_UNPLUGGED, at= 1364.9347+(-60-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252860, assembly_id= 103621, from= IP7; - MCD.29R7.B2:MCD, at= 1364.9362+(-60-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252861, assembly_id= 103621, from= IP7; - MB.B29R7.B2:MB, at= 1372.4207+(-60.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843570, assembly_id= 103621, from= IP7; - MCS.B29R7.B2:MCS, at= 1379.8447+(-61-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247922, assembly_id= 103621, from= IP7; - MB.C29R7.B2:MB, at= 1388.0807+(-61.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843594, assembly_id= 103622, from= IP7; - MCS.C29R7.B2:MCS_UNPLUGGED, at= 1395.5047+(-62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247925, assembly_id= 103622, from= IP7; - BPM.29R7.B2:BPM, at= 1396.3837+(-62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247927, assembly_id= 103623, from= IP7; - MO.29R7.B2:MO, at= 1397.1347+(-62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308741, assembly_id= 103623, from= IP7; -MQ.29R7.B2:MQ, at= 1399.1457+(-62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308033, assembly_id= 103623, from= IP7; - MS.29R7.B2:MS, at= 1401.0407+(-62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252863, assembly_id= 103623, from= IP7; - MCBV.29R7.B2:MCBV, at= 1401.6337+(-62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252865, assembly_id= 103623, from= IP7; - MCO.A30R7.B2:MCO_UNPLUGGED, at= 1402.7247+(-62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252868, assembly_id= 103624, from= IP7; - MCD.A30R7.B2:MCD, at= 1402.7262+(-62-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252869, assembly_id= 103624, from= IP7; - MB.A30R7.B2:MB, at= 1410.2107+(-62.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843618, assembly_id= 103624, from= IP7; - MCS.A30R7.B2:MCS, at= 1417.6347+(-63-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247935, assembly_id= 103624, from= IP7; - MB.B30R7.B2:MB, at= 1425.8707+(-63.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843642, assembly_id= 103625, from= IP7; - MCS.B30R7.B2:MCS, at= 1433.2947+(-64-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247938, assembly_id= 103625, from= IP7; - MCO.B30R7.B2:MCO_UNPLUGGED, at= 1434.0447+(-64-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252872, assembly_id= 103626, from= IP7; - MCD.B30R7.B2:MCD, at= 1434.0462+(-64-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252873, assembly_id= 103626, from= IP7; - MB.C30R7.B2:MB, at= 1441.5307+(-64.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843666, assembly_id= 103626, from= IP7; - MCS.C30R7.B2:MCS, at= 1448.9547+(-65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247943, assembly_id= 103626, from= IP7; - BPM.30R7.B2:BPM, at= 1449.8337+(-65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247945, assembly_id= 103627, from= IP7; - MO.30R7.B2:MO, at= 1450.5847+(-65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348499, assembly_id= 103627, from= IP7; -MQ.30R7.B2:MQ, at= 1452.5957+(-65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308063, assembly_id= 103627, from= IP7; - MSS.30R7.B2:MSS, at= 1454.4907+(-65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252875, assembly_id= 103627, from= IP7; - MCBH.30R7.B2:MCBH, at= 1455.0837+(-65-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252877, assembly_id= 103627, from= IP7; - MB.A31R7.B2:MB, at= 1463.6607+(-65.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843690, assembly_id= 103628, from= IP7; - MCS.A31R7.B2:MCS, at= 1471.0847+(-66-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247951, assembly_id= 103628, from= IP7; - MCO.31R7.B2:MCO_UNPLUGGED, at= 1471.8347+(-66-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252880, assembly_id= 103629, from= IP7; - MCD.31R7.B2:MCD, at= 1471.8362+(-66-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252881, assembly_id= 103629, from= IP7; - MB.B31R7.B2:MB, at= 1479.3207+(-66.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843714, assembly_id= 103629, from= IP7; - MCS.B31R7.B2:MCS, at= 1486.7447+(-67-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247956, assembly_id= 103629, from= IP7; - MB.C31R7.B2:MB, at= 1494.9807+(-67.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843738, assembly_id= 103630, from= IP7; - MCS.C31R7.B2:MCS, at= 1502.4047+(-68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247959, assembly_id= 103630, from= IP7; - BPM.31R7.B2:BPM, at= 1503.2837+(-68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247961, assembly_id= 103631, from= IP7; - MO.31R7.B2:MO, at= 1504.0347+(-68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308801, assembly_id= 103631, from= IP7; -MQ.31R7.B2:MQ, at= 1506.0457+(-68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307855, assembly_id= 103631, from= IP7; - MS.31R7.B2:MS, at= 1507.9407+(-68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252883, assembly_id= 103631, from= IP7; - MCBV.31R7.B2:MCBV, at= 1508.5337+(-68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252885, assembly_id= 103631, from= IP7; -S.CELL.78.B2:OMK, at= 1509.2807+(-68-IP7OFS.B2)*DS, slot_id= 100932, from= IP7; - MCO.A32R7.B2:MCO_UNPLUGGED, at= 1509.6247+(-68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252888, assembly_id= 103632, from= IP7; - MCD.A32R7.B2:MCD, at= 1509.6262+(-68-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252889, assembly_id= 103632, from= IP7; - MB.A32R7.B2:MB, at= 1517.1107+(-68.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843762, assembly_id= 103632, from= IP7; - MCS.A32R7.B2:MCS, at= 1524.5347+(-69-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247969, assembly_id= 103632, from= IP7; - MB.B32R7.B2:MB, at= 1532.7707+(-69.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843786, assembly_id= 103633, from= IP7; - MCS.B32R7.B2:MCS, at= 1540.1947+(-70-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247972, assembly_id= 103633, from= IP7; - MCO.B32R7.B2:MCO_UNPLUGGED, at= 1540.9447+(-70-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252892, assembly_id= 103634, from= IP7; - MCD.B32R7.B2:MCD, at= 1540.9462+(-70-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252893, assembly_id= 103634, from= IP7; - MB.C32R7.B2:MB, at= 1548.4307+(-70.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843810, assembly_id= 103634, from= IP7; - MCS.C32R7.B2:MCS, at= 1555.8547+(-71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247977, assembly_id= 103634, from= IP7; - BPM.32R7.B2:BPM, at= 1556.7337+(-71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247979, assembly_id= 103635, from= IP7; - MO.32R7.B2:MO, at= 1557.4847+(-71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308594, assembly_id= 103635, from= IP7; -MQ.32R7.B2:MQ, at= 1559.4957+(-71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307885, assembly_id= 103635, from= IP7; - MS.32R7.B2:MS, at= 1561.3907+(-71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252895, assembly_id= 103635, from= IP7; - MCBH.32R7.B2:MCBH, at= 1561.9837+(-71-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252897, assembly_id= 103635, from= IP7; - MB.A33R7.B2:MB, at= 1570.5607+(-71.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843834, assembly_id= 103636, from= IP7; - MCS.A33R7.B2:MCS, at= 1577.9847+(-72-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247985, assembly_id= 103636, from= IP7; - MCO.33R7.B2:MCO_UNPLUGGED, at= 1578.7347+(-72-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252900, assembly_id= 103637, from= IP7; - MCD.33R7.B2:MCD, at= 1578.7362+(-72-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252901, assembly_id= 103637, from= IP7; - MB.B33R7.B2:MB, at= 1586.2207+(-72.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843858, assembly_id= 103637, from= IP7; - MCS.B33R7.B2:MCS, at= 1593.6447+(-73-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247990, assembly_id= 103637, from= IP7; - MB.C33R7.B2:MB, at= 1601.8807+(-73.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843882, assembly_id= 103638, from= IP7; - MCS.C33R7.B2:MCS, at= 1609.3047+(-74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247993, assembly_id= 103638, from= IP7; - BPM.33R7.B2:BPM, at= 1610.1837+(-74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 247995, assembly_id= 103639, from= IP7; - MO.33R7.B2:MO, at= 1610.9347+(-74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308624, assembly_id= 103639, from= IP7; -MQ.33R7.B2:MQ, at= 1612.9457+(-74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307914, assembly_id= 103639, from= IP7; - MS.33R7.B2:MS, at= 1614.8407+(-74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252903, assembly_id= 103639, from= IP7; - MCBV.33R7.B2:MCBV, at= 1615.4337+(-74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252905, assembly_id= 103639, from= IP7; -E.CELL.78.B2:OMK, at= 1616.1807+(-74-IP7OFS.B2)*DS, slot_id= 100932, from= IP7; - MCO.A34R7.B2:MCO_UNPLUGGED, at= 1616.5247+(-74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252908, assembly_id= 103640, from= IP7; - MCD.A34R7.B2:MCD, at= 1616.5262+(-74-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252909, assembly_id= 103640, from= IP7; - MB.A34R7.B2:MB, at= 1624.0107+(-74.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843906, assembly_id= 103640, from= IP7; - MCS.A34R7.B2:MCS, at= 1631.4347+(-75-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248003, assembly_id= 103640, from= IP7; - MB.B34R7.B2:MB, at= 1639.6707+(-75.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843930, assembly_id= 103641, from= IP7; - MCS.B34R7.B2:MCS, at= 1647.0947+(-76-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248006, assembly_id= 103641, from= IP7; - MCO.B34R7.B2:MCO_UNPLUGGED, at= 1647.8447+(-76-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252912, assembly_id= 103642, from= IP7; - MCD.B34R7.B2:MCD, at= 1647.8462+(-76-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252913, assembly_id= 103642, from= IP7; - MB.C34R7.B2:MB, at= 1655.3307+(-76.5-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843954, assembly_id= 103642, from= IP7; - MCS.C34R7.B2:MCS, at= 1662.7547+(-77-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248011, assembly_id= 103642, from= IP7; - BPM.34R7.B2:BPM, at= 1663.6337+(-77-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248013, assembly_id= 103643, from= IP7; - MO.34R7.B2:MO, at= 1664.3847+(-77-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308639, assembly_id= 103643, from= IP7; -MQ.34R7.B2:MQ, at= 1666.3957+(-77-IP7OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307929, assembly_id= 103643, from= IP7; - MSS.34L8.B2:MSS, at= -1652.8497+(-77-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252915, assembly_id= 103643, from= IP8; - MCBH.34L8.B2:MCBH, at= -1652.2567+(-77-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252917, assembly_id= 103643, from= IP8; - MB.C34L8.B2:MB, at= -1643.6797+(-77.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52843978, assembly_id= 103644, from= IP8; - MCS.C34L8.B2:MCS, at= -1636.2557+(-78-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248019, assembly_id= 103644, from= IP8; - MCO.34L8.B2:MCO_UNPLUGGED, at= -1635.5057+(-78-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252920, assembly_id= 103645, from= IP8; - MCD.34L8.B2:MCD, at= -1635.5042+(-78-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252921, assembly_id= 103645, from= IP8; - MB.B34L8.B2:MB, at= -1628.0197+(-78.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844002, assembly_id= 103645, from= IP8; - MCS.B34L8.B2:MCS, at= -1620.5957+(-79-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248024, assembly_id= 103645, from= IP8; - MB.A34L8.B2:MB, at= -1612.3597+(-79.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844026, assembly_id= 103646, from= IP8; - MCS.A34L8.B2:MCS, at= -1604.9357+(-80-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248027, assembly_id= 103646, from= IP8; - BPM.33L8.B2:BPM, at= -1604.0567+(-80-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248029, assembly_id= 103647, from= IP8; - MO.33L8.B2:MO, at= -1603.3057+(-80-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308611, assembly_id= 103647, from= IP8; -MQ.33L8.B2:MQ, at= -1601.2947+(-80-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307901, assembly_id= 103647, from= IP8; - MS.33L8.B2:MS, at= -1599.3997+(-80-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252923, assembly_id= 103647, from= IP8; - MCBV.33L8.B2:MCBV, at= -1598.8067+(-80-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252925, assembly_id= 103647, from= IP8; - MCO.B33L8.B2:MCO_UNPLUGGED, at= -1597.7157+(-80-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252928, assembly_id= 103648, from= IP8; - MCD.B33L8.B2:MCD, at= -1597.7142+(-80-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252929, assembly_id= 103648, from= IP8; - MB.C33L8.B2:MB, at= -1590.2297+(-80.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844050, assembly_id= 103648, from= IP8; - MCS.C33L8.B2:MCS, at= -1582.8057+(-81-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248037, assembly_id= 103648, from= IP8; - MB.B33L8.B2:MB, at= -1574.5697+(-81.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844074, assembly_id= 103649, from= IP8; - MCS.B33L8.B2:MCS, at= -1567.1457+(-82-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248040, assembly_id= 103649, from= IP8; - MCO.A33L8.B2:MCO_UNPLUGGED, at= -1566.3957+(-82-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252932, assembly_id= 103650, from= IP8; - MCD.A33L8.B2:MCD, at= -1566.3942+(-82-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252933, assembly_id= 103650, from= IP8; - MB.A33L8.B2:MB, at= -1558.9097+(-82.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844098, assembly_id= 103650, from= IP8; - MCS.A33L8.B2:MCS, at= -1551.4857+(-83-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248045, assembly_id= 103650, from= IP8; - BPM.32L8.B2:BPM, at= -1550.6067+(-83-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248047, assembly_id= 103651, from= IP8; - MO.32L8.B2:MO, at= -1549.8557+(-83-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308580, assembly_id= 103651, from= IP8; -MQ.32L8.B2:MQ, at= -1547.8447+(-83-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307872, assembly_id= 103651, from= IP8; - MSS.32L8.B2:MSS, at= -1545.9497+(-83-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252935, assembly_id= 103651, from= IP8; - MCBH.32L8.B2:MCBH, at= -1545.3567+(-83-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252937, assembly_id= 103651, from= IP8; - MB.C32L8.B2:MB, at= -1536.7797+(-83.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844122, assembly_id= 103652, from= IP8; - MCS.C32L8.B2:MCS, at= -1529.3557+(-84-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248053, assembly_id= 103652, from= IP8; - MCO.32L8.B2:MCO_UNPLUGGED, at= -1528.6057+(-84-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252940, assembly_id= 103653, from= IP8; - MCD.32L8.B2:MCD, at= -1528.6042+(-84-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252941, assembly_id= 103653, from= IP8; - MB.B32L8.B2:MB, at= -1521.1197+(-84.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844146, assembly_id= 103653, from= IP8; - MCS.B32L8.B2:MCS, at= -1513.6957+(-85-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248058, assembly_id= 103653, from= IP8; - MB.A32L8.B2:MB, at= -1505.4597+(-85.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844170, assembly_id= 103654, from= IP8; - MCS.A32L8.B2:MCS, at= -1498.0357+(-86-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248061, assembly_id= 103654, from= IP8; - BPM.31L8.B2:BPM, at= -1497.1567+(-86-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248063, assembly_id= 103655, from= IP8; - MO.31L8.B2:MO, at= -1496.4057+(-86-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308788, assembly_id= 103655, from= IP8; -MQ.31L8.B2:MQ, at= -1494.3947+(-86-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308080, assembly_id= 103655, from= IP8; - MS.31L8.B2:MS, at= -1492.4997+(-86-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252943, assembly_id= 103655, from= IP8; - MCBV.31L8.B2:MCBV, at= -1491.9067+(-86-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252945, assembly_id= 103655, from= IP8; - MCO.B31L8.B2:MCO_UNPLUGGED, at= -1490.8157+(-86-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252948, assembly_id= 103656, from= IP8; - MCD.B31L8.B2:MCD, at= -1490.8142+(-86-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252949, assembly_id= 103656, from= IP8; - MB.C31L8.B2:MB, at= -1483.3297+(-86.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844194, assembly_id= 103656, from= IP8; - MCS.C31L8.B2:MCS, at= -1475.9057+(-87-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248071, assembly_id= 103656, from= IP8; - MB.B31L8.B2:MB, at= -1467.6697+(-87.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844218, assembly_id= 103657, from= IP8; - MCS.B31L8.B2:MCS, at= -1460.2457+(-88-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248074, assembly_id= 103657, from= IP8; - MCO.A31L8.B2:MCO_UNPLUGGED, at= -1459.4957+(-88-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252952, assembly_id= 103658, from= IP8; - MCD.A31L8.B2:MCD, at= -1459.4942+(-88-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252953, assembly_id= 103658, from= IP8; - MB.A31L8.B2:MB, at= -1452.0097+(-88.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844242, assembly_id= 103658, from= IP8; - MCS.A31L8.B2:MCS, at= -1444.5857+(-89-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248079, assembly_id= 103658, from= IP8; - BPM.30L8.B2:BPM, at= -1443.7067+(-89-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248081, assembly_id= 103659, from= IP8; - MO.30L8.B2:MO, at= -1442.9557+(-89-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348498, assembly_id= 103659, from= IP8; -MQ.30L8.B2:MQ, at= -1440.9447+(-89-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308050, assembly_id= 103659, from= IP8; - MS.30L8.B2:MS, at= -1439.0497+(-89-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252955, assembly_id= 103659, from= IP8; - MCBH.30L8.B2:MCBH, at= -1438.4567+(-89-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252957, assembly_id= 103659, from= IP8; - MB.C30L8.B2:MB, at= -1429.8797+(-89.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844266, assembly_id= 103660, from= IP8; - MCS.C30L8.B2:MCS, at= -1422.4557+(-90-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248087, assembly_id= 103660, from= IP8; - MCO.30L8.B2:MCO_UNPLUGGED, at= -1421.7057+(-90-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252960, assembly_id= 103661, from= IP8; - MCD.30L8.B2:MCD, at= -1421.7042+(-90-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252961, assembly_id= 103661, from= IP8; - MB.B30L8.B2:MB, at= -1414.2197+(-90.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844290, assembly_id= 103661, from= IP8; - MCS.B30L8.B2:MCS, at= -1406.7957+(-91-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248092, assembly_id= 103661, from= IP8; - MB.A30L8.B2:MB, at= -1398.5597+(-91.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844314, assembly_id= 103662, from= IP8; - MCS.A30L8.B2:MCS, at= -1391.1357+(-92-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248095, assembly_id= 103662, from= IP8; - BPM.29L8.B2:BPM, at= -1390.2567+(-92-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248097, assembly_id= 103663, from= IP8; - MO.29L8.B2:MO, at= -1389.5057+(-92-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308727, assembly_id= 103663, from= IP8; -MQ.29L8.B2:MQ, at= -1387.4947+(-92-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308020, assembly_id= 103663, from= IP8; - MS.29L8.B2:MS, at= -1385.5997+(-92-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252963, assembly_id= 103663, from= IP8; - MCBV.29L8.B2:MCBV, at= -1385.0067+(-92-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252965, assembly_id= 103663, from= IP8; - MCO.B29L8.B2:MCO_UNPLUGGED, at= -1383.9157+(-92-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252968, assembly_id= 103664, from= IP8; - MCD.B29L8.B2:MCD, at= -1383.9142+(-92-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252969, assembly_id= 103664, from= IP8; - MB.C29L8.B2:MB, at= -1376.4297+(-92.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844338, assembly_id= 103664, from= IP8; - MCS.C29L8.B2:MCS, at= -1369.0057+(-93-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248105, assembly_id= 103664, from= IP8; - MB.B29L8.B2:MB, at= -1360.7697+(-93.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844362, assembly_id= 103665, from= IP8; - MCS.B29L8.B2:MCS, at= -1353.3457+(-94-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248108, assembly_id= 103665, from= IP8; - MCO.A29L8.B2:MCO_UNPLUGGED, at= -1352.5957+(-94-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252972, assembly_id= 103666, from= IP8; - MCD.A29L8.B2:MCD, at= -1352.5942+(-94-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252973, assembly_id= 103666, from= IP8; - MB.A29L8.B2:MB, at= -1345.1097+(-94.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844386, assembly_id= 103666, from= IP8; - MCS.A29L8.B2:MCS, at= -1337.6857+(-95-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248113, assembly_id= 103666, from= IP8; - BPM.28L8.B2:BPM, at= -1336.8067+(-95-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248115, assembly_id= 103667, from= IP8; - MO.28L8.B2:MO, at= -1336.0557+(-95-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308695, assembly_id= 103667, from= IP8; -MQ.28L8.B2:MQ, at= -1334.0447+(-95-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307989, assembly_id= 103667, from= IP8; - MSS.28L8.B2:MSS, at= -1332.1497+(-95-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252975, assembly_id= 103667, from= IP8; - MCBH.28L8.B2:MCBH, at= -1331.5567+(-95-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252977, assembly_id= 103667, from= IP8; - MB.C28L8.B2:MB, at= -1322.9797+(-95.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844410, assembly_id= 103668, from= IP8; - MCS.C28L8.B2:MCS, at= -1315.5557+(-96-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248121, assembly_id= 103668, from= IP8; - MCO.28L8.B2:MCO_UNPLUGGED, at= -1314.8057+(-96-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252980, assembly_id= 103669, from= IP8; - MCD.28L8.B2:MCD, at= -1314.8042+(-96-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252981, assembly_id= 103669, from= IP8; - MB.B28L8.B2:MB, at= -1307.3197+(-96.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844434, assembly_id= 103669, from= IP8; - MCS.B28L8.B2:MCS, at= -1299.8957+(-97-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248126, assembly_id= 103669, from= IP8; - MB.A28L8.B2:MB, at= -1291.6597+(-97.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844458, assembly_id= 103670, from= IP8; - MCS.A28L8.B2:MCS, at= -1284.2357+(-98-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248129, assembly_id= 103670, from= IP8; - BPM.27L8.B2:BPM, at= -1283.3567+(-98-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248131, assembly_id= 103671, from= IP8; - MQS.27L8.B2:MQS, at= -1282.6027+(-98-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307666, assembly_id= 103671, from= IP8; -MQ.27L8.B2:MQ, at= -1280.5947+(-98-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308198, assembly_id= 103671, from= IP8; - MS.27L8.B2:MS, at= -1278.6997+(-98-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252983, assembly_id= 103671, from= IP8; - MCBV.27L8.B2:MCBV, at= -1278.1067+(-98-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252985, assembly_id= 103671, from= IP8; - MCO.B27L8.B2:MCO_UNPLUGGED, at= -1277.0157+(-98-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252988, assembly_id= 103672, from= IP8; - MCD.B27L8.B2:MCD, at= -1277.0142+(-98-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252989, assembly_id= 103672, from= IP8; - MB.C27L8.B2:MB, at= -1269.5297+(-98.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844482, assembly_id= 103672, from= IP8; - MCS.C27L8.B2:MCS, at= -1262.1057+(-99-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248139, assembly_id= 103672, from= IP8; - MB.B27L8.B2:MB, at= -1253.8697+(-99.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844506, assembly_id= 103673, from= IP8; - MCS.B27L8.B2:MCS, at= -1246.4457+(-100-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248142, assembly_id= 103673, from= IP8; - MCO.A27L8.B2:MCO_UNPLUGGED, at= -1245.6957+(-100-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252992, assembly_id= 103674, from= IP8; - MCD.A27L8.B2:MCD, at= -1245.6942+(-100-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252993, assembly_id= 103674, from= IP8; - MB.A27L8.B2:MB, at= -1238.2097+(-100.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844530, assembly_id= 103674, from= IP8; - MCS.A27L8.B2:MCS, at= -1230.7857+(-101-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248147, assembly_id= 103674, from= IP8; - BPM.26L8.B2:BPM, at= -1229.9067+(-101-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248149, assembly_id= 103675, from= IP8; - MO.26L8.B2:MO, at= -1229.1557+(-101-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308906, assembly_id= 103675, from= IP8; -MQ.26L8.B2:MQ, at= -1227.1447+(-101-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308168, assembly_id= 103675, from= IP8; - MS.26L8.B2:MS, at= -1225.2497+(-101-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252995, assembly_id= 103675, from= IP8; - MCBH.26L8.B2:MCBH, at= -1224.6567+(-101-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 252997, assembly_id= 103675, from= IP8; - MB.C26L8.B2:MB, at= -1216.0797+(-101.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844554, assembly_id= 103676, from= IP8; - MCS.C26L8.B2:MCS, at= -1208.6557+(-102-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248155, assembly_id= 103676, from= IP8; - MCO.26L8.B2:MCO_UNPLUGGED, at= -1207.9057+(-102-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253000, assembly_id= 103677, from= IP8; - MCD.26L8.B2:MCD, at= -1207.9042+(-102-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253001, assembly_id= 103677, from= IP8; - MB.B26L8.B2:MB, at= -1200.4197+(-102.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844578, assembly_id= 103677, from= IP8; - MCS.B26L8.B2:MCS, at= -1192.9957+(-103-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248160, assembly_id= 103677, from= IP8; - MB.A26L8.B2:MB, at= -1184.7597+(-103.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844602, assembly_id= 103678, from= IP8; - MCS.A26L8.B2:MCS, at= -1177.3357+(-104-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248163, assembly_id= 103678, from= IP8; - BPM.25L8.B2:BPM, at= -1176.4567+(-104-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248165, assembly_id= 103679, from= IP8; - MO.25L8.B2:MO, at= -1175.7057+(-104-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308874, assembly_id= 103679, from= IP8; -MQ.25L8.B2:MQ, at= -1173.6947+(-104-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308137, assembly_id= 103679, from= IP8; - MS.25L8.B2:MS, at= -1171.7997+(-104-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253003, assembly_id= 103679, from= IP8; - MCBV.25L8.B2:MCBV, at= -1171.2067+(-104-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253005, assembly_id= 103679, from= IP8; - MCO.B25L8.B2:MCO_UNPLUGGED, at= -1170.1157+(-104-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253008, assembly_id= 103680, from= IP8; - MCD.B25L8.B2:MCD, at= -1170.1142+(-104-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253009, assembly_id= 103680, from= IP8; - MB.C25L8.B2:MB, at= -1162.6297+(-104.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844626, assembly_id= 103680, from= IP8; - MCS.C25L8.B2:MCS, at= -1155.2057+(-105-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248173, assembly_id= 103680, from= IP8; - MB.B25L8.B2:MB, at= -1146.9697+(-105.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844650, assembly_id= 103681, from= IP8; - MCS.B25L8.B2:MCS, at= -1139.5457+(-106-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248176, assembly_id= 103681, from= IP8; - MCO.A25L8.B2:MCO_UNPLUGGED, at= -1138.7957+(-106-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253012, assembly_id= 103682, from= IP8; - MCD.A25L8.B2:MCD, at= -1138.7942+(-106-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253013, assembly_id= 103682, from= IP8; - MB.A25L8.B2:MB, at= -1131.3097+(-106.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844674, assembly_id= 103682, from= IP8; - MCS.A25L8.B2:MCS, at= -1123.8857+(-107-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248181, assembly_id= 103682, from= IP8; - BPM.24L8.B2:BPM, at= -1123.0067+(-107-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248183, assembly_id= 103683, from= IP8; - MO.24L8.B2:MO, at= -1122.2557+(-107-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308842, assembly_id= 103683, from= IP8; -MQ.24L8.B2:MQ, at= -1120.2447+(-107-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308105, assembly_id= 103683, from= IP8; - MS.24L8.B2:MS, at= -1118.3497+(-107-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253015, assembly_id= 103683, from= IP8; - MCBH.24L8.B2:MCBH, at= -1117.7567+(-107-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253017, assembly_id= 103683, from= IP8; - MB.C24L8.B2:MB, at= -1109.1797+(-107.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844698, assembly_id= 103684, from= IP8; - MCS.C24L8.B2:MCS, at= -1101.7557+(-108-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248189, assembly_id= 103684, from= IP8; - MCO.24L8.B2:MCO_UNPLUGGED, at= -1101.0057+(-108-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253020, assembly_id= 103685, from= IP8; - MCD.24L8.B2:MCD, at= -1101.0042+(-108-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253021, assembly_id= 103685, from= IP8; - MB.B24L8.B2:MB, at= -1093.5197+(-108.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844722, assembly_id= 103685, from= IP8; - MCS.B24L8.B2:MCS, at= -1086.0957+(-109-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248194, assembly_id= 103685, from= IP8; - MB.A24L8.B2:MB, at= -1077.8597+(-109.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844746, assembly_id= 103686, from= IP8; - MCS.A24L8.B2:MCS, at= -1070.4357+(-110-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248197, assembly_id= 103686, from= IP8; - BPM.23L8.B2:BPM, at= -1069.5567+(-110-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248199, assembly_id= 103687, from= IP8; - MQS.23L8.B2:MQS, at= -1068.8027+(-110-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307635, assembly_id= 103687, from= IP8; -MQ.23L8.B2:MQ, at= -1066.7947+(-110-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308315, assembly_id= 103687, from= IP8; - MS.23L8.B2:MS, at= -1064.8997+(-110-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253023, assembly_id= 103687, from= IP8; - MCBV.23L8.B2:MCBV, at= -1064.3067+(-110-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253025, assembly_id= 103687, from= IP8; - MCO.B23L8.B2:MCO_UNPLUGGED, at= -1063.2157+(-110-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253028, assembly_id= 103688, from= IP8; - MCD.B23L8.B2:MCD, at= -1063.2142+(-110-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253029, assembly_id= 103688, from= IP8; - MB.C23L8.B2:MB, at= -1055.7297+(-110.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844770, assembly_id= 103688, from= IP8; - MCS.C23L8.B2:MCS, at= -1048.3057+(-111-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248207, assembly_id= 103688, from= IP8; - MB.B23L8.B2:MB, at= -1040.0697+(-111.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844794, assembly_id= 103689, from= IP8; - MCS.B23L8.B2:MCS, at= -1032.6457+(-112-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248210, assembly_id= 103689, from= IP8; - MCO.A23L8.B2:MCO_UNPLUGGED, at= -1031.8957+(-112-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253032, assembly_id= 103690, from= IP8; - MCD.A23L8.B2:MCD, at= -1031.8942+(-112-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253033, assembly_id= 103690, from= IP8; - MB.A23L8.B2:MB, at= -1024.4097+(-112.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844818, assembly_id= 103690, from= IP8; - MCS.A23L8.B2:MCS, at= -1016.9857+(-113-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248215, assembly_id= 103690, from= IP8; - BPM.22L8.B2:BPM, at= -1016.1067+(-113-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248217, assembly_id= 103691, from= IP8; - MO.22L8.B2:MO, at= -1015.3557+(-113-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308812, assembly_id= 103691, from= IP8; -MQ.22L8.B2:MQ, at= -1013.3447+(-113-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308284, assembly_id= 103691, from= IP8; - MS.22L8.B2:MS, at= -1011.4497+(-113-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253035, assembly_id= 103691, from= IP8; - MCBH.22L8.B2:MCBH, at= -1010.8567+(-113-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253037, assembly_id= 103691, from= IP8; - MB.C22L8.B2:MB, at= -1002.2797+(-113.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844842, assembly_id= 103692, from= IP8; - MCS.C22L8.B2:MCS, at= -994.8557+(-114-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248223, assembly_id= 103692, from= IP8; - MCO.22L8.B2:MCO_UNPLUGGED, at= -994.1057+(-114-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253040, assembly_id= 103693, from= IP8; - MCD.22L8.B2:MCD, at= -994.1042+(-114-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253041, assembly_id= 103693, from= IP8; - MB.B22L8.B2:MB, at= -986.6197+(-114.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844866, assembly_id= 103693, from= IP8; - MCS.B22L8.B2:MCS, at= -979.1957+(-115-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248228, assembly_id= 103693, from= IP8; - MB.A22L8.B2:MB, at= -970.9597+(-115.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844890, assembly_id= 103694, from= IP8; - MCS.A22L8.B2:MCS, at= -963.5357+(-116-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248231, assembly_id= 103694, from= IP8; - BPM.21L8.B2:BPM, at= -962.6567+(-116-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248233, assembly_id= 103695, from= IP8; - MQT.21L8.B2:MQT, at= -961.9027+(-116-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307268, assembly_id= 103695, from= IP8; -MQ.21L8.B2:MQ, at= -959.8947+(-116-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308252, assembly_id= 103695, from= IP8; - MS.21L8.B2:MS, at= -957.9997+(-116-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253043, assembly_id= 103695, from= IP8; - MCBV.21L8.B2:MCBV, at= -957.4067+(-116-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253045, assembly_id= 103695, from= IP8; - MCO.B21L8.B2:MCO_UNPLUGGED, at= -956.3157+(-116-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253048, assembly_id= 103696, from= IP8; - MCD.B21L8.B2:MCD, at= -956.3142+(-116-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253049, assembly_id= 103696, from= IP8; - MB.C21L8.B2:MB, at= -948.8297+(-116.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844914, assembly_id= 103696, from= IP8; - MCS.C21L8.B2:MCS, at= -941.4057+(-117-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248241, assembly_id= 103696, from= IP8; - MB.B21L8.B2:MB, at= -933.1697+(-117.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844938, assembly_id= 103697, from= IP8; - MCS.B21L8.B2:MCS, at= -925.7457+(-118-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248244, assembly_id= 103697, from= IP8; - MCO.A21L8.B2:MCO_UNPLUGGED, at= -924.9957+(-118-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253052, assembly_id= 103698, from= IP8; - MCD.A21L8.B2:MCD, at= -924.9942+(-118-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253053, assembly_id= 103698, from= IP8; - MB.A21L8.B2:MB, at= -917.5097+(-118.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844962, assembly_id= 103698, from= IP8; - MCS.A21L8.B2:MCS, at= -910.0857+(-119-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248249, assembly_id= 103698, from= IP8; - BPM.20L8.B2:BPM, at= -909.2067+(-119-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248251, assembly_id= 103699, from= IP8; - MQT.20L8.B2:MQT, at= -908.4527+(-119-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307471, assembly_id= 103699, from= IP8; -MQ.20L8.B2:MQ, at= -906.4447+(-119-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308222, assembly_id= 103699, from= IP8; - MS.20L8.B2:MS, at= -904.5497+(-119-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253055, assembly_id= 103699, from= IP8; - MCBH.20L8.B2:MCBH, at= -903.9567+(-119-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253057, assembly_id= 103699, from= IP8; - MB.C20L8.B2:MB, at= -895.3797+(-119.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52844986, assembly_id= 103700, from= IP8; - MCS.C20L8.B2:MCS, at= -887.9557+(-120-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248257, assembly_id= 103700, from= IP8; - MCO.20L8.B2:MCO_UNPLUGGED, at= -887.2057+(-120-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253060, assembly_id= 103701, from= IP8; - MCD.20L8.B2:MCD, at= -887.2042+(-120-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253061, assembly_id= 103701, from= IP8; - MB.B20L8.B2:MB, at= -879.7197+(-120.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845010, assembly_id= 103701, from= IP8; - MCS.B20L8.B2:MCS, at= -872.2957+(-121-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248262, assembly_id= 103701, from= IP8; - MB.A20L8.B2:MB, at= -864.0597+(-121.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845034, assembly_id= 103702, from= IP8; - MCS.A20L8.B2:MCS, at= -856.6357+(-122-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248265, assembly_id= 103702, from= IP8; - BPM.19L8.B2:BPM, at= -855.7567+(-122-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248267, assembly_id= 103703, from= IP8; - MQT.19L8.B2:MQT, at= -855.0027+(-122-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307441, assembly_id= 103703, from= IP8; -MQ.19L8.B2:MQ, at= -852.9947+(-122-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308431, assembly_id= 103703, from= IP8; - MS.19L8.B2:MS, at= -851.0997+(-122-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253063, assembly_id= 103703, from= IP8; - MCBV.19L8.B2:MCBV, at= -850.5067+(-122-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253065, assembly_id= 103703, from= IP8; - MCO.B19L8.B2:MCO_UNPLUGGED, at= -849.4157+(-122-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253068, assembly_id= 103704, from= IP8; - MCD.B19L8.B2:MCD, at= -849.4142+(-122-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253069, assembly_id= 103704, from= IP8; - MB.C19L8.B2:MB, at= -841.9297+(-122.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845058, assembly_id= 103704, from= IP8; - MCS.C19L8.B2:MCS, at= -834.5057+(-123-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248275, assembly_id= 103704, from= IP8; - MB.B19L8.B2:MB, at= -826.2697+(-123.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845082, assembly_id= 103705, from= IP8; - MCS.B19L8.B2:MCS, at= -818.8457+(-124-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248278, assembly_id= 103705, from= IP8; - MCO.A19L8.B2:MCO_UNPLUGGED, at= -818.0957+(-124-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253072, assembly_id= 103706, from= IP8; - MCD.A19L8.B2:MCD, at= -818.0942+(-124-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253073, assembly_id= 103706, from= IP8; - MB.A19L8.B2:MB, at= -810.6097+(-124.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845106, assembly_id= 103706, from= IP8; - MCS.A19L8.B2:MCS, at= -803.1857+(-125-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248283, assembly_id= 103706, from= IP8; - BPM.18L8.B2:BPM, at= -802.3067+(-125-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248285, assembly_id= 103707, from= IP8; - MQT.18L8.B2:MQT, at= -801.5527+(-125-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307410, assembly_id= 103707, from= IP8; -MQ.18L8.B2:MQ, at= -799.5447+(-125-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308399, assembly_id= 103707, from= IP8; - MS.18L8.B2:MS, at= -797.6497+(-125-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253075, assembly_id= 103707, from= IP8; - MCBH.18L8.B2:MCBH, at= -797.0567+(-125-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253077, assembly_id= 103707, from= IP8; - MB.C18L8.B2:MB, at= -788.4797+(-125.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845130, assembly_id= 103708, from= IP8; - MCS.C18L8.B2:MCS, at= -781.0557+(-126-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248291, assembly_id= 103708, from= IP8; - MCO.18L8.B2:MCO_UNPLUGGED, at= -780.3057+(-126-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253080, assembly_id= 103709, from= IP8; - MCD.18L8.B2:MCD, at= -780.3042+(-126-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253081, assembly_id= 103709, from= IP8; - MB.B18L8.B2:MB, at= -772.8197+(-126.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845154, assembly_id= 103709, from= IP8; - MCS.B18L8.B2:MCS, at= -765.3957+(-127-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248296, assembly_id= 103709, from= IP8; - MB.A18L8.B2:MB, at= -757.1597+(-127.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845178, assembly_id= 103710, from= IP8; - MCS.A18L8.B2:MCS, at= -749.7357+(-128-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248299, assembly_id= 103710, from= IP8; - BPM.17L8.B2:BPM, at= -748.8567+(-128-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248301, assembly_id= 103711, from= IP8; - MQT.17L8.B2:MQT, at= -748.1027+(-128-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307378, assembly_id= 103711, from= IP8; -MQ.17L8.B2:MQ, at= -746.0947+(-128-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308369, assembly_id= 103711, from= IP8; - MS.17L8.B2:MS, at= -744.1997+(-128-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253083, assembly_id= 103711, from= IP8; - MCBV.17L8.B2:MCBV, at= -743.6067+(-128-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253085, assembly_id= 103711, from= IP8; - MCO.B17L8.B2:MCO_UNPLUGGED, at= -742.5157+(-128-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253088, assembly_id= 103712, from= IP8; - MCD.B17L8.B2:MCD, at= -742.5142+(-128-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253089, assembly_id= 103712, from= IP8; - MB.C17L8.B2:MB, at= -735.0297+(-128.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845202, assembly_id= 103712, from= IP8; - MCS.C17L8.B2:MCS, at= -727.6057+(-129-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248309, assembly_id= 103712, from= IP8; - MB.B17L8.B2:MB, at= -719.3697+(-129.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845226, assembly_id= 103713, from= IP8; - MCS.B17L8.B2:MCS, at= -711.9457+(-130-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248312, assembly_id= 103713, from= IP8; - MCO.A17L8.B2:MCO_UNPLUGGED, at= -711.1957+(-130-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253092, assembly_id= 103714, from= IP8; - MCD.A17L8.B2:MCD, at= -711.1942+(-130-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253093, assembly_id= 103714, from= IP8; - MB.A17L8.B2:MB, at= -703.7097+(-130.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845250, assembly_id= 103714, from= IP8; - MCS.A17L8.B2:MCS, at= -696.2857+(-131-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248317, assembly_id= 103714, from= IP8; - BPM.16L8.B2:BPM, at= -695.4067+(-131-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248319, assembly_id= 103715, from= IP8; - MQT.16L8.B2:MQT, at= -694.6527+(-131-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348446, assembly_id= 103715, from= IP8; -MQ.16L8.B2:MQ, at= -692.6447+(-131-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348479, assembly_id= 103715, from= IP8; - MS.16L8.B2:MS, at= -690.7497+(-131-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253095, assembly_id= 103715, from= IP8; - MCBH.16L8.B2:MCBH, at= -690.1567+(-131-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253097, assembly_id= 103715, from= IP8; - MB.C16L8.B2:MB, at= -681.5797+(-131.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845274, assembly_id= 103716, from= IP8; - MCS.C16L8.B2:MCS, at= -674.1557+(-132-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248325, assembly_id= 103716, from= IP8; - MCO.16L8.B2:MCO_UNPLUGGED, at= -673.4057+(-132-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253100, assembly_id= 103717, from= IP8; - MCD.16L8.B2:MCD, at= -673.4042+(-132-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253101, assembly_id= 103717, from= IP8; - MB.B16L8.B2:MB, at= -665.9197+(-132.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845298, assembly_id= 103717, from= IP8; - MCS.B16L8.B2:MCS, at= -658.4957+(-133-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248330, assembly_id= 103717, from= IP8; - MB.A16L8.B2:MB, at= -650.2597+(-133.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845322, assembly_id= 103718, from= IP8; - MCS.A16L8.B2:MCS, at= -642.8357+(-134-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248333, assembly_id= 103718, from= IP8; - BPM.15L8.B2:BPM, at= -641.9567+(-134-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248335, assembly_id= 103719, from= IP8; - MQT.15L8.B2:MQT, at= -641.2027+(-134-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307554, assembly_id= 103719, from= IP8; -MQ.15L8.B2:MQ, at= -639.1947+(-134-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308546, assembly_id= 103719, from= IP8; - MS.15L8.B2:MS, at= -637.2997+(-134-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253103, assembly_id= 103719, from= IP8; - MCBV.15L8.B2:MCBV, at= -636.7067+(-134-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253105, assembly_id= 103719, from= IP8; - MCO.B15L8.B2:MCO_UNPLUGGED, at= -635.6157+(-134-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253108, assembly_id= 103720, from= IP8; - MCD.B15L8.B2:MCD, at= -635.6142+(-134-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253109, assembly_id= 103720, from= IP8; - MB.C15L8.B2:MB, at= -628.1297+(-134.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845346, assembly_id= 103720, from= IP8; - MCS.C15L8.B2:MCS, at= -620.7057+(-135-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248343, assembly_id= 103720, from= IP8; - MB.B15L8.B2:MB, at= -612.4697+(-135.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845370, assembly_id= 103721, from= IP8; - MCS.B15L8.B2:MCS, at= -605.0457+(-136-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248346, assembly_id= 103721, from= IP8; - MCO.A15L8.B2:MCO_UNPLUGGED, at= -604.2957+(-136-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253112, assembly_id= 103722, from= IP8; - MCD.A15L8.B2:MCD, at= -604.2942+(-136-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253113, assembly_id= 103722, from= IP8; - MB.A15L8.B2:MB, at= -596.8097+(-136.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845394, assembly_id= 103722, from= IP8; - MCS.A15L8.B2:MCS, at= -589.3857+(-137-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248351, assembly_id= 103722, from= IP8; - BPM.14L8.B2:BPM, at= -588.5067+(-137-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248353, assembly_id= 103723, from= IP8; - MQT.14L8.B2:MQT, at= -587.7527+(-137-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307522, assembly_id= 103723, from= IP8; -MQ.14L8.B2:MQ, at= -585.7447+(-137-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308516, assembly_id= 103723, from= IP8; - MS.14L8.B2:MS, at= -583.8497+(-137-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253115, assembly_id= 103723, from= IP8; - MCBH.14L8.B2:MCBH, at= -583.2567+(-137-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253117, assembly_id= 103723, from= IP8; - MB.C14L8.B2:MB, at= -574.6797+(-137.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845418, assembly_id= 103724, from= IP8; - MCS.C14L8.B2:MCS, at= -567.2557+(-138-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248359, assembly_id= 103724, from= IP8; - MCO.14L8.B2:MCO_UNPLUGGED, at= -566.5057+(-138-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253120, assembly_id= 103725, from= IP8; - MCD.14L8.B2:MCD, at= -566.5042+(-138-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253121, assembly_id= 103725, from= IP8; - MB.B14L8.B2:MB, at= -559.0197+(-138.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845442, assembly_id= 103725, from= IP8; - MCS.B14L8.B2:MCS, at= -551.5957+(-139-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248364, assembly_id= 103725, from= IP8; - MB.A14L8.B2:MB, at= -543.3597+(-139.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845466, assembly_id= 103726, from= IP8; - MCS.A14L8.B2:MCS, at= -535.9357+(-140-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248367, assembly_id= 103726, from= IP8; -S.DS.L8.B2:OMK, at= -535.5297+(-140-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - BPM.13L8.B2:BPM, at= -535.0567+(-140-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248369, assembly_id= 103727, from= IP8; - MQT.13L8.B2:MQT, at= -534.3027+(-140-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307491, assembly_id= 103727, from= IP8; -MQ.13L8.B2:MQ, at= -532.2947+(-140-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348486, assembly_id= 103727, from= IP8; - MS.13L8.B2:MS, at= -530.3997+(-140-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253123, assembly_id= 103727, from= IP8; - MCBV.13L8.B2:MCBV, at= -529.8067+(-140-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253125, assembly_id= 103727, from= IP8; - MCO.B13L8.B2:MCO_UNPLUGGED, at= -528.7157+(-140-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253128, assembly_id= 103728, from= IP8; - MCD.B13L8.B2:MCD, at= -528.7142+(-140-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253129, assembly_id= 103728, from= IP8; - MB.C13L8.B2:MB, at= -521.2297+(-140.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845490, assembly_id= 103728, from= IP8; - MCS.C13L8.B2:MCS, at= -513.8057+(-141-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248377, assembly_id= 103728, from= IP8; - MB.B13L8.B2:MB, at= -505.5697+(-141.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845514, assembly_id= 103729, from= IP8; - MCS.B13L8.B2:MCS, at= -498.1457+(-142-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248380, assembly_id= 103729, from= IP8; - MCO.A13L8.B2:MCO_UNPLUGGED, at= -497.3957+(-142-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253132, assembly_id= 103730, from= IP8; - MCD.A13L8.B2:MCD, at= -497.3942+(-142-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253133, assembly_id= 103730, from= IP8; - MB.A13L8.B2:MB, at= -489.9097+(-142.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845538, assembly_id= 103730, from= IP8; - MCS.A13L8.B2:MCS, at= -482.4857+(-143-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248385, assembly_id= 103730, from= IP8; - BPM.12L8.B2:BPM, at= -481.6067+(-143-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248387, assembly_id= 103731, from= IP8; - MQT.12L8.B2:MQT, at= -480.8527+(-143-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307698, assembly_id= 103731, from= IP8; -MQ.12L8.B2:MQ, at= -478.8447+(-143-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2308457, assembly_id= 103731, from= IP8; - MS.12L8.B2:MS, at= -476.9497+(-143-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253135, assembly_id= 103731, from= IP8; - MCBH.12L8.B2:MCBH, at= -476.3567+(-143-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253137, assembly_id= 103731, from= IP8; - MB.C12L8.B2:MB, at= -467.7797+(-143.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845562, assembly_id= 103732, from= IP8; - MCS.C12L8.B2:MCS, at= -460.3557+(-144-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248393, assembly_id= 103732, from= IP8; - MCO.12L8.B2:MCO_UNPLUGGED, at= -459.6057+(-144-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253140, assembly_id= 103733, from= IP8; - MCD.12L8.B2:MCD, at= -459.6042+(-144-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253141, assembly_id= 103733, from= IP8; - MB.B12L8.B2:MB, at= -452.1197+(-144.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845586, assembly_id= 103733, from= IP8; - MCS.B12L8.B2:MCS, at= -444.6957+(-145-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248398, assembly_id= 103733, from= IP8; - MB.A12L8.B2:MB, at= -436.4597+(-145.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845610, assembly_id= 103734, from= IP8; - MCS.A12L8.B2:MCS, at= -429.0357+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248401, assembly_id= 103734, from= IP8; -E.ARC.78.B2:OMK, at= -428.6297+(-146-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - BPM.11L8.B2:BPM, at= -428.1567+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248403, assembly_id= 103735, from= IP8; -MQ.11L8.B2:MQ, at= -425.6097+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348495, assembly_id= 103735, from= IP8; - MQTLI.11L8.B2:MQTLI, at= -423.2407+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307352, assembly_id= 103735, from= IP8; - MS.11L8.B2:MS, at= -422.2287+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253143, assembly_id= 103735, from= IP8; - MCBV.11L8.B2:MCBV, at= -421.6357+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253145, assembly_id= 103735, from= IP8; - LEBR.11L8.B2:LEBR, at= -414.49735+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52997718, assembly_id= 103736, from= IP8; - MCO.11L8.B2:MCO_UNPLUGGED, at= -407.766+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253148, assembly_id= 103737, from= IP8; - MCD.11L8.B2:MCD, at= -407.7645+(-146-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253149, assembly_id= 103737, from= IP8; - MB.B11L8.B2:MB, at= -400.28+(-146.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845634, assembly_id= 103737, from= IP8; - MCS.B11L8.B2:MCS, at= -392.856+(-147-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248411, assembly_id= 103737, from= IP8; - MB.A11L8.B2:MB, at= -384.62+(-147.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849738, assembly_id= 103738, from= IP8; - MCS.A11L8.B2:MCS, at= -377.196+(-148-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 357329, assembly_id= 103738, from= IP8; - BPM.10L8.B2:BPM, at= -376.317+(-148-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378038, assembly_id= 103739, from= IP8; - MQML.10L8.B2:MQML, at= -373.172+(-148-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307815, assembly_id= 103739, from= IP8; - MCBCH.10L8.B2:MCBCH, at= -370.13+(-148-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378121, assembly_id= 103739, from= IP8; - MCO.10L8.B2:MCO_UNPLUGGED, at= -368.701+(-148-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253154, assembly_id= 103740, from= IP8; - MCD.10L8.B2:MCD, at= -368.6995+(-148-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253155, assembly_id= 103740, from= IP8; - MB.B10L8.B2:MB, at= -361.215+(-148.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845658, assembly_id= 103740, from= IP8; - MCS.B10L8.B2:MCS, at= -353.791+(-149-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248423, assembly_id= 103740, from= IP8; - MB.A10L8.B2:MB, at= -345.555+(-149.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845682, assembly_id= 103741, from= IP8; - MCS.A10L8.B2:MCS, at= -338.131+(-150-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248426, assembly_id= 103741, from= IP8; - BPM.9L8.B2:BPM, at= -337.251+(-150-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378043, assembly_id= 103742, from= IP8; - MQMC.9L8.B2:MQMC, at= -335.275+(-150-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307792, assembly_id= 103742, from= IP8; - MQM.9L8.B2:MQM, at= -332.009+(-150-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2348452, assembly_id= 103742, from= IP8; - MCBCV.9L8.B2:MCBCV, at= -329.668+(-150-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378126, assembly_id= 103742, from= IP8; - MCO.9L8.B2:MCO_UNPLUGGED, at= -328.236+(-150-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253160, assembly_id= 103743, from= IP8; - MCD.9L8.B2:MCD, at= -328.2345+(-150-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253161, assembly_id= 103743, from= IP8; - MB.B9L8.B2:MB, at= -320.75+(-150.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845706, assembly_id= 103743, from= IP8; - MCS.B9L8.B2:MCS, at= -313.326+(-151-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248436, assembly_id= 103743, from= IP8; - MB.A9L8.B2:MB, at= -305.09+(-151.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845730, assembly_id= 103744, from= IP8; - MCS.A9L8.B2:MCS, at= -297.666+(-152-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248439, assembly_id= 103744, from= IP8; - BPM.8L8.B2:BPM, at= -296.787+(-152-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378047, assembly_id= 103745, from= IP8; - MQML.8L8.B2:MQML, at= -293.642+(-152-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307847, assembly_id= 103745, from= IP8; - MCBCH.8L8.B2:MCBCH, at= -290.6+(-152-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 378131, assembly_id= 103745, from= IP8; - MCO.8L8.B2:MCO_UNPLUGGED, at= -289.171+(-152-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253166, assembly_id= 103746, from= IP8; - MCD.8L8.B2:MCD, at= -289.1695+(-152-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253167, assembly_id= 103746, from= IP8; - MB.B8L8.B2:MB, at= -281.685+(-152.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52845754, assembly_id= 103746, from= IP8; - MCS.B8L8.B2:MCS, at= -274.261+(-153-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248448, assembly_id= 103746, from= IP8; - MB.A8L8.B2:MB, at= -266.025+(-153.5-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52849762, assembly_id= 103747, from= IP8; - MCS.A8L8.B2:MCS, at= -258.601+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 357332, assembly_id= 103747, from= IP8; -E.DS.L8.B2:OMK, at= -258.195+(-154-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - BPM.7L8.B2:BPM, at= -257.72+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248453, assembly_id= 103748, from= IP8; - MQM.B7L8.B2:MQM, at= -255.275+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307773, assembly_id= 103748, from= IP8; - MQM.A7L8.B2:MQM, at= -251.508+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307758, assembly_id= 103748, from= IP8; - MCBCV.7L8.B2:MCBCV, at= -249.167+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253168, assembly_id= 103748, from= IP8; - DFBAO.7L8.B2:DFBAO, at= -246.9875+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52996887, assembly_id= 104690, from= IP8; - MCBCH.6L8.B2:MCBCH, at= -235.207+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253171, assembly_id= 103750, from= IP8; - MQML.6L8.B2:MQML, at= -232.165+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307831, assembly_id= 103750, from= IP8; - MQM.6L8.B2:MQM, at= -227.698+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2307958, assembly_id= 103750, from= IP8; - BPM.6L8.B2:BPM, at= -225.251+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 298291, assembly_id= 103750, from= IP8; - TCLIM.6L8.B2:TCLIM, at= -223.428+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 52998884, assembly_id= 357149, from= IP8; - TCLIB.6L8.B2:TCLIB, at= -216.683+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 103751, from= IP8; - MCBCV.B5L8.B2:MCBCV, at= -175.742+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 298447, assembly_id= 103752, from= IP8; - MCBCH.5L8.B2:MCBCH, at= -174.595+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 298450, assembly_id= 103752, from= IP8; - MCBCV.A5L8.B2:MCBCV, at= -173.449+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 298451, assembly_id= 103752, from= IP8; - MQM.B5L8.B2:MQM, at= -171.102+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303174, assembly_id= 103752, from= IP8; - MQM.A5L8.B2:MQM, at= -167.321+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303173, assembly_id= 103752, from= IP8; - BPMR.5L8.B2:BPMR, at= -164.832+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248470, assembly_id= 103752, from= IP8; - BPMWI.A5L8.B2:BPMWI, at= -163.3305+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 54987223, from= IP8; - BPMYB.4L8.B2:BPMYB, at= -144.065+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 248472, assembly_id= 103753, from= IP8; - MQY.B4L8.B2:MQY, at= -141.371+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303006, assembly_id= 103753, from= IP8; - MQY.A4L8.B2:MQY, at= -137.59+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 2303005, assembly_id= 103753, from= IP8; - MCBYH.B4L8.B2:MCBYH, at= -135.243+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253178, assembly_id= 103753, from= IP8; - MCBYV.4L8.B2:MCBYV, at= -134.096+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253180, assembly_id= 103753, from= IP8; - MCBYH.A4L8.B2:MCBYH, at= -132.95+(-154-IP8OFS.B2)*DS, mech_sep= -0.1940, slot_id= 253182, assembly_id= 103753, from= IP8; - MBRC.4L8.B2:MBRC, at= -126.403+(-154-IP8OFS.B2)*DS, mech_sep= -0.1880, slot_id= 52819740, assembly_id= 103754, from= IP8; - TANB.A4L8.B2:TANB, at= -119.4855+(-154-IP8OFS.B2)*DS, mech_sep= -0.1740, slot_id= 52999655, assembly_id= 51650555, from= IP8; - BPMWB.4L8.B2:BPMWB, at= -114.7925+(-154-IP8OFS.B2)*DS, mech_sep= -0.1590, slot_id= 104615, assembly_id= 51650538, from= IP8; - BRANC.4L8:BRANC, at= -113.588+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 55373986, from= IP8; - TCLIA.4L8:TCLIA, at= -73.748+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 357150, from= IP8; - BPMSX.4L8.B2:BPMSX003, at= -69.3805+(-154-IP8OFS.B2)*DS, mech_sep= -0.0194, slot_id= 43190482, assembly_id= 104616, from= IP8; - MBX.4L8:MBX, at= -63.108+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248483, assembly_id= 103755, from= IP8; - DFBXG.3L8:DFBXG, at= -56.3085+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 104691, from= IP8; - MCOSX.3L8:MCOSX, at= -54.297+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 282252, assembly_id= 103756, from= IP8; - MCOX.3L8:MCOX, at= -54.297+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 282251, assembly_id= 103756, from= IP8; - MCSSX.3L8:MCSSX, at= -54.297+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 282250, assembly_id= 103756, from= IP8; - MCBXH.3L8:MCBXH, at= -53.814+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253184, assembly_id= 103756, from= IP8; - MCBXV.3L8:MCBXV, at= -53.814+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253185, assembly_id= 103756, from= IP8; - MCSX.3L8:MCSX, at= -53.814+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253186, assembly_id= 103756, from= IP8; - MCTX.3L8:MCTX, at= -53.814+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253187, assembly_id= 103756, from= IP8; - MQXA.3L8:MQXA, at= -50.15+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248485, assembly_id= 103756, from= IP8; - MQSX.3L8:MQSX, at= -46.608+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 282207, assembly_id= 103756, from= IP8; - MQXB.B2L8:MQXB, at= -41.3+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248487, assembly_id= 103757, from= IP8; - MCBXH.2L8:MCBXH, at= -38.019+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253192, assembly_id= 103757, from= IP8; - MCBXV.2L8:MCBXV, at= -38.019+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253193, assembly_id= 103757, from= IP8; - MQXB.A2L8:MQXB, at= -34.8+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248489, assembly_id= 103757, from= IP8; - BPMS.2L8.B2:BPMS_003, at= -31.529+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 47564259, assembly_id= 103757, from= IP8; - MCBXH.1L8:MCBXH, at= -29.842+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253194, assembly_id= 103758, from= IP8; - MCBXV.1L8:MCBXV, at= -29.842+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253195, assembly_id= 103758, from= IP8; - MQXA.1L8:MQXA, at= -26.15+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248492, assembly_id= 103758, from= IP8; - BPMSW.1L8.B2:BPMSW002, at= -21.595+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 10428874, assembly_id= 104617, from= IP8; - BPMSW.1L8.B2_DOROS:BPMSW002, at= -21.595+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 12907569, assembly_id= 104617, from= IP8; - MBXWS.1L8:MBXWS, at= -20.765+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 103997, from= IP8; - MBXWH.1L8:MBXWH, at= -5.25+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 103998, from= IP8; -IP8:OMK, at= pIP8+IP8OFS.B2*DS; - MBLW.1R8:MBLW, at= 5.25+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 104001, from= IP8; - MBXWS.1R8:MBXWS, at= 20.765+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 103999, from= IP8; - BPMSW.1R8.B2:BPMSW002, at= 21.595+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 10428868, assembly_id= 104618, from= IP8; - BPMSW.1R8.B2_DOROS:BPMSW002, at= 21.595+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 12907561, assembly_id= 104618, from= IP8; - MQXA.1R8:MQXA, at= 26.15+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248498, assembly_id= 103759, from= IP8; - MCBXH.1R8:MCBXH, at= 29.842+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253196, assembly_id= 103759, from= IP8; - MCBXV.1R8:MCBXV, at= 29.842+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253197, assembly_id= 103759, from= IP8; - BPMS.2R8.B2:BPMS_003, at= 31.529+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 47564249, assembly_id= 103760, from= IP8; - MQXB.A2R8:MQXB, at= 34.8+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248501, assembly_id= 103760, from= IP8; - MCBXH.2R8:MCBXH, at= 38.019+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253198, assembly_id= 103760, from= IP8; - MCBXV.2R8:MCBXV, at= 38.019+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253199, assembly_id= 103760, from= IP8; - MQXB.B2R8:MQXB, at= 41.3+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248503, assembly_id= 103760, from= IP8; - MQSX.3R8:MQSX, at= 46.608+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 282208, assembly_id= 103761, from= IP8; - MQXA.3R8:MQXA, at= 50.15+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248505, assembly_id= 103761, from= IP8; - MCBXH.3R8:MCBXH, at= 53.814+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253204, assembly_id= 103761, from= IP8; - MCBXV.3R8:MCBXV, at= 53.814+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253205, assembly_id= 103761, from= IP8; - MCSX.3R8:MCSX, at= 53.814+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253206, assembly_id= 103761, from= IP8; - MCTX.3R8:MCTX, at= 53.814+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 253207, assembly_id= 103761, from= IP8; - MCOSX.3R8:MCOSX, at= 54.297+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 282255, assembly_id= 103761, from= IP8; - MCOX.3R8:MCOX, at= 54.297+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 282254, assembly_id= 103761, from= IP8; - MCSSX.3R8:MCSSX, at= 54.297+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 282253, assembly_id= 103761, from= IP8; - DFBXH.3R8:DFBXH, at= 56.3085+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 104692, from= IP8; - MBX.4R8:MBX, at= 63.108+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 248507, assembly_id= 103762, from= IP8; - BPMSX.4R8.B2:BPMSX003, at= 69.5005+(-154-IP8OFS.B2)*DS, mech_sep= 0.0194, slot_id= 43190483, assembly_id= 104619, from= IP8; - TCDDM.4R8:TCDDM, at= 71.358+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 103763, from= IP8; - TDISC.A4R8.B2:TDISC, at= 79.583+(-154-IP8OFS.B2)*DS, mech_sep= 0.0740, slot_id= 48194677, assembly_id= 47940368, from= IP8; - TDISB.A4R8.B2:TDISB, at= 81.163+(-154-IP8OFS.B2)*DS, mech_sep= 0.0740, slot_id= 47948772, assembly_id= 47940368, from= IP8; - TDISA.A4R8.B2:TDISA, at= 82.743+(-154-IP8OFS.B2)*DS, mech_sep= 0.0740, slot_id= 47940456, assembly_id= 47940368, from= IP8; - BTVST.A4R8:BTVST064, at= 85.441+(-154-IP8OFS.B2)*DS, mech_sep= -0.0800, slot_id= 181630, from= IP8; - BRANC.4R8:BRANC, at= 113.588+(-154-IP8OFS.B2)*DS, mech_sep= 0, slot_id= 55374023, from= IP8; - BPMWI.4R8.B2:BPMWI, at= 114.6885+(-154-IP8OFS.B2)*DS, mech_sep= 0.1740, slot_id= 104620, assembly_id= 51710752, from= IP8; - BPTDV.A4R8.B2:BPTDV, at= 115.638+(-154-IP8OFS.B2)*DS, mech_sep= 0.1600, slot_id= 8370250, assembly_id= 8370246, from= IP8; - TCTPV.4R8.B2:TCTPV, at= 116.233+(-154-IP8OFS.B2)*DS, mech_sep= 0.1628, slot_id= 8370246, from= IP8; - BPTUV.A4R8.B2:BPTUV, at= 116.828+(-154-IP8OFS.B2)*DS, mech_sep= 0.1600, slot_id= 8370252, assembly_id= 8370246, from= IP8; - BPTDH.A4R8.B2:BPTDH, at= 117.638+(-154-IP8OFS.B2)*DS, mech_sep= 0.1660, slot_id= 8370233, assembly_id= 377645, from= IP8; - TCTPH.4R8.B2:TCTPH, at= 118.233+(-154-IP8OFS.B2)*DS, mech_sep= 0.1689, slot_id= 377645, from= IP8; - BPTUH.A4R8.B2:BPTUH, at= 118.828+(-154-IP8OFS.B2)*DS, mech_sep= 0.1660, slot_id= 8370235, assembly_id= 377645, from= IP8; - TANB.A4R8.B2:TANB, at= 119.4855+(-154-IP8OFS.B2)*DS, mech_sep= 0.1740, slot_id= 52999678, assembly_id= 51710761, from= IP8; - MBRC.4R8.B2:MBRC, at= 126.403+(-154-IP8OFS.B2)*DS, mech_sep= 0.1880, slot_id= 52819763, assembly_id= 103765, from= IP8; - MCBYV.A4R8.B2:MCBYV, at= 132.95+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253208, assembly_id= 103766, from= IP8; - MCBYH.4R8.B2:MCBYH, at= 134.096+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253210, assembly_id= 103766, from= IP8; - MCBYV.B4R8.B2:MCBYV, at= 135.243+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253212, assembly_id= 103766, from= IP8; - MQY.A4R8.B2:MQY, at= 137.59+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303143, assembly_id= 103766, from= IP8; - MQY.B4R8.B2:MQY, at= 141.371+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303142, assembly_id= 103766, from= IP8; -LHCINJ.B2:OMK, at= 143.071+(-154-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - BPMYB.4R8.B2:BPMYB, at= 144.065+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248520, assembly_id= 103766, from= IP8; - BTVSI.A5R8.B2:BTVSI084, at= 145.431+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 181631, from= IP8; - BPTX.5R8.B2:BPTX, at= 146.1615+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 104670, from= IP8; - MKI.A5R8.B2:MKIMA193, at= 148.404+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378211, from= IP8; - MKI.B5R8.B2:MKIMA193, at= 152.368+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378212, from= IP8; - MKI.C5R8.B2:MKIMA193, at= 156.332+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378213, from= IP8; - MKI.D5R8.B2:MKIMA193, at= 160.296+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378214, from= IP8; - BTVSI.C5R8.B2:BTVSI084, at= 163.276+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 181632, from= IP8; - BPMYB.5R8.B2:BPMYB, at= 164.642+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248522, assembly_id= 103768, from= IP8; - MQY.A5R8.B2:MQY, at= 167.336+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303008, assembly_id= 103768, from= IP8; - MQY.B5R8.B2:MQY, at= 171.117+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303007, assembly_id= 103768, from= IP8; - MCBYH.A5R8.B2:MCBYH, at= 173.464+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253215, assembly_id= 103768, from= IP8; - MCBYV.5R8.B2:MCBYV, at= 174.61+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253217, assembly_id= 103768, from= IP8; - MCBYH.B5R8.B2:MCBYH, at= 175.757+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253219, assembly_id= 103768, from= IP8; - BTVSS.6R8.B2:BTVSS074, at= 192.173+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 181633, from= IP8; -MSIA.EXIT.B2:OMK, at= 192.923+(-154-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - MSIA.A6R8.B2:MSIA, at= 194.923+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849911, assembly_id= 134685, from= IP8; - MSIA.B6R8.B2:MSIA, at= 199.373+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849937, assembly_id= 134686, from= IP8; - MSIB.A6R8.B2:MSIB, at= 203.823+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52850041, assembly_id= 134687, from= IP8; - MSIB.B6R8.B2:MSIB, at= 208.273+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52850067, assembly_id= 134688, from= IP8; - MSIB.C6R8.B2:MSIB, at= 212.723+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52850093, assembly_id= 134689, from= IP8; - MCBCV.6R8.B2:MCBCV, at= 238.794+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253220, assembly_id= 103770, from= IP8; - MQML.6R8.B2:MQML, at= 241.836+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307835, assembly_id= 103770, from= IP8; - MQM.6R8.B2:MQM, at= 246.303+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307962, assembly_id= 103770, from= IP8; - BPMR.6R8.B2:BPMR, at= 248.75+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248532, assembly_id= 103770, from= IP8; - DFBAP.7R8.B2:DFBAP, at= 269.1775+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52996911, assembly_id= 104693, from= IP8; - BPM_A.7R8.B2:BPM_A, at= 270.99+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378058, assembly_id= 103771, from= IP8; - MQM.A7R8.B2:MQM, at= 273.435+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307766, assembly_id= 103771, from= IP8; - MQM.B7R8.B2:MQM, at= 277.202+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348455, assembly_id= 103771, from= IP8; - MCBCH.7R8.B2:MCBCH, at= 279.543+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253223, assembly_id= 103771, from= IP8; -S.DS.R8.B2:OMK, at= 280.635+(-154-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - MCO.8R8.B2:MCO, at= 280.979+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253224, assembly_id= 103772, from= IP8; - MCD.8R8.B2:MCD, at= 280.9805+(-154-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253225, assembly_id= 103772, from= IP8; - MB.A8R8.B2:MB, at= 288.465+(-153.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845778, assembly_id= 103772, from= IP8; - MCS.A8R8.B2:MCS, at= 295.889+(-153-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248542, assembly_id= 103772, from= IP8; - MB.B8R8.B2:MB, at= 304.125+(-152.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845802, assembly_id= 103773, from= IP8; - MCS.B8R8.B2:MCS, at= 311.549+(-152-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248545, assembly_id= 103773, from= IP8; - BPM.8R8.B2:BPM, at= 312.428+(-152-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248547, assembly_id= 103774, from= IP8; - MQML.8R8.B2:MQML, at= 315.573+(-152-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307620, assembly_id= 103774, from= IP8; - MCBCV.8R8.B2:MCBCV, at= 318.615+(-152-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253229, assembly_id= 103774, from= IP8; - MCO.9R8.B2:MCO, at= 320.044+(-152-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253230, assembly_id= 103775, from= IP8; - MCD.9R8.B2:MCD, at= 320.0455+(-152-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253231, assembly_id= 103775, from= IP8; - MB.A9R8.B2:MB, at= 327.53+(-151.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845826, assembly_id= 103775, from= IP8; - MCS.A9R8.B2:MCS, at= 334.954+(-151-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248554, assembly_id= 103775, from= IP8; - MB.B9R8.B2:MB, at= 343.19+(-150.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845850, assembly_id= 103776, from= IP8; - MCS.B9R8.B2:MCS, at= 350.614+(-150-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248557, assembly_id= 103776, from= IP8; - BPM.9R8.B2:BPM, at= 351.494+(-150-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248559, assembly_id= 103777, from= IP8; - MQMC.9R8.B2:MQMC, at= 353.47+(-150-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307803, assembly_id= 103777, from= IP8; - MQM.9R8.B2:MQM, at= 356.736+(-150-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307751, assembly_id= 103777, from= IP8; - MCBCH.9R8.B2:MCBCH, at= 359.077+(-150-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253235, assembly_id= 103777, from= IP8; - MCO.10R8.B2:MCO, at= 360.509+(-150-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253236, assembly_id= 103778, from= IP8; - MCD.10R8.B2:MCD, at= 360.5105+(-150-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253237, assembly_id= 103778, from= IP8; - MB.A10R8.B2:MB, at= 367.995+(-149.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845874, assembly_id= 103778, from= IP8; - MCS.A10R8.B2:MCS, at= 375.419+(-149-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248567, assembly_id= 103778, from= IP8; - MB.B10R8.B2:MB, at= 383.655+(-148.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845898, assembly_id= 103779, from= IP8; - MCS.B10R8.B2:MCS, at= 391.079+(-148-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248570, assembly_id= 103779, from= IP8; - BPM.10R8.B2:BPM, at= 391.958+(-148-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248572, assembly_id= 103780, from= IP8; - MQML.10R8.B2:MQML, at= 395.103+(-148-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307827, assembly_id= 103780, from= IP8; - MCBCV.10R8.B2:MCBCV, at= 398.145+(-148-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253241, assembly_id= 103780, from= IP8; - MCO.11R8.B2:MCO, at= 399.574+(-148-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253242, assembly_id= 103781, from= IP8; - MCD.11R8.B2:MCD, at= 399.5755+(-148-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253243, assembly_id= 103781, from= IP8; - MB.A11R8.B2:MB, at= 407.06+(-147.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845922, assembly_id= 103781, from= IP8; - MCS.A11R8.B2:MCS, at= 414.484+(-147-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248579, assembly_id= 103781, from= IP8; - MB.B11R8.B2:MB, at= 422.72+(-146.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849786, assembly_id= 103782, from= IP8; - MCS.B11R8.B2:MCS, at= 430.144+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357339, assembly_id= 103782, from= IP8; - LECL.11R8.B2:LECL, at= 436.93735+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52997766, assembly_id= 103783, from= IP8; - BPM.11R8.B2:BPM, at= 443.7977+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248584, assembly_id= 103784, from= IP8; -MQ.11R8.B2:MQ, at= 446.3447+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308678, assembly_id= 103784, from= IP8; - MQTLI.11R8.B2:MQTLI, at= 448.7137+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307367, assembly_id= 103784, from= IP8; - MS.11R8.B2:MS, at= 449.7257+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253246, assembly_id= 103784, from= IP8; - MCBH.11R8.B2:MCBH, at= 450.3187+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253248, assembly_id= 103784, from= IP8; -S.ARC.81.B2:OMK, at= 451.0697+(-146-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - MCO.A12R8.B2:MCO, at= 451.4137+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253250, assembly_id= 103785, from= IP8; - MCD.A12R8.B2:MCD, at= 451.4152+(-146-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253251, assembly_id= 103785, from= IP8; - MB.A12R8.B2:MB, at= 458.8997+(-145.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845946, assembly_id= 103785, from= IP8; - MCS.A12R8.B2:MCS, at= 466.3237+(-145-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248592, assembly_id= 103785, from= IP8; - MB.B12R8.B2:MB, at= 474.5597+(-144.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845970, assembly_id= 103786, from= IP8; - MCS.B12R8.B2:MCS, at= 481.9837+(-144-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248595, assembly_id= 103786, from= IP8; - MCO.B12R8.B2:MCO, at= 482.7337+(-144-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253254, assembly_id= 103787, from= IP8; - MCD.B12R8.B2:MCD, at= 482.7352+(-144-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253255, assembly_id= 103787, from= IP8; - MB.C12R8.B2:MB, at= 490.2197+(-143.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52845994, assembly_id= 103787, from= IP8; - MCS.C12R8.B2:MCS, at= 497.6437+(-143-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248600, assembly_id= 103787, from= IP8; - BPM.12R8.B2:BPM, at= 498.5227+(-143-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248602, assembly_id= 103788, from= IP8; - MQT.12R8.B2:MQT, at= 499.2767+(-143-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307714, assembly_id= 103788, from= IP8; -MQ.12R8.B2:MQ, at= 501.2847+(-143-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308472, assembly_id= 103788, from= IP8; - MS.12R8.B2:MS, at= 503.1797+(-143-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253258, assembly_id= 103788, from= IP8; - MCBV.12R8.B2:MCBV, at= 503.7727+(-143-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253260, assembly_id= 103788, from= IP8; - MB.A13R8.B2:MB, at= 512.3497+(-142.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846018, assembly_id= 103789, from= IP8; - MCS.A13R8.B2:MCS, at= 519.7737+(-142-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248608, assembly_id= 103789, from= IP8; - MCO.13R8.B2:MCO, at= 520.5237+(-142-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253262, assembly_id= 103790, from= IP8; - MCD.13R8.B2:MCD, at= 520.5252+(-142-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253263, assembly_id= 103790, from= IP8; - MB.B13R8.B2:MB, at= 528.0097+(-141.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846042, assembly_id= 103790, from= IP8; - MCS.B13R8.B2:MCS, at= 535.4337+(-141-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248613, assembly_id= 103790, from= IP8; - MB.C13R8.B2:MB, at= 543.6697+(-140.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846066, assembly_id= 103791, from= IP8; - MCS.C13R8.B2:MCS, at= 551.0937+(-140-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248616, assembly_id= 103791, from= IP8; - BPM.13R8.B2:BPM, at= 551.9727+(-140-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248618, assembly_id= 103792, from= IP8; - MQT.13R8.B2:MQT, at= 552.7267+(-140-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307506, assembly_id= 103792, from= IP8; -MQ.13R8.B2:MQ, at= 554.7347+(-140-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308501, assembly_id= 103792, from= IP8; - MS.13R8.B2:MS, at= 556.6297+(-140-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253266, assembly_id= 103792, from= IP8; - MCBH.13R8.B2:MCBH, at= 557.2227+(-140-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253268, assembly_id= 103792, from= IP8; -E.DS.R8.B2:OMK, at= 557.9697+(-140-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - MCO.A14R8.B2:MCO, at= 558.3137+(-140-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253270, assembly_id= 103793, from= IP8; - MCD.A14R8.B2:MCD, at= 558.3152+(-140-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253271, assembly_id= 103793, from= IP8; - MB.A14R8.B2:MB, at= 565.7997+(-139.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846090, assembly_id= 103793, from= IP8; - MCS.A14R8.B2:MCS, at= 573.2237+(-139-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248626, assembly_id= 103793, from= IP8; - MB.B14R8.B2:MB, at= 581.4597+(-138.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846114, assembly_id= 103794, from= IP8; - MCS.B14R8.B2:MCS, at= 588.8837+(-138-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248629, assembly_id= 103794, from= IP8; - MCO.B14R8.B2:MCO, at= 589.6337+(-138-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253274, assembly_id= 103795, from= IP8; - MCD.B14R8.B2:MCD, at= 589.6352+(-138-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253275, assembly_id= 103795, from= IP8; - MB.C14R8.B2:MB, at= 597.1197+(-137.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846138, assembly_id= 103795, from= IP8; - MCS.C14R8.B2:MCS, at= 604.5437+(-137-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248634, assembly_id= 103795, from= IP8; - BPM.14R8.B2:BPM, at= 605.4227+(-137-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248636, assembly_id= 103796, from= IP8; - MQT.14R8.B2:MQT, at= 606.1767+(-137-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307538, assembly_id= 103796, from= IP8; -MQ.14R8.B2:MQ, at= 608.1847+(-137-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308531, assembly_id= 103796, from= IP8; - MS.14R8.B2:MS, at= 610.0797+(-137-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253278, assembly_id= 103796, from= IP8; - MCBV.14R8.B2:MCBV, at= 610.6727+(-137-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253280, assembly_id= 103796, from= IP8; - MB.A15R8.B2:MB, at= 619.2497+(-136.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846162, assembly_id= 103797, from= IP8; - MCS.A15R8.B2:MCS, at= 626.6737+(-136-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248642, assembly_id= 103797, from= IP8; - MCO.15R8.B2:MCO, at= 627.4237+(-136-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253282, assembly_id= 103798, from= IP8; - MCD.15R8.B2:MCD, at= 627.4252+(-136-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253283, assembly_id= 103798, from= IP8; - MB.B15R8.B2:MB, at= 634.9097+(-135.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846186, assembly_id= 103798, from= IP8; - MCS.B15R8.B2:MCS, at= 642.3337+(-135-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248647, assembly_id= 103798, from= IP8; - MB.C15R8.B2:MB, at= 650.5697+(-134.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846210, assembly_id= 103799, from= IP8; - MCS.C15R8.B2:MCS, at= 657.9937+(-134-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248650, assembly_id= 103799, from= IP8; - BPM.15R8.B2:BPM, at= 658.8727+(-134-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248652, assembly_id= 103800, from= IP8; - MQT.15R8.B2:MQT, at= 659.6267+(-134-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307570, assembly_id= 103800, from= IP8; -MQ.15R8.B2:MQ, at= 661.6347+(-134-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308562, assembly_id= 103800, from= IP8; - MS.15R8.B2:MS, at= 663.5297+(-134-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253286, assembly_id= 103800, from= IP8; - MCBH.15R8.B2:MCBH, at= 664.1227+(-134-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253288, assembly_id= 103800, from= IP8; - MCO.A16R8.B2:MCO, at= 665.2137+(-134-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253290, assembly_id= 103801, from= IP8; - MCD.A16R8.B2:MCD, at= 665.2152+(-134-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253291, assembly_id= 103801, from= IP8; - MB.A16R8.B2:MB, at= 672.6997+(-133.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846234, assembly_id= 103801, from= IP8; - MCS.A16R8.B2:MCS, at= 680.1237+(-133-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248660, assembly_id= 103801, from= IP8; - MB.B16R8.B2:MB, at= 688.3597+(-132.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846258, assembly_id= 103802, from= IP8; - MCS.B16R8.B2:MCS, at= 695.7837+(-132-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248663, assembly_id= 103802, from= IP8; - MCO.B16R8.B2:MCO, at= 696.5337+(-132-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253294, assembly_id= 103803, from= IP8; - MCD.B16R8.B2:MCD, at= 696.5352+(-132-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253295, assembly_id= 103803, from= IP8; - MB.C16R8.B2:MB, at= 704.0197+(-131.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846282, assembly_id= 103803, from= IP8; - MCS.C16R8.B2:MCS, at= 711.4437+(-131-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248668, assembly_id= 103803, from= IP8; - BPM.16R8.B2:BPM, at= 712.3227+(-131-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248670, assembly_id= 103804, from= IP8; - MQT.16R8.B2:MQT, at= 713.0767+(-131-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307599, assembly_id= 103804, from= IP8; -MQ.16R8.B2:MQ, at= 715.0847+(-131-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308354, assembly_id= 103804, from= IP8; - MS.16R8.B2:MS, at= 716.9797+(-131-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253298, assembly_id= 103804, from= IP8; - MCBV.16R8.B2:MCBV, at= 717.5727+(-131-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253300, assembly_id= 103804, from= IP8; - MB.A17R8.B2:MB, at= 726.1497+(-130.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846306, assembly_id= 103805, from= IP8; - MCS.A17R8.B2:MCS, at= 733.5737+(-130-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248676, assembly_id= 103805, from= IP8; - MCO.17R8.B2:MCO, at= 734.3237+(-130-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253302, assembly_id= 103806, from= IP8; - MCD.17R8.B2:MCD, at= 734.3252+(-130-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253303, assembly_id= 103806, from= IP8; - MB.B17R8.B2:MB, at= 741.8097+(-129.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846330, assembly_id= 103806, from= IP8; - MCS.B17R8.B2:MCS, at= 749.2337+(-129-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248681, assembly_id= 103806, from= IP8; - MB.C17R8.B2:MB, at= 757.4697+(-128.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846354, assembly_id= 103807, from= IP8; - MCS.C17R8.B2:MCS, at= 764.8937+(-128-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248684, assembly_id= 103807, from= IP8; - BPM.17R8.B2:BPM, at= 765.7727+(-128-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248686, assembly_id= 103808, from= IP8; - MQT.17R8.B2:MQT, at= 766.5267+(-128-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307394, assembly_id= 103808, from= IP8; -MQ.17R8.B2:MQ, at= 768.5347+(-128-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308384, assembly_id= 103808, from= IP8; - MS.17R8.B2:MS, at= 770.4297+(-128-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253306, assembly_id= 103808, from= IP8; - MCBH.17R8.B2:MCBH, at= 771.0227+(-128-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253308, assembly_id= 103808, from= IP8; - MCO.A18R8.B2:MCO, at= 772.1137+(-128-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253310, assembly_id= 103809, from= IP8; - MCD.A18R8.B2:MCD, at= 772.1152+(-128-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253311, assembly_id= 103809, from= IP8; - MB.A18R8.B2:MB, at= 779.5997+(-127.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846378, assembly_id= 103809, from= IP8; - MCS.A18R8.B2:MCS, at= 787.0237+(-127-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248694, assembly_id= 103809, from= IP8; - MB.B18R8.B2:MB, at= 795.2597+(-126.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846402, assembly_id= 103810, from= IP8; - MCS.B18R8.B2:MCS, at= 802.6837+(-126-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248697, assembly_id= 103810, from= IP8; - MCO.B18R8.B2:MCO, at= 803.4337+(-126-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253314, assembly_id= 103811, from= IP8; - MCD.B18R8.B2:MCD, at= 803.4352+(-126-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253315, assembly_id= 103811, from= IP8; - MB.C18R8.B2:MB, at= 810.9197+(-125.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846426, assembly_id= 103811, from= IP8; - MCS.C18R8.B2:MCS, at= 818.3437+(-125-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248702, assembly_id= 103811, from= IP8; - BPM.18R8.B2:BPM, at= 819.2227+(-125-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248704, assembly_id= 103812, from= IP8; - MQT.18R8.B2:MQT, at= 819.9767+(-125-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307426, assembly_id= 103812, from= IP8; -MQ.18R8.B2:MQ, at= 821.9847+(-125-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308415, assembly_id= 103812, from= IP8; - MS.18R8.B2:MS, at= 823.8797+(-125-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253318, assembly_id= 103812, from= IP8; - MCBV.18R8.B2:MCBV, at= 824.4727+(-125-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253320, assembly_id= 103812, from= IP8; - MB.A19R8.B2:MB, at= 833.0497+(-124.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846450, assembly_id= 103813, from= IP8; - MCS.A19R8.B2:MCS, at= 840.4737+(-124-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248710, assembly_id= 103813, from= IP8; - MCO.19R8.B2:MCO, at= 841.2237+(-124-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253322, assembly_id= 103814, from= IP8; - MCD.19R8.B2:MCD, at= 841.2252+(-124-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253323, assembly_id= 103814, from= IP8; - MB.B19R8.B2:MB, at= 848.7097+(-123.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846474, assembly_id= 103814, from= IP8; - MCS.B19R8.B2:MCS, at= 856.1337+(-123-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248715, assembly_id= 103814, from= IP8; - MB.C19R8.B2:MB, at= 864.3697+(-122.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846498, assembly_id= 103815, from= IP8; - MCS.C19R8.B2:MCS, at= 871.7937+(-122-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248718, assembly_id= 103815, from= IP8; - BPM.19R8.B2:BPM, at= 872.6727+(-122-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248720, assembly_id= 103816, from= IP8; - MQT.19R8.B2:MQT, at= 873.4267+(-122-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307456, assembly_id= 103816, from= IP8; -MQ.19R8.B2:MQ, at= 875.4347+(-122-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308207, assembly_id= 103816, from= IP8; - MS.19R8.B2:MS, at= 877.3297+(-122-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253326, assembly_id= 103816, from= IP8; - MCBH.19R8.B2:MCBH, at= 877.9227+(-122-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253328, assembly_id= 103816, from= IP8; - MCO.A20R8.B2:MCO, at= 879.0137+(-122-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253330, assembly_id= 103817, from= IP8; - MCD.A20R8.B2:MCD, at= 879.0152+(-122-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253331, assembly_id= 103817, from= IP8; - MB.A20R8.B2:MB, at= 886.4997+(-121.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846522, assembly_id= 103817, from= IP8; - MCS.A20R8.B2:MCS, at= 893.9237+(-121-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248728, assembly_id= 103817, from= IP8; - MB.B20R8.B2:MB, at= 902.1597+(-120.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846546, assembly_id= 103818, from= IP8; - MCS.B20R8.B2:MCS, at= 909.5837+(-120-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248731, assembly_id= 103818, from= IP8; - MCO.B20R8.B2:MCO, at= 910.3337+(-120-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253334, assembly_id= 103819, from= IP8; - MCD.B20R8.B2:MCD, at= 910.3352+(-120-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253335, assembly_id= 103819, from= IP8; - MB.C20R8.B2:MB, at= 917.8197+(-119.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846570, assembly_id= 103819, from= IP8; - MCS.C20R8.B2:MCS, at= 925.2437+(-119-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248736, assembly_id= 103819, from= IP8; - BPM.20R8.B2:BPM, at= 926.1227+(-119-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248738, assembly_id= 103820, from= IP8; - MQT.20R8.B2:MQT, at= 926.8767+(-119-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348443, assembly_id= 103820, from= IP8; -MQ.20R8.B2:MQ, at= 928.8847+(-119-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308237, assembly_id= 103820, from= IP8; - MS.20R8.B2:MS, at= 930.7797+(-119-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253338, assembly_id= 103820, from= IP8; - MCBV.20R8.B2:MCBV, at= 931.3727+(-119-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253340, assembly_id= 103820, from= IP8; - MB.A21R8.B2:MB, at= 939.9497+(-118.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846594, assembly_id= 103821, from= IP8; - MCS.A21R8.B2:MCS, at= 947.3737+(-118-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248744, assembly_id= 103821, from= IP8; - MCO.21R8.B2:MCO, at= 948.1237+(-118-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253342, assembly_id= 103822, from= IP8; - MCD.21R8.B2:MCD, at= 948.1252+(-118-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253343, assembly_id= 103822, from= IP8; - MB.B21R8.B2:MB, at= 955.6097+(-117.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846618, assembly_id= 103822, from= IP8; - MCS.B21R8.B2:MCS, at= 963.0337+(-117-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248749, assembly_id= 103822, from= IP8; - MB.C21R8.B2:MB, at= 971.2697+(-116.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846642, assembly_id= 103823, from= IP8; - MCS.C21R8.B2:MCS, at= 978.6937+(-116-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248752, assembly_id= 103823, from= IP8; - BPM.21R8.B2:BPM, at= 979.5727+(-116-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248754, assembly_id= 103824, from= IP8; - MQT.21R8.B2:MQT, at= 980.3267+(-116-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307284, assembly_id= 103824, from= IP8; -MQ.21R8.B2:MQ, at= 982.3347+(-116-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308268, assembly_id= 103824, from= IP8; - MS.21R8.B2:MS, at= 984.2297+(-116-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253346, assembly_id= 103824, from= IP8; - MCBH.21R8.B2:MCBH, at= 984.8227+(-116-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253348, assembly_id= 103824, from= IP8; - MCO.A22R8.B2:MCO, at= 985.9137+(-116-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253350, assembly_id= 103825, from= IP8; - MCD.A22R8.B2:MCD, at= 985.9152+(-116-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253351, assembly_id= 103825, from= IP8; - MB.A22R8.B2:MB, at= 993.3997+(-115.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846666, assembly_id= 103825, from= IP8; - MCS.A22R8.B2:MCS, at= 1000.8237+(-115-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248762, assembly_id= 103825, from= IP8; - MB.B22R8.B2:MB, at= 1009.0597+(-114.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846690, assembly_id= 103826, from= IP8; - MCS.B22R8.B2:MCS, at= 1016.4837+(-114-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248765, assembly_id= 103826, from= IP8; - MCO.B22R8.B2:MCO, at= 1017.2337+(-114-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253354, assembly_id= 103827, from= IP8; - MCD.B22R8.B2:MCD, at= 1017.2352+(-114-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253355, assembly_id= 103827, from= IP8; - MB.C22R8.B2:MB, at= 1024.7197+(-113.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846714, assembly_id= 103827, from= IP8; - MCS.C22R8.B2:MCS, at= 1032.1437+(-113-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248770, assembly_id= 103827, from= IP8; - BPM.22R8.B2:BPM, at= 1033.0227+(-113-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248772, assembly_id= 103828, from= IP8; - MO.22R8.B2:MO, at= 1033.7737+(-113-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308827, assembly_id= 103828, from= IP8; -MQ.22R8.B2:MQ, at= 1035.7847+(-113-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308300, assembly_id= 103828, from= IP8; - MS.22R8.B2:MS, at= 1037.6797+(-113-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253358, assembly_id= 103828, from= IP8; - MCBV.22R8.B2:MCBV, at= 1038.2727+(-113-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253360, assembly_id= 103828, from= IP8; - MB.A23R8.B2:MB, at= 1046.8497+(-112.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846738, assembly_id= 103829, from= IP8; - MCS.A23R8.B2:MCS, at= 1054.2737+(-112-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248778, assembly_id= 103829, from= IP8; - MCO.23R8.B2:MCO, at= 1055.0237+(-112-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253362, assembly_id= 103830, from= IP8; - MCD.23R8.B2:MCD, at= 1055.0252+(-112-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253363, assembly_id= 103830, from= IP8; - MB.B23R8.B2:MB, at= 1062.5097+(-111.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846762, assembly_id= 103830, from= IP8; - MCS.B23R8.B2:MCS, at= 1069.9337+(-111-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248783, assembly_id= 103830, from= IP8; - MB.C23R8.B2:MB, at= 1078.1697+(-110.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846786, assembly_id= 103831, from= IP8; - MCS.C23R8.B2:MCS, at= 1085.5937+(-110-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248786, assembly_id= 103831, from= IP8; - BPM.23R8.B2:BPM, at= 1086.4727+(-110-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266508, assembly_id= 103832, from= IP8; - MQS.23R8.B2:MQS, at= 1087.2267+(-110-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307650, assembly_id= 103832, from= IP8; -MQ.23R8.B2:MQ, at= 1089.2347+(-110-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308089, assembly_id= 103832, from= IP8; - MS.23R8.B2:MS, at= 1091.1297+(-110-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253366, assembly_id= 103832, from= IP8; - MCBH.23R8.B2:MCBH, at= 1091.7227+(-110-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253368, assembly_id= 103832, from= IP8; - MCO.A24R8.B2:MCO, at= 1092.8137+(-110-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253370, assembly_id= 103833, from= IP8; - MCD.A24R8.B2:MCD, at= 1092.8152+(-110-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253371, assembly_id= 103833, from= IP8; - MB.A24R8.B2:MB, at= 1100.2997+(-109.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846810, assembly_id= 103833, from= IP8; - MCS.A24R8.B2:MCS, at= 1107.7237+(-109-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248794, assembly_id= 103833, from= IP8; - MB.B24R8.B2:MB, at= 1115.9597+(-108.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846834, assembly_id= 103834, from= IP8; - MCS.B24R8.B2:MCS, at= 1123.3837+(-108-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248797, assembly_id= 103834, from= IP8; - MCO.B24R8.B2:MCO, at= 1124.1337+(-108-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253374, assembly_id= 103835, from= IP8; - MCD.B24R8.B2:MCD, at= 1124.1352+(-108-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253375, assembly_id= 103835, from= IP8; - MB.C24R8.B2:MB, at= 1131.6197+(-107.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846858, assembly_id= 103835, from= IP8; - MCS.C24R8.B2:MCS, at= 1139.0437+(-107-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248802, assembly_id= 103835, from= IP8; - BPM.24R8.B2:BPM, at= 1139.9227+(-107-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248804, assembly_id= 103836, from= IP8; - MO.24R8.B2:MO, at= 1140.6737+(-107-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308858, assembly_id= 103836, from= IP8; -MQ.24R8.B2:MQ, at= 1142.6847+(-107-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308121, assembly_id= 103836, from= IP8; - MS.24R8.B2:MS, at= 1144.5797+(-107-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253378, assembly_id= 103836, from= IP8; - MCBV.24R8.B2:MCBV, at= 1145.1727+(-107-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253380, assembly_id= 103836, from= IP8; - MB.A25R8.B2:MB, at= 1153.7497+(-106.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846882, assembly_id= 103837, from= IP8; - MCS.A25R8.B2:MCS, at= 1161.1737+(-106-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248810, assembly_id= 103837, from= IP8; - MCO.25R8.B2:MCO, at= 1161.9237+(-106-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253382, assembly_id= 103838, from= IP8; - MCD.25R8.B2:MCD, at= 1161.9252+(-106-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253383, assembly_id= 103838, from= IP8; - MB.B25R8.B2:MB, at= 1169.4097+(-105.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846906, assembly_id= 103838, from= IP8; - MCS.B25R8.B2:MCS, at= 1176.8337+(-105-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248815, assembly_id= 103838, from= IP8; - MB.C25R8.B2:MB, at= 1185.0697+(-104.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846930, assembly_id= 103839, from= IP8; - MCS.C25R8.B2:MCS, at= 1192.4937+(-104-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248818, assembly_id= 103839, from= IP8; - BPM.25R8.B2:BPM, at= 1193.3727+(-104-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248820, assembly_id= 103840, from= IP8; - MO.25R8.B2:MO, at= 1194.1237+(-104-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308890, assembly_id= 103840, from= IP8; -MQ.25R8.B2:MQ, at= 1196.1347+(-104-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308153, assembly_id= 103840, from= IP8; - MS.25R8.B2:MS, at= 1198.0297+(-104-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253386, assembly_id= 103840, from= IP8; - MCBH.25R8.B2:MCBH, at= 1198.6227+(-104-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253388, assembly_id= 103840, from= IP8; - MCO.A26R8.B2:MCO, at= 1199.7137+(-104-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253390, assembly_id= 103841, from= IP8; - MCD.A26R8.B2:MCD, at= 1199.7152+(-104-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253391, assembly_id= 103841, from= IP8; - MB.A26R8.B2:MB, at= 1207.1997+(-103.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846954, assembly_id= 103841, from= IP8; - MCS.A26R8.B2:MCS, at= 1214.6237+(-103-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248828, assembly_id= 103841, from= IP8; - MB.B26R8.B2:MB, at= 1222.8597+(-102.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52846978, assembly_id= 103842, from= IP8; - MCS.B26R8.B2:MCS, at= 1230.2837+(-102-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248831, assembly_id= 103842, from= IP8; - MCO.B26R8.B2:MCO, at= 1231.0337+(-102-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253394, assembly_id= 103843, from= IP8; - MCD.B26R8.B2:MCD, at= 1231.0352+(-102-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253395, assembly_id= 103843, from= IP8; - MB.C26R8.B2:MB, at= 1238.5197+(-101.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847002, assembly_id= 103843, from= IP8; - MCS.C26R8.B2:MCS, at= 1245.9437+(-101-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248836, assembly_id= 103843, from= IP8; - BPM.26R8.B2:BPM, at= 1246.8227+(-101-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248838, assembly_id= 103844, from= IP8; - MO.26R8.B2:MO, at= 1247.5737+(-101-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308921, assembly_id= 103844, from= IP8; -MQ.26R8.B2:MQ, at= 1249.5847+(-101-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308183, assembly_id= 103844, from= IP8; - MS.26R8.B2:MS, at= 1251.4797+(-101-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253398, assembly_id= 103844, from= IP8; - MCBV.26R8.B2:MCBV, at= 1252.0727+(-101-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253400, assembly_id= 103844, from= IP8; - MB.A27R8.B2:MB, at= 1260.6497+(-100.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847026, assembly_id= 103845, from= IP8; - MCS.A27R8.B2:MCS, at= 1268.0737+(-100-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248844, assembly_id= 103845, from= IP8; - MCO.27R8.B2:MCO, at= 1268.8237+(-100-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253402, assembly_id= 103846, from= IP8; - MCD.27R8.B2:MCD, at= 1268.8252+(-100-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253403, assembly_id= 103846, from= IP8; - MB.B27R8.B2:MB, at= 1276.3097+(-99.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847050, assembly_id= 103846, from= IP8; - MCS.B27R8.B2:MCS, at= 1283.7337+(-99-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248849, assembly_id= 103846, from= IP8; - MB.C27R8.B2:MB, at= 1291.9697+(-98.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847074, assembly_id= 103847, from= IP8; - MCS.C27R8.B2:MCS, at= 1299.3937+(-98-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248852, assembly_id= 103847, from= IP8; - BPM.27R8.B2:BPM, at= 1300.2727+(-98-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266510, assembly_id= 103848, from= IP8; - MQS.27R8.B2:MQS, at= 1301.0267+(-98-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307682, assembly_id= 103848, from= IP8; -MQ.27R8.B2:MQ, at= 1303.0347+(-98-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307973, assembly_id= 103848, from= IP8; - MS.27R8.B2:MS, at= 1304.9297+(-98-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253406, assembly_id= 103848, from= IP8; - MCBH.27R8.B2:MCBH, at= 1305.5227+(-98-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253408, assembly_id= 103848, from= IP8; - MCO.A28R8.B2:MCO, at= 1306.6137+(-98-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253410, assembly_id= 103849, from= IP8; - MCD.A28R8.B2:MCD, at= 1306.6152+(-98-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253411, assembly_id= 103849, from= IP8; - MB.A28R8.B2:MB, at= 1314.0997+(-97.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847098, assembly_id= 103849, from= IP8; - MCS.A28R8.B2:MCS, at= 1321.5237+(-97-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248860, assembly_id= 103849, from= IP8; - MB.B28R8.B2:MB, at= 1329.7597+(-96.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847122, assembly_id= 103850, from= IP8; - MCS.B28R8.B2:MCS, at= 1337.1837+(-96-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248863, assembly_id= 103850, from= IP8; - MCO.B28R8.B2:MCO, at= 1337.9337+(-96-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253414, assembly_id= 103851, from= IP8; - MCD.B28R8.B2:MCD, at= 1337.9352+(-96-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253415, assembly_id= 103851, from= IP8; - MB.C28R8.B2:MB, at= 1345.4197+(-95.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847146, assembly_id= 103851, from= IP8; - MCS.C28R8.B2:MCS, at= 1352.8437+(-95-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248868, assembly_id= 103851, from= IP8; - BPM.28R8.B2:BPM, at= 1353.7227+(-95-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248870, assembly_id= 103852, from= IP8; - MO.28R8.B2:MO, at= 1354.4737+(-95-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308711, assembly_id= 103852, from= IP8; -MQ.28R8.B2:MQ, at= 1356.4847+(-95-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308005, assembly_id= 103852, from= IP8; - MS.28R8.B2:MS, at= 1358.3797+(-95-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253418, assembly_id= 103852, from= IP8; - MCBV.28R8.B2:MCBV, at= 1358.9727+(-95-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253420, assembly_id= 103852, from= IP8; - MB.A29R8.B2:MB, at= 1367.5497+(-94.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847170, assembly_id= 103853, from= IP8; - MCS.A29R8.B2:MCS, at= 1374.9737+(-94-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248876, assembly_id= 103853, from= IP8; - MCO.29R8.B2:MCO, at= 1375.7237+(-94-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253422, assembly_id= 103854, from= IP8; - MCD.29R8.B2:MCD, at= 1375.7252+(-94-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253423, assembly_id= 103854, from= IP8; - MB.B29R8.B2:MB, at= 1383.2097+(-93.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847194, assembly_id= 103854, from= IP8; - MCS.B29R8.B2:MCS, at= 1390.6337+(-93-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248881, assembly_id= 103854, from= IP8; - MB.C29R8.B2:MB, at= 1398.8697+(-92.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847218, assembly_id= 103855, from= IP8; - MCS.C29R8.B2:MCS, at= 1406.2937+(-92-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248884, assembly_id= 103855, from= IP8; - BPM.29R8.B2:BPM, at= 1407.1727+(-92-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248886, assembly_id= 103856, from= IP8; - MO.29R8.B2:MO, at= 1407.9237+(-92-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308743, assembly_id= 103856, from= IP8; -MQ.29R8.B2:MQ, at= 1409.9347+(-92-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308035, assembly_id= 103856, from= IP8; - MSS.29R8.B2:MSS, at= 1411.8297+(-92-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253426, assembly_id= 103856, from= IP8; - MCBH.29R8.B2:MCBH, at= 1412.4227+(-92-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253428, assembly_id= 103856, from= IP8; - MCO.A30R8.B2:MCO, at= 1413.5137+(-92-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253430, assembly_id= 103857, from= IP8; - MCD.A30R8.B2:MCD, at= 1413.5152+(-92-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253431, assembly_id= 103857, from= IP8; - MB.A30R8.B2:MB, at= 1420.9997+(-91.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847242, assembly_id= 103857, from= IP8; - MCS.A30R8.B2:MCS, at= 1428.4237+(-91-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248894, assembly_id= 103857, from= IP8; - MB.B30R8.B2:MB, at= 1436.6597+(-90.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847266, assembly_id= 103858, from= IP8; - MCS.B30R8.B2:MCS, at= 1444.0837+(-90-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248897, assembly_id= 103858, from= IP8; - MCO.B30R8.B2:MCO, at= 1444.8337+(-90-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253434, assembly_id= 103859, from= IP8; - MCD.B30R8.B2:MCD, at= 1444.8352+(-90-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253435, assembly_id= 103859, from= IP8; - MB.C30R8.B2:MB, at= 1452.3197+(-89.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847290, assembly_id= 103859, from= IP8; - MCS.C30R8.B2:MCS, at= 1459.7437+(-89-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248902, assembly_id= 103859, from= IP8; - BPM.30R8.B2:BPM, at= 1460.6227+(-89-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248904, assembly_id= 103860, from= IP8; - MO.30R8.B2:MO, at= 1461.3737+(-89-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308773, assembly_id= 103860, from= IP8; -MQ.30R8.B2:MQ, at= 1463.3847+(-89-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308065, assembly_id= 103860, from= IP8; - MS.30R8.B2:MS, at= 1465.2797+(-89-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253438, assembly_id= 103860, from= IP8; - MCBV.30R8.B2:MCBV, at= 1465.8727+(-89-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253440, assembly_id= 103860, from= IP8; - MB.A31R8.B2:MB, at= 1474.4497+(-88.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847314, assembly_id= 103861, from= IP8; - MCS.A31R8.B2:MCS, at= 1481.8737+(-88-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248910, assembly_id= 103861, from= IP8; - MCO.31R8.B2:MCO, at= 1482.6237+(-88-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253442, assembly_id= 103862, from= IP8; - MCD.31R8.B2:MCD, at= 1482.6252+(-88-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253443, assembly_id= 103862, from= IP8; - MB.B31R8.B2:MB, at= 1490.1097+(-87.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847338, assembly_id= 103862, from= IP8; - MCS.B31R8.B2:MCS, at= 1497.5337+(-87-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248915, assembly_id= 103862, from= IP8; - MB.C31R8.B2:MB, at= 1505.7697+(-86.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847362, assembly_id= 103863, from= IP8; - MCS.C31R8.B2:MCS, at= 1513.1937+(-86-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248918, assembly_id= 103863, from= IP8; - BPM.31R8.B2:BPM, at= 1514.0727+(-86-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248920, assembly_id= 103864, from= IP8; - MO.31R8.B2:MO, at= 1514.8237+(-86-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308803, assembly_id= 103864, from= IP8; -MQ.31R8.B2:MQ, at= 1516.8347+(-86-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307857, assembly_id= 103864, from= IP8; - MS.31R8.B2:MS, at= 1518.7297+(-86-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253446, assembly_id= 103864, from= IP8; - MCBH.31R8.B2:MCBH, at= 1519.3227+(-86-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253448, assembly_id= 103864, from= IP8; -S.CELL.81.B2:OMK, at= 1520.0697+(-86-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - MCO.A32R8.B2:MCO, at= 1520.4137+(-86-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253450, assembly_id= 103865, from= IP8; - MCD.A32R8.B2:MCD, at= 1520.4152+(-86-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253451, assembly_id= 103865, from= IP8; - MB.A32R8.B2:MB, at= 1527.8997+(-85.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847386, assembly_id= 103865, from= IP8; - MCS.A32R8.B2:MCS, at= 1535.3237+(-85-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248928, assembly_id= 103865, from= IP8; - MB.B32R8.B2:MB, at= 1543.5597+(-84.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847410, assembly_id= 103866, from= IP8; - MCS.B32R8.B2:MCS, at= 1550.9837+(-84-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248931, assembly_id= 103866, from= IP8; - MCO.B32R8.B2:MCO, at= 1551.7337+(-84-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253454, assembly_id= 103867, from= IP8; - MCD.B32R8.B2:MCD, at= 1551.7352+(-84-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253455, assembly_id= 103867, from= IP8; - MB.C32R8.B2:MB, at= 1559.2197+(-83.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847434, assembly_id= 103867, from= IP8; - MCS.C32R8.B2:MCS, at= 1566.6437+(-83-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248936, assembly_id= 103867, from= IP8; - BPM.32R8.B2:BPM, at= 1567.5227+(-83-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248938, assembly_id= 103868, from= IP8; - MO.32R8.B2:MO, at= 1568.2737+(-83-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308596, assembly_id= 103868, from= IP8; -MQ.32R8.B2:MQ, at= 1570.2847+(-83-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307887, assembly_id= 103868, from= IP8; - MS.32R8.B2:MS, at= 1572.1797+(-83-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253458, assembly_id= 103868, from= IP8; - MCBV.32R8.B2:MCBV, at= 1572.7727+(-83-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253460, assembly_id= 103868, from= IP8; - MB.A33R8.B2:MB, at= 1581.3497+(-82.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847458, assembly_id= 103869, from= IP8; - MCS.A33R8.B2:MCS, at= 1588.7737+(-82-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248944, assembly_id= 103869, from= IP8; - MCO.33R8.B2:MCO, at= 1589.5237+(-82-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253462, assembly_id= 103870, from= IP8; - MCD.33R8.B2:MCD, at= 1589.5252+(-82-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253463, assembly_id= 103870, from= IP8; - MB.B33R8.B2:MB, at= 1597.0097+(-81.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847482, assembly_id= 103870, from= IP8; - MCS.B33R8.B2:MCS, at= 1604.4337+(-81-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248949, assembly_id= 103870, from= IP8; - MB.C33R8.B2:MB, at= 1612.6697+(-80.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847506, assembly_id= 103871, from= IP8; - MCS.C33R8.B2:MCS, at= 1620.0937+(-80-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248952, assembly_id= 103871, from= IP8; - BPM.33R8.B2:BPM, at= 1620.9727+(-80-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248954, assembly_id= 103872, from= IP8; - MO.33R8.B2:MO, at= 1621.7237+(-80-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308626, assembly_id= 103872, from= IP8; -MQ.33R8.B2:MQ, at= 1623.7347+(-80-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307916, assembly_id= 103872, from= IP8; - MSS.33R8.B2:MSS, at= 1625.6297+(-80-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253466, assembly_id= 103872, from= IP8; - MCBH.33R8.B2:MCBH, at= 1626.2227+(-80-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253468, assembly_id= 103872, from= IP8; -E.CELL.81.B2:OMK, at= 1626.9697+(-80-IP8OFS.B2)*DS, slot_id= 100932, from= IP8; - MCO.A34R8.B2:MCO, at= 1627.3137+(-80-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253470, assembly_id= 103873, from= IP8; - MCD.A34R8.B2:MCD, at= 1627.3152+(-80-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253471, assembly_id= 103873, from= IP8; - MB.A34R8.B2:MB, at= 1634.7997+(-79.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847530, assembly_id= 103873, from= IP8; - MCS.A34R8.B2:MCS, at= 1642.2237+(-79-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248962, assembly_id= 103873, from= IP8; - MB.B34R8.B2:MB, at= 1650.4597+(-78.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847554, assembly_id= 103874, from= IP8; - MCS.B34R8.B2:MCS, at= 1657.8837+(-78-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248965, assembly_id= 103874, from= IP8; - MCO.B34R8.B2:MCO, at= 1658.6337+(-78-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253474, assembly_id= 103875, from= IP8; - MCD.B34R8.B2:MCD, at= 1658.6352+(-78-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253475, assembly_id= 103875, from= IP8; - MB.C34R8.B2:MB, at= 1666.1197+(-77.5-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847578, assembly_id= 103875, from= IP8; - MCS.C34R8.B2:MCS, at= 1673.5437+(-77-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248970, assembly_id= 103875, from= IP8; - BPM.34R8.B2:BPM, at= 1674.4227+(-77-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248972, assembly_id= 103876, from= IP8; - MO.34R8.B2:MO, at= 1675.1737+(-77-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308641, assembly_id= 103876, from= IP8; -MQ.34R8.B2:MQ, at= 1677.1847+(-77-IP8OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307931, assembly_id= 103876, from= IP8; - MS.34L1.B2:MS, at= -1664.5007+(-77-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253478, assembly_id= 103876, from= IP1.L1; - MCBV.34L1.B2:MCBV, at= -1663.9077+(-77-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253480, assembly_id= 103876, from= IP1.L1; - MB.C34L1.B2:MB, at= -1655.3307+(-76.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847602, assembly_id= 103877, from= IP1.L1; - MCS.C34L1.B2:MCS, at= -1647.9067+(-76-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248978, assembly_id= 103877, from= IP1.L1; - MCO.34L1.B2:MCO, at= -1647.1567+(-76-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253482, assembly_id= 103878, from= IP1.L1; - MCD.34L1.B2:MCD, at= -1647.1552+(-76-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253483, assembly_id= 103878, from= IP1.L1; - MB.B34L1.B2:MB, at= -1639.6707+(-75.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847626, assembly_id= 103878, from= IP1.L1; - MCS.B34L1.B2:MCS, at= -1632.2467+(-75-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248983, assembly_id= 103878, from= IP1.L1; - MB.A34L1.B2:MB, at= -1624.0107+(-74.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847650, assembly_id= 103879, from= IP1.L1; - MCS.A34L1.B2:MCS, at= -1616.5867+(-74-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248986, assembly_id= 103879, from= IP1.L1; - BPM.33L1.B2:BPM, at= -1615.7077+(-74-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248988, assembly_id= 103880, from= IP1.L1; - MO.33L1.B2:MO, at= -1614.9567+(-74-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308598, assembly_id= 103880, from= IP1.L1; -MQ.33L1.B2:MQ, at= -1612.9457+(-74-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307888, assembly_id= 103880, from= IP1.L1; - MSS.33L1.B2:MSS, at= -1611.0507+(-74-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253486, assembly_id= 103880, from= IP1.L1; - MCBH.33L1.B2:MCBH, at= -1610.4577+(-74-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253488, assembly_id= 103880, from= IP1.L1; - MCO.B33L1.B2:MCO, at= -1609.3667+(-74-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253490, assembly_id= 103881, from= IP1.L1; - MCD.B33L1.B2:MCD, at= -1609.3652+(-74-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253491, assembly_id= 103881, from= IP1.L1; - MB.C33L1.B2:MB, at= -1601.8807+(-73.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847674, assembly_id= 103881, from= IP1.L1; - MCS.C33L1.B2:MCS, at= -1594.4567+(-73-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248996, assembly_id= 103881, from= IP1.L1; - MB.B33L1.B2:MB, at= -1586.2207+(-72.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847698, assembly_id= 103882, from= IP1.L1; - MCS.B33L1.B2:MCS, at= -1578.7967+(-72-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 248999, assembly_id= 103882, from= IP1.L1; - MCO.A33L1.B2:MCO, at= -1578.0467+(-72-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253494, assembly_id= 103883, from= IP1.L1; - MCD.A33L1.B2:MCD, at= -1578.0452+(-72-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253495, assembly_id= 103883, from= IP1.L1; - MB.A33L1.B2:MB, at= -1570.5607+(-71.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847722, assembly_id= 103883, from= IP1.L1; - MCS.A33L1.B2:MCS, at= -1563.1367+(-71-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249004, assembly_id= 103883, from= IP1.L1; - BPM.32L1.B2:BPM, at= -1562.2577+(-71-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249006, assembly_id= 103884, from= IP1.L1; - MO.32L1.B2:MO, at= -1561.5067+(-71-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308566, assembly_id= 103884, from= IP1.L1; -MQ.32L1.B2:MQ, at= -1559.4957+(-71-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307859, assembly_id= 103884, from= IP1.L1; - MS.32L1.B2:MS, at= -1557.6007+(-71-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253498, assembly_id= 103884, from= IP1.L1; - MCBV.32L1.B2:MCBV, at= -1557.0077+(-71-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253500, assembly_id= 103884, from= IP1.L1; - MB.C32L1.B2:MB, at= -1548.4307+(-70.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847746, assembly_id= 103885, from= IP1.L1; - MCS.C32L1.B2:MCS, at= -1541.0067+(-70-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249012, assembly_id= 103885, from= IP1.L1; - MCO.32L1.B2:MCO, at= -1540.2567+(-70-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253502, assembly_id= 103886, from= IP1.L1; - MCD.32L1.B2:MCD, at= -1540.2552+(-70-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253503, assembly_id= 103886, from= IP1.L1; - MB.B32L1.B2:MB, at= -1532.7707+(-69.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847770, assembly_id= 103886, from= IP1.L1; - MCS.B32L1.B2:MCS, at= -1525.3467+(-69-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249017, assembly_id= 103886, from= IP1.L1; - MB.A32L1.B2:MB, at= -1517.1107+(-68.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847794, assembly_id= 103887, from= IP1.L1; - MCS.A32L1.B2:MCS, at= -1509.6867+(-68-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249020, assembly_id= 103887, from= IP1.L1; - BPM.31L1.B2:BPM, at= -1508.8077+(-68-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249022, assembly_id= 103888, from= IP1.L1; - MO.31L1.B2:MO, at= -1508.0567+(-68-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308775, assembly_id= 103888, from= IP1.L1; -MQ.31L1.B2:MQ, at= -1506.0457+(-68-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308067, assembly_id= 103888, from= IP1.L1; - MS.31L1.B2:MS, at= -1504.1507+(-68-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253506, assembly_id= 103888, from= IP1.L1; - MCBH.31L1.B2:MCBH, at= -1503.5577+(-68-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253508, assembly_id= 103888, from= IP1.L1; - MCO.B31L1.B2:MCO, at= -1502.4667+(-68-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253510, assembly_id= 103889, from= IP1.L1; - MCD.B31L1.B2:MCD, at= -1502.4652+(-68-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253511, assembly_id= 103889, from= IP1.L1; - MB.C31L1.B2:MB, at= -1494.9807+(-67.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847818, assembly_id= 103889, from= IP1.L1; - MCS.C31L1.B2:MCS, at= -1487.5567+(-67-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249030, assembly_id= 103889, from= IP1.L1; - MB.B31L1.B2:MB, at= -1479.3207+(-66.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847842, assembly_id= 103890, from= IP1.L1; - MCS.B31L1.B2:MCS, at= -1471.8967+(-66-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249033, assembly_id= 103890, from= IP1.L1; - MCO.A31L1.B2:MCO, at= -1471.1467+(-66-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253514, assembly_id= 103891, from= IP1.L1; - MCD.A31L1.B2:MCD, at= -1471.1452+(-66-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253515, assembly_id= 103891, from= IP1.L1; - MB.A31L1.B2:MB, at= -1463.6607+(-65.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847866, assembly_id= 103891, from= IP1.L1; - MCS.A31L1.B2:MCS, at= -1456.2367+(-65-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249038, assembly_id= 103891, from= IP1.L1; - BPM.30L1.B2:BPM, at= -1455.3577+(-65-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249040, assembly_id= 103892, from= IP1.L1; - MO.30L1.B2:MO, at= -1454.6067+(-65-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308745, assembly_id= 103892, from= IP1.L1; -MQ.30L1.B2:MQ, at= -1452.5957+(-65-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308037, assembly_id= 103892, from= IP1.L1; - MS.30L1.B2:MS, at= -1450.7007+(-65-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253518, assembly_id= 103892, from= IP1.L1; - MCBV.30L1.B2:MCBV, at= -1450.1077+(-65-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253520, assembly_id= 103892, from= IP1.L1; - MB.C30L1.B2:MB, at= -1441.5307+(-64.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847890, assembly_id= 103893, from= IP1.L1; - MCS.C30L1.B2:MCS, at= -1434.1067+(-64-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249046, assembly_id= 103893, from= IP1.L1; - MCO.30L1.B2:MCO, at= -1433.3567+(-64-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253522, assembly_id= 103894, from= IP1.L1; - MCD.30L1.B2:MCD, at= -1433.3552+(-64-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253523, assembly_id= 103894, from= IP1.L1; - MB.B30L1.B2:MB, at= -1425.8707+(-63.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847914, assembly_id= 103894, from= IP1.L1; - MCS.B30L1.B2:MCS, at= -1418.4467+(-63-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249051, assembly_id= 103894, from= IP1.L1; - MB.A30L1.B2:MB, at= -1410.2107+(-62.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847938, assembly_id= 103895, from= IP1.L1; - MCS.A30L1.B2:MCS, at= -1402.7867+(-62-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249054, assembly_id= 103895, from= IP1.L1; - BPM.29L1.B2:BPM, at= -1401.9077+(-62-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249056, assembly_id= 103896, from= IP1.L1; - MO.29L1.B2:MO, at= -1401.1567+(-62-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308713, assembly_id= 103896, from= IP1.L1; -MQ.29L1.B2:MQ, at= -1399.1457+(-62-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308007, assembly_id= 103896, from= IP1.L1; - MSS.29L1.B2:MSS, at= -1397.2507+(-62-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253526, assembly_id= 103896, from= IP1.L1; - MCBH.29L1.B2:MCBH, at= -1396.6577+(-62-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253528, assembly_id= 103896, from= IP1.L1; - MCO.B29L1.B2:MCO, at= -1395.5667+(-62-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253530, assembly_id= 103897, from= IP1.L1; - MCD.B29L1.B2:MCD, at= -1395.5652+(-62-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253531, assembly_id= 103897, from= IP1.L1; - MB.C29L1.B2:MB, at= -1388.0807+(-61.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847962, assembly_id= 103897, from= IP1.L1; - MCS.C29L1.B2:MCS, at= -1380.6567+(-61-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249064, assembly_id= 103897, from= IP1.L1; - MB.B29L1.B2:MB, at= -1372.4207+(-60.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52847986, assembly_id= 103898, from= IP1.L1; - MCS.B29L1.B2:MCS, at= -1364.9967+(-60-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249067, assembly_id= 103898, from= IP1.L1; - MCO.A29L1.B2:MCO, at= -1364.2467+(-60-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253534, assembly_id= 103899, from= IP1.L1; - MCD.A29L1.B2:MCD, at= -1364.2452+(-60-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253535, assembly_id= 103899, from= IP1.L1; - MB.A29L1.B2:MB, at= -1356.7607+(-59.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848010, assembly_id= 103899, from= IP1.L1; - MCS.A29L1.B2:MCS, at= -1349.3367+(-59-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249072, assembly_id= 103899, from= IP1.L1; - BPM.28L1.B2:BPM, at= -1348.4577+(-59-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249074, assembly_id= 103900, from= IP1.L1; - MO.28L1.B2:MO, at= -1347.7067+(-59-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308923, assembly_id= 103900, from= IP1.L1; -MQ.28L1.B2:MQ, at= -1345.6957+(-59-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307975, assembly_id= 103900, from= IP1.L1; - MS.28L1.B2:MS, at= -1343.8007+(-59-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253538, assembly_id= 103900, from= IP1.L1; - MCBV.28L1.B2:MCBV, at= -1343.2077+(-59-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253540, assembly_id= 103900, from= IP1.L1; - MB.C28L1.B2:MB, at= -1334.6307+(-58.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848034, assembly_id= 103901, from= IP1.L1; - MCS.C28L1.B2:MCS, at= -1327.2067+(-58-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249080, assembly_id= 103901, from= IP1.L1; - MCO.28L1.B2:MCO, at= -1326.4567+(-58-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253542, assembly_id= 103902, from= IP1.L1; - MCD.28L1.B2:MCD, at= -1326.4552+(-58-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253543, assembly_id= 103902, from= IP1.L1; - MB.B28L1.B2:MB, at= -1318.9707+(-57.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848058, assembly_id= 103902, from= IP1.L1; - MCS.B28L1.B2:MCS, at= -1311.5467+(-57-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249085, assembly_id= 103902, from= IP1.L1; - MB.A28L1.B2:MB, at= -1303.3107+(-56.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848082, assembly_id= 103903, from= IP1.L1; - MCS.A28L1.B2:MCS, at= -1295.8867+(-56-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249088, assembly_id= 103903, from= IP1.L1; - BPM.27L1.B2:BPM, at= -1295.0077+(-56-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266512, assembly_id= 103904, from= IP1.L1; - MQS.27L1.B2:MQS, at= -1294.2537+(-56-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307652, assembly_id= 103904, from= IP1.L1; -MQ.27L1.B2:MQ, at= -1292.2457+(-56-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308185, assembly_id= 103904, from= IP1.L1; - MS.27L1.B2:MS, at= -1290.3507+(-56-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253546, assembly_id= 103904, from= IP1.L1; - MCBH.27L1.B2:MCBH, at= -1289.7577+(-56-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253548, assembly_id= 103904, from= IP1.L1; - MCO.B27L1.B2:MCO, at= -1288.6667+(-56-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253550, assembly_id= 103905, from= IP1.L1; - MCD.B27L1.B2:MCD, at= -1288.6652+(-56-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253551, assembly_id= 103905, from= IP1.L1; - MB.C27L1.B2:MB, at= -1281.1807+(-55.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848106, assembly_id= 103905, from= IP1.L1; - MCS.C27L1.B2:MCS, at= -1273.7567+(-55-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249096, assembly_id= 103905, from= IP1.L1; - MB.B27L1.B2:MB, at= -1265.5207+(-54.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848130, assembly_id= 103906, from= IP1.L1; - MCS.B27L1.B2:MCS, at= -1258.0967+(-54-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249099, assembly_id= 103906, from= IP1.L1; - MCO.A27L1.B2:MCO, at= -1257.3467+(-54-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253554, assembly_id= 103907, from= IP1.L1; - MCD.A27L1.B2:MCD, at= -1257.3452+(-54-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253555, assembly_id= 103907, from= IP1.L1; - MB.A27L1.B2:MB, at= -1249.8607+(-53.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848154, assembly_id= 103907, from= IP1.L1; - MCS.A27L1.B2:MCS, at= -1242.4367+(-53-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249104, assembly_id= 103907, from= IP1.L1; - BPM.26L1.B2:BPM, at= -1241.5577+(-53-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249106, assembly_id= 103908, from= IP1.L1; - MO.26L1.B2:MO, at= -1240.8067+(-53-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308892, assembly_id= 103908, from= IP1.L1; -MQ.26L1.B2:MQ, at= -1238.7957+(-53-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308155, assembly_id= 103908, from= IP1.L1; - MS.26L1.B2:MS, at= -1236.9007+(-53-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253558, assembly_id= 103908, from= IP1.L1; - MCBV.26L1.B2:MCBV, at= -1236.3077+(-53-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253560, assembly_id= 103908, from= IP1.L1; - MB.C26L1.B2:MB, at= -1227.7307+(-52.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848178, assembly_id= 103909, from= IP1.L1; - MCS.C26L1.B2:MCS, at= -1220.3067+(-52-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249112, assembly_id= 103909, from= IP1.L1; - MCO.26L1.B2:MCO, at= -1219.5567+(-52-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253562, assembly_id= 103910, from= IP1.L1; - MCD.26L1.B2:MCD, at= -1219.5552+(-52-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253563, assembly_id= 103910, from= IP1.L1; - MB.B26L1.B2:MB, at= -1212.0707+(-51.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848202, assembly_id= 103910, from= IP1.L1; - MCS.B26L1.B2:MCS, at= -1204.6467+(-51-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249117, assembly_id= 103910, from= IP1.L1; - MB.A26L1.B2:MB, at= -1196.4107+(-50.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848226, assembly_id= 103911, from= IP1.L1; - MCS.A26L1.B2:MCS, at= -1188.9867+(-50-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249120, assembly_id= 103911, from= IP1.L1; - BPM.25L1.B2:BPM, at= -1188.1077+(-50-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249122, assembly_id= 103912, from= IP1.L1; - MO.25L1.B2:MO, at= -1187.3567+(-50-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308860, assembly_id= 103912, from= IP1.L1; -MQ.25L1.B2:MQ, at= -1185.3457+(-50-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308123, assembly_id= 103912, from= IP1.L1; - MS.25L1.B2:MS, at= -1183.4507+(-50-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253566, assembly_id= 103912, from= IP1.L1; - MCBH.25L1.B2:MCBH, at= -1182.8577+(-50-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253568, assembly_id= 103912, from= IP1.L1; - MCO.B25L1.B2:MCO, at= -1181.7667+(-50-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253570, assembly_id= 103913, from= IP1.L1; - MCD.B25L1.B2:MCD, at= -1181.7652+(-50-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253571, assembly_id= 103913, from= IP1.L1; - MB.C25L1.B2:MB, at= -1174.2807+(-49.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848250, assembly_id= 103913, from= IP1.L1; - MCS.C25L1.B2:MCS, at= -1166.8567+(-49-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249130, assembly_id= 103913, from= IP1.L1; - MB.B25L1.B2:MB, at= -1158.6207+(-48.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848274, assembly_id= 103914, from= IP1.L1; - MCS.B25L1.B2:MCS, at= -1151.1967+(-48-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249133, assembly_id= 103914, from= IP1.L1; - MCO.A25L1.B2:MCO, at= -1150.4467+(-48-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253574, assembly_id= 103915, from= IP1.L1; - MCD.A25L1.B2:MCD, at= -1150.4452+(-48-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253575, assembly_id= 103915, from= IP1.L1; - MB.A25L1.B2:MB, at= -1142.9607+(-47.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848298, assembly_id= 103915, from= IP1.L1; - MCS.A25L1.B2:MCS, at= -1135.5367+(-47-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249138, assembly_id= 103915, from= IP1.L1; - BPM.24L1.B2:BPM, at= -1134.6577+(-47-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249140, assembly_id= 103916, from= IP1.L1; - MO.24L1.B2:MO, at= -1133.9067+(-47-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308829, assembly_id= 103916, from= IP1.L1; -MQ.24L1.B2:MQ, at= -1131.8957+(-47-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308091, assembly_id= 103916, from= IP1.L1; - MS.24L1.B2:MS, at= -1130.0007+(-47-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253578, assembly_id= 103916, from= IP1.L1; - MCBV.24L1.B2:MCBV, at= -1129.4077+(-47-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253580, assembly_id= 103916, from= IP1.L1; - MB.C24L1.B2:MB, at= -1120.8307+(-46.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848322, assembly_id= 103917, from= IP1.L1; - MCS.C24L1.B2:MCS, at= -1113.4067+(-46-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249146, assembly_id= 103917, from= IP1.L1; - MCO.24L1.B2:MCO, at= -1112.6567+(-46-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253582, assembly_id= 103918, from= IP1.L1; - MCD.24L1.B2:MCD, at= -1112.6552+(-46-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253583, assembly_id= 103918, from= IP1.L1; - MB.B24L1.B2:MB, at= -1105.1707+(-45.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848346, assembly_id= 103918, from= IP1.L1; - MCS.B24L1.B2:MCS, at= -1097.7467+(-45-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249151, assembly_id= 103918, from= IP1.L1; - MB.A24L1.B2:MB, at= -1089.5107+(-44.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848370, assembly_id= 103919, from= IP1.L1; - MCS.A24L1.B2:MCS, at= -1082.0867+(-44-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249154, assembly_id= 103919, from= IP1.L1; - BPM.23L1.B2:BPM, at= -1081.2077+(-44-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 266514, assembly_id= 103920, from= IP1.L1; - MQS.23L1.B2:MQS, at= -1080.4537+(-44-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307622, assembly_id= 103920, from= IP1.L1; -MQ.23L1.B2:MQ, at= -1078.4457+(-44-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308302, assembly_id= 103920, from= IP1.L1; - MS.23L1.B2:MS, at= -1076.5507+(-44-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253586, assembly_id= 103920, from= IP1.L1; - MCBH.23L1.B2:MCBH, at= -1075.9577+(-44-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253588, assembly_id= 103920, from= IP1.L1; - MCO.B23L1.B2:MCO, at= -1074.8667+(-44-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253590, assembly_id= 103921, from= IP1.L1; - MCD.B23L1.B2:MCD, at= -1074.8652+(-44-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253591, assembly_id= 103921, from= IP1.L1; - MB.C23L1.B2:MB, at= -1067.3807+(-43.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848394, assembly_id= 103921, from= IP1.L1; - MCS.C23L1.B2:MCS, at= -1059.9567+(-43-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249162, assembly_id= 103921, from= IP1.L1; - MB.B23L1.B2:MB, at= -1051.7207+(-42.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848418, assembly_id= 103922, from= IP1.L1; - MCS.B23L1.B2:MCS, at= -1044.2967+(-42-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249165, assembly_id= 103922, from= IP1.L1; - MCO.A23L1.B2:MCO, at= -1043.5467+(-42-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253594, assembly_id= 103923, from= IP1.L1; - MCD.A23L1.B2:MCD, at= -1043.5452+(-42-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253595, assembly_id= 103923, from= IP1.L1; - MB.A23L1.B2:MB, at= -1036.0607+(-41.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848442, assembly_id= 103923, from= IP1.L1; - MCS.A23L1.B2:MCS, at= -1028.6367+(-41-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249170, assembly_id= 103923, from= IP1.L1; - BPM.22L1.B2:BPM, at= -1027.7577+(-41-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249172, assembly_id= 103924, from= IP1.L1; - MO.22L1.B2:MO, at= -1027.0067+(-41-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2309036, assembly_id= 103924, from= IP1.L1; -MQ.22L1.B2:MQ, at= -1024.9957+(-41-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308270, assembly_id= 103924, from= IP1.L1; - MS.22L1.B2:MS, at= -1023.1007+(-41-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253598, assembly_id= 103924, from= IP1.L1; - MCBV.22L1.B2:MCBV, at= -1022.5077+(-41-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253600, assembly_id= 103924, from= IP1.L1; - MB.C22L1.B2:MB, at= -1013.9307+(-40.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848466, assembly_id= 103925, from= IP1.L1; - MCS.C22L1.B2:MCS, at= -1006.5067+(-40-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249178, assembly_id= 103925, from= IP1.L1; - MCO.22L1.B2:MCO, at= -1005.7567+(-40-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253602, assembly_id= 103926, from= IP1.L1; - MCD.22L1.B2:MCD, at= -1005.7552+(-40-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253603, assembly_id= 103926, from= IP1.L1; - MB.B22L1.B2:MB, at= -998.2707+(-39.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848490, assembly_id= 103926, from= IP1.L1; - MCS.B22L1.B2:MCS, at= -990.8467+(-39-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249183, assembly_id= 103926, from= IP1.L1; - MB.A22L1.B2:MB, at= -982.6107+(-38.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848514, assembly_id= 103927, from= IP1.L1; - MCS.A22L1.B2:MCS, at= -975.1867+(-38-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249186, assembly_id= 103927, from= IP1.L1; - BPM.21L1.B2:BPM, at= -974.3077+(-38-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249188, assembly_id= 103928, from= IP1.L1; - MQT.21L1.B2:MQT, at= -973.5537+(-38-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307487, assembly_id= 103928, from= IP1.L1; -MQ.21L1.B2:MQ, at= -971.5457+(-38-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308239, assembly_id= 103928, from= IP1.L1; - MS.21L1.B2:MS, at= -969.6507+(-38-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253606, assembly_id= 103928, from= IP1.L1; - MCBH.21L1.B2:MCBH, at= -969.0577+(-38-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253608, assembly_id= 103928, from= IP1.L1; - MCO.B21L1.B2:MCO, at= -967.9667+(-38-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253610, assembly_id= 103929, from= IP1.L1; - MCD.B21L1.B2:MCD, at= -967.9652+(-38-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253611, assembly_id= 103929, from= IP1.L1; - MB.C21L1.B2:MB, at= -960.4807+(-37.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848538, assembly_id= 103929, from= IP1.L1; - MCS.C21L1.B2:MCS, at= -953.0567+(-37-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249196, assembly_id= 103929, from= IP1.L1; - MB.B21L1.B2:MB, at= -944.8207+(-36.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848562, assembly_id= 103930, from= IP1.L1; - MCS.B21L1.B2:MCS, at= -937.3967+(-36-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249199, assembly_id= 103930, from= IP1.L1; - MCO.A21L1.B2:MCO, at= -936.6467+(-36-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253614, assembly_id= 103931, from= IP1.L1; - MCD.A21L1.B2:MCD, at= -936.6452+(-36-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253615, assembly_id= 103931, from= IP1.L1; - MB.A21L1.B2:MB, at= -929.1607+(-35.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848586, assembly_id= 103931, from= IP1.L1; - MCS.A21L1.B2:MCS, at= -921.7367+(-35-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249204, assembly_id= 103931, from= IP1.L1; - BPM.20L1.B2:BPM, at= -920.8577+(-35-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249206, assembly_id= 103932, from= IP1.L1; - MQT.20L1.B2:MQT, at= -920.1037+(-35-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307458, assembly_id= 103932, from= IP1.L1; -MQ.20L1.B2:MQ, at= -918.0957+(-35-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308209, assembly_id= 103932, from= IP1.L1; - MS.20L1.B2:MS, at= -916.2007+(-35-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253618, assembly_id= 103932, from= IP1.L1; - MCBV.20L1.B2:MCBV, at= -915.6077+(-35-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253620, assembly_id= 103932, from= IP1.L1; - MB.C20L1.B2:MB, at= -907.0307+(-34.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848610, assembly_id= 103933, from= IP1.L1; - MCS.C20L1.B2:MCS, at= -899.6067+(-34-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249212, assembly_id= 103933, from= IP1.L1; - MCO.20L1.B2:MCO, at= -898.8567+(-34-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253622, assembly_id= 103934, from= IP1.L1; - MCD.20L1.B2:MCD, at= -898.8552+(-34-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253623, assembly_id= 103934, from= IP1.L1; - MB.B20L1.B2:MB, at= -891.3707+(-33.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848634, assembly_id= 103934, from= IP1.L1; - MCS.B20L1.B2:MCS, at= -883.9467+(-33-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249217, assembly_id= 103934, from= IP1.L1; - MB.A20L1.B2:MB, at= -875.7107+(-32.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848658, assembly_id= 103935, from= IP1.L1; - MCS.A20L1.B2:MCS, at= -868.2867+(-32-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249220, assembly_id= 103935, from= IP1.L1; - BPM.19L1.B2:BPM, at= -867.4077+(-32-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249222, assembly_id= 103936, from= IP1.L1; - MQT.19L1.B2:MQT, at= -866.6537+(-32-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307428, assembly_id= 103936, from= IP1.L1; -MQ.19L1.B2:MQ, at= -864.6457+(-32-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308417, assembly_id= 103936, from= IP1.L1; - MS.19L1.B2:MS, at= -862.7507+(-32-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253626, assembly_id= 103936, from= IP1.L1; - MCBH.19L1.B2:MCBH, at= -862.1577+(-32-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253628, assembly_id= 103936, from= IP1.L1; - MCO.B19L1.B2:MCO, at= -861.0667+(-32-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253630, assembly_id= 103937, from= IP1.L1; - MCD.B19L1.B2:MCD, at= -861.0652+(-32-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253631, assembly_id= 103937, from= IP1.L1; - MB.C19L1.B2:MB, at= -853.5807+(-31.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848682, assembly_id= 103937, from= IP1.L1; - MCS.C19L1.B2:MCS, at= -846.1567+(-31-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249230, assembly_id= 103937, from= IP1.L1; - MB.B19L1.B2:MB, at= -837.9207+(-30.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848706, assembly_id= 103938, from= IP1.L1; - MCS.B19L1.B2:MCS, at= -830.4967+(-30-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249233, assembly_id= 103938, from= IP1.L1; - MCO.A19L1.B2:MCO, at= -829.7467+(-30-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253634, assembly_id= 103939, from= IP1.L1; - MCD.A19L1.B2:MCD, at= -829.7452+(-30-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253635, assembly_id= 103939, from= IP1.L1; - MB.A19L1.B2:MB, at= -822.2607+(-29.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848730, assembly_id= 103939, from= IP1.L1; - MCS.A19L1.B2:MCS, at= -814.8367+(-29-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249238, assembly_id= 103939, from= IP1.L1; - BPM.18L1.B2:BPM, at= -813.9577+(-29-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249240, assembly_id= 103940, from= IP1.L1; - MQT.18L1.B2:MQT, at= -813.2037+(-29-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307396, assembly_id= 103940, from= IP1.L1; -MQ.18L1.B2:MQ, at= -811.1957+(-29-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308386, assembly_id= 103940, from= IP1.L1; - MS.18L1.B2:MS, at= -809.3007+(-29-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253638, assembly_id= 103940, from= IP1.L1; - MCBV.18L1.B2:MCBV, at= -808.7077+(-29-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253640, assembly_id= 103940, from= IP1.L1; - MB.C18L1.B2:MB, at= -800.1307+(-28.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848754, assembly_id= 103941, from= IP1.L1; - MCS.C18L1.B2:MCS, at= -792.7067+(-28-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249246, assembly_id= 103941, from= IP1.L1; - MCO.18L1.B2:MCO, at= -791.9567+(-28-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253642, assembly_id= 103942, from= IP1.L1; - MCD.18L1.B2:MCD, at= -791.9552+(-28-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253643, assembly_id= 103942, from= IP1.L1; - MB.B18L1.B2:MB, at= -784.4707+(-27.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848778, assembly_id= 103942, from= IP1.L1; - MCS.B18L1.B2:MCS, at= -777.0467+(-27-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249251, assembly_id= 103942, from= IP1.L1; - MB.A18L1.B2:MB, at= -768.8107+(-26.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848802, assembly_id= 103943, from= IP1.L1; - MCS.A18L1.B2:MCS, at= -761.3867+(-26-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249254, assembly_id= 103943, from= IP1.L1; - BPM.17L1.B2:BPM, at= -760.5077+(-26-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249256, assembly_id= 103944, from= IP1.L1; - MQT.17L1.B2:MQT, at= -759.7537+(-26-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307601, assembly_id= 103944, from= IP1.L1; -MQ.17L1.B2:MQ, at= -757.7457+(-26-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308356, assembly_id= 103944, from= IP1.L1; - MS.17L1.B2:MS, at= -755.8507+(-26-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253646, assembly_id= 103944, from= IP1.L1; - MCBH.17L1.B2:MCBH, at= -755.2577+(-26-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253648, assembly_id= 103944, from= IP1.L1; - MCO.B17L1.B2:MCO, at= -754.1667+(-26-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253650, assembly_id= 103945, from= IP1.L1; - MCD.B17L1.B2:MCD, at= -754.1652+(-26-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253651, assembly_id= 103945, from= IP1.L1; - MB.C17L1.B2:MB, at= -746.6807+(-25.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848826, assembly_id= 103945, from= IP1.L1; - MCS.C17L1.B2:MCS, at= -739.2567+(-25-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249264, assembly_id= 103945, from= IP1.L1; - MB.B17L1.B2:MB, at= -731.0207+(-24.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848850, assembly_id= 103946, from= IP1.L1; - MCS.B17L1.B2:MCS, at= -723.5967+(-24-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249267, assembly_id= 103946, from= IP1.L1; - MCO.A17L1.B2:MCO, at= -722.8467+(-24-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253654, assembly_id= 103947, from= IP1.L1; - MCD.A17L1.B2:MCD, at= -722.8452+(-24-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253655, assembly_id= 103947, from= IP1.L1; - MB.A17L1.B2:MB, at= -715.3607+(-23.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848874, assembly_id= 103947, from= IP1.L1; - MCS.A17L1.B2:MCS, at= -707.9367+(-23-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249272, assembly_id= 103947, from= IP1.L1; - BPM.16L1.B2:BPM, at= -707.0577+(-23-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249274, assembly_id= 103948, from= IP1.L1; - MQT.16L1.B2:MQT, at= -706.3037+(-23-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307571, assembly_id= 103948, from= IP1.L1; -MQ.16L1.B2:MQ, at= -704.2957+(-23-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308564, assembly_id= 103948, from= IP1.L1; - MS.16L1.B2:MS, at= -702.4007+(-23-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253658, assembly_id= 103948, from= IP1.L1; - MCBV.16L1.B2:MCBV, at= -701.8077+(-23-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253660, assembly_id= 103948, from= IP1.L1; - MB.C16L1.B2:MB, at= -693.2307+(-22.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848898, assembly_id= 103949, from= IP1.L1; - MCS.C16L1.B2:MCS, at= -685.8067+(-22-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249280, assembly_id= 103949, from= IP1.L1; - MCO.16L1.B2:MCO, at= -685.0567+(-22-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253662, assembly_id= 103950, from= IP1.L1; - MCD.16L1.B2:MCD, at= -685.0552+(-22-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253663, assembly_id= 103950, from= IP1.L1; - MB.B16L1.B2:MB, at= -677.5707+(-21.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848922, assembly_id= 103950, from= IP1.L1; - MCS.B16L1.B2:MCS, at= -670.1467+(-21-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249285, assembly_id= 103950, from= IP1.L1; - MB.A16L1.B2:MB, at= -661.9107+(-20.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848946, assembly_id= 103951, from= IP1.L1; - MCS.A16L1.B2:MCS, at= -654.4867+(-20-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249288, assembly_id= 103951, from= IP1.L1; - BPM.15L1.B2:BPM, at= -653.6077+(-20-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249290, assembly_id= 103952, from= IP1.L1; - MQT.15L1.B2:MQT, at= -652.8537+(-20-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307540, assembly_id= 103952, from= IP1.L1; -MQ.15L1.B2:MQ, at= -650.8457+(-20-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308533, assembly_id= 103952, from= IP1.L1; - MS.15L1.B2:MS, at= -648.9507+(-20-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253666, assembly_id= 103952, from= IP1.L1; - MCBH.15L1.B2:MCBH, at= -648.3577+(-20-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253668, assembly_id= 103952, from= IP1.L1; - MCO.B15L1.B2:MCO, at= -647.2667+(-20-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253670, assembly_id= 103953, from= IP1.L1; - MCD.B15L1.B2:MCD, at= -647.2652+(-20-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253671, assembly_id= 103953, from= IP1.L1; - MB.C15L1.B2:MB, at= -639.7807+(-19.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848970, assembly_id= 103953, from= IP1.L1; - MCS.C15L1.B2:MCS, at= -632.3567+(-19-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249298, assembly_id= 103953, from= IP1.L1; - MB.B15L1.B2:MB, at= -624.1207+(-18.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52848994, assembly_id= 103954, from= IP1.L1; - MCS.B15L1.B2:MCS, at= -616.6967+(-18-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249301, assembly_id= 103954, from= IP1.L1; - MCO.A15L1.B2:MCO, at= -615.9467+(-18-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253674, assembly_id= 103955, from= IP1.L1; - MCD.A15L1.B2:MCD, at= -615.9452+(-18-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253675, assembly_id= 103955, from= IP1.L1; - MB.A15L1.B2:MB, at= -608.4607+(-17.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849018, assembly_id= 103955, from= IP1.L1; - MCS.A15L1.B2:MCS, at= -601.0367+(-17-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249306, assembly_id= 103955, from= IP1.L1; - BPM.14L1.B2:BPM, at= -600.1577+(-17-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249308, assembly_id= 103956, from= IP1.L1; - MQT.14L1.B2:MQT, at= -599.4037+(-17-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307508, assembly_id= 103956, from= IP1.L1; -MQ.14L1.B2:MQ, at= -597.3957+(-17-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308503, assembly_id= 103956, from= IP1.L1; - MS.14L1.B2:MS, at= -595.5007+(-17-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253678, assembly_id= 103956, from= IP1.L1; - MCBV.14L1.B2:MCBV, at= -594.9077+(-17-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253680, assembly_id= 103956, from= IP1.L1; - MB.C14L1.B2:MB, at= -586.3307+(-16.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849042, assembly_id= 103957, from= IP1.L1; - MCS.C14L1.B2:MCS, at= -578.9067+(-16-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249314, assembly_id= 103957, from= IP1.L1; - MCO.14L1.B2:MCO, at= -578.1567+(-16-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253682, assembly_id= 103958, from= IP1.L1; - MCD.14L1.B2:MCD, at= -578.1552+(-16-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253683, assembly_id= 103958, from= IP1.L1; - MB.B14L1.B2:MB, at= -570.6707+(-15.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849066, assembly_id= 103958, from= IP1.L1; - MCS.B14L1.B2:MCS, at= -563.2467+(-15-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249319, assembly_id= 103958, from= IP1.L1; - MB.A14L1.B2:MB, at= -555.0107+(-14.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849090, assembly_id= 103959, from= IP1.L1; - MCS.A14L1.B2:MCS, at= -547.5867+(-14-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249322, assembly_id= 103959, from= IP1.L1; -S.DS.L1.B2:OMK, at= -547.1807+(-14-IP1OFS.B2)*DS, slot_id= 100932, from= IP1.L1; - BPM.13L1.B2:BPM, at= -546.7077+(-14-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249324, assembly_id= 103960, from= IP1.L1; - MQT.13L1.B2:MQT, at= -545.9537+(-14-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307716, assembly_id= 103960, from= IP1.L1; -MQ.13L1.B2:MQ, at= -543.9457+(-14-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348485, assembly_id= 103960, from= IP1.L1; - MS.13L1.B2:MS, at= -542.0507+(-14-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253686, assembly_id= 103960, from= IP1.L1; - MCBH.13L1.B2:MCBH, at= -541.4577+(-14-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253688, assembly_id= 103960, from= IP1.L1; - MCO.B13L1.B2:MCO, at= -540.3667+(-14-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253690, assembly_id= 103961, from= IP1.L1; - MCD.B13L1.B2:MCD, at= -540.3652+(-14-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253691, assembly_id= 103961, from= IP1.L1; - MB.C13L1.B2:MB, at= -532.8807+(-13.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849114, assembly_id= 103961, from= IP1.L1; - MCS.C13L1.B2:MCS, at= -525.4567+(-13-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249332, assembly_id= 103961, from= IP1.L1; - MB.B13L1.B2:MB, at= -517.2207+(-12.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849138, assembly_id= 103962, from= IP1.L1; - MCS.B13L1.B2:MCS, at= -509.7967+(-12-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249335, assembly_id= 103962, from= IP1.L1; - MCO.A13L1.B2:MCO, at= -509.0467+(-12-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253694, assembly_id= 103963, from= IP1.L1; - MCD.A13L1.B2:MCD, at= -509.0452+(-12-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253695, assembly_id= 103963, from= IP1.L1; - MB.A13L1.B2:MB, at= -501.5607+(-11.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849162, assembly_id= 103963, from= IP1.L1; - MCS.A13L1.B2:MCS, at= -494.1367+(-11-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249340, assembly_id= 103963, from= IP1.L1; - BPM.12L1.B2:BPM, at= -493.2577+(-11-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249342, assembly_id= 103964, from= IP1.L1; - MQT.12L1.B2:MQT, at= -492.5037+(-11-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307684, assembly_id= 103964, from= IP1.L1; -MQ.12L1.B2:MQ, at= -490.4957+(-11-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2308680, assembly_id= 103964, from= IP1.L1; - MS.12L1.B2:MS, at= -488.6007+(-11-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253698, assembly_id= 103964, from= IP1.L1; - MCBV.12L1.B2:MCBV, at= -488.0077+(-11-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253700, assembly_id= 103964, from= IP1.L1; - MB.C12L1.B2:MB, at= -479.4307+(-10.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849186, assembly_id= 103965, from= IP1.L1; - MCS.C12L1.B2:MCS, at= -472.0067+(-10-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249348, assembly_id= 103965, from= IP1.L1; - MCO.12L1.B2:MCO_UNPLUGGED, at= -471.2567+(-10-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253702, assembly_id= 103966, from= IP1.L1; - MCD.12L1.B2:MCD, at= -471.2552+(-10-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253703, assembly_id= 103966, from= IP1.L1; - MB.B12L1.B2:MB, at= -463.7707+(-9.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849210, assembly_id= 103966, from= IP1.L1; - MCS.B12L1.B2:MCS, at= -456.3467+(-9-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249353, assembly_id= 103966, from= IP1.L1; - MB.A12L1.B2:MB, at= -448.1107+(-8.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849234, assembly_id= 103967, from= IP1.L1; - MCS.A12L1.B2:MCS, at= -440.6867+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249356, assembly_id= 103967, from= IP1.L1; -E.ARC.81.B2:OMK, at= -440.2807+(-8-IP1OFS.B2)*DS, slot_id= 100932, from= IP1.L1; - BPM.11L1.B2:BPM, at= -439.8077+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249358, assembly_id= 103968, from= IP1.L1; -MQ.11L1.B2:MQ, at= -437.2607+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348494, assembly_id= 103968, from= IP1.L1; - MQTLI.11L1.B2:MQTLI, at= -434.8917+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307339, assembly_id= 103968, from= IP1.L1; - MS.11L1.B2:MS, at= -433.8797+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253706, assembly_id= 103968, from= IP1.L1; - MCBH.11L1.B2:MCBH, at= -433.2867+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253708, assembly_id= 103968, from= IP1.L1; - LEFL.11L1.B2:LEFL, at= -425.67735+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52997886, assembly_id= 103969, from= IP1.L1; - MCO.11L1.B2:MCO_UNPLUGGED, at= -418.475+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253710, assembly_id= 103970, from= IP1.L1; - MCD.11L1.B2:MCD, at= -418.4735+(-8-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253711, assembly_id= 103970, from= IP1.L1; - MB.B11L1.B2:MB, at= -410.989+(-7.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849258, assembly_id= 103970, from= IP1.L1; - MCS.B11L1.B2:MCS, at= -403.565+(-7-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249366, assembly_id= 103970, from= IP1.L1; - MB.A11L1.B2:MB, at= -395.329+(-6.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849810, assembly_id= 103971, from= IP1.L1; - MCS.A11L1.B2:MCS, at= -387.905+(-6-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357342, assembly_id= 103971, from= IP1.L1; - BPM.10L1.B2:BPM, at= -387.026+(-6-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249371, assembly_id= 103972, from= IP1.L1; - MQML.10L1.B2:MQML, at= -383.881+(-6-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307805, assembly_id= 103972, from= IP1.L1; - MCBCV.10L1.B2:MCBCV, at= -380.839+(-6-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253715, assembly_id= 103972, from= IP1.L1; - MCO.10L1.B2:MCO, at= -379.41+(-6-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253716, assembly_id= 103973, from= IP1.L1; - MCD.10L1.B2:MCD, at= -379.4085+(-6-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253717, assembly_id= 103973, from= IP1.L1; - MB.B10L1.B2:MB, at= -371.924+(-5.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849282, assembly_id= 103973, from= IP1.L1; - MCS.B10L1.B2:MCS, at= -364.5+(-5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249378, assembly_id= 103973, from= IP1.L1; - MB.A10L1.B2:MB, at= -356.264+(-4.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849306, assembly_id= 103974, from= IP1.L1; - MCS.A10L1.B2:MCS, at= -348.84+(-4-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249381, assembly_id= 103974, from= IP1.L1; - BPM.9L1.B2:BPM, at= -347.96+(-4-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249383, assembly_id= 103975, from= IP1.L1; - MQMC.9L1.B2:MQMC, at= -345.984+(-4-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307782, assembly_id= 103975, from= IP1.L1; - MQM.9L1.B2:MQM, at= -342.718+(-4-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307730, assembly_id= 103975, from= IP1.L1; - MCBCH.9L1.B2:MCBCH, at= -340.377+(-4-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253721, assembly_id= 103975, from= IP1.L1; - MCO.9L1.B2:MCO, at= -338.945+(-4-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253722, assembly_id= 103976, from= IP1.L1; - MCD.9L1.B2:MCD, at= -338.9435+(-4-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253723, assembly_id= 103976, from= IP1.L1; - MB.B9L1.B2:MB, at= -331.459+(-3.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849330, assembly_id= 103976, from= IP1.L1; - MCS.B9L1.B2:MCS, at= -324.035+(-3-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249391, assembly_id= 103976, from= IP1.L1; - MB.A9L1.B2:MB, at= -315.799+(-2.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849354, assembly_id= 103977, from= IP1.L1; - MCS.A9L1.B2:MCS, at= -308.375+(-2-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249394, assembly_id= 103977, from= IP1.L1; - BPM.8L1.B2:BPM, at= -307.496+(-2-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249396, assembly_id= 103978, from= IP1.L1; - MQML.8L1.B2:MQML, at= -304.351+(-2-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307837, assembly_id= 103978, from= IP1.L1; - MCBCV.8L1.B2:MCBCV, at= -301.309+(-2-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253727, assembly_id= 103978, from= IP1.L1; - MCO.8L1.B2:MCO, at= -299.88+(-2-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253728, assembly_id= 103979, from= IP1.L1; - MCD.8L1.B2:MCD, at= -299.8785+(-2-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253729, assembly_id= 103979, from= IP1.L1; - MB.B8L1.B2:MB, at= -292.394+(-1.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849378, assembly_id= 103979, from= IP1.L1; - MCS.B8L1.B2:MCS, at= -284.97+(-1-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249403, assembly_id= 103979, from= IP1.L1; - MB.A8L1.B2:MB, at= -276.734+(-.5-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52849834, assembly_id= 103980, from= IP1.L1; - MCS.A8L1.B2:MCS, at= -269.31+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 357345, assembly_id= 103980, from= IP1.L1; -E.DS.L1.B2:OMK, at= -268.904+(0-IP1OFS.B2)*DS, slot_id= 100932, from= IP1.L1; - BPM.7L1.B2:BPM, at= -268.429+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378063, assembly_id= 103981, from= IP1.L1; - MQM.B7L1.B2:MQM, at= -265.984+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2307767, assembly_id= 103981, from= IP1.L1; - MQM.A7L1.B2:MQM, at= -262.217+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2348453, assembly_id= 103981, from= IP1.L1; - MCBCH.7L1.B2:MCBCH, at= -259.876+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378137, assembly_id= 103981, from= IP1.L1; - DFBAA.7L1.B2:DFBAA, at= -257.6965+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 52996551, assembly_id= 104694, from= IP1.L1; - XRPV.B7L1.B2:XRPV, at= -245.656+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 389151, assembly_id= 825697, from= IP1.L1; - BPMSX.7L1.B2:BPMSX004, at= -237.7505+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 826795, from= IP1.L1; - XRPV.A7L1.B2:XRPV, at= -237.398+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 389152, assembly_id= 825698, from= IP1.L1; - MCBCV.6L1.B2:MCBCV, at= -231.432+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253734, assembly_id= 103982, from= IP1.L1; - MQML.6L1.B2:MQML, at= -228.39+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303178, assembly_id= 103982, from= IP1.L1; - BPMR.6L1.B2:BPMR, at= -225.245+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378065, assembly_id= 103982, from= IP1.L1; - TCL.6L1.B2:TCL, at= -219.62+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 12962633, from= IP1.L1; - BPMSA.A6L1.B2:BPMSA, at= -218.2175+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 39831365, from= IP1.L1; - XRPH.B6L1.B2:XRPH, at= -217.909+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 39831394, assembly_id= 39831386, from= IP1.L1; - XRPH.A6L1.B2:XRPH, at= -205.824+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 39831392, assembly_id= 39831385, from= IP1.L1; - MCBCH.5L1.B2:MCBCH, at= -199.532+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253736, assembly_id= 103983, from= IP1.L1; - MQML.5L1.B2:MQML, at= -196.49+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303182, assembly_id= 103983, from= IP1.L1; - BPM.5L1.B2:BPM, at= -193.345+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 378067, assembly_id= 103983, from= IP1.L1; - TCL.5L1.B2:TCL, at= -184.264+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 103984, from= IP1.L1; - BPMYA.4L1.B2:BPMYA, at= -172.227+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 249422, assembly_id= 103985, from= IP1.L1; - MQY.4L1.B2:MQY, at= -169.553+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 2303023, assembly_id= 103985, from= IP1.L1; - MCBYV.B4L1.B2:MCBYV, at= -167.031+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253739, assembly_id= 103985, from= IP1.L1; - MCBYH.4L1.B2:MCBYH, at= -165.735+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253741, assembly_id= 103985, from= IP1.L1; - MCBYV.A4L1.B2:MCBYV, at= -164.439+(0-IP1OFS.B2)*DS, mech_sep= 0.1940, slot_id= 253743, assembly_id= 103985, from= IP1.L1; - MBRC.4L1.B2:MBRC, at= -157.9+(0-IP1OFS.B2)*DS, mech_sep= 0.1880, slot_id= 52819786, assembly_id= 103986, from= IP1.L1; - BPMWB.4L1.B2:BPMWB, at= -151.1705+(0-IP1OFS.B2)*DS, mech_sep= 0.1780, slot_id= 181647, from= IP1.L1; - TCL.4L1.B2:TCL, at= -150.03+(0-IP1OFS.B2)*DS, mech_sep= 0.1762, slot_id= 103987, from= IP1.L1; -E.TAN_C.4L1:OMK, at= -144.5+(0-IP1OFS.B2)*DS, slot_id= 103988, from= IP1.L1; -E.TAN_I.4L1:OMK, at= -144.5+(0-IP1OFS.B2)*DS, slot_id= 103988, from= IP1.L1; - TANAL.4L1:TANAL, at= -142.754+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 103988, from= IP1.L1; -E.TAN_D.4L1:OMK, at= -142.019+(0-IP1OFS.B2)*DS, slot_id= 103988, from= IP1.L1; - X1ZDC.A4L1:X1ZDC001, at= -141.71+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 2019579, assembly_id= 103988, from= IP1.L1; - BRANA.4L1:BRANA, at= -141.36+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 883499, assembly_id= 103988, from= IP1.L1; - X1ZDC.B4L1:X1ZDC002, at= -141.16+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 2019582, assembly_id= 103988, from= IP1.L1; -S.TAN_D.4L1:OMK, at= -141.019+(0-IP1OFS.B2)*DS, slot_id= 103988, from= IP1.L1; -S.TAN_C.4L1:OMK, at= -141.008+(0-IP1OFS.B2)*DS, slot_id= 103988, from= IP1.L1; -E.TAN_M.4L1:OMK, at= -140.7+(0-IP1OFS.B2)*DS, slot_id= 103988, from= IP1.L1; -S.TAN_I.4L1:OMK, at= -140.7+(0-IP1OFS.B2)*DS, slot_id= 103988, from= IP1.L1; -S.TAN_M.4L1:OMK, at= -140.25+(0-IP1OFS.B2)*DS, slot_id= 103988, from= IP1.L1; - MBXW.F4L1:MBXW, at= -82.652+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134690, from= IP1.L1; - MBXW.E4L1:MBXW, at= -78.386+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134691, from= IP1.L1; - MBXW.D4L1:MBXW, at= -74.12+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134692, from= IP1.L1; - MBXW.C4L1:MBXW, at= -69.854+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134693, from= IP1.L1; - MBXW.B4L1:MBXW, at= -65.588+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134694, from= IP1.L1; - MBXW.A4L1:MBXW, at= -61.322+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 134695, from= IP1.L1; - BPMSY.4L1.B2:BPMSY002, at= -58.2545+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 47562528, assembly_id= 104622, from= IP1.L1; - DFBXA.3L1:DFBXA, at= -56.427+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 104695, from= IP1.L1; - MCOSX.3L1:MCOSX_UNPLUGGED, at= -54.297+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282258, assembly_id= 103990, from= IP1.L1; - MCOX.3L1:MCOX, at= -54.297+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282257, assembly_id= 103990, from= IP1.L1; - MCSSX.3L1:MCSSX, at= -54.297+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282256, assembly_id= 103990, from= IP1.L1; - MCBXH.3L1:MCBXH, at= -53.814+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 253744, assembly_id= 103990, from= IP1.L1; - MCBXV.3L1:MCBXV, at= -53.814+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 253745, assembly_id= 103990, from= IP1.L1; - MCSX.3L1:MCSX, at= -53.814+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 253746, assembly_id= 103990, from= IP1.L1; - MCTX.3L1:MCTX, at= -53.814+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 253747, assembly_id= 103990, from= IP1.L1; - MQXA.3L1:MQXA, at= -50.15+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249436, assembly_id= 103990, from= IP1.L1; - MQSX.3L1:MQSX, at= -46.608+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282209, assembly_id= 103990, from= IP1.L1; - TASB.3L1:TASB, at= -45.342+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249438, assembly_id= 103990, from= IP1.L1; - MQXB.B2L1:MQXB, at= -41.3+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249439, assembly_id= 103991, from= IP1.L1; - MCBXH.2L1:MCBXH, at= -38.019+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 253752, assembly_id= 103991, from= IP1.L1; - MCBXV.2L1:MCBXV, at= -38.019+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 253753, assembly_id= 103991, from= IP1.L1; - MQXB.A2L1:MQXB, at= -34.8+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 249441, assembly_id= 103991, from= IP1.L1; - BPMS.2L1.B2:BPMS_003, at= -31.529+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 47564261, assembly_id= 103991, from= IP1.L1; - MCBXH.1L1:MCBXH, at= -29.842+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282219, assembly_id= 103992, from= IP1.L1; - MCBXV.1L1:MCBXV, at= -29.842+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282218, assembly_id= 103992, from= IP1.L1; - MQXA.1L1:MQXA, at= -26.15+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 282210, assembly_id= 103992, from= IP1.L1; - BPMWF.A1L1.B2:BPMWF, at= -21.766+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 6080256, assembly_id= 6080223, from= IP1.L1; - BPMSW.1L1.B2:BPMSW002, at= -21.579+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 6080252, assembly_id= 6080223, from= IP1.L1; - BPMSW.1L1.B2_DOROS:BPMSW002, at= -21.579+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 10429439, assembly_id= 6080223, from= IP1.L1; - TAS.1L1:TAS, at= -19.979+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 103993, from= IP1.L1; - MBAS2.1L1:MBAS2, at= -1.5+(0-IP1OFS.B2)*DS, mech_sep= 0, slot_id= 51937873, from= IP1.L1; -IP1.L1:OMK, at= pIP1.L1+IP1OFS.B2*DS; -ENDSEQUENCE; - -/************************************************************************************/ -/* MAGNET-CONSTANT LHC SEQUENCE %B1 */ -/************************************************************************************/ - - MBAS2.1R1, KS := abas; - MQXA.1R1, K1 := kqx.r1+ktqx1.r1, polarity=+1; - MCBXH.1R1, KICK := acbxh1.r1, polarity=+1; - MCBXV.1R1, KICK := acbxv1.r1, polarity=+1; - MQXB.A2R1, K1 := -kqx.r1-ktqx2.r1, polarity=-1; - MCBXH.2R1, KICK := acbxh2.r1, polarity=+1; - MCBXV.2R1, KICK := acbxv2.r1, polarity=+1; - MQXB.B2R1, K1 := -kqx.r1-ktqx2.r1, polarity=-1; - MQSX.3R1, K1S := kqsx3.r1, polarity=-1; - MQXA.3R1, K1 := kqx.r1, polarity=+1; - MCBXH.3R1, KICK := acbxh3.r1, polarity=+1; - MCBXV.3R1, KICK := acbxv3.r1, polarity=+1; - MCSX.3R1, KNL := {0, 0, kcsx3.r1*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3R1, KNL := {0, 0, 0, 0, 0, kctx3.r1*l.MCTX}, polarity=+1; - MCOSX.3R1, KSL := {0, 0, 0, kcosx3.r1*l.MCOSX}, polarity=-1; - MCOX.3R1, KNL := {0, 0, 0, kcox3.r1*l.MCOX}, polarity=+1; - MCSSX.3R1, KSL := {0, 0, kcssx3.r1*l.MCSSX, 0}, polarity=-1; - MBXW.A4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.B4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.C4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.D4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.E4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.F4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBRC.4R1.B1, ANGLE := ad2.r1, K0 := kd2.r1, polarity=+1; - MCBYV.A4R1.B1, KICK := acbyvs4.r1b1, polarity=+1; - MCBYH.4R1.B1, KICK := acbyhs4.r1b1, polarity=+1; - MCBYV.B4R1.B1, KICK := acbyv4.r1b1, polarity=+1; - MQY.4R1.B1, K1 := kq4.r1b1, polarity=-1; - MCBCH.5R1.B1, KICK := acbch5.r1b1, polarity=+1; - MQML.5R1.B1, K1 := kq5.r1b1, polarity=+1; - MCBCV.6R1.B1, KICK := acbcv6.r1b1, polarity=+1; - MQML.6R1.B1, K1 := kq6.r1b1, polarity=-1; - MQM.A7R1.B1, K1 := kq7.r1b1, polarity=+1; - MQM.B7R1.B1, K1 := kq7.r1b1, polarity=+1; - MCBCH.7R1.B1, KICK := acbch7.r1b1, polarity=+1; - MCD.8R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A8R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A8R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B8R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B8R1.B1, K2 := kcs.a12b1, polarity=+1; - MQML.8R1.B1, K1 := kq8.r1b1, polarity=-1; - MCBCV.8R1.B1, KICK := acbcv8.r1b1, polarity=+1; - MCD.9R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A9R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A9R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B9R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B9R1.B1, K2 := kcs.a12b1, polarity=+1; - MQMC.9R1.B1, K1 := kq9.r1b1, polarity=+1; - MQM.9R1.B1, K1 := kq9.r1b1, polarity=+1; - MCBCH.9R1.B1, KICK := acbch9.r1b1, polarity=+1; - MCD.10R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A10R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A10R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B10R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B10R1.B1, K2 := kcs.a12b1, polarity=+1; - MQML.10R1.B1, K1 := kq10.r1b1, polarity=-1; - MCBCV.10R1.B1, KICK := acbcv10.r1b1, polarity=+1; - MCD.11R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A11R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A11R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B11R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B11R1.B1, K2 := kcs.a12b1, polarity=+1; - MQ.11R1.B1, K1 := kqf.a12, polarity=+1; - MQTLI.11R1.B1, K1 := kqtl11.r1b1, polarity=+1; - MS.11R1.B1, K2 := ksf1.a12b1, polarity=+1; - MCD.A12R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A12R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A12R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B12R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B12R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B12R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C12R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C12R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.12R1.B1, K1 := kqt12.r1b1, polarity=-1; - MQ.12R1.B1, K1 := kqd.a12, polarity=-1; - MS.12R1.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.12R1.B1, KICK := acbv12.r1b1, polarity=+1; - MB.A13R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A13R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.13R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B13R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B13R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C13R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C13R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.13R1.B1, K1 := kqt13.r1b1, polarity=+1; - MQ.13R1.B1, K1 := kqf.a12, polarity=+1; - MS.13R1.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.13R1.B1, KICK := acbh13.r1b1, polarity=+1; - MCD.A14R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A14R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A14R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B14R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B14R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B14R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C14R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C14R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.14R1.B1, K1 := kqtd.a12b1, polarity=-1; - MQ.14R1.B1, K1 := kqd.a12, polarity=-1; - MS.14R1.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.14R1.B1, KICK := acbv14.r1b1, polarity=+1; - MB.A15R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A15R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.15R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B15R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B15R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C15R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C15R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.15R1.B1, K1 := kqtf.a12b1, polarity=+1; - MQ.15R1.B1, K1 := kqf.a12, polarity=+1; - MS.15R1.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.15R1.B1, KICK := acbh15.r1b1, polarity=+1; - MCD.A16R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A16R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A16R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B16R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B16R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B16R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C16R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C16R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.16R1.B1, K1 := kqtd.a12b1, polarity=-1; - MQ.16R1.B1, K1 := kqd.a12, polarity=-1; - MS.16R1.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.16R1.B1, KICK := acbv16.r1b1, polarity=+1; - MB.A17R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A17R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.17R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B17R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B17R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C17R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C17R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.17R1.B1, K1 := kqtf.a12b1, polarity=+1; - MQ.17R1.B1, K1 := kqf.a12, polarity=+1; - MS.17R1.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.17R1.B1, KICK := acbh17.r1b1, polarity=+1; - MCD.A18R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A18R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A18R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B18R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B18R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B18R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C18R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C18R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.18R1.B1, K1 := kqtd.a12b1, polarity=-1; - MQ.18R1.B1, K1 := kqd.a12, polarity=-1; - MS.18R1.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.18R1.B1, KICK := acbv18.r1b1, polarity=+1; - MB.A19R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A19R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.19R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B19R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B19R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C19R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C19R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.19R1.B1, K1 := kqtf.a12b1, polarity=+1; - MQ.19R1.B1, K1 := kqf.a12, polarity=+1; - MS.19R1.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.19R1.B1, KICK := acbh19.r1b1, polarity=+1; - MCD.A20R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A20R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A20R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B20R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B20R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B20R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C20R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C20R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.20R1.B1, K1 := kqtd.a12b1, polarity=-1; - MQ.20R1.B1, K1 := kqd.a12, polarity=-1; - MS.20R1.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.20R1.B1, KICK := acbv20.r1b1, polarity=+1; - MB.A21R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A21R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.21R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B21R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B21R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C21R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C21R1.B1, K2 := kcs.a12b1, polarity=+1; - MQT.21R1.B1, K1 := kqtf.a12b1, polarity=+1; - MQ.21R1.B1, K1 := kqf.a12, polarity=+1; - MS.21R1.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.21R1.B1, KICK := acbh21.r1b1, polarity=+1; - MCD.A22R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A22R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A22R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B22R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B22R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B22R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C22R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C22R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.22R1.B1, K3 := kod.a12b1, polarity=-1; - MQ.22R1.B1, K1 := kqd.a12, polarity=-1; - MS.22R1.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.22R1.B1, KICK := acbv22.r1b1, polarity=+1; - MB.A23R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A23R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.23R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B23R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B23R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C23R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C23R1.B1, K2 := kcs.a12b1, polarity=+1; - MQS.23R1.B1, K1S := kqs.r1b1, polarity=-1; - MQ.23R1.B1, K1 := kqf.a12, polarity=+1; - MS.23R1.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.23R1.B1, KICK := acbh23.r1b1, polarity=+1; - MCD.A24R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A24R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A24R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B24R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B24R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B24R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C24R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C24R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.24R1.B1, K3 := kod.a12b1, polarity=-1; - MQ.24R1.B1, K1 := kqd.a12, polarity=-1; - MS.24R1.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.24R1.B1, KICK := acbv24.r1b1, polarity=+1; - MB.A25R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A25R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.25R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B25R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B25R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C25R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C25R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.25R1.B1, K3 := kof.a12b1, polarity=+1; - MQ.25R1.B1, K1 := kqf.a12, polarity=+1; - MS.25R1.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.25R1.B1, KICK := acbh25.r1b1, polarity=+1; - MCD.A26R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A26R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A26R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B26R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B26R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B26R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C26R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C26R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.26R1.B1, K3 := kod.a12b1, polarity=-1; - MQ.26R1.B1, K1 := kqd.a12, polarity=-1; - MS.26R1.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.26R1.B1, KICK := acbv26.r1b1, polarity=+1; - MB.A27R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A27R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.27R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B27R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B27R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C27R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C27R1.B1, K2 := kcs.a12b1, polarity=+1; - MQS.27R1.B1, K1S := kqs.r1b1, polarity=-1; - MQ.27R1.B1, K1 := kqf.a12, polarity=+1; - MS.27R1.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.27R1.B1, KICK := acbh27.r1b1, polarity=+1; - MCD.A28R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A28R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A28R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B28R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B28R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B28R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C28R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C28R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.28R1.B1, K3 := kod.a12b1, polarity=-1; - MQ.28R1.B1, K1 := kqd.a12, polarity=-1; - MS.28R1.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.28R1.B1, KICK := acbv28.r1b1, polarity=+1; - MB.A29R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A29R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.29R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B29R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B29R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C29R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C29R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.29R1.B1, K3 := kof.a12b1, polarity=+1; - MQ.29R1.B1, K1 := kqf.a12, polarity=+1; - MSS.29R1.B1, K2S := kss.a12b1, polarity=-1; - MCBH.29R1.B1, KICK := acbh29.r1b1, polarity=+1; - MCD.A30R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A30R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A30R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B30R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B30R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B30R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C30R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C30R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.30R1.B1, K3 := kod.a12b1, polarity=-1; - MQ.30R1.B1, K1 := kqd.a12, polarity=-1; - MS.30R1.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.30R1.B1, KICK := acbv30.r1b1, polarity=+1; - MB.A31R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A31R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.31R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B31R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B31R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C31R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C31R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.31R1.B1, K3 := kof.a12b1, polarity=+1; - MQ.31R1.B1, K1 := kqf.a12, polarity=+1; - MS.31R1.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.31R1.B1, KICK := acbh31.r1b1, polarity=+1; - MCD.A32R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A32R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A32R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B32R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B32R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B32R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C32R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C32R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.32R1.B1, K3 := kod.a12b1, polarity=-1; - MQ.32R1.B1, K1 := kqd.a12, polarity=-1; - MS.32R1.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.32R1.B1, KICK := acbv32.r1b1, polarity=+1; - MB.A33R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A33R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.33R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B33R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B33R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.C33R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C33R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.33R1.B1, K3 := kof.a12b1, polarity=+1; - MQ.33R1.B1, K1 := kqf.a12, polarity=+1; - MSS.33R1.B1, K2S := kss.a12b1, polarity=-1; - MCBH.33R1.B1, KICK := acbh33.r1b1, polarity=+1; - MCD.A34R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A34R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A34R1.B1, K2 := kcs.a12b1, polarity=+1; - MB.B34R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B34R1.B1, K2 := kcs.a12b1, polarity=+1; - MCD.B34R1.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C34R1.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C34R1.B1, K2 := kcs.a12b1, polarity=+1; - MO.34R1.B1, K3 := kod.a12b1, polarity=-1; - MQ.34R1.B1, K1 := kqd.a12, polarity=-1; - MS.34L2.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.34L2.B1, KICK := acbv34.l2b1, polarity=+1; - MB.C34L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C34L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B34L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B34L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A34L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A34L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.33L2.B1, K3 := kof.a12b1, polarity=+1; - MQ.33L2.B1, K1 := kqf.a12, polarity=+1; - MSS.33L2.B1, K2S := kss.a12b1, polarity=-1; - MCBH.33L2.B1, KICK := acbh33.l2b1, polarity=+1; - MCD.B33L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C33L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C33L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B33L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B33L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A33L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A33L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A33L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.32L2.B1, K3 := kod.a12b1, polarity=-1; - MQ.32L2.B1, K1 := kqd.a12, polarity=-1; - MS.32L2.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.32L2.B1, KICK := acbv32.l2b1, polarity=+1; - MB.C32L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C32L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.32L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B32L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B32L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A32L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A32L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.31L2.B1, K3 := kof.a12b1, polarity=+1; - MQ.31L2.B1, K1 := kqf.a12, polarity=+1; - MS.31L2.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.31L2.B1, KICK := acbh31.l2b1, polarity=+1; - MCD.B31L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C31L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C31L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B31L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B31L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A31L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A31L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A31L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.30L2.B1, K3 := kod.a12b1, polarity=-1; - MQ.30L2.B1, K1 := kqd.a12, polarity=-1; - MS.30L2.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.30L2.B1, KICK := acbv30.l2b1, polarity=+1; - MB.C30L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C30L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.30L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B30L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B30L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A30L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A30L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.29L2.B1, K3 := kof.a12b1, polarity=+1; - MQ.29L2.B1, K1 := kqf.a12, polarity=+1; - MSS.29L2.B1, K2S := kss.a12b1, polarity=-1; - MCBH.29L2.B1, KICK := acbh29.l2b1, polarity=+1; - MCD.B29L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C29L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C29L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B29L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B29L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A29L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A29L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A29L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.28L2.B1, K3 := kod.a12b1, polarity=-1; - MQ.28L2.B1, K1 := kqd.a12, polarity=-1; - MS.28L2.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.28L2.B1, KICK := acbv28.l2b1, polarity=+1; - MB.C28L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C28L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.28L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B28L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B28L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A28L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A28L2.B1, K2 := kcs.a12b1, polarity=+1; - MQS.27L2.B1, K1S := kqs.l2b1, polarity=-1; - MQ.27L2.B1, K1 := kqf.a12, polarity=+1; - MS.27L2.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.27L2.B1, KICK := acbh27.l2b1, polarity=+1; - MCD.B27L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C27L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C27L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B27L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B27L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A27L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A27L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A27L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.26L2.B1, K3 := kod.a12b1, polarity=-1; - MQ.26L2.B1, K1 := kqd.a12, polarity=-1; - MS.26L2.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.26L2.B1, KICK := acbv26.l2b1, polarity=+1; - MB.C26L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C26L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.26L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B26L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B26L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A26L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A26L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.25L2.B1, K3 := kof.a12b1, polarity=+1; - MQ.25L2.B1, K1 := kqf.a12, polarity=+1; - MS.25L2.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.25L2.B1, KICK := acbh25.l2b1, polarity=+1; - MCD.B25L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C25L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C25L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B25L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B25L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A25L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A25L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A25L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.24L2.B1, K3 := kod.a12b1, polarity=-1; - MQ.24L2.B1, K1 := kqd.a12, polarity=-1; - MS.24L2.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.24L2.B1, KICK := acbv24.l2b1, polarity=+1; - MB.C24L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C24L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.24L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B24L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B24L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A24L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A24L2.B1, K2 := kcs.a12b1, polarity=+1; - MQS.23L2.B1, K1S := kqs.l2b1, polarity=-1; - MQ.23L2.B1, K1 := kqf.a12, polarity=+1; - MS.23L2.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.23L2.B1, KICK := acbh23.l2b1, polarity=+1; - MCD.B23L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C23L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C23L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B23L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B23L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A23L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A23L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A23L2.B1, K2 := kcs.a12b1, polarity=+1; - MO.22L2.B1, K3 := kod.a12b1, polarity=-1; - MQ.22L2.B1, K1 := kqd.a12, polarity=-1; - MS.22L2.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.22L2.B1, KICK := acbv22.l2b1, polarity=+1; - MB.C22L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C22L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.22L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B22L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B22L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A22L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A22L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.21L2.B1, K1 := kqtf.a12b1, polarity=+1; - MQ.21L2.B1, K1 := kqf.a12, polarity=+1; - MS.21L2.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.21L2.B1, KICK := acbh21.l2b1, polarity=+1; - MCD.B21L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C21L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C21L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B21L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B21L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A21L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A21L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A21L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.20L2.B1, K1 := kqtd.a12b1, polarity=-1; - MQ.20L2.B1, K1 := kqd.a12, polarity=-1; - MS.20L2.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.20L2.B1, KICK := acbv20.l2b1, polarity=+1; - MB.C20L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C20L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.20L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B20L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B20L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A20L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A20L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.19L2.B1, K1 := kqtf.a12b1, polarity=+1; - MQ.19L2.B1, K1 := kqf.a12, polarity=+1; - MS.19L2.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.19L2.B1, KICK := acbh19.l2b1, polarity=+1; - MCD.B19L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C19L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C19L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B19L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B19L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A19L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A19L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A19L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.18L2.B1, K1 := kqtd.a12b1, polarity=-1; - MQ.18L2.B1, K1 := kqd.a12, polarity=-1; - MS.18L2.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.18L2.B1, KICK := acbv18.l2b1, polarity=+1; - MB.C18L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C18L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.18L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B18L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B18L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A18L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A18L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.17L2.B1, K1 := kqtf.a12b1, polarity=+1; - MQ.17L2.B1, K1 := kqf.a12, polarity=+1; - MS.17L2.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.17L2.B1, KICK := acbh17.l2b1, polarity=+1; - MCD.B17L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C17L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C17L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B17L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B17L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A17L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A17L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A17L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.16L2.B1, K1 := kqtd.a12b1, polarity=-1; - MQ.16L2.B1, K1 := kqd.a12, polarity=-1; - MS.16L2.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.16L2.B1, KICK := acbv16.l2b1, polarity=+1; - MB.C16L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C16L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.16L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B16L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B16L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A16L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A16L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.15L2.B1, K1 := kqtf.a12b1, polarity=+1; - MQ.15L2.B1, K1 := kqf.a12, polarity=+1; - MS.15L2.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.15L2.B1, KICK := acbh15.l2b1, polarity=+1; - MCD.B15L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C15L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C15L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B15L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B15L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A15L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A15L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A15L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.14L2.B1, K1 := kqtd.a12b1, polarity=-1; - MQ.14L2.B1, K1 := kqd.a12, polarity=-1; - MS.14L2.B1, K2 := ksd2.a12b1, polarity=-1; - MCBV.14L2.B1, KICK := acbv14.l2b1, polarity=+1; - MB.C14L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C14L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.14L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B14L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B14L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A14L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A14L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.13L2.B1, K1 := kqt13.l2b1, polarity=+1; - MQ.13L2.B1, K1 := kqf.a12, polarity=+1; - MS.13L2.B1, K2 := ksf1.a12b1, polarity=+1; - MCBH.13L2.B1, KICK := acbh13.l2b1, polarity=+1; - MCD.B13L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.C13L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C13L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.B13L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B13L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.A13L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.A13L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A13L2.B1, K2 := kcs.a12b1, polarity=+1; - MQT.12L2.B1, K1 := kqt12.l2b1, polarity=-1; - MQ.12L2.B1, K1 := kqd.a12, polarity=-1; - MS.12L2.B1, K2 := ksd1.a12b1, polarity=-1; - MCBV.12L2.B1, KICK := acbv12.l2b1, polarity=+1; - MB.C12L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.C12L2.B1, K2 := kcs.a12b1, polarity=+1; - MCD.12L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B12L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B12L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A12L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A12L2.B1, K2 := kcs.a12b1, polarity=+1; - MQ.11L2.B1, K1 := kqf.a12, polarity=+1; - MQTLI.11L2.B1, K1 := kqtl11.l2b1, polarity=+1; - MS.11L2.B1, K2 := ksf2.a12b1, polarity=+1; - MCBH.11L2.B1, KICK := acbh11.l2b1, polarity=+1; - MCD.11L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B11L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B11L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A11L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A11L2.B1, K2 := kcs.a12b1, polarity=+1; - MQML.10L2.B1, K1 := kq10.l2b1, polarity=-1; - MCBCV.10L2.B1, KICK := acbcv10.l2b1, polarity=+1; - MCD.10L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B10L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B10L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A10L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A10L2.B1, K2 := kcs.a12b1, polarity=+1; - MQMC.9L2.B1, K1 := kq9.l2b1, polarity=+1; - MQM.9L2.B1, K1 := kq9.l2b1, polarity=+1; - MCBCH.9L2.B1, KICK := acbch9.l2b1, polarity=+1; - MCD.9L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B9L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B9L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A9L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A9L2.B1, K2 := kcs.a12b1, polarity=+1; - MQML.8L2.B1, K1 := kq8.l2b1, polarity=-1; - MCBCV.8L2.B1, KICK := acbcv8.l2b1, polarity=+1; - MCD.8L2.B1, KNL := {0, 0, 0, 0, kcd.a12b1*l.MCD}, polarity=+1; - MB.B8L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.B8L2.B1, K2 := kcs.a12b1, polarity=+1; - MB.A8L2.B1, ANGLE := ab.a12, K0 := kb.a12, polarity=+1; - MCS.A8L2.B1, K2 := kcs.a12b1, polarity=+1; - MQM.B7L2.B1, K1 := kq7.l2b1, polarity=+1; - MQM.A7L2.B1, K1 := kq7.l2b1, polarity=+1; - MCBCH.7L2.B1, KICK := acbch7.l2b1, polarity=+1; - MCBCV.6L2.B1, KICK := acbcv6.l2b1, polarity=+1; - MQML.6L2.B1, K1 := kq6.l2b1, polarity=-1; - MQM.6L2.B1, K1 := kq6.l2b1, polarity=-1; - MSIB.C6L2.B1, HKICK := akmsib.l2b1, polarity=-1; - MSIB.B6L2.B1, HKICK := akmsib.l2b1, polarity=-1; - MSIB.A6L2.B1, HKICK := akmsib.l2b1, polarity=-1; - MSIA.B6L2.B1, HKICK := akmsia.l2b1, polarity=-1; - MSIA.A6L2.B1, HKICK := akmsia.l2b1, polarity=-1; - MCBYH.B5L2.B1, KICK := acbyhs5.l2b1, polarity=+1; - MCBYV.5L2.B1, KICK := acbyvs5.l2b1, polarity=+1; - MCBYH.A5L2.B1, KICK := acbyh5.l2b1, polarity=+1; - MQY.B5L2.B1, K1 := kq5.l2b1, polarity=+1; - MQY.A5L2.B1, K1 := kq5.l2b1, polarity=+1; - MKI.D5L2.B1, VKICK := akmki, polarity=+1; - MKI.C5L2.B1, VKICK := akmki, polarity=+1; - MKI.B5L2.B1, VKICK := akmki, polarity=+1; - MKI.A5L2.B1, VKICK := akmki, polarity=+1; - MQY.B4L2.B1, K1 := kq4.l2b1, polarity=-1; - MQY.A4L2.B1, K1 := kq4.l2b1, polarity=-1; - MCBYV.B4L2.B1, KICK := acbyv4.l2b1, polarity=+1; - MCBYH.4L2.B1, KICK := acbyhs4.l2b1, polarity=+1; - MCBYV.A4L2.B1, KICK := acbyvs4.l2b1, polarity=+1; - MBRC.4L2.B1, ANGLE := ad2.l2, K0 := kd2.l2, polarity=+1; - MBX.4L2, ANGLE := -ad1.l2, K0 := -kd1.l2, polarity=-1; - MCBXH.3L2, KICK := acbxh3.l2, polarity=+1; - MCBXV.3L2, KICK := acbxv3.l2, polarity=+1; - MCSX.3L2, KNL := {0, 0, kcsx3.l2*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3L2, KNL := {0, 0, 0, 0, 0, kctx3.l2*l.MCTX}, polarity=+1; - MQXA.3L2, K1 := kqx.l2, polarity=+1; - MQSX.3L2, K1S := kqsx3.l2, polarity=-1; - MQXB.B2L2, K1 := -kqx.l2-ktqx2.l2, polarity=-1; - MCBXH.2L2, KICK := acbxh2.l2, polarity=+1; - MCBXV.2L2, KICK := acbxv2.l2, polarity=+1; - MQXB.A2L2, K1 := -kqx.l2-ktqx2.l2, polarity=-1; - MCBXV.1L2, KICK := acbxv1.l2, polarity=+1; - MQXA.1L2, K1 := kqx.l2+ktqx1.l2, polarity=+1; - MBXWT.1L2, TILT := -0.004170381943025, KICK := abxwt.l2, polarity=+1; - MBWMD.1L2, TILT := -0.004170381943025, KICK := abwmd.l2, polarity=+1; - MBLS2.1L2, KS := abls; - MBLS2.1R2, KS := abls; - MBAW.1R2, TILT := -0.004170381943025, KICK := abaw.r2, polarity=-1; - MBXWT.1R2, TILT := -0.004170381943025, KICK := abxwt.r2, polarity=+1; - MQXA.1R2, K1 := kqx.r2+ktqx1.r2, polarity=-1; - MCBXH.1R2, KICK := acbxh1.r2, polarity=+1; - MCBXV.1R2, KICK := acbxv1.r2, polarity=+1; - MQXB.A2R2, K1 := -kqx.r2-ktqx2.r2, polarity=+1; - MCBXH.2R2, KICK := acbxh2.r2, polarity=+1; - MCBXV.2R2, KICK := acbxv2.r2, polarity=+1; - MQXB.B2R2, K1 := -kqx.r2-ktqx2.r2, polarity=+1; - MQSX.3R2, K1S := kqsx3.r2, polarity=-1; - MQXA.3R2, K1 := kqx.r2, polarity=-1; - MCBXH.3R2, KICK := acbxh3.r2, polarity=+1; - MCBXV.3R2, KICK := acbxv3.r2, polarity=+1; - MCSX.3R2, KNL := {0, 0, kcsx3.r2*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3R2, KNL := {0, 0, 0, 0, 0, kctx3.r2*l.MCTX}, polarity=+1; - MCOSX.3R2, KSL := {0, 0, 0, kcosx3.r2*l.MCOSX}, polarity=-1; - MCOX.3R2, KNL := {0, 0, 0, kcox3.r2*l.MCOX}, polarity=+1; - MCSSX.3R2, KSL := {0, 0, kcssx3.r2*l.MCSSX, 0}, polarity=-1; - MBX.4R2, ANGLE := ad1.r2, K0 := kd1.r2, polarity=+1; - MBRC.4R2.B1, ANGLE := -ad2.r2, K0 := -kd2.r2, polarity=-1; - MCBYH.A4R2.B1, KICK := acbyhs4.r2b1, polarity=+1; - MCBYV.4R2.B1, KICK := acbyvs4.r2b1, polarity=+1; - MCBYH.B4R2.B1, KICK := acbyh4.r2b1, polarity=+1; - MQY.A4R2.B1, K1 := kq4.r2b1, polarity=+1; - MQY.B4R2.B1, K1 := kq4.r2b1, polarity=+1; - MCBCV.A5R2.B1, KICK := acbcvs5.r2b1, polarity=+1; - MCBCH.5R2.B1, KICK := acbchs5.r2b1, polarity=+1; - MCBCV.B5R2.B1, KICK := acbcv5.r2b1, polarity=+1; - MQM.A5R2.B1, K1 := kq5.r2b1, polarity=-1; - MQM.B5R2.B1, K1 := kq5.r2b1, polarity=-1; - MCBCH.6R2.B1, KICK := acbch6.r2b1, polarity=+1; - MQML.6R2.B1, K1 := kq6.r2b1, polarity=+1; - MQM.6R2.B1, K1 := kq6.r2b1, polarity=+1; - MQM.A7R2.B1, K1 := kq7.r2b1, polarity=-1; - MQM.B7R2.B1, K1 := kq7.r2b1, polarity=-1; - MCBCV.7R2.B1, KICK := acbcv7.r2b1, polarity=+1; - MCO.8R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.8R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A8R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A8R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B8R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B8R2.B1, K2 := kcs.a23b1, polarity=+1; - MQML.8R2.B1, K1 := kq8.r2b1, polarity=+1; - MCBCH.8R2.B1, KICK := acbch8.r2b1, polarity=+1; - MCO.9R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.9R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A9R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A9R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B9R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B9R2.B1, K2 := kcs.a23b1, polarity=+1; - MQMC.9R2.B1, K1 := kq9.r2b1, polarity=-1; - MQM.9R2.B1, K1 := kq9.r2b1, polarity=-1; - MCBCV.9R2.B1, KICK := acbcv9.r2b1, polarity=+1; - MCO.10R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.10R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A10R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A10R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B10R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B10R2.B1, K2 := kcs.a23b1, polarity=+1; - MQML.10R2.B1, K1 := kq10.r2b1, polarity=+1; - MCBCH.10R2.B1, KICK := acbch10.r2b1, polarity=+1; - MCO.11R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.11R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A11R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A11R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B11R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B11R2.B1, K2 := kcs.a23b1, polarity=+1; - MQ.11R2.B1, K1 := kqd.a23, polarity=-1; - MQTLI.11R2.B1, K1 := kqtl11.r2b1, polarity=-1; - MS.11R2.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.11R2.B1, KICK := acbv11.r2b1, polarity=+1; - MCO.A12R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A12R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A12R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A12R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B12R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B12R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B12R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B12R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C12R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C12R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.12R2.B1, K1 := kqt12.r2b1, polarity=+1; - MQ.12R2.B1, K1 := kqf.a23, polarity=+1; - MS.12R2.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.12R2.B1, KICK := acbh12.r2b1, polarity=+1; - MB.A13R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A13R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.13R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.13R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B13R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B13R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C13R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C13R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.13R2.B1, K1 := kqt13.r2b1, polarity=-1; - MQ.13R2.B1, K1 := kqd.a23, polarity=-1; - MS.13R2.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.13R2.B1, KICK := acbv13.r2b1, polarity=+1; - MCO.A14R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A14R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A14R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A14R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B14R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B14R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B14R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B14R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C14R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C14R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.14R2.B1, K1 := kqtf.a23b1, polarity=+1; - MQ.14R2.B1, K1 := kqf.a23, polarity=+1; - MS.14R2.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.14R2.B1, KICK := acbh14.r2b1, polarity=+1; - MB.A15R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A15R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.15R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.15R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B15R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B15R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C15R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C15R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.15R2.B1, K1 := kqtd.a23b1, polarity=-1; - MQ.15R2.B1, K1 := kqd.a23, polarity=-1; - MS.15R2.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.15R2.B1, KICK := acbv15.r2b1, polarity=+1; - MCO.A16R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A16R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A16R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A16R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B16R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B16R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B16R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B16R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C16R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C16R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.16R2.B1, K1 := kqtf.a23b1, polarity=+1; - MQ.16R2.B1, K1 := kqf.a23, polarity=+1; - MS.16R2.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.16R2.B1, KICK := acbh16.r2b1, polarity=+1; - MB.A17R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A17R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.17R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.17R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B17R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B17R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C17R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C17R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.17R2.B1, K1 := kqtd.a23b1, polarity=-1; - MQ.17R2.B1, K1 := kqd.a23, polarity=-1; - MS.17R2.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.17R2.B1, KICK := acbv17.r2b1, polarity=+1; - MCO.A18R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A18R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A18R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A18R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B18R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B18R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B18R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B18R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C18R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C18R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.18R2.B1, K1 := kqtf.a23b1, polarity=+1; - MQ.18R2.B1, K1 := kqf.a23, polarity=+1; - MS.18R2.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.18R2.B1, KICK := acbh18.r2b1, polarity=+1; - MB.A19R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A19R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.19R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.19R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B19R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B19R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C19R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C19R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.19R2.B1, K1 := kqtd.a23b1, polarity=-1; - MQ.19R2.B1, K1 := kqd.a23, polarity=-1; - MS.19R2.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.19R2.B1, KICK := acbv19.r2b1, polarity=+1; - MCO.A20R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A20R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A20R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A20R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B20R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B20R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B20R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B20R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C20R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C20R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.20R2.B1, K1 := kqtf.a23b1, polarity=+1; - MQ.20R2.B1, K1 := kqf.a23, polarity=+1; - MS.20R2.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.20R2.B1, KICK := acbh20.r2b1, polarity=+1; - MB.A21R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A21R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.21R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.21R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B21R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B21R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C21R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C21R2.B1, K2 := kcs.a23b1, polarity=+1; - MQT.21R2.B1, K1 := kqtd.a23b1, polarity=-1; - MQ.21R2.B1, K1 := kqd.a23, polarity=-1; - MS.21R2.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.21R2.B1, KICK := acbv21.r2b1, polarity=+1; - MCO.A22R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A22R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A22R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A22R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B22R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B22R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B22R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B22R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C22R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C22R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.22R2.B1, K3 := kof.a23b1, polarity=+1; - MQ.22R2.B1, K1 := kqf.a23, polarity=+1; - MS.22R2.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.22R2.B1, KICK := acbh22.r2b1, polarity=+1; - MB.A23R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A23R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.23R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.23R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B23R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B23R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C23R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C23R2.B1, K2 := kcs.a23b1, polarity=+1; - MQS.23R2.B1, K1S := kqs.a23b1, polarity=-1; - MQ.23R2.B1, K1 := kqd.a23, polarity=-1; - MS.23R2.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.23R2.B1, KICK := acbv23.r2b1, polarity=+1; - MCO.A24R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A24R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A24R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A24R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B24R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B24R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B24R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B24R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C24R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C24R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.24R2.B1, K3 := kof.a23b1, polarity=+1; - MQ.24R2.B1, K1 := kqf.a23, polarity=+1; - MS.24R2.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.24R2.B1, KICK := acbh24.r2b1, polarity=+1; - MB.A25R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A25R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.25R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.25R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B25R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B25R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C25R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C25R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.25R2.B1, K3 := kod.a23b1, polarity=-1; - MQ.25R2.B1, K1 := kqd.a23, polarity=-1; - MS.25R2.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.25R2.B1, KICK := acbv25.r2b1, polarity=+1; - MCO.A26R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A26R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A26R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A26R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B26R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B26R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B26R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B26R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C26R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C26R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.26R2.B1, K3 := kof.a23b1, polarity=+1; - MQ.26R2.B1, K1 := kqf.a23, polarity=+1; - MS.26R2.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.26R2.B1, KICK := acbh26.r2b1, polarity=+1; - MB.A27R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A27R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.27R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.27R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B27R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B27R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C27R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C27R2.B1, K2 := kcs.a23b1, polarity=+1; - MQS.27R2.B1, K1S := kqs.a23b1, polarity=-1; - MQ.27R2.B1, K1 := kqd.a23, polarity=-1; - MS.27R2.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.27R2.B1, KICK := acbv27.r2b1, polarity=+1; - MCO.A28R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A28R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A28R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A28R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B28R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B28R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B28R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B28R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C28R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C28R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.28R2.B1, K3 := kof.a23b1, polarity=+1; - MQ.28R2.B1, K1 := kqf.a23, polarity=+1; - MS.28R2.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.28R2.B1, KICK := acbh28.r2b1, polarity=+1; - MB.A29R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A29R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.29R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.29R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B29R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B29R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C29R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C29R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.29R2.B1, K3 := kod.a23b1, polarity=-1; - MQ.29R2.B1, K1 := kqd.a23, polarity=-1; - MS.29R2.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.29R2.B1, KICK := acbv29.r2b1, polarity=+1; - MCO.A30R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A30R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A30R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A30R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B30R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B30R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B30R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B30R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C30R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C30R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.30R2.B1, K3 := kof.a23b1, polarity=+1; - MQ.30R2.B1, K1 := kqf.a23, polarity=+1; - MSS.30R2.B1, K2S := kss.a23b1, polarity=-1; - MCBH.30R2.B1, KICK := acbh30.r2b1, polarity=+1; - MB.A31R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A31R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.31R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.31R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B31R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B31R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C31R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C31R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.31R2.B1, K3 := kod.a23b1, polarity=-1; - MQ.31R2.B1, K1 := kqd.a23, polarity=-1; - MS.31R2.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.31R2.B1, KICK := acbv31.r2b1, polarity=+1; - MCO.A32R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A32R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A32R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A32R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B32R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B32R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B32R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B32R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C32R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C32R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.32R2.B1, K3 := kof.a23b1, polarity=+1; - MQ.32R2.B1, K1 := kqf.a23, polarity=+1; - MS.32R2.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.32R2.B1, KICK := acbh32.r2b1, polarity=+1; - MB.A33R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A33R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.33R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.33R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B33R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B33R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.C33R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C33R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.33R2.B1, K3 := kod.a23b1, polarity=-1; - MQ.33R2.B1, K1 := kqd.a23, polarity=-1; - MS.33R2.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.33R2.B1, KICK := acbv33.r2b1, polarity=+1; - MCO.A34R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A34R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A34R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A34R2.B1, K2 := kcs.a23b1, polarity=+1; - MB.B34R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B34R2.B1, K2 := kcs.a23b1, polarity=+1; - MCO.B34R2.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B34R2.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C34R2.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C34R2.B1, K2 := kcs.a23b1, polarity=+1; - MO.34R2.B1, K3 := kof.a23b1, polarity=+1; - MQ.34R2.B1, K1 := kqf.a23, polarity=+1; - MSS.34L3.B1, K2S := kss.a23b1, polarity=-1; - MCBH.34L3.B1, KICK := acbh34.l3b1, polarity=+1; - MB.C34L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C34L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.34L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.34L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B34L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B34L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A34L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A34L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.33L3.B1, K3 := kod.a23b1, polarity=-1; - MQ.33L3.B1, K1 := kqd.a23, polarity=-1; - MS.33L3.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.33L3.B1, KICK := acbv33.l3b1, polarity=+1; - MCO.B33L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B33L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C33L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C33L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B33L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B33L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A33L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A33L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A33L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A33L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.32L3.B1, K3 := kof.a23b1, polarity=+1; - MQ.32L3.B1, K1 := kqf.a23, polarity=+1; - MSS.32L3.B1, K2S := kss.a23b1, polarity=-1; - MCBH.32L3.B1, KICK := acbh32.l3b1, polarity=+1; - MB.C32L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C32L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.32L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.32L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B32L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B32L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A32L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A32L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.31L3.B1, K3 := kod.a23b1, polarity=-1; - MQ.31L3.B1, K1 := kqd.a23, polarity=-1; - MS.31L3.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.31L3.B1, KICK := acbv31.l3b1, polarity=+1; - MCO.B31L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B31L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C31L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C31L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B31L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B31L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A31L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A31L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A31L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A31L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.30L3.B1, K3 := kof.a23b1, polarity=+1; - MQ.30L3.B1, K1 := kqf.a23, polarity=+1; - MS.30L3.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.30L3.B1, KICK := acbh30.l3b1, polarity=+1; - MB.C30L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C30L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.30L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.30L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B30L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B30L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A30L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A30L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.29L3.B1, K3 := kod.a23b1, polarity=-1; - MQ.29L3.B1, K1 := kqd.a23, polarity=-1; - MS.29L3.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.29L3.B1, KICK := acbv29.l3b1, polarity=+1; - MCO.B29L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B29L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C29L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C29L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B29L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B29L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A29L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A29L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A29L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A29L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.28L3.B1, K3 := kof.a23b1, polarity=+1; - MQ.28L3.B1, K1 := kqf.a23, polarity=+1; - MSS.28L3.B1, K2S := kss.a23b1, polarity=-1; - MCBH.28L3.B1, KICK := acbh28.l3b1, polarity=+1; - MB.C28L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C28L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.28L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.28L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B28L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B28L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A28L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A28L3.B1, K2 := kcs.a23b1, polarity=+1; - MQS.27L3.B1, K1S := kqs.a23b1, polarity=-1; - MQ.27L3.B1, K1 := kqd.a23, polarity=-1; - MS.27L3.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.27L3.B1, KICK := acbv27.l3b1, polarity=+1; - MCO.B27L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B27L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C27L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C27L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B27L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B27L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A27L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A27L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A27L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A27L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.26L3.B1, K3 := kof.a23b1, polarity=+1; - MQ.26L3.B1, K1 := kqf.a23, polarity=+1; - MS.26L3.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.26L3.B1, KICK := acbh26.l3b1, polarity=+1; - MB.C26L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C26L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.26L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.26L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B26L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B26L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A26L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A26L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.25L3.B1, K3 := kod.a23b1, polarity=-1; - MQ.25L3.B1, K1 := kqd.a23, polarity=-1; - MS.25L3.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.25L3.B1, KICK := acbv25.l3b1, polarity=+1; - MCO.B25L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B25L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C25L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C25L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B25L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B25L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A25L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A25L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A25L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A25L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.24L3.B1, K3 := kof.a23b1, polarity=+1; - MQ.24L3.B1, K1 := kqf.a23, polarity=+1; - MS.24L3.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.24L3.B1, KICK := acbh24.l3b1, polarity=+1; - MB.C24L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C24L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.24L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.24L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B24L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B24L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A24L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A24L3.B1, K2 := kcs.a23b1, polarity=+1; - MQS.23L3.B1, K1S := kqs.a23b1, polarity=-1; - MQ.23L3.B1, K1 := kqd.a23, polarity=-1; - MS.23L3.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.23L3.B1, KICK := acbv23.l3b1, polarity=+1; - MCO.B23L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B23L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C23L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C23L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B23L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B23L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A23L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A23L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A23L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A23L3.B1, K2 := kcs.a23b1, polarity=+1; - MO.22L3.B1, K3 := kof.a23b1, polarity=+1; - MQ.22L3.B1, K1 := kqf.a23, polarity=+1; - MS.22L3.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.22L3.B1, KICK := acbh22.l3b1, polarity=+1; - MB.C22L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C22L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.22L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.22L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B22L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B22L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A22L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A22L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.21L3.B1, K1 := kqtd.a23b1, polarity=-1; - MQ.21L3.B1, K1 := kqd.a23, polarity=-1; - MS.21L3.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.21L3.B1, KICK := acbv21.l3b1, polarity=+1; - MCO.B21L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B21L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C21L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C21L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B21L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B21L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A21L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A21L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A21L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A21L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.20L3.B1, K1 := kqtf.a23b1, polarity=+1; - MQ.20L3.B1, K1 := kqf.a23, polarity=+1; - MS.20L3.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.20L3.B1, KICK := acbh20.l3b1, polarity=+1; - MB.C20L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C20L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.20L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.20L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B20L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B20L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A20L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A20L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.19L3.B1, K1 := kqtd.a23b1, polarity=-1; - MQ.19L3.B1, K1 := kqd.a23, polarity=-1; - MS.19L3.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.19L3.B1, KICK := acbv19.l3b1, polarity=+1; - MCO.B19L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B19L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C19L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C19L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B19L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B19L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A19L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A19L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A19L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A19L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.18L3.B1, K1 := kqtf.a23b1, polarity=+1; - MQ.18L3.B1, K1 := kqf.a23, polarity=+1; - MS.18L3.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.18L3.B1, KICK := acbh18.l3b1, polarity=+1; - MB.C18L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C18L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.18L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.18L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B18L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B18L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A18L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A18L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.17L3.B1, K1 := kqtd.a23b1, polarity=-1; - MQ.17L3.B1, K1 := kqd.a23, polarity=-1; - MS.17L3.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.17L3.B1, KICK := acbv17.l3b1, polarity=+1; - MCO.B17L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B17L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C17L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C17L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B17L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B17L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A17L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A17L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A17L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A17L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.16L3.B1, K1 := kqtf.a23b1, polarity=+1; - MQ.16L3.B1, K1 := kqf.a23, polarity=+1; - MS.16L3.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.16L3.B1, KICK := acbh16.l3b1, polarity=+1; - MB.C16L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C16L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.16L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.16L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B16L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B16L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A16L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A16L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.15L3.B1, K1 := kqtd.a23b1, polarity=-1; - MQ.15L3.B1, K1 := kqd.a23, polarity=-1; - MS.15L3.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.15L3.B1, KICK := acbv15.l3b1, polarity=+1; - MCO.B15L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B15L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C15L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C15L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B15L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B15L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A15L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A15L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A15L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A15L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.14L3.B1, K1 := kqtf.a23b1, polarity=+1; - MQ.14L3.B1, K1 := kqf.a23, polarity=+1; - MS.14L3.B1, K2 := ksf2.a23b1, polarity=+1; - MCBH.14L3.B1, KICK := acbh14.l3b1, polarity=+1; - MB.C14L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C14L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.14L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.14L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B14L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B14L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A14L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A14L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.13L3.B1, K1 := kqt13.l3b1, polarity=-1; - MQ.13L3.B1, K1 := kqd.a23, polarity=-1; - MS.13L3.B1, K2 := ksd1.a23b1, polarity=-1; - MCBV.13L3.B1, KICK := acbv13.l3b1, polarity=+1; - MCO.B13L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.B13L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.C13L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C13L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.B13L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B13L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.A13L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.A13L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.A13L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A13L3.B1, K2 := kcs.a23b1, polarity=+1; - MQT.12L3.B1, K1 := kqt12.l3b1, polarity=+1; - MQ.12L3.B1, K1 := kqf.a23, polarity=+1; - MS.12L3.B1, K2 := ksf1.a23b1, polarity=+1; - MCBH.12L3.B1, KICK := acbh12.l3b1, polarity=+1; - MB.C12L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.C12L3.B1, K2 := kcs.a23b1, polarity=+1; - MCO.12L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.12L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B12L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B12L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A12L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A12L3.B1, K2 := kcs.a23b1, polarity=+1; - MQ.11L3.B1, K1 := kqd.a23, polarity=-1; - MQTLI.11L3.B1, K1 := kqtl11.l3b1, polarity=-1; - MS.11L3.B1, K2 := ksd2.a23b1, polarity=-1; - MCBV.11L3.B1, KICK := acbv11.l3b1, polarity=+1; - MCO.11L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.11L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B11L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B11L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A11L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A11L3.B1, K2 := kcs.a23b1, polarity=+1; - MQ.10L3.B1, K1 := kqf.a23, polarity=+1; - MQTLI.10L3.B1, K1 := kqtl10.l3b1, polarity=+1; - MCBCH.10L3.B1, KICK := acbch10.l3b1, polarity=+1; - MCO.10L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.10L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B10L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B10L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A10L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A10L3.B1, K2 := kcs.a23b1, polarity=+1; - MQ.9L3.B1, K1 := kqd.a23, polarity=-1; - MQTLI.B9L3.B1, K1 := kqtl9.l3b1, polarity=-1; - MQTLI.A9L3.B1, K1 := kqtl9.l3b1, polarity=-1; - MCBCV.9L3.B1, KICK := acbcv9.l3b1, polarity=+1; - MCO.9L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.9L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B9L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B9L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A9L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A9L3.B1, K2 := kcs.a23b1, polarity=+1; - MQ.8L3.B1, K1 := kqf.a23, polarity=+1; - MQTLI.8L3.B1, K1 := kqtl8.l3b1, polarity=+1; - MCBCH.8L3.B1, KICK := acbch8.l3b1, polarity=+1; - MCO.8L3.B1, KNL := {0, 0, 0, kco.a23b1*l.MCO, 0}, polarity=+1; - MCD.8L3.B1, KNL := {0, 0, 0, 0, kcd.a23b1*l.MCD}, polarity=+1; - MB.B8L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.B8L3.B1, K2 := kcs.a23b1, polarity=+1; - MB.A8L3.B1, ANGLE := ab.a23, K0 := kb.a23, polarity=+1; - MCS.A8L3.B1, K2 := kcs.a23b1, polarity=+1; - MQ.7L3.B1, K1 := kqd.a23, polarity=-1; - MQTLI.7L3.B1, K1 := kqtl7.l3b1, polarity=-1; - MCBCV.7L3.B1, KICK := acbcv7.l3b1, polarity=+1; - MCBCH.6L3.B1, KICK := acbch6.l3b1, polarity=+1; - MQTLH.F6L3.B1, K1 := kq6.l3b1, polarity=+1; - MQTLH.E6L3.B1, K1 := kq6.l3b1, polarity=+1; - MQTLH.D6L3.B1, K1 := kq6.l3b1, polarity=+1; - MQTLH.C6L3.B1, K1 := kq6.l3b1, polarity=+1; - MQTLH.B6L3.B1, K1 := kq6.l3b1, polarity=+1; - MQTLH.A6L3.B1, K1 := kq6.l3b1, polarity=+1; - MBW.F6L3.B1, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=+1; - MBW.E6L3.B1, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=+1; - MBW.D6L3.B1, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=+1; - MBW.C6L3.B1, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=-1; - MBW.B6L3.B1, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=-1; - MBW.A6L3.B1, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=-1; - MQWA.E5L3.B1, K1 := kq5.lr3, polarity=-1; - MQWA.D5L3.B1, K1 := kq5.lr3, polarity=-1; - MQWA.C5L3.B1, K1 := kq5.lr3, polarity=-1; - MQWB.5L3.B1, K1 := kqt5.l3, polarity=-1; - MQWA.B5L3.B1, K1 := kq5.lr3, polarity=-1; - MQWA.A5L3.B1, K1 := kq5.lr3, polarity=-1; - MCBWV.5L3.B1, KICK := acbwv5.l3b1, polarity=+1; - MQWA.E4L3.B1, K1 := kq4.lr3, polarity=+1; - MQWA.D4L3.B1, K1 := kq4.lr3, polarity=+1; - MQWA.C4L3.B1, K1 := kq4.lr3, polarity=+1; - MQWB.4L3.B1, K1 := kqt4.l3, polarity=+1; - MQWA.B4L3.B1, K1 := kq4.lr3, polarity=+1; - MQWA.A4L3.B1, K1 := kq4.lr3, polarity=+1; - MCBWH.4L3.B1, KICK := acbwh4.l3b1, polarity=+1; - MCBWV.4R3.B1, KICK := acbwv4.r3b1, polarity=+1; - MQWA.A4R3.B1, K1 := -kq4.lr3, polarity=-1; - MQWA.B4R3.B1, K1 := -kq4.lr3, polarity=-1; - MQWB.4R3.B1, K1 := kqt4.r3, polarity=-1; - MQWA.C4R3.B1, K1 := -kq4.lr3, polarity=-1; - MQWA.D4R3.B1, K1 := -kq4.lr3, polarity=-1; - MQWA.E4R3.B1, K1 := -kq4.lr3, polarity=-1; - MCBWH.5R3.B1, KICK := acbwh5.r3b1, polarity=+1; - MQWA.A5R3.B1, K1 := -kq5.lr3, polarity=+1; - MQWA.B5R3.B1, K1 := -kq5.lr3, polarity=+1; - MQWB.5R3.B1, K1 := kqt5.r3, polarity=+1; - MQWA.C5R3.B1, K1 := -kq5.lr3, polarity=+1; - MQWA.D5R3.B1, K1 := -kq5.lr3, polarity=+1; - MQWA.E5R3.B1, K1 := -kq5.lr3, polarity=+1; - MBW.A6R3.B1, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=-1; - MBW.B6R3.B1, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=-1; - MBW.C6R3.B1, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=-1; - MBW.D6R3.B1, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=+1; - MBW.E6R3.B1, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=+1; - MBW.F6R3.B1, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=+1; - MCBCV.6R3.B1, KICK := acbcv6.r3b1, polarity=+1; - MQTLH.A6R3.B1, K1 := kq6.r3b1, polarity=-1; - MQTLH.B6R3.B1, K1 := kq6.r3b1, polarity=-1; - MQTLH.C6R3.B1, K1 := kq6.r3b1, polarity=-1; - MQTLH.D6R3.B1, K1 := kq6.r3b1, polarity=-1; - MQTLH.E6R3.B1, K1 := kq6.r3b1, polarity=-1; - MQTLH.F6R3.B1, K1 := kq6.r3b1, polarity=-1; - MQ.7R3.B1, K1 := kqf.a34, polarity=+1; - MQTLI.7R3.B1, K1 := kqtl7.r3b1, polarity=+1; - MCBCH.7R3.B1, KICK := acbch7.r3b1, polarity=+1; - MCO.8R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.8R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A8R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A8R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B8R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B8R3.B1, K2 := kcs.a34b1, polarity=+1; - MQ.8R3.B1, K1 := kqd.a34, polarity=-1; - MQTLI.8R3.B1, K1 := kqtl8.r3b1, polarity=-1; - MCBCV.8R3.B1, KICK := acbcv8.r3b1, polarity=+1; - MCO.9R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.9R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A9R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A9R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B9R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B9R3.B1, K2 := kcs.a34b1, polarity=+1; - MQ.9R3.B1, K1 := kqf.a34, polarity=+1; - MQTLI.A9R3.B1, K1 := kqtl9.r3b1, polarity=+1; - MQTLI.B9R3.B1, K1 := kqtl9.r3b1, polarity=+1; - MCBCH.9R3.B1, KICK := acbch9.r3b1, polarity=+1; - MCO.10R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.10R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A10R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A10R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B10R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B10R3.B1, K2 := kcs.a34b1, polarity=+1; - MQ.10R3.B1, K1 := kqd.a34, polarity=-1; - MQTLI.10R3.B1, K1 := kqtl10.r3b1, polarity=-1; - MCBCV.10R3.B1, KICK := acbcv10.r3b1, polarity=+1; - MCO.11R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.11R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A11R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A11R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B11R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B11R3.B1, K2 := kcs.a34b1, polarity=+1; - MQ.11R3.B1, K1 := kqf.a34, polarity=+1; - MQTLI.11R3.B1, K1 := kqtl11.r3b1, polarity=+1; - MS.11R3.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.11R3.B1, KICK := acbh11.r3b1, polarity=+1; - MCO.A12R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A12R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A12R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A12R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B12R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B12R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B12R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B12R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C12R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C12R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.12R3.B1, K1 := kqt12.r3b1, polarity=-1; - MQ.12R3.B1, K1 := kqd.a34, polarity=-1; - MS.12R3.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.12R3.B1, KICK := acbv12.r3b1, polarity=+1; - MB.A13R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A13R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.13R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.13R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B13R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B13R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C13R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C13R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.13R3.B1, K1 := kqt13.r3b1, polarity=+1; - MQ.13R3.B1, K1 := kqf.a34, polarity=+1; - MS.13R3.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.13R3.B1, KICK := acbh13.r3b1, polarity=+1; - MCO.A14R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A14R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A14R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A14R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B14R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B14R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B14R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B14R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C14R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C14R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.14R3.B1, K1 := kqtd.a34b1, polarity=-1; - MQ.14R3.B1, K1 := kqd.a34, polarity=-1; - MS.14R3.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.14R3.B1, KICK := acbv14.r3b1, polarity=+1; - MB.A15R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A15R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.15R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.15R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B15R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B15R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C15R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C15R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.15R3.B1, K1 := kqtf.a34b1, polarity=+1; - MQ.15R3.B1, K1 := kqf.a34, polarity=+1; - MS.15R3.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.15R3.B1, KICK := acbh15.r3b1, polarity=+1; - MCO.A16R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A16R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A16R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A16R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B16R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B16R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B16R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B16R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C16R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C16R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.16R3.B1, K1 := kqtd.a34b1, polarity=-1; - MQ.16R3.B1, K1 := kqd.a34, polarity=-1; - MS.16R3.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.16R3.B1, KICK := acbv16.r3b1, polarity=+1; - MB.A17R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A17R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.17R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.17R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B17R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B17R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C17R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C17R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.17R3.B1, K1 := kqtf.a34b1, polarity=+1; - MQ.17R3.B1, K1 := kqf.a34, polarity=+1; - MS.17R3.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.17R3.B1, KICK := acbh17.r3b1, polarity=+1; - MCO.A18R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A18R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A18R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A18R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B18R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B18R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B18R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B18R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C18R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C18R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.18R3.B1, K1 := kqtd.a34b1, polarity=-1; - MQ.18R3.B1, K1 := kqd.a34, polarity=-1; - MS.18R3.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.18R3.B1, KICK := acbv18.r3b1, polarity=+1; - MB.A19R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A19R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.19R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.19R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B19R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B19R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C19R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C19R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.19R3.B1, K1 := kqtf.a34b1, polarity=+1; - MQ.19R3.B1, K1 := kqf.a34, polarity=+1; - MS.19R3.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.19R3.B1, KICK := acbh19.r3b1, polarity=+1; - MCO.A20R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A20R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A20R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A20R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B20R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B20R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B20R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B20R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C20R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C20R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.20R3.B1, K1 := kqtd.a34b1, polarity=-1; - MQ.20R3.B1, K1 := kqd.a34, polarity=-1; - MS.20R3.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.20R3.B1, KICK := acbv20.r3b1, polarity=+1; - MB.A21R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A21R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.21R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.21R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B21R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B21R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C21R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C21R3.B1, K2 := kcs.a34b1, polarity=+1; - MQT.21R3.B1, K1 := kqtf.a34b1, polarity=+1; - MQ.21R3.B1, K1 := kqf.a34, polarity=+1; - MS.21R3.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.21R3.B1, KICK := acbh21.r3b1, polarity=+1; - MCO.A22R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A22R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A22R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A22R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B22R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B22R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B22R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B22R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C22R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C22R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.22R3.B1, K3 := kod.a34b1, polarity=-1; - MQ.22R3.B1, K1 := kqd.a34, polarity=-1; - MS.22R3.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.22R3.B1, KICK := acbv22.r3b1, polarity=+1; - MB.A23R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A23R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.23R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.23R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B23R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B23R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C23R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C23R3.B1, K2 := kcs.a34b1, polarity=+1; - MQS.23R3.B1, K1S := kqs.r3b1, polarity=-1; - MQ.23R3.B1, K1 := kqf.a34, polarity=+1; - MS.23R3.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.23R3.B1, KICK := acbh23.r3b1, polarity=+1; - MCO.A24R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A24R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A24R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A24R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B24R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B24R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B24R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B24R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C24R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C24R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.24R3.B1, K3 := kod.a34b1, polarity=-1; - MQ.24R3.B1, K1 := kqd.a34, polarity=-1; - MS.24R3.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.24R3.B1, KICK := acbv24.r3b1, polarity=+1; - MB.A25R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A25R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.25R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.25R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B25R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B25R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C25R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C25R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.25R3.B1, K3 := kof.a34b1, polarity=+1; - MQ.25R3.B1, K1 := kqf.a34, polarity=+1; - MS.25R3.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.25R3.B1, KICK := acbh25.r3b1, polarity=+1; - MCO.A26R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A26R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A26R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A26R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B26R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B26R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B26R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B26R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C26R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C26R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.26R3.B1, K3 := kod.a34b1, polarity=-1; - MQ.26R3.B1, K1 := kqd.a34, polarity=-1; - MS.26R3.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.26R3.B1, KICK := acbv26.r3b1, polarity=+1; - MB.A27R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A27R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.27R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.27R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B27R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B27R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C27R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C27R3.B1, K2 := kcs.a34b1, polarity=+1; - MQS.27R3.B1, K1S := kqs.r3b1, polarity=-1; - MQ.27R3.B1, K1 := kqf.a34, polarity=+1; - MS.27R3.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.27R3.B1, KICK := acbh27.r3b1, polarity=+1; - MCO.A28R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A28R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A28R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A28R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B28R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B28R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B28R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B28R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C28R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C28R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.28R3.B1, K3 := kod.a34b1, polarity=-1; - MQ.28R3.B1, K1 := kqd.a34, polarity=-1; - MS.28R3.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.28R3.B1, KICK := acbv28.r3b1, polarity=+1; - MB.A29R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A29R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.29R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.29R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B29R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B29R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C29R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C29R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.29R3.B1, K3 := kof.a34b1, polarity=+1; - MQ.29R3.B1, K1 := kqf.a34, polarity=+1; - MCBH.29R3.B1, KICK := acbh29.r3b1, polarity=+1; - MCO.A30R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A30R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A30R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A30R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B30R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B30R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B30R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B30R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C30R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C30R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.30R3.B1, K3 := kod.a34b1, polarity=-1; - MQ.30R3.B1, K1 := kqd.a34, polarity=-1; - MS.30R3.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.30R3.B1, KICK := acbv30.r3b1, polarity=+1; - MB.A31R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A31R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.31R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.31R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B31R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B31R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C31R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C31R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.31R3.B1, K3 := kof.a34b1, polarity=+1; - MQ.31R3.B1, K1 := kqf.a34, polarity=+1; - MS.31R3.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.31R3.B1, KICK := acbh31.r3b1, polarity=+1; - MCO.A32R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A32R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A32R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A32R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B32R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B32R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B32R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B32R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C32R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C32R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.32R3.B1, K3 := kod.a34b1, polarity=-1; - MQ.32R3.B1, K1 := kqd.a34, polarity=-1; - MS.32R3.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.32R3.B1, KICK := acbv32.r3b1, polarity=+1; - MB.A33R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A33R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.33R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.33R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B33R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B33R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.C33R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C33R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.33R3.B1, K3 := kof.a34b1, polarity=+1; - MQ.33R3.B1, K1 := kqf.a34, polarity=+1; - MCBH.33R3.B1, KICK := acbh33.r3b1, polarity=+1; - MCO.A34R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A34R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A34R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A34R3.B1, K2 := kcs.a34b1, polarity=+1; - MB.B34R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B34R3.B1, K2 := kcs.a34b1, polarity=+1; - MCO.B34R3.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B34R3.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C34R3.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C34R3.B1, K2 := kcs.a34b1, polarity=+1; - MO.34R3.B1, K3 := kod.a34b1, polarity=-1; - MQ.34R3.B1, K1 := kqd.a34, polarity=-1; - MS.34L4.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.34L4.B1, KICK := acbv34.l4b1, polarity=+1; - MB.C34L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C34L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.34L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.34L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B34L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B34L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A34L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A34L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.33L4.B1, K3 := kof.a34b1, polarity=+1; - MQ.33L4.B1, K1 := kqf.a34, polarity=+1; - MCBH.33L4.B1, KICK := acbh33.l4b1, polarity=+1; - MCO.B33L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B33L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C33L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C33L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B33L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B33L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A33L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A33L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A33L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A33L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.32L4.B1, K3 := kod.a34b1, polarity=-1; - MQ.32L4.B1, K1 := kqd.a34, polarity=-1; - MS.32L4.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.32L4.B1, KICK := acbv32.l4b1, polarity=+1; - MB.C32L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C32L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.32L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.32L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B32L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B32L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A32L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A32L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.31L4.B1, K3 := kof.a34b1, polarity=+1; - MQ.31L4.B1, K1 := kqf.a34, polarity=+1; - MS.31L4.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.31L4.B1, KICK := acbh31.l4b1, polarity=+1; - MCO.B31L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B31L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C31L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C31L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B31L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B31L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A31L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A31L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A31L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A31L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.30L4.B1, K3 := kod.a34b1, polarity=-1; - MQ.30L4.B1, K1 := kqd.a34, polarity=-1; - MS.30L4.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.30L4.B1, KICK := acbv30.l4b1, polarity=+1; - MB.C30L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C30L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.30L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.30L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B30L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B30L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A30L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A30L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.29L4.B1, K3 := kof.a34b1, polarity=+1; - MQ.29L4.B1, K1 := kqf.a34, polarity=+1; - MCBH.29L4.B1, KICK := acbh29.l4b1, polarity=+1; - MCO.B29L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B29L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C29L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C29L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B29L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B29L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A29L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A29L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A29L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A29L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.28L4.B1, K3 := kod.a34b1, polarity=-1; - MQ.28L4.B1, K1 := kqd.a34, polarity=-1; - MS.28L4.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.28L4.B1, KICK := acbv28.l4b1, polarity=+1; - MB.C28L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C28L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.28L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.28L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B28L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B28L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A28L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A28L4.B1, K2 := kcs.a34b1, polarity=+1; - MQS.27L4.B1, K1S := kqs.l4b1, polarity=-1; - MQ.27L4.B1, K1 := kqf.a34, polarity=+1; - MS.27L4.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.27L4.B1, KICK := acbh27.l4b1, polarity=+1; - MCO.B27L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B27L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C27L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C27L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B27L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B27L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A27L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A27L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A27L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A27L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.26L4.B1, K3 := kod.a34b1, polarity=-1; - MQ.26L4.B1, K1 := kqd.a34, polarity=-1; - MS.26L4.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.26L4.B1, KICK := acbv26.l4b1, polarity=+1; - MB.C26L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C26L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.26L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.26L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B26L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B26L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A26L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A26L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.25L4.B1, K3 := kof.a34b1, polarity=+1; - MQ.25L4.B1, K1 := kqf.a34, polarity=+1; - MS.25L4.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.25L4.B1, KICK := acbh25.l4b1, polarity=+1; - MCO.B25L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B25L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C25L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C25L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B25L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B25L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A25L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A25L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A25L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A25L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.24L4.B1, K3 := kod.a34b1, polarity=-1; - MQ.24L4.B1, K1 := kqd.a34, polarity=-1; - MS.24L4.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.24L4.B1, KICK := acbv24.l4b1, polarity=+1; - MB.C24L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C24L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.24L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.24L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B24L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B24L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A24L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A24L4.B1, K2 := kcs.a34b1, polarity=+1; - MQS.23L4.B1, K1S := kqs.l4b1, polarity=-1; - MQ.23L4.B1, K1 := kqf.a34, polarity=+1; - MS.23L4.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.23L4.B1, KICK := acbh23.l4b1, polarity=+1; - MCO.B23L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B23L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C23L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C23L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B23L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B23L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A23L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A23L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A23L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A23L4.B1, K2 := kcs.a34b1, polarity=+1; - MO.22L4.B1, K3 := kod.a34b1, polarity=-1; - MQ.22L4.B1, K1 := kqd.a34, polarity=-1; - MS.22L4.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.22L4.B1, KICK := acbv22.l4b1, polarity=+1; - MB.C22L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C22L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.22L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.22L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B22L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B22L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A22L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A22L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.21L4.B1, K1 := kqtf.a34b1, polarity=+1; - MQ.21L4.B1, K1 := kqf.a34, polarity=+1; - MS.21L4.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.21L4.B1, KICK := acbh21.l4b1, polarity=+1; - MCO.B21L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B21L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C21L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C21L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B21L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B21L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A21L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A21L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A21L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A21L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.20L4.B1, K1 := kqtd.a34b1, polarity=-1; - MQ.20L4.B1, K1 := kqd.a34, polarity=-1; - MS.20L4.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.20L4.B1, KICK := acbv20.l4b1, polarity=+1; - MB.C20L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C20L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.20L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.20L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B20L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B20L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A20L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A20L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.19L4.B1, K1 := kqtf.a34b1, polarity=+1; - MQ.19L4.B1, K1 := kqf.a34, polarity=+1; - MS.19L4.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.19L4.B1, KICK := acbh19.l4b1, polarity=+1; - MCO.B19L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B19L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C19L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C19L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B19L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B19L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A19L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A19L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A19L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A19L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.18L4.B1, K1 := kqtd.a34b1, polarity=-1; - MQ.18L4.B1, K1 := kqd.a34, polarity=-1; - MS.18L4.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.18L4.B1, KICK := acbv18.l4b1, polarity=+1; - MB.C18L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C18L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.18L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.18L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B18L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B18L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A18L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A18L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.17L4.B1, K1 := kqtf.a34b1, polarity=+1; - MQ.17L4.B1, K1 := kqf.a34, polarity=+1; - MS.17L4.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.17L4.B1, KICK := acbh17.l4b1, polarity=+1; - MCO.B17L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B17L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C17L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C17L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B17L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B17L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A17L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A17L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A17L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A17L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.16L4.B1, K1 := kqtd.a34b1, polarity=-1; - MQ.16L4.B1, K1 := kqd.a34, polarity=-1; - MS.16L4.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.16L4.B1, KICK := acbv16.l4b1, polarity=+1; - MB.C16L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C16L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.16L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.16L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B16L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B16L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A16L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A16L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.15L4.B1, K1 := kqtf.a34b1, polarity=+1; - MQ.15L4.B1, K1 := kqf.a34, polarity=+1; - MS.15L4.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.15L4.B1, KICK := acbh15.l4b1, polarity=+1; - MCO.B15L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B15L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C15L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C15L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B15L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B15L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A15L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A15L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A15L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A15L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.14L4.B1, K1 := kqtd.a34b1, polarity=-1; - MQ.14L4.B1, K1 := kqd.a34, polarity=-1; - MS.14L4.B1, K2 := ksd2.a34b1, polarity=-1; - MCBV.14L4.B1, KICK := acbv14.l4b1, polarity=+1; - MB.C14L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C14L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.14L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.14L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B14L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B14L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A14L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A14L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.13L4.B1, K1 := kqt13.l4b1, polarity=+1; - MQ.13L4.B1, K1 := kqf.a34, polarity=+1; - MS.13L4.B1, K2 := ksf1.a34b1, polarity=+1; - MCBH.13L4.B1, KICK := acbh13.l4b1, polarity=+1; - MCO.B13L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.B13L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.C13L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C13L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.B13L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B13L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.A13L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.A13L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.A13L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A13L4.B1, K2 := kcs.a34b1, polarity=+1; - MQT.12L4.B1, K1 := kqt12.l4b1, polarity=-1; - MQ.12L4.B1, K1 := kqd.a34, polarity=-1; - MS.12L4.B1, K2 := ksd1.a34b1, polarity=-1; - MCBV.12L4.B1, KICK := acbv12.l4b1, polarity=+1; - MB.C12L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.C12L4.B1, K2 := kcs.a34b1, polarity=+1; - MCO.12L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.12L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B12L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B12L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A12L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A12L4.B1, K2 := kcs.a34b1, polarity=+1; - MQ.11L4.B1, K1 := kqf.a34, polarity=+1; - MQTLI.11L4.B1, K1 := kqtl11.l4b1, polarity=+1; - MS.11L4.B1, K2 := ksf2.a34b1, polarity=+1; - MCBH.11L4.B1, KICK := acbh11.l4b1, polarity=+1; - MCO.11L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.11L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B11L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B11L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A11L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A11L4.B1, K2 := kcs.a34b1, polarity=+1; - MQML.10L4.B1, K1 := kq10.l4b1, polarity=-1; - MCBCV.10L4.B1, KICK := acbcv10.l4b1, polarity=+1; - MCO.10L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.10L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B10L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B10L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A10L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A10L4.B1, K2 := kcs.a34b1, polarity=+1; - MQMC.9L4.B1, K1 := kq9.l4b1, polarity=+1; - MQM.9L4.B1, K1 := kq9.l4b1, polarity=+1; - MCBCH.9L4.B1, KICK := acbch9.l4b1, polarity=+1; - MCO.9L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.9L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B9L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B9L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A9L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A9L4.B1, K2 := kcs.a34b1, polarity=+1; - MQML.8L4.B1, K1 := kq8.l4b1, polarity=-1; - MCBCV.8L4.B1, KICK := acbcv8.l4b1, polarity=+1; - MCO.8L4.B1, KNL := {0, 0, 0, kco.a34b1*l.MCO, 0}, polarity=+1; - MCD.8L4.B1, KNL := {0, 0, 0, 0, kcd.a34b1*l.MCD}, polarity=+1; - MB.B8L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.B8L4.B1, K2 := kcs.a34b1, polarity=+1; - MB.A8L4.B1, ANGLE := ab.a34, K0 := kb.a34, polarity=+1; - MCS.A8L4.B1, K2 := kcs.a34b1, polarity=+1; - MQM.7L4.B1, K1 := kq7.l4b1, polarity=+1; - MCBCH.7L4.B1, KICK := acbch7.l4b1, polarity=+1; - MQY.6L4.B1, K1 := kq6.l4b1, polarity=-1; - MCBYV.6L4.B1, KICK := acbyv6.l4b1, polarity=+1; - BQKV.6L4.B1, VKICK := akbqkv.l4b1; - MKQA.6L4.B1, HKICK := khmkqa.l4b1, VKICK := kvmkqa.l4b1; - BQKH.B6L4.B1, HKICK := akbqkh.l4b1; - MQY.5L4.B1, K1 := kq5.l4b1, polarity=+1; - MCBYH.5L4.B1, KICK := acbyh5.l4b1, polarity=+1; - MBRB.5L4.B1, ANGLE := ad4.l4, K0 := kd4.l4, polarity=+1; - MGMWH.A5L4.B1, HKICK := -kgmwh.l4b1, polarity=-1; - MGMWH.C5L4.B1, HKICK := kgmwh.l4b1, polarity=+1; - MGMWV.C5L4.B1, VKICK := kgmwv.l4b1, polarity=-1; - MGMWV.A5L4.B1, VKICK := -kgmwv.l4b1, polarity=+1; - MBRS.5L4.B1, ANGLE := -ad3.l4, K0 := -kd3.l4, polarity=-1; - ADTKH.D5L4.B1, HKICK := akadtkh.l4b1; - ADTKH.C5L4.B1, HKICK := akadtkh.l4b1; - ADTKH.B5L4.B1, HKICK := akadtkh.l4b1; - ADTKH.A5L4.B1, HKICK := akadtkh.l4b1; - ADTKV.A5R4.B1, VKICK := akadtkv.r4b1; - ADTKV.B5R4.B1, VKICK := akadtkv.r4b1; - ADTKV.C5R4.B1, VKICK := akadtkv.r4b1; - ADTKV.D5R4.B1, VKICK := akadtkv.r4b1; - MU.A5R4.B1, HKICK := kmu.r4b1, polarity=+1; - MU.B5R4.B1, HKICK := kmu.r4b1, polarity=+1; - MU.C5R4.B1, HKICK := kmu.r4b1, polarity=+1; - MU.D5R4.B1, HKICK := kmu.r4b1, polarity=+1; - MBRS.5R4.B1, ANGLE := -ad3.r4, K0 := -kd3.r4, polarity=-1; - MBRB.5R4.B1, ANGLE := ad4.r4, K0 := kd4.r4, polarity=+1; - MCBYV.5R4.B1, KICK := acbyv5.r4b1, polarity=+1; - MQY.5R4.B1, K1 := kq5.r4b1, polarity=-1; - MQY.6R4.B1, K1 := kq6.r4b1, polarity=+1; - MCBYH.6R4.B1, KICK := acbyh6.r4b1, polarity=+1; - MQM.7R4.B1, K1 := kq7.r4b1, polarity=-1; - MCBCV.7R4.B1, KICK := acbcv7.r4b1, polarity=+1; - MCD.8R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A8R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A8R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B8R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B8R4.B1, K2 := kcs.a45b1, polarity=+1; - MQML.8R4.B1, K1 := kq8.r4b1, polarity=+1; - MCBCH.8R4.B1, KICK := acbch8.r4b1, polarity=+1; - MCD.9R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A9R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A9R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B9R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B9R4.B1, K2 := kcs.a45b1, polarity=+1; - MQMC.9R4.B1, K1 := kq9.r4b1, polarity=-1; - MQM.9R4.B1, K1 := kq9.r4b1, polarity=-1; - MCBCV.9R4.B1, KICK := acbcv9.r4b1, polarity=+1; - MCD.10R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A10R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A10R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B10R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B10R4.B1, K2 := kcs.a45b1, polarity=+1; - MQML.10R4.B1, K1 := kq10.r4b1, polarity=+1; - MCBCH.10R4.B1, KICK := acbch10.r4b1, polarity=+1; - MCD.11R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A11R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A11R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B11R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B11R4.B1, K2 := kcs.a45b1, polarity=+1; - MQ.11R4.B1, K1 := kqd.a45, polarity=-1; - MQTLI.11R4.B1, K1 := kqtl11.r4b1, polarity=-1; - MS.11R4.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.11R4.B1, KICK := acbv11.r4b1, polarity=+1; - MCD.A12R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A12R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A12R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B12R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B12R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B12R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C12R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C12R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.12R4.B1, K1 := kqt12.r4b1, polarity=+1; - MQ.12R4.B1, K1 := kqf.a45, polarity=+1; - MS.12R4.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.12R4.B1, KICK := acbh12.r4b1, polarity=+1; - MB.A13R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A13R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.13R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B13R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B13R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C13R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C13R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.13R4.B1, K1 := kqt13.r4b1, polarity=-1; - MQ.13R4.B1, K1 := kqd.a45, polarity=-1; - MS.13R4.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.13R4.B1, KICK := acbv13.r4b1, polarity=+1; - MCD.A14R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A14R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A14R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B14R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B14R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B14R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C14R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C14R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.14R4.B1, K1 := kqtf.a45b1, polarity=+1; - MQ.14R4.B1, K1 := kqf.a45, polarity=+1; - MS.14R4.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.14R4.B1, KICK := acbh14.r4b1, polarity=+1; - MB.A15R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A15R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.15R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B15R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B15R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C15R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C15R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.15R4.B1, K1 := kqtd.a45b1, polarity=-1; - MQ.15R4.B1, K1 := kqd.a45, polarity=-1; - MS.15R4.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.15R4.B1, KICK := acbv15.r4b1, polarity=+1; - MCD.A16R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A16R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A16R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B16R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B16R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B16R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C16R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C16R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.16R4.B1, K1 := kqtf.a45b1, polarity=+1; - MQ.16R4.B1, K1 := kqf.a45, polarity=+1; - MS.16R4.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.16R4.B1, KICK := acbh16.r4b1, polarity=+1; - MB.A17R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A17R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.17R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B17R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B17R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C17R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C17R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.17R4.B1, K1 := kqtd.a45b1, polarity=-1; - MQ.17R4.B1, K1 := kqd.a45, polarity=-1; - MS.17R4.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.17R4.B1, KICK := acbv17.r4b1, polarity=+1; - MCD.A18R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A18R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A18R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B18R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B18R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B18R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C18R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C18R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.18R4.B1, K1 := kqtf.a45b1, polarity=+1; - MQ.18R4.B1, K1 := kqf.a45, polarity=+1; - MS.18R4.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.18R4.B1, KICK := acbh18.r4b1, polarity=+1; - MB.A19R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A19R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.19R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B19R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B19R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C19R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C19R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.19R4.B1, K1 := kqtd.a45b1, polarity=-1; - MQ.19R4.B1, K1 := kqd.a45, polarity=-1; - MS.19R4.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.19R4.B1, KICK := acbv19.r4b1, polarity=+1; - MCD.A20R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A20R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A20R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B20R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B20R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B20R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C20R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C20R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.20R4.B1, K1 := kqtf.a45b1, polarity=+1; - MQ.20R4.B1, K1 := kqf.a45, polarity=+1; - MS.20R4.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.20R4.B1, KICK := acbh20.r4b1, polarity=+1; - MB.A21R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A21R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.21R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B21R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B21R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C21R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C21R4.B1, K2 := kcs.a45b1, polarity=+1; - MQT.21R4.B1, K1 := kqtd.a45b1, polarity=-1; - MQ.21R4.B1, K1 := kqd.a45, polarity=-1; - MS.21R4.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.21R4.B1, KICK := acbv21.r4b1, polarity=+1; - MCD.A22R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A22R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A22R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B22R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B22R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B22R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C22R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C22R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.22R4.B1, K3 := kof.a45b1, polarity=+1; - MQ.22R4.B1, K1 := kqf.a45, polarity=+1; - MS.22R4.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.22R4.B1, KICK := acbh22.r4b1, polarity=+1; - MB.A23R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A23R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.23R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B23R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B23R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C23R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C23R4.B1, K2 := kcs.a45b1, polarity=+1; - MQS.23R4.B1, K1S := kqs.a45b1, polarity=-1; - MQ.23R4.B1, K1 := kqd.a45, polarity=-1; - MS.23R4.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.23R4.B1, KICK := acbv23.r4b1, polarity=+1; - MCD.A24R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A24R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A24R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B24R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B24R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B24R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C24R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C24R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.24R4.B1, K3 := kof.a45b1, polarity=+1; - MQ.24R4.B1, K1 := kqf.a45, polarity=+1; - MS.24R4.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.24R4.B1, KICK := acbh24.r4b1, polarity=+1; - MB.A25R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A25R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.25R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B25R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B25R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C25R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C25R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.25R4.B1, K3 := kod.a45b1, polarity=-1; - MQ.25R4.B1, K1 := kqd.a45, polarity=-1; - MS.25R4.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.25R4.B1, KICK := acbv25.r4b1, polarity=+1; - MCD.A26R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A26R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A26R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B26R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B26R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B26R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C26R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C26R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.26R4.B1, K3 := kof.a45b1, polarity=+1; - MQ.26R4.B1, K1 := kqf.a45, polarity=+1; - MS.26R4.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.26R4.B1, KICK := acbh26.r4b1, polarity=+1; - MB.A27R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A27R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.27R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B27R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B27R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C27R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C27R4.B1, K2 := kcs.a45b1, polarity=+1; - MQS.27R4.B1, K1S := kqs.a45b1, polarity=-1; - MQ.27R4.B1, K1 := kqd.a45, polarity=-1; - MS.27R4.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.27R4.B1, KICK := acbv27.r4b1, polarity=+1; - MCD.A28R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A28R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A28R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B28R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B28R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B28R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C28R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C28R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.28R4.B1, K3 := kof.a45b1, polarity=+1; - MQ.28R4.B1, K1 := kqf.a45, polarity=+1; - MS.28R4.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.28R4.B1, KICK := acbh28.r4b1, polarity=+1; - MB.A29R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A29R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.29R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B29R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B29R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C29R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C29R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.29R4.B1, K3 := kod.a45b1, polarity=-1; - MQ.29R4.B1, K1 := kqd.a45, polarity=-1; - MS.29R4.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.29R4.B1, KICK := acbv29.r4b1, polarity=+1; - MCD.A30R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A30R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A30R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B30R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B30R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B30R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C30R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C30R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.30R4.B1, K3 := kof.a45b1, polarity=+1; - MQ.30R4.B1, K1 := kqf.a45, polarity=+1; - MSS.30R4.B1, K2S := kss.a45b1, polarity=-1; - MCBH.30R4.B1, KICK := acbh30.r4b1, polarity=+1; - MB.A31R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A31R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.31R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B31R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B31R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C31R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C31R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.31R4.B1, K3 := kod.a45b1, polarity=-1; - MQ.31R4.B1, K1 := kqd.a45, polarity=-1; - MS.31R4.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.31R4.B1, KICK := acbv31.r4b1, polarity=+1; - MCD.A32R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A32R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A32R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B32R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B32R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B32R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C32R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C32R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.32R4.B1, K3 := kof.a45b1, polarity=+1; - MQ.32R4.B1, K1 := kqf.a45, polarity=+1; - MS.32R4.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.32R4.B1, KICK := acbh32.r4b1, polarity=+1; - MB.A33R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A33R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.33R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B33R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B33R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.C33R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C33R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.33R4.B1, K3 := kod.a45b1, polarity=-1; - MQ.33R4.B1, K1 := kqd.a45, polarity=-1; - MS.33R4.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.33R4.B1, KICK := acbv33.r4b1, polarity=+1; - MCD.A34R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A34R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A34R4.B1, K2 := kcs.a45b1, polarity=+1; - MB.B34R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B34R4.B1, K2 := kcs.a45b1, polarity=+1; - MCD.B34R4.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C34R4.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C34R4.B1, K2 := kcs.a45b1, polarity=+1; - MO.34R4.B1, K3 := kof.a45b1, polarity=+1; - MQ.34R4.B1, K1 := kqf.a45, polarity=+1; - MSS.34L5.B1, K2S := kss.a45b1, polarity=-1; - MCBH.34L5.B1, KICK := acbh34.l5b1, polarity=+1; - MB.C34L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C34L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.34L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B34L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B34L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A34L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A34L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.33L5.B1, K3 := kod.a45b1, polarity=-1; - MQ.33L5.B1, K1 := kqd.a45, polarity=-1; - MS.33L5.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.33L5.B1, KICK := acbv33.l5b1, polarity=+1; - MCD.B33L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C33L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C33L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B33L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B33L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A33L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A33L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A33L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.32L5.B1, K3 := kof.a45b1, polarity=+1; - MQ.32L5.B1, K1 := kqf.a45, polarity=+1; - MSS.32L5.B1, K2S := kss.a45b1, polarity=-1; - MCBH.32L5.B1, KICK := acbh32.l5b1, polarity=+1; - MB.C32L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C32L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.32L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B32L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B32L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A32L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A32L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.31L5.B1, K3 := kod.a45b1, polarity=-1; - MQ.31L5.B1, K1 := kqd.a45, polarity=-1; - MS.31L5.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.31L5.B1, KICK := acbv31.l5b1, polarity=+1; - MCD.B31L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C31L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C31L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B31L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B31L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A31L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A31L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A31L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.30L5.B1, K3 := kof.a45b1, polarity=+1; - MQ.30L5.B1, K1 := kqf.a45, polarity=+1; - MS.30L5.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.30L5.B1, KICK := acbh30.l5b1, polarity=+1; - MB.C30L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C30L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.30L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B30L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B30L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A30L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A30L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.29L5.B1, K3 := kod.a45b1, polarity=-1; - MQ.29L5.B1, K1 := kqd.a45, polarity=-1; - MS.29L5.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.29L5.B1, KICK := acbv29.l5b1, polarity=+1; - MCD.B29L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C29L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C29L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B29L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B29L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A29L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A29L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A29L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.28L5.B1, K3 := kof.a45b1, polarity=+1; - MQ.28L5.B1, K1 := kqf.a45, polarity=+1; - MSS.28L5.B1, K2S := kss.a45b1, polarity=-1; - MCBH.28L5.B1, KICK := acbh28.l5b1, polarity=+1; - MB.C28L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C28L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.28L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B28L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B28L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A28L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A28L5.B1, K2 := kcs.a45b1, polarity=+1; - MQS.27L5.B1, K1S := kqs.a45b1, polarity=-1; - MQ.27L5.B1, K1 := kqd.a45, polarity=-1; - MS.27L5.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.27L5.B1, KICK := acbv27.l5b1, polarity=+1; - MCD.B27L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C27L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C27L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B27L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B27L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A27L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A27L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A27L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.26L5.B1, K3 := kof.a45b1, polarity=+1; - MQ.26L5.B1, K1 := kqf.a45, polarity=+1; - MS.26L5.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.26L5.B1, KICK := acbh26.l5b1, polarity=+1; - MB.C26L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C26L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.26L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B26L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B26L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A26L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A26L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.25L5.B1, K3 := kod.a45b1, polarity=-1; - MQ.25L5.B1, K1 := kqd.a45, polarity=-1; - MS.25L5.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.25L5.B1, KICK := acbv25.l5b1, polarity=+1; - MCD.B25L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C25L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C25L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B25L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B25L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A25L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A25L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A25L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.24L5.B1, K3 := kof.a45b1, polarity=+1; - MQ.24L5.B1, K1 := kqf.a45, polarity=+1; - MS.24L5.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.24L5.B1, KICK := acbh24.l5b1, polarity=+1; - MB.C24L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C24L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.24L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B24L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B24L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A24L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A24L5.B1, K2 := kcs.a45b1, polarity=+1; - MQS.23L5.B1, K1S := kqs.a45b1, polarity=-1; - MQ.23L5.B1, K1 := kqd.a45, polarity=-1; - MS.23L5.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.23L5.B1, KICK := acbv23.l5b1, polarity=+1; - MCD.B23L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C23L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C23L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B23L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B23L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A23L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A23L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A23L5.B1, K2 := kcs.a45b1, polarity=+1; - MO.22L5.B1, K3 := kof.a45b1, polarity=+1; - MQ.22L5.B1, K1 := kqf.a45, polarity=+1; - MS.22L5.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.22L5.B1, KICK := acbh22.l5b1, polarity=+1; - MB.C22L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C22L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.22L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B22L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B22L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A22L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A22L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.21L5.B1, K1 := kqtd.a45b1, polarity=-1; - MQ.21L5.B1, K1 := kqd.a45, polarity=-1; - MS.21L5.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.21L5.B1, KICK := acbv21.l5b1, polarity=+1; - MCD.B21L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C21L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C21L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B21L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B21L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A21L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A21L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A21L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.20L5.B1, K1 := kqtf.a45b1, polarity=+1; - MQ.20L5.B1, K1 := kqf.a45, polarity=+1; - MS.20L5.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.20L5.B1, KICK := acbh20.l5b1, polarity=+1; - MB.C20L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C20L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.20L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B20L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B20L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A20L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A20L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.19L5.B1, K1 := kqtd.a45b1, polarity=-1; - MQ.19L5.B1, K1 := kqd.a45, polarity=-1; - MS.19L5.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.19L5.B1, KICK := acbv19.l5b1, polarity=+1; - MCD.B19L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C19L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C19L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B19L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B19L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A19L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A19L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A19L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.18L5.B1, K1 := kqtf.a45b1, polarity=+1; - MQ.18L5.B1, K1 := kqf.a45, polarity=+1; - MS.18L5.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.18L5.B1, KICK := acbh18.l5b1, polarity=+1; - MB.C18L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C18L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.18L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B18L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B18L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A18L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A18L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.17L5.B1, K1 := kqtd.a45b1, polarity=-1; - MQ.17L5.B1, K1 := kqd.a45, polarity=-1; - MS.17L5.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.17L5.B1, KICK := acbv17.l5b1, polarity=+1; - MCD.B17L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C17L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C17L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B17L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B17L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A17L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A17L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A17L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.16L5.B1, K1 := kqtf.a45b1, polarity=+1; - MQ.16L5.B1, K1 := kqf.a45, polarity=+1; - MS.16L5.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.16L5.B1, KICK := acbh16.l5b1, polarity=+1; - MB.C16L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C16L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.16L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B16L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B16L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A16L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A16L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.15L5.B1, K1 := kqtd.a45b1, polarity=-1; - MQ.15L5.B1, K1 := kqd.a45, polarity=-1; - MS.15L5.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.15L5.B1, KICK := acbv15.l5b1, polarity=+1; - MCD.B15L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C15L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C15L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B15L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B15L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A15L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A15L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A15L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.14L5.B1, K1 := kqtf.a45b1, polarity=+1; - MQ.14L5.B1, K1 := kqf.a45, polarity=+1; - MS.14L5.B1, K2 := ksf1.a45b1, polarity=+1; - MCBH.14L5.B1, KICK := acbh14.l5b1, polarity=+1; - MB.C14L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C14L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.14L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B14L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B14L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A14L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A14L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.13L5.B1, K1 := kqt13.l5b1, polarity=-1; - MQ.13L5.B1, K1 := kqd.a45, polarity=-1; - MS.13L5.B1, K2 := ksd1.a45b1, polarity=-1; - MCBV.13L5.B1, KICK := acbv13.l5b1, polarity=+1; - MCD.B13L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.C13L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C13L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.B13L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B13L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.A13L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.A13L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A13L5.B1, K2 := kcs.a45b1, polarity=+1; - MQT.12L5.B1, K1 := kqt12.l5b1, polarity=+1; - MQ.12L5.B1, K1 := kqf.a45, polarity=+1; - MS.12L5.B1, K2 := ksf2.a45b1, polarity=+1; - MCBH.12L5.B1, KICK := acbh12.l5b1, polarity=+1; - MB.C12L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.C12L5.B1, K2 := kcs.a45b1, polarity=+1; - MCD.12L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B12L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B12L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A12L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A12L5.B1, K2 := kcs.a45b1, polarity=+1; - MQ.11L5.B1, K1 := kqd.a45, polarity=-1; - MQTLI.11L5.B1, K1 := kqtl11.l5b1, polarity=-1; - MS.11L5.B1, K2 := ksd2.a45b1, polarity=-1; - MCBV.11L5.B1, KICK := acbv11.l5b1, polarity=+1; - MCD.11L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B11L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B11L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A11L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A11L5.B1, K2 := kcs.a45b1, polarity=+1; - MQML.10L5.B1, K1 := kq10.l5b1, polarity=+1; - MCBCH.10L5.B1, KICK := acbch10.l5b1, polarity=+1; - MCD.10L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B10L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B10L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A10L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A10L5.B1, K2 := kcs.a45b1, polarity=+1; - MQMC.9L5.B1, K1 := kq9.l5b1, polarity=-1; - MQM.9L5.B1, K1 := kq9.l5b1, polarity=-1; - MCBCV.9L5.B1, KICK := acbcv9.l5b1, polarity=+1; - MCD.9L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B9L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B9L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A9L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A9L5.B1, K2 := kcs.a45b1, polarity=+1; - MQML.8L5.B1, K1 := kq8.l5b1, polarity=+1; - MCBCH.8L5.B1, KICK := acbch8.l5b1, polarity=+1; - MCD.8L5.B1, KNL := {0, 0, 0, 0, kcd.a45b1*l.MCD}, polarity=+1; - MB.B8L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.B8L5.B1, K2 := kcs.a45b1, polarity=+1; - MB.A8L5.B1, ANGLE := ab.a45, K0 := kb.a45, polarity=+1; - MCS.A8L5.B1, K2 := kcs.a45b1, polarity=+1; - MQM.B7L5.B1, K1 := kq7.l5b1, polarity=-1; - MQM.A7L5.B1, K1 := kq7.l5b1, polarity=-1; - MCBCV.7L5.B1, KICK := acbcv7.l5b1, polarity=+1; - MQML.6L5.B1, K1 := kq6.l5b1, polarity=+1; - MCBCH.6L5.B1, KICK := acbch6.l5b1, polarity=+1; - MQML.5L5.B1, K1 := kq5.l5b1, polarity=-1; - MCBCV.5L5.B1, KICK := acbcv5.l5b1, polarity=+1; - MQY.4L5.B1, K1 := kq4.l5b1, polarity=+1; - MCBYH.B4L5.B1, KICK := acbyh4.l5b1, polarity=+1; - MCBYV.4L5.B1, KICK := acbyvs4.l5b1, polarity=+1; - MCBYH.A4L5.B1, KICK := acbyhs4.l5b1, polarity=+1; - MBRC.4L5.B1, ANGLE := -ad2.l5, K0 := -kd2.l5, polarity=-1; - MBXW.F4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.E4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.D4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.C4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.B4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.A4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MCOSX.3L5, KSL := {0, 0, 0, kcosx3.l5*l.MCOSX}, polarity=-1; - MCOX.3L5, KNL := {0, 0, 0, kcox3.l5*l.MCOX}, polarity=+1; - MCSSX.3L5, KSL := {0, 0, kcssx3.l5*l.MCSSX, 0}, polarity=-1; - MCBXH.3L5, KICK := acbxh3.l5, polarity=+1; - MCBXV.3L5, KICK := acbxv3.l5, polarity=+1; - MCSX.3L5, KNL := {0, 0, kcsx3.l5*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3L5, KNL := {0, 0, 0, 0, 0, kctx3.l5*l.MCTX}, polarity=+1; - MQXA.3L5, K1 := kqx.l5, polarity=-1; - MQSX.3L5, K1S := kqsx3.l5, polarity=-1; - MQXB.B2L5, K1 := -kqx.l5-ktqx2.l5, polarity=+1; - MCBXH.2L5, KICK := acbxh2.l5, polarity=+1; - MCBXV.2L5, KICK := acbxv2.l5, polarity=+1; - MQXB.A2L5, K1 := -kqx.l5-ktqx2.l5, polarity=+1; - MCBXH.1L5, KICK := acbxh1.l5, polarity=+1; - MCBXV.1L5, KICK := acbxv1.l5, polarity=+1; - MQXA.1L5, K1 := kqx.l5+ktqx1.l5, polarity=-1; - MBCS2.1L5, KS := abcs; - MBCS2.1R5, KS := abcs; - MQXA.1R5, K1 := kqx.r5+ktqx1.r5, polarity=+1; - MCBXH.1R5, KICK := acbxh1.r5, polarity=+1; - MCBXV.1R5, KICK := acbxv1.r5, polarity=+1; - MQXB.A2R5, K1 := -kqx.r5-ktqx2.r5, polarity=-1; - MCBXH.2R5, KICK := acbxh2.r5, polarity=+1; - MCBXV.2R5, KICK := acbxv2.r5, polarity=+1; - MQXB.B2R5, K1 := -kqx.r5-ktqx2.r5, polarity=-1; - MQSX.3R5, K1S := kqsx3.r5, polarity=-1; - MQXA.3R5, K1 := kqx.r5, polarity=+1; - MCBXH.3R5, KICK := acbxh3.r5, polarity=+1; - MCBXV.3R5, KICK := acbxv3.r5, polarity=+1; - MCSX.3R5, KNL := {0, 0, kcsx3.r5*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3R5, KNL := {0, 0, 0, 0, 0, kctx3.r5*l.MCTX}, polarity=+1; - MCOSX.3R5, KSL := {0, 0, 0, kcosx3.r5*l.MCOSX}, polarity=-1; - MCOX.3R5, KNL := {0, 0, 0, kcox3.r5*l.MCOX}, polarity=+1; - MCSSX.3R5, KSL := {0, 0, kcssx3.r5*l.MCSSX, 0}, polarity=-1; - MBXW.A4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.B4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.C4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.D4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.E4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.F4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBRC.4R5.B1, ANGLE := ad2.r5, K0 := kd2.r5, polarity=+1; - MCBYV.A4R5.B1, KICK := acbyvs4.r5b1, polarity=+1; - MCBYH.4R5.B1, KICK := acbyhs4.r5b1, polarity=+1; - MCBYV.B4R5.B1, KICK := acbyv4.r5b1, polarity=+1; - MQY.4R5.B1, K1 := kq4.r5b1, polarity=-1; - MQML.5R5.B1, K1 := kq5.r5b1, polarity=+1; - MCBCH.5R5.B1, KICK := acbch5.r5b1, polarity=+1; - MQML.6R5.B1, K1 := kq6.r5b1, polarity=-1; - MCBCV.6R5.B1, KICK := acbcv6.r5b1, polarity=+1; - MQM.A7R5.B1, K1 := kq7.r5b1, polarity=+1; - MQM.B7R5.B1, K1 := kq7.r5b1, polarity=+1; - MCBCH.7R5.B1, KICK := acbch7.r5b1, polarity=+1; - MCO.8R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.8R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A8R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A8R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B8R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B8R5.B1, K2 := kcs.a56b1, polarity=+1; - MQML.8R5.B1, K1 := kq8.r5b1, polarity=-1; - MCBCV.8R5.B1, KICK := acbcv8.r5b1, polarity=+1; - MCO.9R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.9R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A9R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A9R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B9R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B9R5.B1, K2 := kcs.a56b1, polarity=+1; - MQMC.9R5.B1, K1 := kq9.r5b1, polarity=+1; - MQM.9R5.B1, K1 := kq9.r5b1, polarity=+1; - MCBCH.9R5.B1, KICK := acbch9.r5b1, polarity=+1; - MCO.10R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.10R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A10R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A10R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B10R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B10R5.B1, K2 := kcs.a56b1, polarity=+1; - MQML.10R5.B1, K1 := kq10.r5b1, polarity=-1; - MCBCV.10R5.B1, KICK := acbcv10.r5b1, polarity=+1; - MCO.11R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.11R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A11R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A11R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B11R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B11R5.B1, K2 := kcs.a56b1, polarity=+1; - MQ.11R5.B1, K1 := kqf.a56, polarity=+1; - MQTLI.11R5.B1, K1 := kqtl11.r5b1, polarity=+1; - MS.11R5.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.11R5.B1, KICK := acbh11.r5b1, polarity=+1; - MCO.A12R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A12R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A12R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A12R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B12R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B12R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B12R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B12R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C12R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C12R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.12R5.B1, K1 := kqt12.r5b1, polarity=-1; - MQ.12R5.B1, K1 := kqd.a56, polarity=-1; - MS.12R5.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.12R5.B1, KICK := acbv12.r5b1, polarity=+1; - MB.A13R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A13R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.13R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.13R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B13R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B13R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C13R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C13R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.13R5.B1, K1 := kqt13.r5b1, polarity=+1; - MQ.13R5.B1, K1 := kqf.a56, polarity=+1; - MS.13R5.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.13R5.B1, KICK := acbh13.r5b1, polarity=+1; - MCO.A14R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A14R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A14R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A14R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B14R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B14R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B14R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B14R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C14R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C14R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.14R5.B1, K1 := kqtd.a56b1, polarity=-1; - MQ.14R5.B1, K1 := kqd.a56, polarity=-1; - MS.14R5.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.14R5.B1, KICK := acbv14.r5b1, polarity=+1; - MB.A15R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A15R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.15R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.15R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B15R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B15R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C15R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C15R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.15R5.B1, K1 := kqtf.a56b1, polarity=+1; - MQ.15R5.B1, K1 := kqf.a56, polarity=+1; - MS.15R5.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.15R5.B1, KICK := acbh15.r5b1, polarity=+1; - MCO.A16R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A16R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A16R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A16R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B16R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B16R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B16R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B16R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C16R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C16R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.16R5.B1, K1 := kqtd.a56b1, polarity=-1; - MQ.16R5.B1, K1 := kqd.a56, polarity=-1; - MS.16R5.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.16R5.B1, KICK := acbv16.r5b1, polarity=+1; - MB.A17R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A17R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.17R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.17R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B17R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B17R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C17R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C17R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.17R5.B1, K1 := kqtf.a56b1, polarity=+1; - MQ.17R5.B1, K1 := kqf.a56, polarity=+1; - MS.17R5.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.17R5.B1, KICK := acbh17.r5b1, polarity=+1; - MCO.A18R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A18R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A18R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A18R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B18R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B18R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B18R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B18R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C18R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C18R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.18R5.B1, K1 := kqtd.a56b1, polarity=-1; - MQ.18R5.B1, K1 := kqd.a56, polarity=-1; - MS.18R5.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.18R5.B1, KICK := acbv18.r5b1, polarity=+1; - MB.A19R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A19R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.19R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.19R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B19R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B19R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C19R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C19R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.19R5.B1, K1 := kqtf.a56b1, polarity=+1; - MQ.19R5.B1, K1 := kqf.a56, polarity=+1; - MS.19R5.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.19R5.B1, KICK := acbh19.r5b1, polarity=+1; - MCO.A20R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A20R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A20R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A20R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B20R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B20R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B20R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B20R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C20R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C20R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.20R5.B1, K1 := kqtd.a56b1, polarity=-1; - MQ.20R5.B1, K1 := kqd.a56, polarity=-1; - MS.20R5.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.20R5.B1, KICK := acbv20.r5b1, polarity=+1; - MB.A21R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A21R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.21R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.21R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B21R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B21R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C21R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C21R5.B1, K2 := kcs.a56b1, polarity=+1; - MQT.21R5.B1, K1 := kqtf.a56b1, polarity=+1; - MQ.21R5.B1, K1 := kqf.a56, polarity=+1; - MS.21R5.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.21R5.B1, KICK := acbh21.r5b1, polarity=+1; - MCO.A22R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A22R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A22R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A22R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B22R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B22R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B22R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B22R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C22R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C22R5.B1, K2 := kcs.a56b1, polarity=+1; - MQ.22R5.B1, K1 := kqd.a56, polarity=-1; - MS.22R5.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.22R5.B1, KICK := acbv22.r5b1, polarity=+1; - MB.A23R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A23R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.23R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.23R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B23R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B23R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C23R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C23R5.B1, K2 := kcs.a56b1, polarity=+1; - MQS.23R5.B1, K1S := kqs.r5b1, polarity=-1; - MQ.23R5.B1, K1 := kqf.a56, polarity=+1; - MS.23R5.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.23R5.B1, KICK := acbh23.r5b1, polarity=+1; - MCO.A24R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A24R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A24R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A24R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B24R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B24R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B24R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B24R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C24R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C24R5.B1, K2 := kcs.a56b1, polarity=+1; - MQ.24R5.B1, K1 := kqd.a56, polarity=-1; - MS.24R5.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.24R5.B1, KICK := acbv24.r5b1, polarity=+1; - MB.A25R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A25R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.25R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.25R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B25R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B25R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C25R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C25R5.B1, K2 := kcs.a56b1, polarity=+1; - MO.25R5.B1, K3 := kof.a56b1, polarity=+1; - MQ.25R5.B1, K1 := kqf.a56, polarity=+1; - MS.25R5.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.25R5.B1, KICK := acbh25.r5b1, polarity=+1; - MCO.A26R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A26R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A26R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A26R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B26R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B26R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B26R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B26R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C26R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C26R5.B1, K2 := kcs.a56b1, polarity=+1; - MO.26R5.B1, K3 := kod.a56b1, polarity=-1; - MQ.26R5.B1, K1 := kqd.a56, polarity=-1; - MS.26R5.B1, K2 := ksd2.a56b1, polarity=-1; - MB.A27R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A27R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.27R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.27R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B27R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B27R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C27R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C27R5.B1, K2 := kcs.a56b1, polarity=+1; - MQS.27R5.B1, K1S := kqs.r5b1, polarity=-1; - MQ.27R5.B1, K1 := kqf.a56, polarity=+1; - MS.27R5.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.27R5.B1, KICK := acbh27.r5b1, polarity=+1; - MCO.A28R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A28R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A28R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A28R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B28R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B28R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B28R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B28R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C28R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C28R5.B1, K2 := kcs.a56b1, polarity=+1; - MQ.28R5.B1, K1 := kqd.a56, polarity=-1; - MS.28R5.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.28R5.B1, KICK := acbv28.r5b1, polarity=+1; - MB.A29R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A29R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.29R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.29R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B29R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B29R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C29R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C29R5.B1, K2 := kcs.a56b1, polarity=+1; - MO.29R5.B1, K3 := kof.a56b1, polarity=+1; - MQ.29R5.B1, K1 := kqf.a56, polarity=+1; - MSS.29R5.B1, K2S := kss.a56b1, polarity=-1; - MCBH.29R5.B1, KICK := acbh29.r5b1, polarity=+1; - MCO.A30R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A30R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A30R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A30R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B30R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B30R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B30R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B30R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C30R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C30R5.B1, K2 := kcs.a56b1, polarity=+1; - MO.30R5.B1, K3 := kod.a56b1, polarity=-1; - MQ.30R5.B1, K1 := kqd.a56, polarity=-1; - MS.30R5.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.30R5.B1, KICK := acbv30.r5b1, polarity=+1; - MB.A31R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A31R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.31R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.31R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B31R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B31R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C31R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C31R5.B1, K2 := kcs.a56b1, polarity=+1; - MO.31R5.B1, K3 := kof.a56b1, polarity=+1; - MQ.31R5.B1, K1 := kqf.a56, polarity=+1; - MS.31R5.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.31R5.B1, KICK := acbh31.r5b1, polarity=+1; - MCO.A32R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A32R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A32R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A32R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B32R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B32R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B32R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B32R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C32R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C32R5.B1, K2 := kcs.a56b1, polarity=+1; - MO.32R5.B1, K3 := kod.a56b1, polarity=-1; - MQ.32R5.B1, K1 := kqd.a56, polarity=-1; - MS.32R5.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.32R5.B1, KICK := acbv32.r5b1, polarity=+1; - MB.A33R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A33R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.33R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.33R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B33R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B33R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.C33R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C33R5.B1, K2 := kcs.a56b1, polarity=+1; - MO.33R5.B1, K3 := kof.a56b1, polarity=+1; - MQ.33R5.B1, K1 := kqf.a56, polarity=+1; - MSS.33R5.B1, K2S := kss.a56b1, polarity=-1; - MCBH.33R5.B1, KICK := acbh33.r5b1, polarity=+1; - MCO.A34R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A34R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A34R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A34R5.B1, K2 := kcs.a56b1, polarity=+1; - MB.B34R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B34R5.B1, K2 := kcs.a56b1, polarity=+1; - MCO.B34R5.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B34R5.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C34R5.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C34R5.B1, K2 := kcs.a56b1, polarity=+1; - MO.34R5.B1, K3 := kod.a56b1, polarity=-1; - MQ.34R5.B1, K1 := kqd.a56, polarity=-1; - MS.34L6.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.34L6.B1, KICK := acbv34.l6b1, polarity=+1; - MB.C34L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C34L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.34L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.34L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B34L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B34L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A34L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A34L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.33L6.B1, K3 := kof.a56b1, polarity=+1; - MQ.33L6.B1, K1 := kqf.a56, polarity=+1; - MSS.33L6.B1, K2S := kss.a56b1, polarity=-1; - MCBH.33L6.B1, KICK := acbh33.l6b1, polarity=+1; - MCO.B33L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B33L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C33L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C33L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B33L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B33L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A33L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A33L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A33L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A33L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.32L6.B1, K3 := kod.a56b1, polarity=-1; - MQ.32L6.B1, K1 := kqd.a56, polarity=-1; - MS.32L6.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.32L6.B1, KICK := acbv32.l6b1, polarity=+1; - MB.C32L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C32L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.32L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.32L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B32L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B32L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A32L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A32L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.31L6.B1, K3 := kof.a56b1, polarity=+1; - MQ.31L6.B1, K1 := kqf.a56, polarity=+1; - MS.31L6.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.31L6.B1, KICK := acbh31.l6b1, polarity=+1; - MCO.B31L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B31L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C31L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C31L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B31L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B31L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A31L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A31L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A31L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A31L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.30L6.B1, K3 := kod.a56b1, polarity=-1; - MQ.30L6.B1, K1 := kqd.a56, polarity=-1; - MS.30L6.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.30L6.B1, KICK := acbv30.l6b1, polarity=+1; - MB.C30L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C30L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.30L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.30L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B30L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B30L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A30L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A30L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.29L6.B1, K3 := kof.a56b1, polarity=+1; - MQ.29L6.B1, K1 := kqf.a56, polarity=+1; - MSS.29L6.B1, K2S := kss.a56b1, polarity=-1; - MCBH.29L6.B1, KICK := acbh29.l6b1, polarity=+1; - MCO.B29L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B29L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C29L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C29L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B29L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B29L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A29L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A29L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A29L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A29L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.28L6.B1, K3 := kod.a56b1, polarity=-1; - MQ.28L6.B1, K1 := kqd.a56, polarity=-1; - MS.28L6.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.28L6.B1, KICK := acbv28.l6b1, polarity=+1; - MB.C28L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C28L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.28L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.28L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B28L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B28L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A28L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A28L6.B1, K2 := kcs.a56b1, polarity=+1; - MQS.27L6.B1, K1S := kqs.l6b1, polarity=-1; - MQ.27L6.B1, K1 := kqf.a56, polarity=+1; - MS.27L6.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.27L6.B1, KICK := acbh27.l6b1, polarity=+1; - MCO.B27L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B27L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C27L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C27L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B27L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B27L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A27L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A27L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A27L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A27L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.26L6.B1, K3 := kod.a56b1, polarity=-1; - MQ.26L6.B1, K1 := kqd.a56, polarity=-1; - MS.26L6.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.26L6.B1, KICK := acbv26.l6b1, polarity=+1; - MB.C26L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C26L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.26L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.26L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B26L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B26L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A26L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A26L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.25L6.B1, K3 := kof.a56b1, polarity=+1; - MQ.25L6.B1, K1 := kqf.a56, polarity=+1; - MS.25L6.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.25L6.B1, KICK := acbh25.l6b1, polarity=+1; - MCO.B25L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B25L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C25L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C25L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B25L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B25L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A25L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A25L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A25L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A25L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.24L6.B1, K3 := kod.a56b1, polarity=-1; - MQ.24L6.B1, K1 := kqd.a56, polarity=-1; - MS.24L6.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.24L6.B1, KICK := acbv24.l6b1, polarity=+1; - MB.C24L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C24L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.24L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.24L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B24L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B24L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A24L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A24L6.B1, K2 := kcs.a56b1, polarity=+1; - MQS.23L6.B1, K1S := kqs.l6b1, polarity=-1; - MQ.23L6.B1, K1 := kqf.a56, polarity=+1; - MS.23L6.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.23L6.B1, KICK := acbh23.l6b1, polarity=+1; - MCO.B23L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B23L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C23L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C23L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B23L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B23L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A23L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A23L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A23L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A23L6.B1, K2 := kcs.a56b1, polarity=+1; - MO.22L6.B1, K3 := kod.a56b1, polarity=-1; - MQ.22L6.B1, K1 := kqd.a56, polarity=-1; - MS.22L6.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.22L6.B1, KICK := acbv22.l6b1, polarity=+1; - MB.C22L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C22L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.22L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.22L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B22L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B22L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A22L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A22L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.21L6.B1, K1 := kqtf.a56b1, polarity=+1; - MQ.21L6.B1, K1 := kqf.a56, polarity=+1; - MS.21L6.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.21L6.B1, KICK := acbh21.l6b1, polarity=+1; - MCO.B21L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B21L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C21L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C21L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B21L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B21L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A21L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A21L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A21L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A21L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.20L6.B1, K1 := kqtd.a56b1, polarity=-1; - MQ.20L6.B1, K1 := kqd.a56, polarity=-1; - MS.20L6.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.20L6.B1, KICK := acbv20.l6b1, polarity=+1; - MB.C20L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C20L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.20L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.20L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B20L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B20L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A20L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A20L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.19L6.B1, K1 := kqtf.a56b1, polarity=+1; - MQ.19L6.B1, K1 := kqf.a56, polarity=+1; - MS.19L6.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.19L6.B1, KICK := acbh19.l6b1, polarity=+1; - MCO.B19L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B19L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C19L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C19L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B19L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B19L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A19L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A19L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A19L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A19L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.18L6.B1, K1 := kqtd.a56b1, polarity=-1; - MQ.18L6.B1, K1 := kqd.a56, polarity=-1; - MS.18L6.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.18L6.B1, KICK := acbv18.l6b1, polarity=+1; - MB.C18L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C18L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.18L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.18L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B18L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B18L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A18L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A18L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.17L6.B1, K1 := kqtf.a56b1, polarity=+1; - MQ.17L6.B1, K1 := kqf.a56, polarity=+1; - MS.17L6.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.17L6.B1, KICK := acbh17.l6b1, polarity=+1; - MCO.B17L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B17L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C17L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C17L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B17L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B17L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A17L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A17L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A17L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A17L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.16L6.B1, K1 := kqtd.a56b1, polarity=-1; - MQ.16L6.B1, K1 := kqd.a56, polarity=-1; - MS.16L6.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.16L6.B1, KICK := acbv16.l6b1, polarity=+1; - MB.C16L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C16L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.16L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.16L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B16L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B16L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A16L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A16L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.15L6.B1, K1 := kqtf.a56b1, polarity=+1; - MQ.15L6.B1, K1 := kqf.a56, polarity=+1; - MS.15L6.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.15L6.B1, KICK := acbh15.l6b1, polarity=+1; - MCO.B15L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B15L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C15L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C15L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B15L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B15L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A15L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A15L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A15L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A15L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.14L6.B1, K1 := kqtd.a56b1, polarity=-1; - MQ.14L6.B1, K1 := kqd.a56, polarity=-1; - MS.14L6.B1, K2 := ksd2.a56b1, polarity=-1; - MCBV.14L6.B1, KICK := acbv14.l6b1, polarity=+1; - MB.C14L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C14L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.14L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.14L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B14L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B14L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A14L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A14L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.13L6.B1, K1 := kqt13.l6b1, polarity=+1; - MQ.13L6.B1, K1 := kqf.a56, polarity=+1; - MS.13L6.B1, K2 := ksf1.a56b1, polarity=+1; - MCBH.13L6.B1, KICK := acbh13.l6b1, polarity=+1; - MCO.B13L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.B13L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.C13L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C13L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.B13L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B13L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.A13L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.A13L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.A13L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A13L6.B1, K2 := kcs.a56b1, polarity=+1; - MQT.12L6.B1, K1 := kqt12.l6b1, polarity=-1; - MQ.12L6.B1, K1 := kqd.a56, polarity=-1; - MS.12L6.B1, K2 := ksd1.a56b1, polarity=-1; - MCBV.12L6.B1, KICK := acbv12.l6b1, polarity=+1; - MB.C12L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.C12L6.B1, K2 := kcs.a56b1, polarity=+1; - MCO.12L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.12L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B12L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B12L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A12L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A12L6.B1, K2 := kcs.a56b1, polarity=+1; - MQ.11L6.B1, K1 := kqf.a56, polarity=+1; - MQTLI.11L6.B1, K1 := kqtl11.l6b1, polarity=+1; - MS.11L6.B1, K2 := ksf2.a56b1, polarity=+1; - MCBH.11L6.B1, KICK := acbh11.l6b1, polarity=+1; - MCO.11L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.11L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B11L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B11L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A11L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A11L6.B1, K2 := kcs.a56b1, polarity=+1; - MQML.10L6.B1, K1 := kq10.l6b1, polarity=-1; - MCBCV.10L6.B1, KICK := acbcv10.l6b1, polarity=+1; - MCO.10L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.10L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B10L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B10L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A10L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A10L6.B1, K2 := kcs.a56b1, polarity=+1; - MQMC.9L6.B1, K1 := kq9.l6b1, polarity=+1; - MQM.9L6.B1, K1 := kq9.l6b1, polarity=+1; - MCBCH.9L6.B1, KICK := acbch9.l6b1, polarity=+1; - MCO.9L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.9L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B9L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B9L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A9L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A9L6.B1, K2 := kcs.a56b1, polarity=+1; - MQML.8L6.B1, K1 := kq8.l6b1, polarity=-1; - MCBCV.8L6.B1, KICK := acbcv8.l6b1, polarity=+1; - MCO.8L6.B1, KNL := {0, 0, 0, kco.a56b1*l.MCO, 0}, polarity=+1; - MCD.8L6.B1, KNL := {0, 0, 0, 0, kcd.a56b1*l.MCD}, polarity=+1; - MB.B8L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.B8L6.B1, K2 := kcs.a56b1, polarity=+1; - MB.A8L6.B1, ANGLE := ab.a56, K0 := kb.a56, polarity=+1; - MCS.A8L6.B1, K2 := kcs.a56b1, polarity=+1; - MQY.5L6.B1, K1 := kq5.l6b1, polarity=+1; - MCBYH.5L6.B1, KICK := acbyh5.l6b1, polarity=+1; - MKD.O5L6.B1, HKICK := akmkd; - MKD.N5L6.B1, HKICK := akmkd; - MKD.M5L6.B1, HKICK := akmkd; - MKD.L5L6.B1, HKICK := akmkd; - MKD.K5L6.B1, HKICK := akmkd; - MKD.J5L6.B1, HKICK := akmkd; - MKD.I5L6.B1, HKICK := akmkd; - MKD.H5L6.B1, HKICK := akmkd; - MKD.G5L6.B1, HKICK := akmkd; - MKD.F5L6.B1, HKICK := akmkd; - MKD.E5L6.B1, HKICK := akmkd; - MKD.D5L6.B1, HKICK := akmkd; - MKD.C5L6.B1, HKICK := akmkd; - MKD.B5L6.B1, HKICK := akmkd; - MKD.A5L6.B1, HKICK := akmkd; - MQY.4L6.B1, K1 := kq4.l6b1, polarity=-1; - MCBYV.4L6.B1, KICK := acbyv4.l6b1, polarity=+1; - MSDA.E4L6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDA.D4L6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDA.C4L6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDA.B4L6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDA.A4L6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDB.C4L6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDB.B4L6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDB2.4L6.B1, VKICK := -kmsd.lr6b1/2, polarity=+1; - MSDB2.4R6.B1, VKICK := -kmsd.lr6b1/2, polarity=+1; - MSDB.A4R6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDB.B4R6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDC.A4R6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDC.B4R6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDC.C4R6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDC.D4R6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MSDC.E4R6.B1, VKICK := -kmsd.lr6b1, polarity=+1; - MQY.4R6.B1, K1 := kq4.r6b1, polarity=+1; - MCBYH.4R6.B1, KICK := acbyh4.r6b1, polarity=+1; - MQY.5R6.B1, K1 := kq5.r6b1, polarity=-1; - MCBYV.5R6.B1, KICK := acbyv5.r6b1, polarity=+1; - MCO.8R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.8R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A8R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A8R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B8R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B8R6.B1, K2 := kcs.a67b1, polarity=+1; - MQML.8R6.B1, K1 := kq8.r6b1, polarity=+1; - MCBCH.8R6.B1, KICK := acbch8.r6b1, polarity=+1; - MCO.9R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.9R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A9R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A9R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B9R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B9R6.B1, K2 := kcs.a67b1, polarity=+1; - MQMC.9R6.B1, K1 := kq9.r6b1, polarity=-1; - MQM.9R6.B1, K1 := kq9.r6b1, polarity=-1; - MCBCV.9R6.B1, KICK := acbcv9.r6b1, polarity=+1; - MCO.10R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.10R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A10R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A10R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B10R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B10R6.B1, K2 := kcs.a67b1, polarity=+1; - MQML.10R6.B1, K1 := kq10.r6b1, polarity=+1; - MCBCH.10R6.B1, KICK := acbch10.r6b1, polarity=+1; - MCO.11R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.11R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A11R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A11R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B11R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B11R6.B1, K2 := kcs.a67b1, polarity=+1; - MQ.11R6.B1, K1 := kqd.a67, polarity=-1; - MQTLI.11R6.B1, K1 := kqtl11.r6b1, polarity=-1; - MS.11R6.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.11R6.B1, KICK := acbv11.r6b1, polarity=+1; - MCO.A12R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A12R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A12R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A12R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B12R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B12R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B12R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B12R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C12R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C12R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.12R6.B1, K1 := kqt12.r6b1, polarity=+1; - MQ.12R6.B1, K1 := kqf.a67, polarity=+1; - MS.12R6.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.12R6.B1, KICK := acbh12.r6b1, polarity=+1; - MB.A13R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A13R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.13R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.13R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B13R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B13R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C13R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C13R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.13R6.B1, K1 := kqt13.r6b1, polarity=-1; - MQ.13R6.B1, K1 := kqd.a67, polarity=-1; - MS.13R6.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.13R6.B1, KICK := acbv13.r6b1, polarity=+1; - MCO.A14R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A14R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A14R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A14R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B14R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B14R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B14R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B14R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C14R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C14R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.14R6.B1, K1 := kqtf.a67b1, polarity=+1; - MQ.14R6.B1, K1 := kqf.a67, polarity=+1; - MS.14R6.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.14R6.B1, KICK := acbh14.r6b1, polarity=+1; - MB.A15R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A15R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.15R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.15R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B15R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B15R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C15R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C15R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.15R6.B1, K1 := kqtd.a67b1, polarity=-1; - MQ.15R6.B1, K1 := kqd.a67, polarity=-1; - MS.15R6.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.15R6.B1, KICK := acbv15.r6b1, polarity=+1; - MCO.A16R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A16R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A16R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A16R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B16R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B16R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B16R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B16R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C16R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C16R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.16R6.B1, K1 := kqtf.a67b1, polarity=+1; - MQ.16R6.B1, K1 := kqf.a67, polarity=+1; - MS.16R6.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.16R6.B1, KICK := acbh16.r6b1, polarity=+1; - MB.A17R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A17R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.17R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.17R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B17R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B17R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C17R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C17R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.17R6.B1, K1 := kqtd.a67b1, polarity=-1; - MQ.17R6.B1, K1 := kqd.a67, polarity=-1; - MS.17R6.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.17R6.B1, KICK := acbv17.r6b1, polarity=+1; - MCO.A18R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A18R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A18R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A18R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B18R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B18R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B18R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B18R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C18R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C18R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.18R6.B1, K1 := kqtf.a67b1, polarity=+1; - MQ.18R6.B1, K1 := kqf.a67, polarity=+1; - MS.18R6.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.18R6.B1, KICK := acbh18.r6b1, polarity=+1; - MB.A19R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A19R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.19R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.19R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B19R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B19R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C19R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C19R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.19R6.B1, K1 := kqtd.a67b1, polarity=-1; - MQ.19R6.B1, K1 := kqd.a67, polarity=-1; - MS.19R6.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.19R6.B1, KICK := acbv19.r6b1, polarity=+1; - MCO.A20R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A20R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A20R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A20R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B20R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B20R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B20R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B20R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C20R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C20R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.20R6.B1, K1 := kqtf.a67b1, polarity=+1; - MQ.20R6.B1, K1 := kqf.a67, polarity=+1; - MS.20R6.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.20R6.B1, KICK := acbh20.r6b1, polarity=+1; - MB.A21R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A21R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.21R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.21R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B21R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B21R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C21R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C21R6.B1, K2 := kcs.a67b1, polarity=+1; - MQT.21R6.B1, K1 := kqtd.a67b1, polarity=-1; - MQ.21R6.B1, K1 := kqd.a67, polarity=-1; - MS.21R6.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.21R6.B1, KICK := acbv21.r6b1, polarity=+1; - MCO.A22R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A22R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A22R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A22R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B22R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B22R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B22R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B22R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C22R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C22R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.22R6.B1, K3 := kof.a67b1, polarity=+1; - MQ.22R6.B1, K1 := kqf.a67, polarity=+1; - MS.22R6.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.22R6.B1, KICK := acbh22.r6b1, polarity=+1; - MB.A23R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A23R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.23R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.23R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B23R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B23R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C23R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C23R6.B1, K2 := kcs.a67b1, polarity=+1; - MQS.23R6.B1, K1S := kqs.a67b1, polarity=-1; - MQ.23R6.B1, K1 := kqd.a67, polarity=-1; - MS.23R6.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.23R6.B1, KICK := acbv23.r6b1, polarity=+1; - MCO.A24R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A24R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A24R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A24R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B24R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B24R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B24R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B24R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C24R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C24R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.24R6.B1, K3 := kof.a67b1, polarity=+1; - MQ.24R6.B1, K1 := kqf.a67, polarity=+1; - MS.24R6.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.24R6.B1, KICK := acbh24.r6b1, polarity=+1; - MB.A25R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A25R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.25R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.25R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B25R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B25R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C25R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C25R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.25R6.B1, K3 := kod.a67b1, polarity=-1; - MQ.25R6.B1, K1 := kqd.a67, polarity=-1; - MS.25R6.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.25R6.B1, KICK := acbv25.r6b1, polarity=+1; - MCO.A26R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A26R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A26R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A26R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B26R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B26R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B26R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B26R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C26R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C26R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.26R6.B1, K3 := kof.a67b1, polarity=+1; - MQ.26R6.B1, K1 := kqf.a67, polarity=+1; - MS.26R6.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.26R6.B1, KICK := acbh26.r6b1, polarity=+1; - MB.A27R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A27R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.27R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.27R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B27R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B27R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C27R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C27R6.B1, K2 := kcs.a67b1, polarity=+1; - MQS.27R6.B1, K1S := kqs.a67b1, polarity=-1; - MQ.27R6.B1, K1 := kqd.a67, polarity=-1; - MS.27R6.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.27R6.B1, KICK := acbv27.r6b1, polarity=+1; - MCO.A28R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A28R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A28R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A28R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B28R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B28R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B28R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B28R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C28R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C28R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.28R6.B1, K3 := kof.a67b1, polarity=+1; - MQ.28R6.B1, K1 := kqf.a67, polarity=+1; - MS.28R6.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.28R6.B1, KICK := acbh28.r6b1, polarity=+1; - MB.A29R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A29R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.29R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.29R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B29R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B29R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C29R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C29R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.29R6.B1, K3 := kod.a67b1, polarity=-1; - MQ.29R6.B1, K1 := kqd.a67, polarity=-1; - MS.29R6.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.29R6.B1, KICK := acbv29.r6b1, polarity=+1; - MCO.A30R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A30R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A30R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A30R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B30R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B30R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B30R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B30R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C30R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C30R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.30R6.B1, K3 := kof.a67b1, polarity=+1; - MQ.30R6.B1, K1 := kqf.a67, polarity=+1; - MSS.30R6.B1, K2S := kss.a67b1, polarity=-1; - MCBH.30R6.B1, KICK := acbh30.r6b1, polarity=+1; - MB.A31R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A31R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.31R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.31R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B31R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B31R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C31R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C31R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.31R6.B1, K3 := kod.a67b1, polarity=-1; - MQ.31R6.B1, K1 := kqd.a67, polarity=-1; - MS.31R6.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.31R6.B1, KICK := acbv31.r6b1, polarity=+1; - MCO.A32R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A32R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A32R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A32R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B32R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B32R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B32R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B32R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C32R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C32R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.32R6.B1, K3 := kof.a67b1, polarity=+1; - MQ.32R6.B1, K1 := kqf.a67, polarity=+1; - MS.32R6.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.32R6.B1, KICK := acbh32.r6b1, polarity=+1; - MB.A33R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A33R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.33R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.33R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B33R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B33R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.C33R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C33R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.33R6.B1, K3 := kod.a67b1, polarity=-1; - MQ.33R6.B1, K1 := kqd.a67, polarity=-1; - MS.33R6.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.33R6.B1, KICK := acbv33.r6b1, polarity=+1; - MCO.A34R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A34R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A34R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A34R6.B1, K2 := kcs.a67b1, polarity=+1; - MB.B34R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B34R6.B1, K2 := kcs.a67b1, polarity=+1; - MCO.B34R6.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B34R6.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C34R6.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C34R6.B1, K2 := kcs.a67b1, polarity=+1; - MO.34R6.B1, K3 := kof.a67b1, polarity=+1; - MQ.34R6.B1, K1 := kqf.a67, polarity=+1; - MSS.34L7.B1, K2S := kss.a67b1, polarity=-1; - MCBH.34L7.B1, KICK := acbh34.l7b1, polarity=+1; - MB.C34L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C34L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.34L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.34L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B34L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B34L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A34L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A34L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.33L7.B1, K3 := kod.a67b1, polarity=-1; - MQ.33L7.B1, K1 := kqd.a67, polarity=-1; - MS.33L7.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.33L7.B1, KICK := acbv33.l7b1, polarity=+1; - MCO.B33L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B33L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C33L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C33L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B33L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B33L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A33L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A33L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A33L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A33L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.32L7.B1, K3 := kof.a67b1, polarity=+1; - MQ.32L7.B1, K1 := kqf.a67, polarity=+1; - MSS.32L7.B1, K2S := kss.a67b1, polarity=-1; - MCBH.32L7.B1, KICK := acbh32.l7b1, polarity=+1; - MB.C32L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C32L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.32L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.32L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B32L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B32L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A32L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A32L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.31L7.B1, K3 := kod.a67b1, polarity=-1; - MQ.31L7.B1, K1 := kqd.a67, polarity=-1; - MS.31L7.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.31L7.B1, KICK := acbv31.l7b1, polarity=+1; - MCO.B31L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B31L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C31L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C31L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B31L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B31L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A31L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A31L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A31L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A31L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.30L7.B1, K3 := kof.a67b1, polarity=+1; - MQ.30L7.B1, K1 := kqf.a67, polarity=+1; - MS.30L7.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.30L7.B1, KICK := acbh30.l7b1, polarity=+1; - MB.C30L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C30L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.30L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.30L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B30L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B30L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A30L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A30L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.29L7.B1, K3 := kod.a67b1, polarity=-1; - MQ.29L7.B1, K1 := kqd.a67, polarity=-1; - MS.29L7.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.29L7.B1, KICK := acbv29.l7b1, polarity=+1; - MCO.B29L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B29L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C29L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C29L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B29L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B29L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A29L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A29L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A29L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A29L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.28L7.B1, K3 := kof.a67b1, polarity=+1; - MQ.28L7.B1, K1 := kqf.a67, polarity=+1; - MSS.28L7.B1, K2S := kss.a67b1, polarity=-1; - MCBH.28L7.B1, KICK := acbh28.l7b1, polarity=+1; - MB.C28L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C28L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.28L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.28L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B28L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B28L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A28L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A28L7.B1, K2 := kcs.a67b1, polarity=+1; - MQS.27L7.B1, K1S := kqs.a67b1, polarity=-1; - MQ.27L7.B1, K1 := kqd.a67, polarity=-1; - MS.27L7.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.27L7.B1, KICK := acbv27.l7b1, polarity=+1; - MCO.B27L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B27L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C27L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C27L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B27L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B27L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A27L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A27L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A27L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A27L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.26L7.B1, K3 := kof.a67b1, polarity=+1; - MQ.26L7.B1, K1 := kqf.a67, polarity=+1; - MS.26L7.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.26L7.B1, KICK := acbh26.l7b1, polarity=+1; - MB.C26L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C26L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.26L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.26L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B26L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B26L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A26L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A26L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.25L7.B1, K3 := kod.a67b1, polarity=-1; - MQ.25L7.B1, K1 := kqd.a67, polarity=-1; - MS.25L7.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.25L7.B1, KICK := acbv25.l7b1, polarity=+1; - MCO.B25L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B25L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C25L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C25L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B25L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B25L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A25L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A25L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A25L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A25L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.24L7.B1, K3 := kof.a67b1, polarity=+1; - MQ.24L7.B1, K1 := kqf.a67, polarity=+1; - MS.24L7.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.24L7.B1, KICK := acbh24.l7b1, polarity=+1; - MB.C24L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C24L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.24L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.24L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B24L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B24L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A24L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A24L7.B1, K2 := kcs.a67b1, polarity=+1; - MQS.23L7.B1, K1S := kqs.a67b1, polarity=-1; - MQ.23L7.B1, K1 := kqd.a67, polarity=-1; - MS.23L7.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.23L7.B1, KICK := acbv23.l7b1, polarity=+1; - MCO.B23L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B23L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C23L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C23L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B23L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B23L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A23L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A23L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A23L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A23L7.B1, K2 := kcs.a67b1, polarity=+1; - MO.22L7.B1, K3 := kof.a67b1, polarity=+1; - MQ.22L7.B1, K1 := kqf.a67, polarity=+1; - MS.22L7.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.22L7.B1, KICK := acbh22.l7b1, polarity=+1; - MB.C22L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C22L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.22L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.22L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B22L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B22L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A22L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A22L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.21L7.B1, K1 := kqtd.a67b1, polarity=-1; - MQ.21L7.B1, K1 := kqd.a67, polarity=-1; - MS.21L7.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.21L7.B1, KICK := acbv21.l7b1, polarity=+1; - MCO.B21L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B21L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C21L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C21L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B21L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B21L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A21L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A21L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A21L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A21L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.20L7.B1, K1 := kqtf.a67b1, polarity=+1; - MQ.20L7.B1, K1 := kqf.a67, polarity=+1; - MS.20L7.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.20L7.B1, KICK := acbh20.l7b1, polarity=+1; - MB.C20L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C20L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.20L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.20L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B20L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B20L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A20L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A20L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.19L7.B1, K1 := kqtd.a67b1, polarity=-1; - MQ.19L7.B1, K1 := kqd.a67, polarity=-1; - MS.19L7.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.19L7.B1, KICK := acbv19.l7b1, polarity=+1; - MCO.B19L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B19L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C19L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C19L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B19L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B19L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A19L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A19L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A19L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A19L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.18L7.B1, K1 := kqtf.a67b1, polarity=+1; - MQ.18L7.B1, K1 := kqf.a67, polarity=+1; - MS.18L7.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.18L7.B1, KICK := acbh18.l7b1, polarity=+1; - MB.C18L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C18L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.18L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.18L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B18L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B18L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A18L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A18L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.17L7.B1, K1 := kqtd.a67b1, polarity=-1; - MQ.17L7.B1, K1 := kqd.a67, polarity=-1; - MS.17L7.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.17L7.B1, KICK := acbv17.l7b1, polarity=+1; - MCO.B17L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B17L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C17L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C17L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B17L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B17L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A17L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A17L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A17L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A17L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.16L7.B1, K1 := kqtf.a67b1, polarity=+1; - MQ.16L7.B1, K1 := kqf.a67, polarity=+1; - MS.16L7.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.16L7.B1, KICK := acbh16.l7b1, polarity=+1; - MB.C16L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C16L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.16L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.16L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B16L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B16L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A16L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A16L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.15L7.B1, K1 := kqtd.a67b1, polarity=-1; - MQ.15L7.B1, K1 := kqd.a67, polarity=-1; - MS.15L7.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.15L7.B1, KICK := acbv15.l7b1, polarity=+1; - MCO.B15L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B15L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C15L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C15L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B15L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B15L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A15L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A15L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A15L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A15L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.14L7.B1, K1 := kqtf.a67b1, polarity=+1; - MQ.14L7.B1, K1 := kqf.a67, polarity=+1; - MS.14L7.B1, K2 := ksf2.a67b1, polarity=+1; - MCBH.14L7.B1, KICK := acbh14.l7b1, polarity=+1; - MB.C14L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C14L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.14L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.14L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B14L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B14L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A14L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A14L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.13L7.B1, K1 := kqt13.l7b1, polarity=-1; - MQ.13L7.B1, K1 := kqd.a67, polarity=-1; - MS.13L7.B1, K2 := ksd1.a67b1, polarity=-1; - MCBV.13L7.B1, KICK := acbv13.l7b1, polarity=+1; - MCO.B13L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.B13L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.C13L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C13L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.B13L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B13L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.A13L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.A13L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.A13L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A13L7.B1, K2 := kcs.a67b1, polarity=+1; - MQT.12L7.B1, K1 := kqt12.l7b1, polarity=+1; - MQ.12L7.B1, K1 := kqf.a67, polarity=+1; - MS.12L7.B1, K2 := ksf1.a67b1, polarity=+1; - MCBH.12L7.B1, KICK := acbh12.l7b1, polarity=+1; - MB.C12L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.C12L7.B1, K2 := kcs.a67b1, polarity=+1; - MCO.12L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.12L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B12L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B12L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A12L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A12L7.B1, K2 := kcs.a67b1, polarity=+1; - MQ.11L7.B1, K1 := kqd.a67, polarity=-1; - MQTLI.11L7.B1, K1 := kqtl11.l7b1, polarity=-1; - MS.11L7.B1, K2 := ksd2.a67b1, polarity=-1; - MCBV.11L7.B1, KICK := acbv11.l7b1, polarity=+1; - MCO.11L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.11L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B11L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B11L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A11L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A11L7.B1, K2 := kcs.a67b1, polarity=+1; - MQ.10L7.B1, K1 := kqf.a67, polarity=+1; - MQTLI.10L7.B1, K1 := kqtl10.l7b1, polarity=+1; - MCBCH.10L7.B1, KICK := acbch10.l7b1, polarity=+1; - MCO.10L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.10L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B10L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B10L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A10L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A10L7.B1, K2 := kcs.a67b1, polarity=+1; - MQ.9L7.B1, K1 := kqd.a67, polarity=-1; - MQTLI.B9L7.B1, K1 := kqtl9.l7b1, polarity=-1; - MQTLI.A9L7.B1, K1 := kqtl9.l7b1, polarity=-1; - MCBCV.9L7.B1, KICK := acbcv9.l7b1, polarity=+1; - MCO.9L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.9L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B9L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B9L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A9L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A9L7.B1, K2 := kcs.a67b1, polarity=+1; - MQ.8L7.B1, K1 := kqf.a67, polarity=+1; - MQTLI.8L7.B1, K1 := kqtl8.l7b1, polarity=+1; - MCBCH.8L7.B1, KICK := acbch8.l7b1, polarity=+1; - MCO.8L7.B1, KNL := {0, 0, 0, kco.a67b1*l.MCO, 0}, polarity=+1; - MCD.8L7.B1, KNL := {0, 0, 0, 0, kcd.a67b1*l.MCD}, polarity=+1; - MB.B8L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.B8L7.B1, K2 := kcs.a67b1, polarity=+1; - MB.A8L7.B1, ANGLE := ab.a67, K0 := kb.a67, polarity=+1; - MCS.A8L7.B1, K2 := kcs.a67b1, polarity=+1; - MQ.7L7.B1, K1 := kqd.a67, polarity=-1; - MQTLI.7L7.B1, K1 := kqtl7.l7b1, polarity=-1; - MCBCV.7L7.B1, KICK := acbcv7.l7b1, polarity=+1; - MQTLH.F6L7.B1, K1 := kq6.l7b1, polarity=+1; - MQTLH.E6L7.B1, K1 := kq6.l7b1, polarity=+1; - MQTLH.D6L7.B1, K1 := kq6.l7b1, polarity=+1; - MQTLH.C6L7.B1, K1 := kq6.l7b1, polarity=+1; - MQTLH.B6L7.B1, K1 := kq6.l7b1, polarity=+1; - MQTLH.A6L7.B1, K1 := kq6.l7b1, polarity=+1; - MCBCH.6L7.B1, KICK := acbch6.l7b1, polarity=+1; - MBW.D6L7.B1, ANGLE := -ad34.lr7, K0 := -kd34.lr7, polarity=-1; - MBW.C6L7.B1, ANGLE := -ad34.lr7, K0 := -kd34.lr7, polarity=-1; - MBW.B6L7.B1, ANGLE := ad34.lr7, K0 := kd34.lr7, polarity=+1; - MBW.A6L7.B1, ANGLE := ad34.lr7, K0 := kd34.lr7, polarity=+1; - MQWA.D5L7.B1, K1 := kq5.lr7, polarity=-1; - MQWA.C5L7.B1, K1 := kq5.lr7, polarity=-1; - MQWA.F5L7.B1, K1 := kq5.lr7, polarity=-1; - MQWA.B5L7.B1, K1 := kq5.lr7, polarity=-1; - MQWA.A5L7.B1, K1 := kq5.lr7, polarity=-1; - MCBWV.5L7.B1, KICK := acbwv5.l7b1, polarity=+1; - MQWA.E4L7.B1, K1 := kq4.lr7, polarity=+1; - MQWA.D4L7.B1, K1 := kq4.lr7, polarity=+1; - MQWA.C4L7.B1, K1 := kq4.lr7, polarity=+1; - MQWB.4L7.B1, K1 := kqt4.l7, polarity=+1; - MQWA.B4L7.B1, K1 := kq4.lr7, polarity=+1; - MQWA.A4L7.B1, K1 := kq4.lr7, polarity=+1; - MCBWH.4L7.B1, KICK := acbwh4.l7b1, polarity=+1; - MCBWV.4R7.B1, KICK := acbwv4.r7b1, polarity=+1; - MQWA.A4R7.B1, K1 := -kq4.lr7, polarity=-1; - MQWA.B4R7.B1, K1 := -kq4.lr7, polarity=-1; - MQWB.4R7.B1, K1 := kqt4.r7, polarity=-1; - MQWA.C4R7.B1, K1 := -kq4.lr7, polarity=-1; - MQWA.D4R7.B1, K1 := -kq4.lr7, polarity=-1; - MQWA.E4R7.B1, K1 := -kq4.lr7, polarity=-1; - MCBWH.5R7.B1, KICK := acbwh5.r7b1, polarity=+1; - MQWA.A5R7.B1, K1 := -kq5.lr7, polarity=+1; - MQWA.B5R7.B1, K1 := -kq5.lr7, polarity=+1; - MQWA.F5R7.B1, K1 := -kq5.lr7, polarity=+1; - MQWA.C5R7.B1, K1 := -kq5.lr7, polarity=+1; - MQWA.D5R7.B1, K1 := -kq5.lr7, polarity=+1; - MBW.A6R7.B1, ANGLE := ad34.lr7, K0 := kd34.lr7, polarity=+1; - MBW.B6R7.B1, ANGLE := ad34.lr7, K0 := kd34.lr7, polarity=+1; - MBW.C6R7.B1, ANGLE := -ad34.lr7, K0 := -kd34.lr7, polarity=-1; - MBW.D6R7.B1, ANGLE := -ad34.lr7, K0 := -kd34.lr7, polarity=-1; - MQTLH.A6R7.B1, K1 := kq6.r7b1, polarity=-1; - MQTLH.B6R7.B1, K1 := kq6.r7b1, polarity=-1; - MQTLH.C6R7.B1, K1 := kq6.r7b1, polarity=-1; - MQTLH.D6R7.B1, K1 := kq6.r7b1, polarity=-1; - MQTLH.E6R7.B1, K1 := kq6.r7b1, polarity=-1; - MQTLH.F6R7.B1, K1 := kq6.r7b1, polarity=-1; - MCBCV.6R7.B1, KICK := acbcv6.r7b1, polarity=+1; - MQ.7R7.B1, K1 := kqf.a78, polarity=+1; - MQTLI.7R7.B1, K1 := kqtl7.r7b1, polarity=+1; - MCBCH.7R7.B1, KICK := acbch7.r7b1, polarity=+1; - MCD.8R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A8R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A8R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B8R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B8R7.B1, K2 := kcs.a78b1, polarity=+1; - MQ.8R7.B1, K1 := kqd.a78, polarity=-1; - MQTLI.8R7.B1, K1 := kqtl8.r7b1, polarity=-1; - MCBCV.8R7.B1, KICK := acbcv8.r7b1, polarity=+1; - MCD.9R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A9R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A9R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B9R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B9R7.B1, K2 := kcs.a78b1, polarity=+1; - MQ.9R7.B1, K1 := kqf.a78, polarity=+1; - MQTLI.A9R7.B1, K1 := kqtl9.r7b1, polarity=+1; - MQTLI.B9R7.B1, K1 := kqtl9.r7b1, polarity=+1; - MCBCH.9R7.B1, KICK := acbch9.r7b1, polarity=+1; - MCD.10R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A10R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A10R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B10R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B10R7.B1, K2 := kcs.a78b1, polarity=+1; - MQ.10R7.B1, K1 := kqd.a78, polarity=-1; - MQTLI.10R7.B1, K1 := kqtl10.r7b1, polarity=-1; - MCBCV.10R7.B1, KICK := acbcv10.r7b1, polarity=+1; - MCD.11R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A11R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A11R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B11R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B11R7.B1, K2 := kcs.a78b1, polarity=+1; - MQ.11R7.B1, K1 := kqf.a78, polarity=+1; - MQTLI.11R7.B1, K1 := kqtl11.r7b1, polarity=+1; - MS.11R7.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.11R7.B1, KICK := acbh11.r7b1, polarity=+1; - MCD.A12R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A12R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A12R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B12R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B12R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B12R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C12R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C12R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.12R7.B1, K1 := kqt12.r7b1, polarity=-1; - MQ.12R7.B1, K1 := kqd.a78, polarity=-1; - MS.12R7.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.12R7.B1, KICK := acbv12.r7b1, polarity=+1; - MB.A13R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A13R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.13R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B13R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B13R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C13R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C13R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.13R7.B1, K1 := kqt13.r7b1, polarity=+1; - MQ.13R7.B1, K1 := kqf.a78, polarity=+1; - MS.13R7.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.13R7.B1, KICK := acbh13.r7b1, polarity=+1; - MCD.A14R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A14R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A14R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B14R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B14R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B14R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C14R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C14R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.14R7.B1, K1 := kqtd.a78b1, polarity=-1; - MQ.14R7.B1, K1 := kqd.a78, polarity=-1; - MS.14R7.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.14R7.B1, KICK := acbv14.r7b1, polarity=+1; - MB.A15R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A15R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.15R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B15R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B15R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C15R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C15R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.15R7.B1, K1 := kqtf.a78b1, polarity=+1; - MQ.15R7.B1, K1 := kqf.a78, polarity=+1; - MS.15R7.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.15R7.B1, KICK := acbh15.r7b1, polarity=+1; - MCD.A16R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A16R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A16R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B16R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B16R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B16R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C16R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C16R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.16R7.B1, K1 := kqtd.a78b1, polarity=-1; - MQ.16R7.B1, K1 := kqd.a78, polarity=-1; - MS.16R7.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.16R7.B1, KICK := acbv16.r7b1, polarity=+1; - MB.A17R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A17R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.17R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B17R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B17R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C17R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C17R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.17R7.B1, K1 := kqtf.a78b1, polarity=+1; - MQ.17R7.B1, K1 := kqf.a78, polarity=+1; - MS.17R7.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.17R7.B1, KICK := acbh17.r7b1, polarity=+1; - MCD.A18R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A18R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A18R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B18R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B18R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B18R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C18R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C18R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.18R7.B1, K1 := kqtd.a78b1, polarity=-1; - MQ.18R7.B1, K1 := kqd.a78, polarity=-1; - MS.18R7.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.18R7.B1, KICK := acbv18.r7b1, polarity=+1; - MB.A19R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A19R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.19R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B19R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B19R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C19R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C19R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.19R7.B1, K1 := kqtf.a78b1, polarity=+1; - MQ.19R7.B1, K1 := kqf.a78, polarity=+1; - MS.19R7.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.19R7.B1, KICK := acbh19.r7b1, polarity=+1; - MCD.A20R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A20R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A20R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B20R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B20R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B20R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C20R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C20R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.20R7.B1, K1 := kqtd.a78b1, polarity=-1; - MQ.20R7.B1, K1 := kqd.a78, polarity=-1; - MS.20R7.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.20R7.B1, KICK := acbv20.r7b1, polarity=+1; - MB.A21R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A21R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.21R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B21R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B21R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C21R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C21R7.B1, K2 := kcs.a78b1, polarity=+1; - MQT.21R7.B1, K1 := kqtf.a78b1, polarity=+1; - MQ.21R7.B1, K1 := kqf.a78, polarity=+1; - MS.21R7.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.21R7.B1, KICK := acbh21.r7b1, polarity=+1; - MCD.A22R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A22R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A22R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B22R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B22R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B22R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C22R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C22R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.22R7.B1, K3 := kod.a78b1, polarity=-1; - MQ.22R7.B1, K1 := kqd.a78, polarity=-1; - MS.22R7.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.22R7.B1, KICK := acbv22.r7b1, polarity=+1; - MB.A23R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A23R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.23R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B23R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B23R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C23R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C23R7.B1, K2 := kcs.a78b1, polarity=+1; - MQS.23R7.B1, K1S := kqs.r7b1, polarity=-1; - MQ.23R7.B1, K1 := kqf.a78, polarity=+1; - MS.23R7.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.23R7.B1, KICK := acbh23.r7b1, polarity=+1; - MCD.A24R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A24R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A24R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B24R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B24R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B24R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C24R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C24R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.24R7.B1, K3 := kod.a78b1, polarity=-1; - MQ.24R7.B1, K1 := kqd.a78, polarity=-1; - MS.24R7.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.24R7.B1, KICK := acbv24.r7b1, polarity=+1; - MB.A25R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A25R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.25R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B25R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B25R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C25R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C25R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.25R7.B1, K3 := kof.a78b1, polarity=+1; - MQ.25R7.B1, K1 := kqf.a78, polarity=+1; - MS.25R7.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.25R7.B1, KICK := acbh25.r7b1, polarity=+1; - MCD.A26R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A26R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A26R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B26R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B26R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B26R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C26R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C26R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.26R7.B1, K3 := kod.a78b1, polarity=-1; - MQ.26R7.B1, K1 := kqd.a78, polarity=-1; - MS.26R7.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.26R7.B1, KICK := acbv26.r7b1, polarity=+1; - MB.A27R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A27R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.27R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B27R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B27R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C27R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C27R7.B1, K2 := kcs.a78b1, polarity=+1; - MQS.27R7.B1, K1S := kqs.r7b1, polarity=-1; - MQ.27R7.B1, K1 := kqf.a78, polarity=+1; - MS.27R7.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.27R7.B1, KICK := acbh27.r7b1, polarity=+1; - MCD.A28R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A28R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A28R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B28R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B28R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B28R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C28R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C28R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.28R7.B1, K3 := kod.a78b1, polarity=-1; - MQ.28R7.B1, K1 := kqd.a78, polarity=-1; - MS.28R7.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.28R7.B1, KICK := acbv28.r7b1, polarity=+1; - MB.A29R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A29R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.29R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B29R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B29R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C29R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C29R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.29R7.B1, K3 := kof.a78b1, polarity=+1; - MQ.29R7.B1, K1 := kqf.a78, polarity=+1; - MSS.29R7.B1, K2S := kss.a78b1, polarity=-1; - MCBH.29R7.B1, KICK := acbh29.r7b1, polarity=+1; - MCD.A30R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A30R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A30R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B30R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B30R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B30R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C30R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C30R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.30R7.B1, K3 := kod.a78b1, polarity=-1; - MQ.30R7.B1, K1 := kqd.a78, polarity=-1; - MS.30R7.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.30R7.B1, KICK := acbv30.r7b1, polarity=+1; - MB.A31R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A31R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.31R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B31R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B31R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C31R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C31R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.31R7.B1, K3 := kof.a78b1, polarity=+1; - MQ.31R7.B1, K1 := kqf.a78, polarity=+1; - MS.31R7.B1, K2 := ksf1.a78b1, polarity=+1; - MCD.A32R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A32R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A32R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B32R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B32R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B32R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C32R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C32R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.32R7.B1, K3 := kod.a78b1, polarity=-1; - MQ.32R7.B1, K1 := kqd.a78, polarity=-1; - MS.32R7.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.32R7.B1, KICK := acbv32.r7b1, polarity=+1; - MB.A33R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A33R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.33R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B33R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B33R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.C33R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C33R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.33R7.B1, K3 := kof.a78b1, polarity=+1; - MQ.33R7.B1, K1 := kqf.a78, polarity=+1; - MSS.33R7.B1, K2S := kss.a78b1, polarity=-1; - MCBH.33R7.B1, KICK := acbh33.r7b1, polarity=+1; - MCD.A34R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A34R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A34R7.B1, K2 := kcs.a78b1, polarity=+1; - MB.B34R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B34R7.B1, K2 := kcs.a78b1, polarity=+1; - MCD.B34R7.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C34R7.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C34R7.B1, K2 := kcs.a78b1, polarity=+1; - MO.34R7.B1, K3 := kod.a78b1, polarity=-1; - MQ.34R7.B1, K1 := kqd.a78, polarity=-1; - MS.34L8.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.34L8.B1, KICK := acbv34.l8b1, polarity=+1; - MB.C34L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C34L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.34L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B34L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B34L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A34L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A34L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.33L8.B1, K3 := kof.a78b1, polarity=+1; - MQ.33L8.B1, K1 := kqf.a78, polarity=+1; - MSS.33L8.B1, K2S := kss.a78b1, polarity=-1; - MCBH.33L8.B1, KICK := acbh33.l8b1, polarity=+1; - MCD.B33L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C33L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C33L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B33L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B33L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A33L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A33L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A33L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.32L8.B1, K3 := kod.a78b1, polarity=-1; - MQ.32L8.B1, K1 := kqd.a78, polarity=-1; - MS.32L8.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.32L8.B1, KICK := acbv32.l8b1, polarity=+1; - MB.C32L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C32L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.32L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B32L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B32L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A32L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A32L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.31L8.B1, K3 := kof.a78b1, polarity=+1; - MQ.31L8.B1, K1 := kqf.a78, polarity=+1; - MS.31L8.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.31L8.B1, KICK := acbh31.l8b1, polarity=+1; - MCD.B31L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C31L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C31L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B31L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B31L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A31L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A31L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A31L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.30L8.B1, K3 := kod.a78b1, polarity=-1; - MQ.30L8.B1, K1 := kqd.a78, polarity=-1; - MS.30L8.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.30L8.B1, KICK := acbv30.l8b1, polarity=+1; - MB.C30L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C30L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.30L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B30L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B30L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A30L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A30L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.29L8.B1, K3 := kof.a78b1, polarity=+1; - MQ.29L8.B1, K1 := kqf.a78, polarity=+1; - MSS.29L8.B1, K2S := kss.a78b1, polarity=-1; - MCBH.29L8.B1, KICK := acbh29.l8b1, polarity=+1; - MCD.B29L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C29L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C29L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B29L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B29L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A29L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A29L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A29L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.28L8.B1, K3 := kod.a78b1, polarity=-1; - MQ.28L8.B1, K1 := kqd.a78, polarity=-1; - MS.28L8.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.28L8.B1, KICK := acbv28.l8b1, polarity=+1; - MB.C28L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C28L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.28L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B28L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B28L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A28L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A28L8.B1, K2 := kcs.a78b1, polarity=+1; - MQS.27L8.B1, K1S := kqs.l8b1, polarity=-1; - MQ.27L8.B1, K1 := kqf.a78, polarity=+1; - MS.27L8.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.27L8.B1, KICK := acbh27.l8b1, polarity=+1; - MCD.B27L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C27L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C27L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B27L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B27L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A27L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A27L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A27L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.26L8.B1, K3 := kod.a78b1, polarity=-1; - MQ.26L8.B1, K1 := kqd.a78, polarity=-1; - MS.26L8.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.26L8.B1, KICK := acbv26.l8b1, polarity=+1; - MB.C26L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C26L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.26L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B26L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B26L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A26L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A26L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.25L8.B1, K3 := kof.a78b1, polarity=+1; - MQ.25L8.B1, K1 := kqf.a78, polarity=+1; - MS.25L8.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.25L8.B1, KICK := acbh25.l8b1, polarity=+1; - MCD.B25L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C25L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C25L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B25L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B25L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A25L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A25L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A25L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.24L8.B1, K3 := kod.a78b1, polarity=-1; - MQ.24L8.B1, K1 := kqd.a78, polarity=-1; - MS.24L8.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.24L8.B1, KICK := acbv24.l8b1, polarity=+1; - MB.C24L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C24L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.24L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B24L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B24L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A24L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A24L8.B1, K2 := kcs.a78b1, polarity=+1; - MQS.23L8.B1, K1S := kqs.l8b1, polarity=-1; - MQ.23L8.B1, K1 := kqf.a78, polarity=+1; - MS.23L8.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.23L8.B1, KICK := acbh23.l8b1, polarity=+1; - MCD.B23L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C23L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C23L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B23L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B23L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A23L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A23L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A23L8.B1, K2 := kcs.a78b1, polarity=+1; - MO.22L8.B1, K3 := kod.a78b1, polarity=-1; - MQ.22L8.B1, K1 := kqd.a78, polarity=-1; - MS.22L8.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.22L8.B1, KICK := acbv22.l8b1, polarity=+1; - MB.C22L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C22L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.22L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B22L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B22L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A22L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A22L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.21L8.B1, K1 := kqtf.a78b1, polarity=+1; - MQ.21L8.B1, K1 := kqf.a78, polarity=+1; - MS.21L8.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.21L8.B1, KICK := acbh21.l8b1, polarity=+1; - MCD.B21L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C21L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C21L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B21L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B21L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A21L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A21L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A21L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.20L8.B1, K1 := kqtd.a78b1, polarity=-1; - MQ.20L8.B1, K1 := kqd.a78, polarity=-1; - MS.20L8.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.20L8.B1, KICK := acbv20.l8b1, polarity=+1; - MB.C20L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C20L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.20L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B20L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B20L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A20L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A20L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.19L8.B1, K1 := kqtf.a78b1, polarity=+1; - MQ.19L8.B1, K1 := kqf.a78, polarity=+1; - MS.19L8.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.19L8.B1, KICK := acbh19.l8b1, polarity=+1; - MCD.B19L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C19L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C19L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B19L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B19L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A19L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A19L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A19L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.18L8.B1, K1 := kqtd.a78b1, polarity=-1; - MQ.18L8.B1, K1 := kqd.a78, polarity=-1; - MS.18L8.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.18L8.B1, KICK := acbv18.l8b1, polarity=+1; - MB.C18L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C18L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.18L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B18L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B18L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A18L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A18L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.17L8.B1, K1 := kqtf.a78b1, polarity=+1; - MQ.17L8.B1, K1 := kqf.a78, polarity=+1; - MS.17L8.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.17L8.B1, KICK := acbh17.l8b1, polarity=+1; - MCD.B17L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C17L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C17L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B17L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B17L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A17L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A17L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A17L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.16L8.B1, K1 := kqtd.a78b1, polarity=-1; - MQ.16L8.B1, K1 := kqd.a78, polarity=-1; - MS.16L8.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.16L8.B1, KICK := acbv16.l8b1, polarity=+1; - MB.C16L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C16L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.16L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B16L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B16L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A16L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A16L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.15L8.B1, K1 := kqtf.a78b1, polarity=+1; - MQ.15L8.B1, K1 := kqf.a78, polarity=+1; - MS.15L8.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.15L8.B1, KICK := acbh15.l8b1, polarity=+1; - MCD.B15L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C15L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C15L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B15L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B15L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A15L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A15L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A15L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.14L8.B1, K1 := kqtd.a78b1, polarity=-1; - MQ.14L8.B1, K1 := kqd.a78, polarity=-1; - MS.14L8.B1, K2 := ksd2.a78b1, polarity=-1; - MCBV.14L8.B1, KICK := acbv14.l8b1, polarity=+1; - MB.C14L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C14L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.14L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B14L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B14L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A14L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A14L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.13L8.B1, K1 := kqt13.l8b1, polarity=+1; - MQ.13L8.B1, K1 := kqf.a78, polarity=+1; - MS.13L8.B1, K2 := ksf1.a78b1, polarity=+1; - MCBH.13L8.B1, KICK := acbh13.l8b1, polarity=+1; - MCD.B13L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.C13L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C13L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.B13L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B13L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.A13L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.A13L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A13L8.B1, K2 := kcs.a78b1, polarity=+1; - MQT.12L8.B1, K1 := kqt12.l8b1, polarity=-1; - MQ.12L8.B1, K1 := kqd.a78, polarity=-1; - MS.12L8.B1, K2 := ksd1.a78b1, polarity=-1; - MCBV.12L8.B1, KICK := acbv12.l8b1, polarity=+1; - MB.C12L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.C12L8.B1, K2 := kcs.a78b1, polarity=+1; - MCD.12L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B12L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B12L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A12L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A12L8.B1, K2 := kcs.a78b1, polarity=+1; - MQ.11L8.B1, K1 := kqf.a78, polarity=+1; - MQTLI.11L8.B1, K1 := kqtl11.l8b1, polarity=+1; - MS.11L8.B1, K2 := ksf2.a78b1, polarity=+1; - MCBH.11L8.B1, KICK := acbh11.l8b1, polarity=+1; - MCD.11L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B11L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B11L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A11L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A11L8.B1, K2 := kcs.a78b1, polarity=+1; - MQML.10L8.B1, K1 := kq10.l8b1, polarity=-1; - MCBCV.10L8.B1, KICK := acbcv10.l8b1, polarity=+1; - MCD.10L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B10L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B10L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A10L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A10L8.B1, K2 := kcs.a78b1, polarity=+1; - MQMC.9L8.B1, K1 := kq9.l8b1, polarity=+1; - MQM.9L8.B1, K1 := kq9.l8b1, polarity=+1; - MCBCH.9L8.B1, KICK := acbch9.l8b1, polarity=+1; - MCD.9L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B9L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B9L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A9L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A9L8.B1, K2 := kcs.a78b1, polarity=+1; - MQML.8L8.B1, K1 := kq8.l8b1, polarity=-1; - MCBCV.8L8.B1, KICK := acbcv8.l8b1, polarity=+1; - MCD.8L8.B1, KNL := {0, 0, 0, 0, kcd.a78b1*l.MCD}, polarity=+1; - MB.B8L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.B8L8.B1, K2 := kcs.a78b1, polarity=+1; - MB.A8L8.B1, ANGLE := ab.a78, K0 := kb.a78, polarity=+1; - MCS.A8L8.B1, K2 := kcs.a78b1, polarity=+1; - MQM.B7L8.B1, K1 := kq7.l8b1, polarity=+1; - MQM.A7L8.B1, K1 := kq7.l8b1, polarity=+1; - MCBCH.7L8.B1, KICK := acbch7.l8b1, polarity=+1; - MCBCV.6L8.B1, KICK := acbcv6.l8b1, polarity=+1; - MQML.6L8.B1, K1 := kq6.l8b1, polarity=-1; - MQM.6L8.B1, K1 := kq6.l8b1, polarity=-1; - MCBCH.B5L8.B1, KICK := acbchs5.l8b1, polarity=+1; - MCBCV.5L8.B1, KICK := acbcvs5.l8b1, polarity=+1; - MCBCH.A5L8.B1, KICK := acbch5.l8b1, polarity=+1; - MQM.B5L8.B1, K1 := kq5.l8b1, polarity=+1; - MQM.A5L8.B1, K1 := kq5.l8b1, polarity=+1; - MQY.B4L8.B1, K1 := kq4.l8b1, polarity=-1; - MQY.A4L8.B1, K1 := kq4.l8b1, polarity=-1; - MCBYV.B4L8.B1, KICK := acbyv4.l8b1, polarity=+1; - MCBYH.4L8.B1, KICK := acbyhs4.l8b1, polarity=+1; - MCBYV.A4L8.B1, KICK := acbyvs4.l8b1, polarity=+1; - MBRC.4L8.B1, ANGLE := ad2.l8, K0 := kd2.l8, polarity=+1; - MBX.4L8, ANGLE := -ad1.l8, K0 := -kd1.l8, polarity=-1; - MCOSX.3L8, KSL := {0, 0, 0, kcosx3.l8*l.MCOSX}, polarity=-1; - MCOX.3L8, KNL := {0, 0, 0, kcox3.l8*l.MCOX}, polarity=+1; - MCSSX.3L8, KSL := {0, 0, kcssx3.l8*l.MCSSX, 0}, polarity=-1; - MCBXH.3L8, KICK := acbxh3.l8, polarity=+1; - MCBXV.3L8, KICK := acbxv3.l8, polarity=+1; - MCSX.3L8, KNL := {0, 0, kcsx3.l8*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3L8, KNL := {0, 0, 0, 0, 0, kctx3.l8*l.MCTX}, polarity=+1; - MQXA.3L8, K1 := kqx.l8, polarity=+1; - MQSX.3L8, K1S := kqsx3.l8, polarity=-1; - MQXB.B2L8, K1 := -kqx.l8-ktqx2.l8, polarity=-1; - MCBXH.2L8, KICK := acbxh2.l8, polarity=+1; - MCBXV.2L8, KICK := acbxv2.l8, polarity=+1; - MQXB.A2L8, K1 := -kqx.l8-ktqx2.l8, polarity=-1; - MCBXH.1L8, KICK := acbxh1.l8, polarity=+1; - MCBXV.1L8, KICK := acbxv1.l8, polarity=+1; - MQXA.1L8, K1 := kqx.l8+ktqx1.l8, polarity=+1; - MBXWS.1L8, TILT := +0.013405855024372, KICK := abxws.l8, polarity=+1; - MBXWH.1L8, TILT := +0.013405855024372, KICK := abxwh.l8, polarity=+1; - MBLW.1R8, TILT := +0.013405855024372, KICK := ablw.r8, polarity=+1; - MBXWS.1R8, TILT := +0.013405855024372, KICK := abxws.r8, polarity=+1; - MQXA.1R8, K1 := kqx.r8+ktqx1.r8, polarity=-1; - MCBXH.1R8, KICK := acbxh1.r8, polarity=+1; - MCBXV.1R8, KICK := acbxv1.r8, polarity=+1; - MQXB.A2R8, K1 := -kqx.r8-ktqx2.r8, polarity=+1; - MCBXH.2R8, KICK := acbxh2.r8, polarity=+1; - MCBXV.2R8, KICK := acbxv2.r8, polarity=+1; - MQXB.B2R8, K1 := -kqx.r8-ktqx2.r8, polarity=+1; - MQSX.3R8, K1S := kqsx3.r8, polarity=-1; - MQXA.3R8, K1 := kqx.r8, polarity=-1; - MCBXH.3R8, KICK := acbxh3.r8, polarity=+1; - MCBXV.3R8, KICK := acbxv3.r8, polarity=+1; - MCSX.3R8, KNL := {0, 0, kcsx3.r8*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3R8, KNL := {0, 0, 0, 0, 0, kctx3.r8*l.MCTX}, polarity=+1; - MCOSX.3R8, KSL := {0, 0, 0, kcosx3.r8*l.MCOSX}, polarity=-1; - MCOX.3R8, KNL := {0, 0, 0, kcox3.r8*l.MCOX}, polarity=+1; - MCSSX.3R8, KSL := {0, 0, kcssx3.r8*l.MCSSX, 0}, polarity=-1; - MBX.4R8, ANGLE := ad1.r8, K0 := kd1.r8, polarity=+1; - MBRC.4R8.B1, ANGLE := -ad2.r8, K0 := -kd2.r8, polarity=-1; - MCBYH.A4R8.B1, KICK := acbyhs4.r8b1, polarity=+1; - MCBYV.4R8.B1, KICK := acbyvs4.r8b1, polarity=+1; - MCBYH.B4R8.B1, KICK := acbyh4.r8b1, polarity=+1; - MQY.A4R8.B1, K1 := kq4.r8b1, polarity=+1; - MQY.B4R8.B1, K1 := kq4.r8b1, polarity=+1; - MQY.A5R8.B1, K1 := kq5.r8b1, polarity=-1; - MQY.B5R8.B1, K1 := kq5.r8b1, polarity=-1; - MCBYV.A5R8.B1, KICK := acbyv5.r8b1, polarity=+1; - MCBYH.5R8.B1, KICK := acbyhs5.r8b1, polarity=+1; - MCBYV.B5R8.B1, KICK := acbyvs5.r8b1, polarity=+1; - MSIA.A6R8.B1, HKICK := akmsia.r8b1, polarity=+1; - MSIA.B6R8.B1, HKICK := akmsia.r8b1, polarity=+1; - MSIB.A6R8.B1, HKICK := akmsib.r8b1, polarity=+1; - MSIB.B6R8.B1, HKICK := akmsib.r8b1, polarity=+1; - MSIB.C6R8.B1, HKICK := akmsib.r8b1, polarity=+1; - MCBCH.6R8.B1, KICK := acbch6.r8b1, polarity=+1; - MQML.6R8.B1, K1 := kq6.r8b1, polarity=+1; - MQM.6R8.B1, K1 := kq6.r8b1, polarity=+1; - MQM.A7R8.B1, K1 := kq7.r8b1, polarity=-1; - MQM.B7R8.B1, K1 := kq7.r8b1, polarity=-1; - MCBCV.7R8.B1, KICK := acbcv7.r8b1, polarity=+1; - MCO.8R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.8R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A8R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A8R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B8R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B8R8.B1, K2 := kcs.a81b1, polarity=+1; - MQML.8R8.B1, K1 := kq8.r8b1, polarity=+1; - MCBCH.8R8.B1, KICK := acbch8.r8b1, polarity=+1; - MCO.9R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.9R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A9R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A9R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B9R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B9R8.B1, K2 := kcs.a81b1, polarity=+1; - MQMC.9R8.B1, K1 := kq9.r8b1, polarity=-1; - MQM.9R8.B1, K1 := kq9.r8b1, polarity=-1; - MCBCV.9R8.B1, KICK := acbcv9.r8b1, polarity=+1; - MCO.10R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.10R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A10R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A10R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B10R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B10R8.B1, K2 := kcs.a81b1, polarity=+1; - MQML.10R8.B1, K1 := kq10.r8b1, polarity=+1; - MCBCH.10R8.B1, KICK := acbch10.r8b1, polarity=+1; - MCO.11R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.11R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A11R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A11R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B11R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B11R8.B1, K2 := kcs.a81b1, polarity=+1; - MQ.11R8.B1, K1 := kqd.a81, polarity=-1; - MQTLI.11R8.B1, K1 := kqtl11.r8b1, polarity=-1; - MS.11R8.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.11R8.B1, KICK := acbv11.r8b1, polarity=+1; - MCO.A12R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A12R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A12R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A12R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B12R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B12R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B12R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B12R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C12R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C12R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.12R8.B1, K1 := kqt12.r8b1, polarity=+1; - MQ.12R8.B1, K1 := kqf.a81, polarity=+1; - MS.12R8.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.12R8.B1, KICK := acbh12.r8b1, polarity=+1; - MB.A13R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A13R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.13R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.13R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B13R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B13R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C13R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C13R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.13R8.B1, K1 := kqt13.r8b1, polarity=-1; - MQ.13R8.B1, K1 := kqd.a81, polarity=-1; - MS.13R8.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.13R8.B1, KICK := acbv13.r8b1, polarity=+1; - MCO.A14R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A14R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A14R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A14R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B14R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B14R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B14R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B14R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C14R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C14R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.14R8.B1, K1 := kqtf.a81b1, polarity=+1; - MQ.14R8.B1, K1 := kqf.a81, polarity=+1; - MS.14R8.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.14R8.B1, KICK := acbh14.r8b1, polarity=+1; - MB.A15R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A15R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.15R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.15R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B15R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B15R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C15R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C15R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.15R8.B1, K1 := kqtd.a81b1, polarity=-1; - MQ.15R8.B1, K1 := kqd.a81, polarity=-1; - MS.15R8.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.15R8.B1, KICK := acbv15.r8b1, polarity=+1; - MCO.A16R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A16R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A16R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A16R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B16R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B16R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B16R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B16R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C16R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C16R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.16R8.B1, K1 := kqtf.a81b1, polarity=+1; - MQ.16R8.B1, K1 := kqf.a81, polarity=+1; - MS.16R8.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.16R8.B1, KICK := acbh16.r8b1, polarity=+1; - MB.A17R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A17R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.17R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.17R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B17R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B17R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C17R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C17R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.17R8.B1, K1 := kqtd.a81b1, polarity=-1; - MQ.17R8.B1, K1 := kqd.a81, polarity=-1; - MS.17R8.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.17R8.B1, KICK := acbv17.r8b1, polarity=+1; - MCO.A18R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A18R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A18R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A18R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B18R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B18R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B18R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B18R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C18R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C18R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.18R8.B1, K1 := kqtf.a81b1, polarity=+1; - MQ.18R8.B1, K1 := kqf.a81, polarity=+1; - MS.18R8.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.18R8.B1, KICK := acbh18.r8b1, polarity=+1; - MB.A19R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A19R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.19R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.19R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B19R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B19R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C19R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C19R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.19R8.B1, K1 := kqtd.a81b1, polarity=-1; - MQ.19R8.B1, K1 := kqd.a81, polarity=-1; - MS.19R8.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.19R8.B1, KICK := acbv19.r8b1, polarity=+1; - MCO.A20R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A20R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A20R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A20R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B20R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B20R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B20R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B20R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C20R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C20R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.20R8.B1, K1 := kqtf.a81b1, polarity=+1; - MQ.20R8.B1, K1 := kqf.a81, polarity=+1; - MS.20R8.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.20R8.B1, KICK := acbh20.r8b1, polarity=+1; - MB.A21R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A21R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.21R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.21R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B21R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B21R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C21R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C21R8.B1, K2 := kcs.a81b1, polarity=+1; - MQT.21R8.B1, K1 := kqtd.a81b1, polarity=-1; - MQ.21R8.B1, K1 := kqd.a81, polarity=-1; - MS.21R8.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.21R8.B1, KICK := acbv21.r8b1, polarity=+1; - MCO.A22R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A22R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A22R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A22R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B22R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B22R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B22R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B22R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C22R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C22R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.22R8.B1, K3 := kof.a81b1, polarity=+1; - MQ.22R8.B1, K1 := kqf.a81, polarity=+1; - MS.22R8.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.22R8.B1, KICK := acbh22.r8b1, polarity=+1; - MB.A23R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A23R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.23R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.23R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B23R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B23R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C23R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C23R8.B1, K2 := kcs.a81b1, polarity=+1; - MQS.23R8.B1, K1S := kqs.a81b1, polarity=-1; - MQ.23R8.B1, K1 := kqd.a81, polarity=-1; - MS.23R8.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.23R8.B1, KICK := acbv23.r8b1, polarity=+1; - MCO.A24R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A24R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A24R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A24R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B24R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B24R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B24R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B24R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C24R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C24R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.24R8.B1, K3 := kof.a81b1, polarity=+1; - MQ.24R8.B1, K1 := kqf.a81, polarity=+1; - MS.24R8.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.24R8.B1, KICK := acbh24.r8b1, polarity=+1; - MB.A25R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A25R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.25R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.25R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B25R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B25R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C25R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C25R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.25R8.B1, K3 := kod.a81b1, polarity=-1; - MQ.25R8.B1, K1 := kqd.a81, polarity=-1; - MS.25R8.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.25R8.B1, KICK := acbv25.r8b1, polarity=+1; - MCO.A26R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A26R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A26R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A26R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B26R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B26R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B26R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B26R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C26R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C26R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.26R8.B1, K3 := kof.a81b1, polarity=+1; - MQ.26R8.B1, K1 := kqf.a81, polarity=+1; - MS.26R8.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.26R8.B1, KICK := acbh26.r8b1, polarity=+1; - MB.A27R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A27R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.27R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.27R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B27R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B27R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C27R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C27R8.B1, K2 := kcs.a81b1, polarity=+1; - MQS.27R8.B1, K1S := kqs.a81b1, polarity=-1; - MQ.27R8.B1, K1 := kqd.a81, polarity=-1; - MS.27R8.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.27R8.B1, KICK := acbv27.r8b1, polarity=+1; - MCO.A28R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A28R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A28R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A28R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B28R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B28R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B28R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B28R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C28R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C28R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.28R8.B1, K3 := kof.a81b1, polarity=+1; - MQ.28R8.B1, K1 := kqf.a81, polarity=+1; - MS.28R8.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.28R8.B1, KICK := acbh28.r8b1, polarity=+1; - MB.A29R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A29R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.29R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.29R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B29R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B29R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C29R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C29R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.29R8.B1, K3 := kod.a81b1, polarity=-1; - MQ.29R8.B1, K1 := kqd.a81, polarity=-1; - MS.29R8.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.29R8.B1, KICK := acbv29.r8b1, polarity=+1; - MCO.A30R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A30R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A30R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A30R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B30R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B30R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B30R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B30R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C30R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C30R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.30R8.B1, K3 := kof.a81b1, polarity=+1; - MQ.30R8.B1, K1 := kqf.a81, polarity=+1; - MSS.30R8.B1, K2S := kss.a81b1, polarity=-1; - MCBH.30R8.B1, KICK := acbh30.r8b1, polarity=+1; - MB.A31R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A31R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.31R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.31R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B31R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B31R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C31R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C31R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.31R8.B1, K3 := kod.a81b1, polarity=-1; - MQ.31R8.B1, K1 := kqd.a81, polarity=-1; - MS.31R8.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.31R8.B1, KICK := acbv31.r8b1, polarity=+1; - MCO.A32R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A32R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A32R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A32R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B32R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B32R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B32R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B32R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C32R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C32R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.32R8.B1, K3 := kof.a81b1, polarity=+1; - MQ.32R8.B1, K1 := kqf.a81, polarity=+1; - MS.32R8.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.32R8.B1, KICK := acbh32.r8b1, polarity=+1; - MB.A33R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A33R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.33R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.33R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B33R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B33R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.C33R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C33R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.33R8.B1, K3 := kod.a81b1, polarity=-1; - MQ.33R8.B1, K1 := kqd.a81, polarity=-1; - MS.33R8.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.33R8.B1, KICK := acbv33.r8b1, polarity=+1; - MCO.A34R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A34R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A34R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A34R8.B1, K2 := kcs.a81b1, polarity=+1; - MB.B34R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B34R8.B1, K2 := kcs.a81b1, polarity=+1; - MCO.B34R8.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B34R8.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C34R8.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C34R8.B1, K2 := kcs.a81b1, polarity=+1; - MO.34R8.B1, K3 := kof.a81b1, polarity=+1; - MQ.34R8.B1, K1 := kqf.a81, polarity=+1; - MSS.34L1.B1, K2S := kss.a81b1, polarity=-1; - MCBH.34L1.B1, KICK := acbh34.l1b1, polarity=+1; - MB.C34L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C34L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.34L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.34L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B34L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B34L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A34L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A34L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.33L1.B1, K3 := kod.a81b1, polarity=-1; - MQ.33L1.B1, K1 := kqd.a81, polarity=-1; - MS.33L1.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.33L1.B1, KICK := acbv33.l1b1, polarity=+1; - MCO.B33L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B33L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C33L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C33L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B33L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B33L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A33L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A33L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A33L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A33L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.32L1.B1, K3 := kof.a81b1, polarity=+1; - MQ.32L1.B1, K1 := kqf.a81, polarity=+1; - MSS.32L1.B1, K2S := kss.a81b1, polarity=-1; - MCBH.32L1.B1, KICK := acbh32.l1b1, polarity=+1; - MB.C32L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C32L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.32L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.32L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B32L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B32L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A32L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A32L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.31L1.B1, K3 := kod.a81b1, polarity=-1; - MQ.31L1.B1, K1 := kqd.a81, polarity=-1; - MS.31L1.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.31L1.B1, KICK := acbv31.l1b1, polarity=+1; - MCO.B31L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B31L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C31L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C31L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B31L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B31L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A31L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A31L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A31L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A31L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.30L1.B1, K3 := kof.a81b1, polarity=+1; - MQ.30L1.B1, K1 := kqf.a81, polarity=+1; - MS.30L1.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.30L1.B1, KICK := acbh30.l1b1, polarity=+1; - MB.C30L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C30L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.30L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.30L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B30L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B30L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A30L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A30L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.29L1.B1, K3 := kod.a81b1, polarity=-1; - MQ.29L1.B1, K1 := kqd.a81, polarity=-1; - MS.29L1.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.29L1.B1, KICK := acbv29.l1b1, polarity=+1; - MCO.B29L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B29L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C29L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C29L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B29L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B29L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A29L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A29L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A29L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A29L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.28L1.B1, K3 := kof.a81b1, polarity=+1; - MQ.28L1.B1, K1 := kqf.a81, polarity=+1; - MSS.28L1.B1, K2S := kss.a81b1, polarity=-1; - MCBH.28L1.B1, KICK := acbh28.l1b1, polarity=+1; - MB.C28L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C28L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.28L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.28L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B28L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B28L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A28L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A28L1.B1, K2 := kcs.a81b1, polarity=+1; - MQS.27L1.B1, K1S := kqs.a81b1, polarity=-1; - MQ.27L1.B1, K1 := kqd.a81, polarity=-1; - MS.27L1.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.27L1.B1, KICK := acbv27.l1b1, polarity=+1; - MCO.B27L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B27L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C27L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C27L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B27L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B27L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A27L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A27L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A27L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A27L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.26L1.B1, K3 := kof.a81b1, polarity=+1; - MQ.26L1.B1, K1 := kqf.a81, polarity=+1; - MS.26L1.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.26L1.B1, KICK := acbh26.l1b1, polarity=+1; - MB.C26L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C26L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.26L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.26L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B26L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B26L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A26L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A26L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.25L1.B1, K3 := kod.a81b1, polarity=-1; - MQ.25L1.B1, K1 := kqd.a81, polarity=-1; - MS.25L1.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.25L1.B1, KICK := acbv25.l1b1, polarity=+1; - MCO.B25L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B25L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C25L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C25L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B25L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B25L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A25L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A25L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A25L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A25L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.24L1.B1, K3 := kof.a81b1, polarity=+1; - MQ.24L1.B1, K1 := kqf.a81, polarity=+1; - MS.24L1.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.24L1.B1, KICK := acbh24.l1b1, polarity=+1; - MB.C24L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C24L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.24L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.24L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B24L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B24L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A24L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A24L1.B1, K2 := kcs.a81b1, polarity=+1; - MQS.23L1.B1, K1S := kqs.a81b1, polarity=-1; - MQ.23L1.B1, K1 := kqd.a81, polarity=-1; - MS.23L1.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.23L1.B1, KICK := acbv23.l1b1, polarity=+1; - MCO.B23L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B23L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C23L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C23L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B23L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B23L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A23L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A23L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A23L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A23L1.B1, K2 := kcs.a81b1, polarity=+1; - MO.22L1.B1, K3 := kof.a81b1, polarity=+1; - MQ.22L1.B1, K1 := kqf.a81, polarity=+1; - MS.22L1.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.22L1.B1, KICK := acbh22.l1b1, polarity=+1; - MB.C22L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C22L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.22L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.22L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B22L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B22L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A22L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A22L1.B1, K2 := kcs.a81b1, polarity=+1; - MQT.21L1.B1, K1 := kqtd.a81b1, polarity=-1; - MQ.21L1.B1, K1 := kqd.a81, polarity=-1; - MS.21L1.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.21L1.B1, KICK := acbv21.l1b1, polarity=+1; - MCO.B21L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B21L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C21L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C21L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B21L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B21L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A21L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A21L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A21L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A21L1.B1, K2 := kcs.a81b1, polarity=+1; - MQ.20L1.B1, K1 := kqf.a81, polarity=+1; - MS.20L1.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.20L1.B1, KICK := acbh20.l1b1, polarity=+1; - MB.C20L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C20L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.20L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.20L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B20L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B20L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A20L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A20L1.B1, K2 := kcs.a81b1, polarity=+1; - MQT.19L1.B1, K1 := kqtd.a81b1, polarity=-1; - MQ.19L1.B1, K1 := kqd.a81, polarity=-1; - MS.19L1.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.19L1.B1, KICK := acbv19.l1b1, polarity=+1; - MCO.B19L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B19L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C19L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C19L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B19L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B19L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A19L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A19L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A19L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A19L1.B1, K2 := kcs.a81b1, polarity=+1; - MQ.18L1.B1, K1 := kqf.a81, polarity=+1; - MS.18L1.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.18L1.B1, KICK := acbh18.l1b1, polarity=+1; - MB.C18L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C18L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.18L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.18L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B18L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B18L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A18L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A18L1.B1, K2 := kcs.a81b1, polarity=+1; - MQT.17L1.B1, K1 := kqtd.a81b1, polarity=-1; - MQ.17L1.B1, K1 := kqd.a81, polarity=-1; - MS.17L1.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.17L1.B1, KICK := acbv17.l1b1, polarity=+1; - MCO.B17L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B17L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C17L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C17L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B17L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B17L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A17L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A17L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A17L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A17L1.B1, K2 := kcs.a81b1, polarity=+1; - MQ.16L1.B1, K1 := kqf.a81, polarity=+1; - MS.16L1.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.16L1.B1, KICK := acbh16.l1b1, polarity=+1; - MB.C16L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C16L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.16L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.16L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B16L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B16L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A16L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A16L1.B1, K2 := kcs.a81b1, polarity=+1; - MQT.15L1.B1, K1 := kqtd.a81b1, polarity=-1; - MQ.15L1.B1, K1 := kqd.a81, polarity=-1; - MS.15L1.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.15L1.B1, KICK := acbv15.l1b1, polarity=+1; - MCO.B15L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B15L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C15L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C15L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B15L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B15L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A15L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A15L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A15L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A15L1.B1, K2 := kcs.a81b1, polarity=+1; - MQ.14L1.B1, K1 := kqf.a81, polarity=+1; - MS.14L1.B1, K2 := ksf1.a81b1, polarity=+1; - MCBH.14L1.B1, KICK := acbh14.l1b1, polarity=+1; - MB.C14L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C14L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.14L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.14L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B14L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B14L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A14L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A14L1.B1, K2 := kcs.a81b1, polarity=+1; - MQT.13L1.B1, K1 := kqt13.l1b1, polarity=-1; - MQ.13L1.B1, K1 := kqd.a81, polarity=-1; - MS.13L1.B1, K2 := ksd1.a81b1, polarity=-1; - MCBV.13L1.B1, KICK := acbv13.l1b1, polarity=+1; - MCO.B13L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.B13L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.C13L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C13L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.B13L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B13L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.A13L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.A13L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.A13L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A13L1.B1, K2 := kcs.a81b1, polarity=+1; - MQT.12L1.B1, K1 := kqt12.l1b1, polarity=+1; - MQ.12L1.B1, K1 := kqf.a81, polarity=+1; - MS.12L1.B1, K2 := ksf2.a81b1, polarity=+1; - MCBH.12L1.B1, KICK := acbh12.l1b1, polarity=+1; - MB.C12L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.C12L1.B1, K2 := kcs.a81b1, polarity=+1; - MCO.12L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.12L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B12L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B12L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A12L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A12L1.B1, K2 := kcs.a81b1, polarity=+1; - MQ.11L1.B1, K1 := kqd.a81, polarity=-1; - MQTLI.11L1.B1, K1 := kqtl11.l1b1, polarity=-1; - MS.11L1.B1, K2 := ksd2.a81b1, polarity=-1; - MCBV.11L1.B1, KICK := acbv11.l1b1, polarity=+1; - MCO.11L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.11L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B11L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B11L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A11L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A11L1.B1, K2 := kcs.a81b1, polarity=+1; - MQML.10L1.B1, K1 := kq10.l1b1, polarity=+1; - MCBCH.10L1.B1, KICK := acbch10.l1b1, polarity=+1; - MCO.10L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.10L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B10L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B10L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A10L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A10L1.B1, K2 := kcs.a81b1, polarity=+1; - MQMC.9L1.B1, K1 := kq9.l1b1, polarity=-1; - MQM.9L1.B1, K1 := kq9.l1b1, polarity=-1; - MCBCV.9L1.B1, KICK := acbcv9.l1b1, polarity=+1; - MCO.9L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.9L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B9L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B9L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A9L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A9L1.B1, K2 := kcs.a81b1, polarity=+1; - MQML.8L1.B1, K1 := kq8.l1b1, polarity=+1; - MCBCH.8L1.B1, KICK := acbch8.l1b1, polarity=+1; - MCO.8L1.B1, KNL := {0, 0, 0, kco.a81b1*l.MCO, 0}, polarity=+1; - MCD.8L1.B1, KNL := {0, 0, 0, 0, kcd.a81b1*l.MCD}, polarity=+1; - MB.B8L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.B8L1.B1, K2 := kcs.a81b1, polarity=+1; - MB.A8L1.B1, ANGLE := ab.a81, K0 := kb.a81, polarity=+1; - MCS.A8L1.B1, K2 := kcs.a81b1, polarity=+1; - MQM.B7L1.B1, K1 := kq7.l1b1, polarity=-1; - MQM.A7L1.B1, K1 := kq7.l1b1, polarity=-1; - MCBCV.7L1.B1, KICK := acbcv7.l1b1, polarity=+1; - MCBCH.6L1.B1, KICK := acbch6.l1b1, polarity=+1; - MQML.6L1.B1, K1 := kq6.l1b1, polarity=+1; - MCBCV.5L1.B1, KICK := acbcv5.l1b1, polarity=+1; - MQML.5L1.B1, K1 := kq5.l1b1, polarity=-1; - MQY.4L1.B1, K1 := kq4.l1b1, polarity=+1; - MCBYH.B4L1.B1, KICK := acbyh4.l1b1, polarity=+1; - MCBYV.4L1.B1, KICK := acbyvs4.l1b1, polarity=+1; - MCBYH.A4L1.B1, KICK := acbyhs4.l1b1, polarity=+1; - MBRC.4L1.B1, ANGLE := -ad2.l1, K0 := -kd2.l1, polarity=-1; - MBXW.F4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.E4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.D4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.C4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.B4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.A4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MCOX.3L1, KNL := {0, 0, 0, kcox3.l1*l.MCOX}, polarity=+1; - MCSSX.3L1, KSL := {0, 0, kcssx3.l1*l.MCSSX, 0}, polarity=-1; - MCBXH.3L1, KICK := acbxh3.l1, polarity=+1; - MCBXV.3L1, KICK := acbxv3.l1, polarity=+1; - MCSX.3L1, KNL := {0, 0, kcsx3.l1*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3L1, KNL := {0, 0, 0, 0, 0, kctx3.l1*l.MCTX}, polarity=+1; - MQXA.3L1, K1 := kqx.l1, polarity=-1; - MQSX.3L1, K1S := kqsx3.l1, polarity=-1; - MQXB.B2L1, K1 := -kqx.l1-ktqx2.l1, polarity=+1; - MCBXH.2L1, KICK := acbxh2.l1, polarity=+1; - MCBXV.2L1, KICK := acbxv2.l1, polarity=+1; - MQXB.A2L1, K1 := -kqx.l1-ktqx2.l1, polarity=+1; - MCBXH.1L1, KICK := acbxh1.l1, polarity=+1; - MCBXV.1L1, KICK := acbxv1.l1, polarity=+1; - MQXA.1L1, K1 := kqx.l1+ktqx1.l1, polarity=-1; - MBAS2.1L1, KS := abas; - - -/************************************************************************************/ -/* MAGNET-CONSTANT LHC SEQUENCE %B2 */ -/************************************************************************************/ - - MBAS2.1R1, KS := abas; - MQXA.1R1, K1 := kqx.r1+ktqx1.r1, polarity=+1; - MCBXH.1R1, KICK := acbxh1.r1, polarity=+1; - MCBXV.1R1, KICK := acbxv1.r1, polarity=+1; - MQXB.A2R1, K1 := -kqx.r1-ktqx2.r1, polarity=-1; - MCBXH.2R1, KICK := acbxh2.r1, polarity=+1; - MCBXV.2R1, KICK := acbxv2.r1, polarity=+1; - MQXB.B2R1, K1 := -kqx.r1-ktqx2.r1, polarity=-1; - MQSX.3R1, K1S := kqsx3.r1, polarity=-1; - MQXA.3R1, K1 := kqx.r1, polarity=+1; - MCBXH.3R1, KICK := acbxh3.r1, polarity=+1; - MCBXV.3R1, KICK := acbxv3.r1, polarity=+1; - MCSX.3R1, KNL := {0, 0, kcsx3.r1*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3R1, KNL := {0, 0, 0, 0, 0, kctx3.r1*l.MCTX}, polarity=+1; - MCOSX.3R1, KSL := {0, 0, 0, kcosx3.r1*l.MCOSX}, polarity=-1; - MCOX.3R1, KNL := {0, 0, 0, kcox3.r1*l.MCOX}, polarity=+1; - MCSSX.3R1, KSL := {0, 0, kcssx3.r1*l.MCSSX, 0}, polarity=-1; - MBXW.A4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.B4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.C4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.D4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.E4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBXW.F4R1, ANGLE := -ad1.lr1, K0 := -kd1.lr1, polarity=-1; - MBRC.4R1.B2, ANGLE := ad2.r1, K0 := kd2.r1, polarity=-1; - MCBYH.A4R1.B2, KICK := -acbyhs4.r1b2, polarity=+1; - MCBYV.4R1.B2, KICK := -acbyvs4.r1b2, polarity=+1; - MCBYH.B4R1.B2, KICK := -acbyh4.r1b2, polarity=+1; - MQY.4R1.B2, K1 := -kq4.r1b2, polarity=+1; - MCBCV.5R1.B2, KICK := -acbcv5.r1b2, polarity=+1; - MQML.5R1.B2, K1 := -kq5.r1b2, polarity=-1; - MCBCH.6R1.B2, KICK := -acbch6.r1b2, polarity=+1; - MQML.6R1.B2, K1 := -kq6.r1b2, polarity=+1; - MQM.A7R1.B2, K1 := -kq7.r1b2, polarity=-1; - MQM.B7R1.B2, K1 := -kq7.r1b2, polarity=-1; - MCBCV.7R1.B2, KICK := -acbcv7.r1b2, polarity=+1; - MCO.8R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.8R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A8R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A8R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B8R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B8R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQML.8R1.B2, K1 := -kq8.r1b2, polarity=+1; - MCBCH.8R1.B2, KICK := -acbch8.r1b2, polarity=+1; - MCO.9R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.9R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A9R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A9R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B9R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B9R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQMC.9R1.B2, K1 := -kq9.r1b2, polarity=-1; - MQM.9R1.B2, K1 := -kq9.r1b2, polarity=-1; - MCBCV.9R1.B2, KICK := -acbcv9.r1b2, polarity=+1; - MCO.10R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.10R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A10R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A10R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B10R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B10R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQML.10R1.B2, K1 := -kq10.r1b2, polarity=+1; - MCBCH.10R1.B2, KICK := -acbch10.r1b2, polarity=+1; - MCO.11R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.11R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A11R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A11R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B11R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B11R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQ.11R1.B2, K1 := -kqd.a12, polarity=-1; - MQTLI.11R1.B2, K1 := -kqtl11.r1b2, polarity=-1; - MS.11R1.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.11R1.B2, KICK := -acbv11.r1b2, polarity=+1; - MCO.A12R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A12R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A12R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A12R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B12R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B12R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B12R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B12R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C12R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C12R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.12R1.B2, K1 := -kqt12.r1b2, polarity=+1; - MQ.12R1.B2, K1 := -kqf.a12, polarity=+1; - MS.12R1.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.12R1.B2, KICK := -acbh12.r1b2, polarity=+1; - MB.A13R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A13R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.13R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.13R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B13R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B13R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C13R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C13R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.13R1.B2, K1 := -kqt13.r1b2, polarity=-1; - MQ.13R1.B2, K1 := -kqd.a12, polarity=-1; - MS.13R1.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.13R1.B2, KICK := -acbv13.r1b2, polarity=+1; - MCO.A14R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A14R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A14R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A14R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B14R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B14R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B14R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B14R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C14R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C14R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.14R1.B2, K1 := -kqtf.a12b2, polarity=+1; - MQ.14R1.B2, K1 := -kqf.a12, polarity=+1; - MS.14R1.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.14R1.B2, KICK := -acbh14.r1b2, polarity=+1; - MB.A15R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A15R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.15R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.15R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B15R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B15R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C15R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C15R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.15R1.B2, K1 := -kqtd.a12b2, polarity=-1; - MQ.15R1.B2, K1 := -kqd.a12, polarity=-1; - MS.15R1.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.15R1.B2, KICK := -acbv15.r1b2, polarity=+1; - MCO.A16R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A16R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A16R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A16R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B16R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B16R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B16R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B16R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C16R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C16R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.16R1.B2, K1 := -kqtf.a12b2, polarity=+1; - MQ.16R1.B2, K1 := -kqf.a12, polarity=+1; - MS.16R1.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.16R1.B2, KICK := -acbh16.r1b2, polarity=+1; - MB.A17R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A17R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.17R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.17R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B17R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B17R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C17R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C17R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.17R1.B2, K1 := -kqtd.a12b2, polarity=-1; - MQ.17R1.B2, K1 := -kqd.a12, polarity=-1; - MS.17R1.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.17R1.B2, KICK := -acbv17.r1b2, polarity=+1; - MCO.A18R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A18R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A18R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A18R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B18R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B18R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B18R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B18R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C18R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C18R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.18R1.B2, K1 := -kqtf.a12b2, polarity=+1; - MQ.18R1.B2, K1 := -kqf.a12, polarity=+1; - MS.18R1.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.18R1.B2, KICK := -acbh18.r1b2, polarity=+1; - MB.A19R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCO.19R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.19R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B19R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B19R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C19R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C19R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.19R1.B2, K1 := -kqtd.a12b2, polarity=-1; - MQ.19R1.B2, K1 := -kqd.a12, polarity=-1; - MS.19R1.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.19R1.B2, KICK := -acbv19.r1b2, polarity=+1; - MCO.A20R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A20R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A20R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A20R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B20R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B20R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B20R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B20R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C20R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C20R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.20R1.B2, K1 := -kqtf.a12b2, polarity=+1; - MQ.20R1.B2, K1 := -kqf.a12, polarity=+1; - MS.20R1.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.20R1.B2, KICK := -acbh20.r1b2, polarity=+1; - MB.A21R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A21R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.21R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.21R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B21R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B21R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C21R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C21R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.21R1.B2, K1 := -kqtd.a12b2, polarity=-1; - MQ.21R1.B2, K1 := -kqd.a12, polarity=-1; - MS.21R1.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.21R1.B2, KICK := -acbv21.r1b2, polarity=+1; - MCO.A22R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A22R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A22R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A22R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B22R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B22R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B22R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B22R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C22R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C22R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.22R1.B2, K3 := -kof.a12b2, polarity=+1; - MQ.22R1.B2, K1 := -kqf.a12, polarity=+1; - MS.22R1.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.22R1.B2, KICK := -acbh22.r1b2, polarity=+1; - MB.A23R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A23R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.23R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.23R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B23R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B23R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C23R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C23R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQS.23R1.B2, K1S := -kqs.a12b2, polarity=-1; - MQ.23R1.B2, K1 := -kqd.a12, polarity=-1; - MS.23R1.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.23R1.B2, KICK := -acbv23.r1b2, polarity=+1; - MCO.A24R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A24R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A24R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A24R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B24R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B24R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B24R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B24R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C24R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C24R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.24R1.B2, K3 := -kof.a12b2, polarity=+1; - MQ.24R1.B2, K1 := -kqf.a12, polarity=+1; - MS.24R1.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.24R1.B2, KICK := -acbh24.r1b2, polarity=+1; - MB.A25R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A25R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.25R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.25R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B25R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B25R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C25R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C25R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.25R1.B2, K3 := -kod.a12b2, polarity=-1; - MQ.25R1.B2, K1 := -kqd.a12, polarity=-1; - MS.25R1.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.25R1.B2, KICK := -acbv25.r1b2, polarity=+1; - MCO.A26R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A26R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A26R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A26R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B26R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B26R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B26R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B26R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C26R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C26R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.26R1.B2, K3 := -kof.a12b2, polarity=+1; - MQ.26R1.B2, K1 := -kqf.a12, polarity=+1; - MS.26R1.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.26R1.B2, KICK := -acbh26.r1b2, polarity=+1; - MB.A27R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A27R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.27R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.27R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B27R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B27R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C27R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C27R1.B2, K2 := -kcs.a12b2, polarity=+1; - MQS.27R1.B2, K1S := -kqs.a12b2, polarity=-1; - MQ.27R1.B2, K1 := -kqd.a12, polarity=-1; - MS.27R1.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.27R1.B2, KICK := -acbv27.r1b2, polarity=+1; - MCO.A28R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A28R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A28R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A28R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B28R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B28R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B28R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B28R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C28R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C28R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.28R1.B2, K3 := -kof.a12b2, polarity=+1; - MQ.28R1.B2, K1 := -kqf.a12, polarity=+1; - MS.28R1.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.28R1.B2, KICK := -acbh28.r1b2, polarity=+1; - MB.A29R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A29R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.29R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.29R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B29R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B29R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C29R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C29R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.29R1.B2, K3 := -kod.a12b2, polarity=-1; - MQ.29R1.B2, K1 := -kqd.a12, polarity=-1; - MS.29R1.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.29R1.B2, KICK := -acbv29.r1b2, polarity=+1; - MCO.A30R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A30R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A30R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A30R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B30R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B30R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B30R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B30R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C30R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C30R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.30R1.B2, K3 := -kof.a12b2, polarity=+1; - MQ.30R1.B2, K1 := -kqf.a12, polarity=+1; - MSS.30R1.B2, K2S := -kss.a12b2, polarity=-1; - MCBH.30R1.B2, KICK := -acbh30.r1b2, polarity=+1; - MB.A31R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A31R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.31R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.31R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B31R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B31R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C31R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C31R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.31R1.B2, K3 := -kod.a12b2, polarity=-1; - MQ.31R1.B2, K1 := -kqd.a12, polarity=-1; - MS.31R1.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.31R1.B2, KICK := -acbv31.r1b2, polarity=+1; - MCO.A32R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A32R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A32R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A32R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B32R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B32R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B32R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B32R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C32R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C32R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.32R1.B2, K3 := -kof.a12b2, polarity=+1; - MQ.32R1.B2, K1 := -kqf.a12, polarity=+1; - MS.32R1.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.32R1.B2, KICK := -acbh32.r1b2, polarity=+1; - MB.A33R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A33R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.33R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.33R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B33R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B33R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.C33R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C33R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.33R1.B2, K3 := -kod.a12b2, polarity=-1; - MQ.33R1.B2, K1 := -kqd.a12, polarity=-1; - MS.33R1.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.33R1.B2, KICK := -acbv33.r1b2, polarity=+1; - MCO.A34R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A34R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A34R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A34R1.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B34R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B34R1.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.B34R1.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B34R1.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C34R1.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C34R1.B2, K2 := -kcs.a12b2, polarity=+1; - MO.34R1.B2, K3 := -kof.a12b2, polarity=+1; - MQ.34R1.B2, K1 := -kqf.a12, polarity=+1; - MSS.34L2.B2, K2S := -kss.a12b2, polarity=-1; - MCBH.34L2.B2, KICK := -acbh34.l2b2, polarity=+1; - MB.C34L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C34L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.34L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.34L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B34L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B34L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A34L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A34L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.33L2.B2, K3 := -kod.a12b2, polarity=-1; - MQ.33L2.B2, K1 := -kqd.a12, polarity=-1; - MS.33L2.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.33L2.B2, KICK := -acbv33.l2b2, polarity=+1; - MCO.B33L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B33L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C33L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C33L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B33L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B33L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A33L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A33L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A33L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A33L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.32L2.B2, K3 := -kof.a12b2, polarity=+1; - MQ.32L2.B2, K1 := -kqf.a12, polarity=+1; - MSS.32L2.B2, K2S := -kss.a12b2, polarity=-1; - MCBH.32L2.B2, KICK := -acbh32.l2b2, polarity=+1; - MB.C32L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C32L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.32L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.32L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B32L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B32L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A32L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A32L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.31L2.B2, K3 := -kod.a12b2, polarity=-1; - MQ.31L2.B2, K1 := -kqd.a12, polarity=-1; - MS.31L2.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.31L2.B2, KICK := -acbv31.l2b2, polarity=+1; - MCO.B31L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B31L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C31L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C31L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B31L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B31L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A31L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A31L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A31L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A31L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.30L2.B2, K3 := -kof.a12b2, polarity=+1; - MQ.30L2.B2, K1 := -kqf.a12, polarity=+1; - MS.30L2.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.30L2.B2, KICK := -acbh30.l2b2, polarity=+1; - MB.C30L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C30L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.30L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.30L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B30L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B30L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A30L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A30L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.29L2.B2, K3 := -kod.a12b2, polarity=-1; - MQ.29L2.B2, K1 := -kqd.a12, polarity=-1; - MS.29L2.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.29L2.B2, KICK := -acbv29.l2b2, polarity=+1; - MCO.B29L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B29L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C29L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C29L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B29L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B29L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A29L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A29L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A29L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A29L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.28L2.B2, K3 := -kof.a12b2, polarity=+1; - MQ.28L2.B2, K1 := -kqf.a12, polarity=+1; - MSS.28L2.B2, K2S := -kss.a12b2, polarity=-1; - MCBH.28L2.B2, KICK := -acbh28.l2b2, polarity=+1; - MB.C28L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C28L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.28L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.28L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B28L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B28L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A28L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A28L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQS.27L2.B2, K1S := -kqs.a12b2, polarity=-1; - MQ.27L2.B2, K1 := -kqd.a12, polarity=-1; - MS.27L2.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.27L2.B2, KICK := -acbv27.l2b2, polarity=+1; - MCO.B27L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B27L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C27L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C27L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B27L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B27L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A27L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A27L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A27L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A27L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.26L2.B2, K3 := -kof.a12b2, polarity=+1; - MQ.26L2.B2, K1 := -kqf.a12, polarity=+1; - MS.26L2.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.26L2.B2, KICK := -acbh26.l2b2, polarity=+1; - MB.C26L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C26L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.26L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.26L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B26L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B26L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A26L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A26L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.25L2.B2, K3 := -kod.a12b2, polarity=-1; - MQ.25L2.B2, K1 := -kqd.a12, polarity=-1; - MS.25L2.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.25L2.B2, KICK := -acbv25.l2b2, polarity=+1; - MCO.B25L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B25L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C25L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C25L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B25L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B25L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A25L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A25L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A25L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A25L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.24L2.B2, K3 := -kof.a12b2, polarity=+1; - MQ.24L2.B2, K1 := -kqf.a12, polarity=+1; - MS.24L2.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.24L2.B2, KICK := -acbh24.l2b2, polarity=+1; - MB.C24L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C24L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.24L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.24L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B24L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B24L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A24L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A24L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQS.23L2.B2, K1S := -kqs.a12b2, polarity=-1; - MQ.23L2.B2, K1 := -kqd.a12, polarity=-1; - MS.23L2.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.23L2.B2, KICK := -acbv23.l2b2, polarity=+1; - MCO.B23L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B23L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C23L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C23L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B23L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B23L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A23L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A23L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A23L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A23L2.B2, K2 := -kcs.a12b2, polarity=+1; - MO.22L2.B2, K3 := -kof.a12b2, polarity=+1; - MQ.22L2.B2, K1 := -kqf.a12, polarity=+1; - MS.22L2.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.22L2.B2, KICK := -acbh22.l2b2, polarity=+1; - MB.C22L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C22L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.22L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.22L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B22L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B22L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A22L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A22L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.21L2.B2, K1 := -kqtd.a12b2, polarity=-1; - MQ.21L2.B2, K1 := -kqd.a12, polarity=-1; - MS.21L2.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.21L2.B2, KICK := -acbv21.l2b2, polarity=+1; - MCO.B21L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B21L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C21L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C21L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B21L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B21L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A21L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A21L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A21L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A21L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.20L2.B2, K1 := -kqtf.a12b2, polarity=+1; - MQ.20L2.B2, K1 := -kqf.a12, polarity=+1; - MS.20L2.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.20L2.B2, KICK := -acbh20.l2b2, polarity=+1; - MB.C20L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C20L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.20L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.20L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B20L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B20L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A20L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A20L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.19L2.B2, K1 := -kqtd.a12b2, polarity=-1; - MQ.19L2.B2, K1 := -kqd.a12, polarity=-1; - MS.19L2.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.19L2.B2, KICK := -acbv19.l2b2, polarity=+1; - MCO.B19L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B19L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C19L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C19L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B19L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B19L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A19L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A19L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A19L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A19L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.18L2.B2, K1 := -kqtf.a12b2, polarity=+1; - MQ.18L2.B2, K1 := -kqf.a12, polarity=+1; - MS.18L2.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.18L2.B2, KICK := -acbh18.l2b2, polarity=+1; - MB.C18L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C18L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.18L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.18L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B18L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B18L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A18L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A18L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.17L2.B2, K1 := -kqtd.a12b2, polarity=-1; - MQ.17L2.B2, K1 := -kqd.a12, polarity=-1; - MS.17L2.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.17L2.B2, KICK := -acbv17.l2b2, polarity=+1; - MCO.B17L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B17L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C17L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C17L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B17L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B17L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A17L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A17L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A17L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A17L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.16L2.B2, K1 := -kqtf.a12b2, polarity=+1; - MQ.16L2.B2, K1 := -kqf.a12, polarity=+1; - MS.16L2.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.16L2.B2, KICK := -acbh16.l2b2, polarity=+1; - MB.C16L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C16L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.16L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.16L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B16L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B16L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A16L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A16L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.15L2.B2, K1 := -kqtd.a12b2, polarity=-1; - MQ.15L2.B2, K1 := -kqd.a12, polarity=-1; - MS.15L2.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.15L2.B2, KICK := -acbv15.l2b2, polarity=+1; - MCO.B15L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B15L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C15L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C15L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B15L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B15L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A15L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A15L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A15L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A15L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.14L2.B2, K1 := -kqtf.a12b2, polarity=+1; - MQ.14L2.B2, K1 := -kqf.a12, polarity=+1; - MS.14L2.B2, K2 := -ksf2.a12b2, polarity=+1; - MCBH.14L2.B2, KICK := -acbh14.l2b2, polarity=+1; - MB.C14L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C14L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.14L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.14L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B14L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B14L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A14L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A14L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.13L2.B2, K1 := -kqt13.l2b2, polarity=-1; - MQ.13L2.B2, K1 := -kqd.a12, polarity=-1; - MS.13L2.B2, K2 := -ksd1.a12b2, polarity=-1; - MCBV.13L2.B2, KICK := -acbv13.l2b2, polarity=+1; - MCO.B13L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.B13L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.C13L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C13L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.B13L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B13L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.A13L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.A13L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.A13L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A13L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQT.12L2.B2, K1 := -kqt12.l2b2, polarity=+1; - MQ.12L2.B2, K1 := -kqf.a12, polarity=+1; - MS.12L2.B2, K2 := -ksf1.a12b2, polarity=+1; - MCBH.12L2.B2, KICK := -acbh12.l2b2, polarity=+1; - MB.C12L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.C12L2.B2, K2 := -kcs.a12b2, polarity=+1; - MCO.12L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.12L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B12L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B12L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A12L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A12L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQ.11L2.B2, K1 := -kqd.a12, polarity=-1; - MQTLI.11L2.B2, K1 := -kqtl11.l2b2, polarity=-1; - MS.11L2.B2, K2 := -ksd2.a12b2, polarity=-1; - MCBV.11L2.B2, KICK := -acbv11.l2b2, polarity=+1; - MCO.11L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.11L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B11L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B11L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A11L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A11L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQML.10L2.B2, K1 := -kq10.l2b2, polarity=+1; - MCBCH.10L2.B2, KICK := -acbch10.l2b2, polarity=+1; - MCO.10L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.10L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B10L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B10L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A10L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A10L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQMC.9L2.B2, K1 := -kq9.l2b2, polarity=-1; - MQM.9L2.B2, K1 := -kq9.l2b2, polarity=-1; - MCBCV.9L2.B2, KICK := -acbcv9.l2b2, polarity=+1; - MCO.9L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.9L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B9L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B9L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A9L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A9L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQML.8L2.B2, K1 := -kq8.l2b2, polarity=+1; - MCBCH.8L2.B2, KICK := -acbch8.l2b2, polarity=+1; - MCO.8L2.B2, KNL := {0, 0, 0, -kco.a12b2*l.MCO, 0}, polarity=+1; - MCD.8L2.B2, KNL := {0, 0, 0, 0, -kcd.a12b2*l.MCD}, polarity=+1; - MB.B8L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.B8L2.B2, K2 := -kcs.a12b2, polarity=+1; - MB.A8L2.B2, ANGLE := -ab.a12, K0 := -kb.a12, polarity=+1; - MCS.A8L2.B2, K2 := -kcs.a12b2, polarity=+1; - MQM.B7L2.B2, K1 := -kq7.l2b2, polarity=-1; - MQM.A7L2.B2, K1 := -kq7.l2b2, polarity=-1; - MCBCV.7L2.B2, KICK := -acbcv7.l2b2, polarity=+1; - MCBCH.6L2.B2, KICK := -acbch6.l2b2, polarity=+1; - MQML.6L2.B2, K1 := -kq6.l2b2, polarity=+1; - MQM.6L2.B2, K1 := -kq6.l2b2, polarity=+1; - MSIB.C6L2.B2, HKICK := akmsib.l2b2, polarity=+1; - MSIB.B6L2.B2, HKICK := akmsib.l2b2, polarity=+1; - MSIB.A6L2.B2, HKICK := akmsib.l2b2, polarity=+1; - MSIA.B6L2.B2, HKICK := akmsia.l2b2, polarity=+1; - MSIA.A6L2.B2, HKICK := akmsia.l2b2, polarity=+1; - MCBYV.B5L2.B2, KICK := -acbyvs5.l2b2, polarity=+1; - MCBYH.5L2.B2, KICK := -acbyhs5.l2b2, polarity=+1; - MCBYV.A5L2.B2, KICK := -acbyv5.l2b2, polarity=+1; - MQY.B5L2.B2, K1 := -kq5.l2b2, polarity=-1; - MQY.A5L2.B2, K1 := -kq5.l2b2, polarity=-1; - MQY.B4L2.B2, K1 := -kq4.l2b2, polarity=+1; - MQY.A4L2.B2, K1 := -kq4.l2b2, polarity=+1; - MCBYH.B4L2.B2, KICK := -acbyh4.l2b2, polarity=+1; - MCBYV.4L2.B2, KICK := -acbyvs4.l2b2, polarity=+1; - MCBYH.A4L2.B2, KICK := -acbyhs4.l2b2, polarity=+1; - MBRC.4L2.B2, ANGLE := ad2.l2, K0 := kd2.l2, polarity=-1; - MBX.4L2, ANGLE := -ad1.l2, K0 := -kd1.l2, polarity=-1; - MCBXH.3L2, KICK := acbxh3.l2, polarity=+1; - MCBXV.3L2, KICK := acbxv3.l2, polarity=+1; - MCSX.3L2, KNL := {0, 0, kcsx3.l2*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3L2, KNL := {0, 0, 0, 0, 0, kctx3.l2*l.MCTX}, polarity=+1; - MQXA.3L2, K1 := kqx.l2, polarity=+1; - MQSX.3L2, K1S := kqsx3.l2, polarity=-1; - MQXB.B2L2, K1 := -kqx.l2-ktqx2.l2, polarity=-1; - MCBXH.2L2, KICK := acbxh2.l2, polarity=+1; - MCBXV.2L2, KICK := acbxv2.l2, polarity=+1; - MQXB.A2L2, K1 := -kqx.l2-ktqx2.l2, polarity=-1; - MCBXV.1L2, KICK := acbxv1.l2, polarity=+1; - MQXA.1L2, K1 := kqx.l2+ktqx1.l2, polarity=+1; - MBXWT.1L2, TILT := -0.004170381943025, KICK := abxwt.l2, polarity=+1; - MBWMD.1L2, TILT := -0.004170381943025, KICK := abwmd.l2, polarity=+1; - MBLS2.1L2, KS := abls; - MBLS2.1R2, KS := abls; - MBAW.1R2, TILT := -0.004170381943025, KICK := abaw.r2, polarity=-1; - MBXWT.1R2, TILT := -0.004170381943025, KICK := abxwt.r2, polarity=+1; - MQXA.1R2, K1 := kqx.r2+ktqx1.r2, polarity=-1; - MCBXH.1R2, KICK := acbxh1.r2, polarity=+1; - MCBXV.1R2, KICK := acbxv1.r2, polarity=+1; - MQXB.A2R2, K1 := -kqx.r2-ktqx2.r2, polarity=+1; - MCBXH.2R2, KICK := acbxh2.r2, polarity=+1; - MCBXV.2R2, KICK := acbxv2.r2, polarity=+1; - MQXB.B2R2, K1 := -kqx.r2-ktqx2.r2, polarity=+1; - MQSX.3R2, K1S := kqsx3.r2, polarity=-1; - MQXA.3R2, K1 := kqx.r2, polarity=-1; - MCBXH.3R2, KICK := acbxh3.r2, polarity=+1; - MCBXV.3R2, KICK := acbxv3.r2, polarity=+1; - MCSX.3R2, KNL := {0, 0, kcsx3.r2*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3R2, KNL := {0, 0, 0, 0, 0, kctx3.r2*l.MCTX}, polarity=+1; - MCOSX.3R2, KSL := {0, 0, 0, kcosx3.r2*l.MCOSX}, polarity=-1; - MCOX.3R2, KNL := {0, 0, 0, kcox3.r2*l.MCOX}, polarity=+1; - MCSSX.3R2, KSL := {0, 0, kcssx3.r2*l.MCSSX, 0}, polarity=-1; - MBX.4R2, ANGLE := ad1.r2, K0 := kd1.r2, polarity=+1; - MBRC.4R2.B2, ANGLE := -ad2.r2, K0 := -kd2.r2, polarity=+1; - MCBYV.A4R2.B2, KICK := -acbyvs4.r2b2, polarity=+1; - MCBYH.4R2.B2, KICK := -acbyhs4.r2b2, polarity=+1; - MCBYV.B4R2.B2, KICK := -acbyv4.r2b2, polarity=+1; - MQY.A4R2.B2, K1 := -kq4.r2b2, polarity=-1; - MQY.B4R2.B2, K1 := -kq4.r2b2, polarity=-1; - MCBCH.A5R2.B2, KICK := -acbchs5.r2b2, polarity=+1; - MCBCV.5R2.B2, KICK := -acbcvs5.r2b2, polarity=+1; - MCBCH.B5R2.B2, KICK := -acbch5.r2b2, polarity=+1; - MQM.A5R2.B2, K1 := -kq5.r2b2, polarity=+1; - MQM.B5R2.B2, K1 := -kq5.r2b2, polarity=+1; - MCBCV.6R2.B2, KICK := -acbcv6.r2b2, polarity=+1; - MQML.6R2.B2, K1 := -kq6.r2b2, polarity=-1; - MQM.6R2.B2, K1 := -kq6.r2b2, polarity=-1; - MQM.A7R2.B2, K1 := -kq7.r2b2, polarity=+1; - MQM.B7R2.B2, K1 := -kq7.r2b2, polarity=+1; - MCBCH.7R2.B2, KICK := -acbch7.r2b2, polarity=+1; - MCO.8R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.8R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A8R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A8R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B8R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B8R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQML.8R2.B2, K1 := -kq8.r2b2, polarity=-1; - MCBCV.8R2.B2, KICK := -acbcv8.r2b2, polarity=+1; - MCO.9R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.9R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A9R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A9R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B9R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B9R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQMC.9R2.B2, K1 := -kq9.r2b2, polarity=+1; - MQM.9R2.B2, K1 := -kq9.r2b2, polarity=+1; - MCBCH.9R2.B2, KICK := -acbch9.r2b2, polarity=+1; - MCO.10R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.10R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A10R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A10R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B10R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B10R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQML.10R2.B2, K1 := -kq10.r2b2, polarity=-1; - MCBCV.10R2.B2, KICK := -acbcv10.r2b2, polarity=+1; - MCO.11R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.11R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A11R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A11R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B11R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B11R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQ.11R2.B2, K1 := -kqf.a23, polarity=+1; - MQTLI.11R2.B2, K1 := -kqtl11.r2b2, polarity=+1; - MS.11R2.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.11R2.B2, KICK := -acbh11.r2b2, polarity=+1; - MCO.A12R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A12R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A12R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A12R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B12R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B12R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B12R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B12R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C12R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C12R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.12R2.B2, K1 := -kqt12.r2b2, polarity=-1; - MQ.12R2.B2, K1 := -kqd.a23, polarity=-1; - MS.12R2.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.12R2.B2, KICK := -acbv12.r2b2, polarity=+1; - MB.A13R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A13R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.13R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.13R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B13R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B13R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C13R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C13R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.13R2.B2, K1 := -kqt13.r2b2, polarity=+1; - MQ.13R2.B2, K1 := -kqf.a23, polarity=+1; - MS.13R2.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.13R2.B2, KICK := -acbh13.r2b2, polarity=+1; - MCO.A14R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A14R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A14R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A14R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B14R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B14R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B14R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B14R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C14R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C14R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.14R2.B2, K1 := -kqtd.a23b2, polarity=-1; - MQ.14R2.B2, K1 := -kqd.a23, polarity=-1; - MS.14R2.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.14R2.B2, KICK := -acbv14.r2b2, polarity=+1; - MB.A15R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A15R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.15R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.15R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B15R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B15R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C15R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C15R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.15R2.B2, K1 := -kqtf.a23b2, polarity=+1; - MQ.15R2.B2, K1 := -kqf.a23, polarity=+1; - MS.15R2.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.15R2.B2, KICK := -acbh15.r2b2, polarity=+1; - MCO.A16R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A16R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A16R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A16R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B16R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B16R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B16R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B16R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C16R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C16R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.16R2.B2, K1 := -kqtd.a23b2, polarity=-1; - MQ.16R2.B2, K1 := -kqd.a23, polarity=-1; - MS.16R2.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.16R2.B2, KICK := -acbv16.r2b2, polarity=+1; - MB.A17R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A17R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.17R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.17R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B17R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B17R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C17R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C17R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.17R2.B2, K1 := -kqtf.a23b2, polarity=+1; - MQ.17R2.B2, K1 := -kqf.a23, polarity=+1; - MS.17R2.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.17R2.B2, KICK := -acbh17.r2b2, polarity=+1; - MCO.A18R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A18R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A18R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A18R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B18R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B18R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B18R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B18R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C18R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C18R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.18R2.B2, K1 := -kqtd.a23b2, polarity=-1; - MQ.18R2.B2, K1 := -kqd.a23, polarity=-1; - MS.18R2.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.18R2.B2, KICK := -acbv18.r2b2, polarity=+1; - MB.A19R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A19R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.19R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.19R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B19R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B19R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C19R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C19R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.19R2.B2, K1 := -kqtf.a23b2, polarity=+1; - MQ.19R2.B2, K1 := -kqf.a23, polarity=+1; - MS.19R2.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.19R2.B2, KICK := -acbh19.r2b2, polarity=+1; - MCO.A20R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A20R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A20R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A20R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B20R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B20R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B20R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B20R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C20R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C20R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.20R2.B2, K1 := -kqtd.a23b2, polarity=-1; - MQ.20R2.B2, K1 := -kqd.a23, polarity=-1; - MS.20R2.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.20R2.B2, KICK := -acbv20.r2b2, polarity=+1; - MB.A21R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A21R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.21R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.21R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B21R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B21R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C21R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C21R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.21R2.B2, K1 := -kqtf.a23b2, polarity=+1; - MQ.21R2.B2, K1 := -kqf.a23, polarity=+1; - MS.21R2.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.21R2.B2, KICK := -acbh21.r2b2, polarity=+1; - MCO.A22R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A22R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A22R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A22R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B22R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B22R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B22R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B22R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C22R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C22R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.22R2.B2, K3 := -kod.a23b2, polarity=-1; - MQ.22R2.B2, K1 := -kqd.a23, polarity=-1; - MS.22R2.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.22R2.B2, KICK := -acbv22.r2b2, polarity=+1; - MB.A23R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A23R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.23R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.23R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B23R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B23R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C23R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C23R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQS.23R2.B2, K1S := -kqs.r2b2, polarity=-1; - MQ.23R2.B2, K1 := -kqf.a23, polarity=+1; - MS.23R2.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.23R2.B2, KICK := -acbh23.r2b2, polarity=+1; - MCO.A24R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A24R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A24R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A24R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B24R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B24R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B24R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B24R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C24R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C24R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.24R2.B2, K3 := -kod.a23b2, polarity=-1; - MQ.24R2.B2, K1 := -kqd.a23, polarity=-1; - MS.24R2.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.24R2.B2, KICK := -acbv24.r2b2, polarity=+1; - MB.A25R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A25R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.25R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.25R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B25R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B25R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C25R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C25R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.25R2.B2, K3 := -kof.a23b2, polarity=+1; - MQ.25R2.B2, K1 := -kqf.a23, polarity=+1; - MS.25R2.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.25R2.B2, KICK := -acbh25.r2b2, polarity=+1; - MCO.A26R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A26R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A26R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A26R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B26R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B26R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B26R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B26R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C26R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C26R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.26R2.B2, K3 := -kod.a23b2, polarity=-1; - MQ.26R2.B2, K1 := -kqd.a23, polarity=-1; - MS.26R2.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.26R2.B2, KICK := -acbv26.r2b2, polarity=+1; - MB.A27R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A27R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.27R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.27R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B27R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B27R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C27R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C27R2.B2, K2 := -kcs.a23b2, polarity=+1; - MQS.27R2.B2, K1S := -kqs.r2b2, polarity=-1; - MQ.27R2.B2, K1 := -kqf.a23, polarity=+1; - MS.27R2.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.27R2.B2, KICK := -acbh27.r2b2, polarity=+1; - MCO.A28R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A28R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A28R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A28R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B28R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B28R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B28R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B28R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C28R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C28R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.28R2.B2, K3 := -kod.a23b2, polarity=-1; - MQ.28R2.B2, K1 := -kqd.a23, polarity=-1; - MS.28R2.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.28R2.B2, KICK := -acbv28.r2b2, polarity=+1; - MB.A29R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A29R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.29R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.29R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B29R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B29R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C29R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C29R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.29R2.B2, K3 := -kof.a23b2, polarity=+1; - MQ.29R2.B2, K1 := -kqf.a23, polarity=+1; - MSS.29R2.B2, K2S := -kss.a23b2, polarity=-1; - MCBH.29R2.B2, KICK := -acbh29.r2b2, polarity=+1; - MCO.A30R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A30R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A30R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A30R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B30R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B30R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B30R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B30R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C30R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C30R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.30R2.B2, K3 := -kod.a23b2, polarity=-1; - MQ.30R2.B2, K1 := -kqd.a23, polarity=-1; - MS.30R2.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.30R2.B2, KICK := -acbv30.r2b2, polarity=+1; - MB.A31R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A31R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.31R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.31R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B31R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B31R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C31R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C31R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.31R2.B2, K3 := -kof.a23b2, polarity=+1; - MQ.31R2.B2, K1 := -kqf.a23, polarity=+1; - MS.31R2.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.31R2.B2, KICK := -acbh31.r2b2, polarity=+1; - MCO.A32R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A32R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A32R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A32R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B32R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B32R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B32R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B32R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C32R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C32R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.32R2.B2, K3 := -kod.a23b2, polarity=-1; - MQ.32R2.B2, K1 := -kqd.a23, polarity=-1; - MS.32R2.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.32R2.B2, KICK := -acbv32.r2b2, polarity=+1; - MB.A33R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A33R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.33R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.33R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B33R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B33R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.C33R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C33R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.33R2.B2, K3 := -kof.a23b2, polarity=+1; - MQ.33R2.B2, K1 := -kqf.a23, polarity=+1; - MSS.33R2.B2, K2S := -kss.a23b2, polarity=-1; - MCBH.33R2.B2, KICK := -acbh33.r2b2, polarity=+1; - MCO.A34R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A34R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A34R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A34R2.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B34R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B34R2.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.B34R2.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B34R2.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C34R2.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C34R2.B2, K2 := -kcs.a23b2, polarity=+1; - MO.34R2.B2, K3 := -kod.a23b2, polarity=-1; - MQ.34R2.B2, K1 := -kqd.a23, polarity=-1; - MS.34L3.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.34L3.B2, KICK := -acbv34.l3b2, polarity=+1; - MB.C34L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C34L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.34L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.34L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B34L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B34L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A34L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A34L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.33L3.B2, K3 := -kof.a23b2, polarity=+1; - MQ.33L3.B2, K1 := -kqf.a23, polarity=+1; - MSS.33L3.B2, K2S := -kss.a23b2, polarity=-1; - MCBH.33L3.B2, KICK := -acbh33.l3b2, polarity=+1; - MCO.B33L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B33L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C33L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C33L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B33L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B33L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A33L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A33L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A33L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A33L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.32L3.B2, K3 := -kod.a23b2, polarity=-1; - MQ.32L3.B2, K1 := -kqd.a23, polarity=-1; - MS.32L3.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.32L3.B2, KICK := -acbv32.l3b2, polarity=+1; - MB.C32L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C32L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.32L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.32L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B32L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B32L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A32L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A32L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.31L3.B2, K3 := -kof.a23b2, polarity=+1; - MQ.31L3.B2, K1 := -kqf.a23, polarity=+1; - MS.31L3.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.31L3.B2, KICK := -acbh31.l3b2, polarity=+1; - MCO.B31L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B31L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C31L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C31L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B31L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B31L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A31L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A31L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A31L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A31L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.30L3.B2, K3 := -kod.a23b2, polarity=-1; - MQ.30L3.B2, K1 := -kqd.a23, polarity=-1; - MS.30L3.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.30L3.B2, KICK := -acbv30.l3b2, polarity=+1; - MB.C30L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C30L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.30L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.30L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B30L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B30L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A30L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A30L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.29L3.B2, K3 := -kof.a23b2, polarity=+1; - MQ.29L3.B2, K1 := -kqf.a23, polarity=+1; - MSS.29L3.B2, K2S := -kss.a23b2, polarity=-1; - MCBH.29L3.B2, KICK := -acbh29.l3b2, polarity=+1; - MCO.B29L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B29L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C29L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C29L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B29L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B29L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A29L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A29L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A29L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A29L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.28L3.B2, K3 := -kod.a23b2, polarity=-1; - MQ.28L3.B2, K1 := -kqd.a23, polarity=-1; - MS.28L3.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.28L3.B2, KICK := -acbv28.l3b2, polarity=+1; - MB.C28L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C28L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.28L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.28L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B28L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B28L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A28L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A28L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQS.27L3.B2, K1S := -kqs.l3b2, polarity=-1; - MQ.27L3.B2, K1 := -kqf.a23, polarity=+1; - MS.27L3.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.27L3.B2, KICK := -acbh27.l3b2, polarity=+1; - MCO.B27L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B27L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C27L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C27L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B27L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B27L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A27L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A27L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A27L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A27L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.26L3.B2, K3 := -kod.a23b2, polarity=-1; - MQ.26L3.B2, K1 := -kqd.a23, polarity=-1; - MS.26L3.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.26L3.B2, KICK := -acbv26.l3b2, polarity=+1; - MB.C26L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C26L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.26L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.26L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B26L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B26L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A26L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A26L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.25L3.B2, K3 := -kof.a23b2, polarity=+1; - MQ.25L3.B2, K1 := -kqf.a23, polarity=+1; - MS.25L3.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.25L3.B2, KICK := -acbh25.l3b2, polarity=+1; - MCO.B25L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B25L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C25L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C25L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B25L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B25L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A25L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A25L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A25L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A25L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.24L3.B2, K3 := -kod.a23b2, polarity=-1; - MQ.24L3.B2, K1 := -kqd.a23, polarity=-1; - MS.24L3.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.24L3.B2, KICK := -acbv24.l3b2, polarity=+1; - MB.C24L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C24L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.24L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.24L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B24L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B24L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A24L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A24L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQS.23L3.B2, K1S := -kqs.l3b2, polarity=-1; - MQ.23L3.B2, K1 := -kqf.a23, polarity=+1; - MS.23L3.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.23L3.B2, KICK := -acbh23.l3b2, polarity=+1; - MCO.B23L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B23L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C23L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C23L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B23L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B23L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A23L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A23L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A23L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A23L3.B2, K2 := -kcs.a23b2, polarity=+1; - MO.22L3.B2, K3 := -kod.a23b2, polarity=-1; - MQ.22L3.B2, K1 := -kqd.a23, polarity=-1; - MS.22L3.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.22L3.B2, KICK := -acbv22.l3b2, polarity=+1; - MB.C22L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C22L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.22L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.22L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B22L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B22L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A22L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A22L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.21L3.B2, K1 := -kqtf.a23b2, polarity=+1; - MQ.21L3.B2, K1 := -kqf.a23, polarity=+1; - MS.21L3.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.21L3.B2, KICK := -acbh21.l3b2, polarity=+1; - MCO.B21L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B21L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C21L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C21L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B21L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B21L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A21L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A21L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A21L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A21L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.20L3.B2, K1 := -kqtd.a23b2, polarity=-1; - MQ.20L3.B2, K1 := -kqd.a23, polarity=-1; - MS.20L3.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.20L3.B2, KICK := -acbv20.l3b2, polarity=+1; - MB.C20L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C20L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.20L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.20L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B20L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B20L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A20L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A20L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.19L3.B2, K1 := -kqtf.a23b2, polarity=+1; - MQ.19L3.B2, K1 := -kqf.a23, polarity=+1; - MS.19L3.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.19L3.B2, KICK := -acbh19.l3b2, polarity=+1; - MCO.B19L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B19L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C19L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C19L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B19L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B19L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A19L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A19L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A19L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A19L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.18L3.B2, K1 := -kqtd.a23b2, polarity=-1; - MQ.18L3.B2, K1 := -kqd.a23, polarity=-1; - MS.18L3.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.18L3.B2, KICK := -acbv18.l3b2, polarity=+1; - MB.C18L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C18L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.18L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.18L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B18L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B18L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A18L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A18L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.17L3.B2, K1 := -kqtf.a23b2, polarity=+1; - MQ.17L3.B2, K1 := -kqf.a23, polarity=+1; - MS.17L3.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.17L3.B2, KICK := -acbh17.l3b2, polarity=+1; - MCO.B17L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B17L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C17L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C17L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B17L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B17L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A17L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A17L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A17L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A17L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.16L3.B2, K1 := -kqtd.a23b2, polarity=-1; - MQ.16L3.B2, K1 := -kqd.a23, polarity=-1; - MS.16L3.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.16L3.B2, KICK := -acbv16.l3b2, polarity=+1; - MB.C16L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C16L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.16L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.16L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B16L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B16L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A16L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A16L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.15L3.B2, K1 := -kqtf.a23b2, polarity=+1; - MQ.15L3.B2, K1 := -kqf.a23, polarity=+1; - MS.15L3.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.15L3.B2, KICK := -acbh15.l3b2, polarity=+1; - MCO.B15L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B15L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C15L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C15L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B15L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B15L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A15L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A15L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A15L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A15L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.14L3.B2, K1 := -kqtd.a23b2, polarity=-1; - MQ.14L3.B2, K1 := -kqd.a23, polarity=-1; - MS.14L3.B2, K2 := -ksd2.a23b2, polarity=-1; - MCBV.14L3.B2, KICK := -acbv14.l3b2, polarity=+1; - MB.C14L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C14L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.14L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.14L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B14L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B14L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A14L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A14L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.13L3.B2, K1 := -kqt13.l3b2, polarity=+1; - MQ.13L3.B2, K1 := -kqf.a23, polarity=+1; - MS.13L3.B2, K2 := -ksf1.a23b2, polarity=+1; - MCBH.13L3.B2, KICK := -acbh13.l3b2, polarity=+1; - MCO.B13L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.B13L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.C13L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C13L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.B13L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B13L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.A13L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.A13L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.A13L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A13L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQT.12L3.B2, K1 := -kqt12.l3b2, polarity=-1; - MQ.12L3.B2, K1 := -kqd.a23, polarity=-1; - MS.12L3.B2, K2 := -ksd1.a23b2, polarity=-1; - MCBV.12L3.B2, KICK := -acbv12.l3b2, polarity=+1; - MB.C12L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.C12L3.B2, K2 := -kcs.a23b2, polarity=+1; - MCO.12L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.12L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B12L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B12L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A12L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A12L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQ.11L3.B2, K1 := -kqf.a23, polarity=+1; - MQTLI.11L3.B2, K1 := -kqtl11.l3b2, polarity=+1; - MS.11L3.B2, K2 := -ksf2.a23b2, polarity=+1; - MCBH.11L3.B2, KICK := -acbh11.l3b2, polarity=+1; - MCO.11L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.11L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B11L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B11L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A11L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A11L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQ.10L3.B2, K1 := -kqd.a23, polarity=-1; - MQTLI.10L3.B2, K1 := -kqtl10.l3b2, polarity=-1; - MCBCV.10L3.B2, KICK := -acbcv10.l3b2, polarity=+1; - MCO.10L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.10L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B10L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B10L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A10L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A10L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQ.9L3.B2, K1 := -kqf.a23, polarity=+1; - MQTLI.B9L3.B2, K1 := -kqtl9.l3b2, polarity=+1; - MQTLI.A9L3.B2, K1 := -kqtl9.l3b2, polarity=+1; - MCBCH.9L3.B2, KICK := -acbch9.l3b2, polarity=+1; - MCO.9L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.9L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B9L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B9L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A9L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A9L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQ.8L3.B2, K1 := -kqd.a23, polarity=-1; - MQTLI.8L3.B2, K1 := -kqtl8.l3b2, polarity=-1; - MCBCV.8L3.B2, KICK := -acbcv8.l3b2, polarity=+1; - MCO.8L3.B2, KNL := {0, 0, 0, -kco.a23b2*l.MCO, 0}, polarity=+1; - MCD.8L3.B2, KNL := {0, 0, 0, 0, -kcd.a23b2*l.MCD}, polarity=+1; - MB.B8L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.B8L3.B2, K2 := -kcs.a23b2, polarity=+1; - MB.A8L3.B2, ANGLE := -ab.a23, K0 := -kb.a23, polarity=+1; - MCS.A8L3.B2, K2 := -kcs.a23b2, polarity=+1; - MQ.7L3.B2, K1 := -kqf.a23, polarity=+1; - MQTLI.7L3.B2, K1 := -kqtl7.l3b2, polarity=+1; - MCBCH.7L3.B2, KICK := -acbch7.l3b2, polarity=+1; - MCBCV.6L3.B2, KICK := -acbcv6.l3b2, polarity=+1; - MQTLH.F6L3.B2, K1 := -kq6.l3b2, polarity=-1; - MQTLH.E6L3.B2, K1 := -kq6.l3b2, polarity=-1; - MQTLH.D6L3.B2, K1 := -kq6.l3b2, polarity=-1; - MQTLH.C6L3.B2, K1 := -kq6.l3b2, polarity=-1; - MQTLH.B6L3.B2, K1 := -kq6.l3b2, polarity=-1; - MQTLH.A6L3.B2, K1 := -kq6.l3b2, polarity=-1; - MBW.F6L3.B2, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=-1; - MBW.E6L3.B2, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=-1; - MBW.D6L3.B2, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=-1; - MBW.C6L3.B2, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=+1; - MBW.B6L3.B2, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=+1; - MBW.A6L3.B2, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=+1; - MQWA.E5L3.B2, K1 := kq5.lr3, polarity=+1; - MQWA.D5L3.B2, K1 := kq5.lr3, polarity=+1; - MQWA.C5L3.B2, K1 := kq5.lr3, polarity=+1; - MQWB.5L3.B2, K1 := -kqt5.l3, polarity=-1; - MQWA.B5L3.B2, K1 := kq5.lr3, polarity=+1; - MQWA.A5L3.B2, K1 := kq5.lr3, polarity=+1; - MCBWH.5L3.B2, KICK := -acbwh5.l3b2, polarity=+1; - MQWA.E4L3.B2, K1 := kq4.lr3, polarity=-1; - MQWA.D4L3.B2, K1 := kq4.lr3, polarity=-1; - MQWA.C4L3.B2, K1 := kq4.lr3, polarity=-1; - MQWB.4L3.B2, K1 := -kqt4.l3, polarity=+1; - MQWA.B4L3.B2, K1 := kq4.lr3, polarity=-1; - MQWA.A4L3.B2, K1 := kq4.lr3, polarity=-1; - MCBWV.4L3.B2, KICK := -acbwv4.l3b2, polarity=+1; - MCBWH.4R3.B2, KICK := -acbwh4.r3b2, polarity=+1; - MQWA.A4R3.B2, K1 := -kq4.lr3, polarity=+1; - MQWA.B4R3.B2, K1 := -kq4.lr3, polarity=+1; - MQWB.4R3.B2, K1 := -kqt4.r3, polarity=-1; - MQWA.C4R3.B2, K1 := -kq4.lr3, polarity=+1; - MQWA.D4R3.B2, K1 := -kq4.lr3, polarity=+1; - MQWA.E4R3.B2, K1 := -kq4.lr3, polarity=+1; - MCBWV.5R3.B2, KICK := -acbwv5.r3b2, polarity=+1; - MQWA.A5R3.B2, K1 := -kq5.lr3, polarity=-1; - MQWA.B5R3.B2, K1 := -kq5.lr3, polarity=-1; - MQWB.5R3.B2, K1 := -kqt5.r3, polarity=+1; - MQWA.C5R3.B2, K1 := -kq5.lr3, polarity=-1; - MQWA.D5R3.B2, K1 := -kq5.lr3, polarity=-1; - MQWA.E5R3.B2, K1 := -kq5.lr3, polarity=-1; - MBW.A6R3.B2, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=+1; - MBW.B6R3.B2, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=+1; - MBW.C6R3.B2, ANGLE := -ad34.lr3, K0 := -kd34.lr3, polarity=+1; - MBW.D6R3.B2, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=-1; - MBW.E6R3.B2, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=-1; - MBW.F6R3.B2, ANGLE := ad34.lr3, K0 := kd34.lr3, polarity=-1; - MCBCH.6R3.B2, KICK := -acbch6.r3b2, polarity=+1; - MQTLH.A6R3.B2, K1 := -kq6.r3b2, polarity=+1; - MQTLH.B6R3.B2, K1 := -kq6.r3b2, polarity=+1; - MQTLH.C6R3.B2, K1 := -kq6.r3b2, polarity=+1; - MQTLH.D6R3.B2, K1 := -kq6.r3b2, polarity=+1; - MQTLH.E6R3.B2, K1 := -kq6.r3b2, polarity=+1; - MQTLH.F6R3.B2, K1 := -kq6.r3b2, polarity=+1; - MQ.7R3.B2, K1 := -kqd.a34, polarity=-1; - MQTLI.7R3.B2, K1 := -kqtl7.r3b2, polarity=-1; - MCBCV.7R3.B2, KICK := -acbcv7.r3b2, polarity=+1; - MCO.8R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.8R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A8R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A8R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B8R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B8R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQ.8R3.B2, K1 := -kqf.a34, polarity=+1; - MQTLI.8R3.B2, K1 := -kqtl8.r3b2, polarity=+1; - MCBCH.8R3.B2, KICK := -acbch8.r3b2, polarity=+1; - MCO.9R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.9R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A9R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A9R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B9R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B9R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQ.9R3.B2, K1 := -kqd.a34, polarity=-1; - MQTLI.A9R3.B2, K1 := -kqtl9.r3b2, polarity=-1; - MQTLI.B9R3.B2, K1 := -kqtl9.r3b2, polarity=-1; - MCBCV.9R3.B2, KICK := -acbcv9.r3b2, polarity=+1; - MCO.10R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.10R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A10R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A10R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B10R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B10R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQ.10R3.B2, K1 := -kqf.a34, polarity=+1; - MQTLI.10R3.B2, K1 := -kqtl10.r3b2, polarity=+1; - MCBCH.10R3.B2, KICK := -acbch10.r3b2, polarity=+1; - MCO.11R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.11R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A11R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A11R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B11R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B11R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQ.11R3.B2, K1 := -kqd.a34, polarity=-1; - MQTLI.11R3.B2, K1 := -kqtl11.r3b2, polarity=-1; - MS.11R3.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.11R3.B2, KICK := -acbv11.r3b2, polarity=+1; - MCO.A12R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A12R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A12R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A12R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B12R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B12R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B12R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B12R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C12R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C12R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.12R3.B2, K1 := -kqt12.r3b2, polarity=+1; - MQ.12R3.B2, K1 := -kqf.a34, polarity=+1; - MS.12R3.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.12R3.B2, KICK := -acbh12.r3b2, polarity=+1; - MB.A13R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A13R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.13R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.13R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B13R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B13R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C13R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C13R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.13R3.B2, K1 := -kqt13.r3b2, polarity=-1; - MQ.13R3.B2, K1 := -kqd.a34, polarity=-1; - MS.13R3.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.13R3.B2, KICK := -acbv13.r3b2, polarity=+1; - MCO.A14R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A14R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A14R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A14R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B14R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B14R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B14R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B14R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C14R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C14R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.14R3.B2, K1 := -kqtf.a34b2, polarity=+1; - MQ.14R3.B2, K1 := -kqf.a34, polarity=+1; - MS.14R3.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.14R3.B2, KICK := -acbh14.r3b2, polarity=+1; - MB.A15R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A15R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.15R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.15R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B15R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B15R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C15R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C15R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.15R3.B2, K1 := -kqtd.a34b2, polarity=-1; - MQ.15R3.B2, K1 := -kqd.a34, polarity=-1; - MS.15R3.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.15R3.B2, KICK := -acbv15.r3b2, polarity=+1; - MCO.A16R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A16R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A16R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A16R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B16R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B16R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B16R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B16R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C16R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C16R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.16R3.B2, K1 := -kqtf.a34b2, polarity=+1; - MQ.16R3.B2, K1 := -kqf.a34, polarity=+1; - MS.16R3.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.16R3.B2, KICK := -acbh16.r3b2, polarity=+1; - MB.A17R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A17R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.17R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.17R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B17R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B17R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C17R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C17R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.17R3.B2, K1 := -kqtd.a34b2, polarity=-1; - MQ.17R3.B2, K1 := -kqd.a34, polarity=-1; - MS.17R3.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.17R3.B2, KICK := -acbv17.r3b2, polarity=+1; - MCO.A18R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A18R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A18R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A18R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B18R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B18R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B18R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B18R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C18R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C18R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.18R3.B2, K1 := -kqtf.a34b2, polarity=+1; - MQ.18R3.B2, K1 := -kqf.a34, polarity=+1; - MS.18R3.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.18R3.B2, KICK := -acbh18.r3b2, polarity=+1; - MB.A19R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A19R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.19R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.19R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B19R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B19R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C19R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C19R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.19R3.B2, K1 := -kqtd.a34b2, polarity=-1; - MQ.19R3.B2, K1 := -kqd.a34, polarity=-1; - MS.19R3.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.19R3.B2, KICK := -acbv19.r3b2, polarity=+1; - MCO.A20R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A20R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A20R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A20R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B20R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B20R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B20R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B20R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C20R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C20R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.20R3.B2, K1 := -kqtf.a34b2, polarity=+1; - MQ.20R3.B2, K1 := -kqf.a34, polarity=+1; - MS.20R3.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.20R3.B2, KICK := -acbh20.r3b2, polarity=+1; - MB.A21R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A21R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.21R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.21R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B21R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B21R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C21R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C21R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.21R3.B2, K1 := -kqtd.a34b2, polarity=-1; - MQ.21R3.B2, K1 := -kqd.a34, polarity=-1; - MS.21R3.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.21R3.B2, KICK := -acbv21.r3b2, polarity=+1; - MCO.A22R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A22R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A22R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A22R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B22R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B22R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B22R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B22R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C22R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C22R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.22R3.B2, K3 := -kof.a34b2, polarity=+1; - MQ.22R3.B2, K1 := -kqf.a34, polarity=+1; - MS.22R3.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.22R3.B2, KICK := -acbh22.r3b2, polarity=+1; - MB.A23R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A23R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.23R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.23R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B23R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B23R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C23R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C23R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQS.23R3.B2, K1S := -kqs.a34b2, polarity=-1; - MQ.23R3.B2, K1 := -kqd.a34, polarity=-1; - MS.23R3.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.23R3.B2, KICK := -acbv23.r3b2, polarity=+1; - MCO.A24R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A24R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A24R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A24R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B24R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B24R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B24R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B24R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C24R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C24R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.24R3.B2, K3 := -kof.a34b2, polarity=+1; - MQ.24R3.B2, K1 := -kqf.a34, polarity=+1; - MS.24R3.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.24R3.B2, KICK := -acbh24.r3b2, polarity=+1; - MB.A25R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A25R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.25R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.25R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B25R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B25R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C25R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C25R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.25R3.B2, K3 := -kod.a34b2, polarity=-1; - MQ.25R3.B2, K1 := -kqd.a34, polarity=-1; - MS.25R3.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.25R3.B2, KICK := -acbv25.r3b2, polarity=+1; - MCO.A26R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A26R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A26R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A26R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B26R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B26R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B26R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B26R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C26R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C26R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.26R3.B2, K3 := -kof.a34b2, polarity=+1; - MQ.26R3.B2, K1 := -kqf.a34, polarity=+1; - MS.26R3.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.26R3.B2, KICK := -acbh26.r3b2, polarity=+1; - MB.A27R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A27R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.27R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.27R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B27R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B27R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C27R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C27R3.B2, K2 := -kcs.a34b2, polarity=+1; - MQS.27R3.B2, K1S := -kqs.a34b2, polarity=-1; - MQ.27R3.B2, K1 := -kqd.a34, polarity=-1; - MS.27R3.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.27R3.B2, KICK := -acbv27.r3b2, polarity=+1; - MCO.A28R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A28R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A28R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A28R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B28R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B28R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B28R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B28R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C28R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C28R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.28R3.B2, K3 := -kof.a34b2, polarity=+1; - MQ.28R3.B2, K1 := -kqf.a34, polarity=+1; - MS.28R3.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.28R3.B2, KICK := -acbh28.r3b2, polarity=+1; - MB.A29R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A29R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.29R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.29R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B29R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B29R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C29R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C29R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.29R3.B2, K3 := -kod.a34b2, polarity=-1; - MQ.29R3.B2, K1 := -kqd.a34, polarity=-1; - MS.29R3.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.29R3.B2, KICK := -acbv29.r3b2, polarity=+1; - MCO.A30R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A30R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A30R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A30R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B30R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B30R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCD.B30R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C30R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C30R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.30R3.B2, K3 := -kof.a34b2, polarity=+1; - MQ.30R3.B2, K1 := -kqf.a34, polarity=+1; - MSS.30R3.B2, K2S := -kss.a34b2, polarity=-1; - MCBH.30R3.B2, KICK := -acbh30.r3b2, polarity=+1; - MB.A31R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A31R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.31R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.31R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B31R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B31R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C31R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C31R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.31R3.B2, K3 := -kod.a34b2, polarity=-1; - MQ.31R3.B2, K1 := -kqd.a34, polarity=-1; - MS.31R3.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.31R3.B2, KICK := -acbv31.r3b2, polarity=+1; - MCO.A32R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A32R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A32R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A32R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B32R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B32R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B32R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B32R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C32R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C32R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.32R3.B2, K3 := -kof.a34b2, polarity=+1; - MQ.32R3.B2, K1 := -kqf.a34, polarity=+1; - MS.32R3.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.32R3.B2, KICK := -acbh32.r3b2, polarity=+1; - MB.A33R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A33R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.33R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.33R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B33R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B33R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.C33R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C33R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.33R3.B2, K3 := -kod.a34b2, polarity=-1; - MQ.33R3.B2, K1 := -kqd.a34, polarity=-1; - MS.33R3.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.33R3.B2, KICK := -acbv33.r3b2, polarity=+1; - MCO.A34R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A34R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A34R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A34R3.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B34R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B34R3.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.B34R3.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B34R3.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C34R3.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C34R3.B2, K2 := -kcs.a34b2, polarity=+1; - MO.34R3.B2, K3 := -kof.a34b2, polarity=+1; - MQ.34R3.B2, K1 := -kqf.a34, polarity=+1; - MSS.34L4.B2, K2S := -kss.a34b2, polarity=-1; - MCBH.34L4.B2, KICK := -acbh34.l4b2, polarity=+1; - MB.C34L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C34L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.34L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.34L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B34L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B34L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A34L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A34L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.33L4.B2, K3 := -kod.a34b2, polarity=-1; - MQ.33L4.B2, K1 := -kqd.a34, polarity=-1; - MS.33L4.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.33L4.B2, KICK := -acbv33.l4b2, polarity=+1; - MCO.B33L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B33L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C33L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C33L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B33L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B33L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A33L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A33L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A33L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A33L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.32L4.B2, K3 := -kof.a34b2, polarity=+1; - MQ.32L4.B2, K1 := -kqf.a34, polarity=+1; - MSS.32L4.B2, K2S := -kss.a34b2, polarity=-1; - MCBH.32L4.B2, KICK := -acbh32.l4b2, polarity=+1; - MB.C32L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C32L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.32L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.32L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B32L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B32L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A32L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A32L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.31L4.B2, K3 := -kod.a34b2, polarity=-1; - MQ.31L4.B2, K1 := -kqd.a34, polarity=-1; - MS.31L4.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.31L4.B2, KICK := -acbv31.l4b2, polarity=+1; - MCO.B31L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B31L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C31L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C31L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B31L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B31L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A31L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A31L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A31L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A31L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.30L4.B2, K3 := -kof.a34b2, polarity=+1; - MQ.30L4.B2, K1 := -kqf.a34, polarity=+1; - MS.30L4.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.30L4.B2, KICK := -acbh30.l4b2, polarity=+1; - MB.C30L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C30L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.30L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.30L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B30L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B30L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A30L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A30L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.29L4.B2, K3 := -kod.a34b2, polarity=-1; - MQ.29L4.B2, K1 := -kqd.a34, polarity=-1; - MS.29L4.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.29L4.B2, KICK := -acbv29.l4b2, polarity=+1; - MCO.B29L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B29L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C29L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C29L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B29L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B29L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A29L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A29L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A29L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A29L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.28L4.B2, K3 := -kof.a34b2, polarity=+1; - MQ.28L4.B2, K1 := -kqf.a34, polarity=+1; - MSS.28L4.B2, K2S := -kss.a34b2, polarity=-1; - MCBH.28L4.B2, KICK := -acbh28.l4b2, polarity=+1; - MB.C28L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C28L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.28L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.28L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B28L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B28L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A28L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A28L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQS.27L4.B2, K1S := -kqs.a34b2, polarity=-1; - MQ.27L4.B2, K1 := -kqd.a34, polarity=-1; - MS.27L4.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.27L4.B2, KICK := -acbv27.l4b2, polarity=+1; - MCO.B27L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B27L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C27L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C27L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B27L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B27L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A27L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A27L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A27L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A27L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.26L4.B2, K3 := -kof.a34b2, polarity=+1; - MQ.26L4.B2, K1 := -kqf.a34, polarity=+1; - MS.26L4.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.26L4.B2, KICK := -acbh26.l4b2, polarity=+1; - MB.C26L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C26L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.26L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.26L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B26L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B26L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A26L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A26L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.25L4.B2, K3 := -kod.a34b2, polarity=-1; - MQ.25L4.B2, K1 := -kqd.a34, polarity=-1; - MS.25L4.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.25L4.B2, KICK := -acbv25.l4b2, polarity=+1; - MCO.B25L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B25L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C25L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C25L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B25L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B25L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A25L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A25L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A25L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A25L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.24L4.B2, K3 := -kof.a34b2, polarity=+1; - MQ.24L4.B2, K1 := -kqf.a34, polarity=+1; - MS.24L4.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.24L4.B2, KICK := -acbh24.l4b2, polarity=+1; - MB.C24L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C24L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.24L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.24L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B24L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B24L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A24L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A24L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQS.23L4.B2, K1S := -kqs.a34b2, polarity=-1; - MQ.23L4.B2, K1 := -kqd.a34, polarity=-1; - MS.23L4.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.23L4.B2, KICK := -acbv23.l4b2, polarity=+1; - MCO.B23L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B23L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C23L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C23L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B23L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B23L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A23L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A23L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A23L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A23L4.B2, K2 := -kcs.a34b2, polarity=+1; - MO.22L4.B2, K3 := -kof.a34b2, polarity=+1; - MQ.22L4.B2, K1 := -kqf.a34, polarity=+1; - MS.22L4.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.22L4.B2, KICK := -acbh22.l4b2, polarity=+1; - MB.C22L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C22L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.22L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.22L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B22L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B22L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A22L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MQT.21L4.B2, K1 := -kqtd.a34b2, polarity=-1; - MQ.21L4.B2, K1 := -kqd.a34, polarity=-1; - MS.21L4.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.21L4.B2, KICK := -acbv21.l4b2, polarity=+1; - MCO.B21L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B21L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C21L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C21L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B21L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B21L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A21L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A21L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A21L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A21L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.20L4.B2, K1 := -kqtf.a34b2, polarity=+1; - MQ.20L4.B2, K1 := -kqf.a34, polarity=+1; - MS.20L4.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.20L4.B2, KICK := -acbh20.l4b2, polarity=+1; - MB.C20L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C20L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.20L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.20L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B20L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B20L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A20L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A20L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.19L4.B2, K1 := -kqtd.a34b2, polarity=-1; - MQ.19L4.B2, K1 := -kqd.a34, polarity=-1; - MS.19L4.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.19L4.B2, KICK := -acbv19.l4b2, polarity=+1; - MCO.B19L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B19L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C19L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C19L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B19L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B19L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A19L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A19L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A19L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A19L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.18L4.B2, K1 := -kqtf.a34b2, polarity=+1; - MQ.18L4.B2, K1 := -kqf.a34, polarity=+1; - MS.18L4.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.18L4.B2, KICK := -acbh18.l4b2, polarity=+1; - MB.C18L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C18L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.18L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.18L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B18L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MB.A18L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A18L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.17L4.B2, K1 := -kqtd.a34b2, polarity=-1; - MQ.17L4.B2, K1 := -kqd.a34, polarity=-1; - MS.17L4.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.17L4.B2, KICK := -acbv17.l4b2, polarity=+1; - MCO.B17L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B17L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C17L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C17L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B17L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B17L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A17L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A17L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A17L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A17L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.16L4.B2, K1 := -kqtf.a34b2, polarity=+1; - MQ.16L4.B2, K1 := -kqf.a34, polarity=+1; - MS.16L4.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.16L4.B2, KICK := -acbh16.l4b2, polarity=+1; - MB.C16L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C16L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.16L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.16L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B16L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B16L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A16L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A16L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.15L4.B2, K1 := -kqtd.a34b2, polarity=-1; - MQ.15L4.B2, K1 := -kqd.a34, polarity=-1; - MS.15L4.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.15L4.B2, KICK := -acbv15.l4b2, polarity=+1; - MCO.B15L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B15L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C15L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C15L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B15L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCO.A15L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A15L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A15L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A15L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.14L4.B2, K1 := -kqtf.a34b2, polarity=+1; - MQ.14L4.B2, K1 := -kqf.a34, polarity=+1; - MS.14L4.B2, K2 := -ksf2.a34b2, polarity=+1; - MCBH.14L4.B2, KICK := -acbh14.l4b2, polarity=+1; - MB.C14L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C14L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.14L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.14L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B14L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B14L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A14L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A14L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.13L4.B2, K1 := -kqt13.l4b2, polarity=-1; - MQ.13L4.B2, K1 := -kqd.a34, polarity=-1; - MS.13L4.B2, K2 := -ksd1.a34b2, polarity=-1; - MCBV.13L4.B2, KICK := -acbv13.l4b2, polarity=+1; - MCO.B13L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.B13L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.C13L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C13L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.B13L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B13L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.A13L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.A13L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.A13L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A13L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQT.12L4.B2, K1 := -kqt12.l4b2, polarity=+1; - MQ.12L4.B2, K1 := -kqf.a34, polarity=+1; - MS.12L4.B2, K2 := -ksf1.a34b2, polarity=+1; - MCBH.12L4.B2, KICK := -acbh12.l4b2, polarity=+1; - MB.C12L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.C12L4.B2, K2 := -kcs.a34b2, polarity=+1; - MCO.12L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.12L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B12L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B12L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A12L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A12L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQ.11L4.B2, K1 := -kqd.a34, polarity=-1; - MQTLI.11L4.B2, K1 := -kqtl11.l4b2, polarity=-1; - MS.11L4.B2, K2 := -ksd2.a34b2, polarity=-1; - MCBV.11L4.B2, KICK := -acbv11.l4b2, polarity=+1; - MCO.11L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.11L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B11L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B11L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A11L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A11L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQML.10L4.B2, K1 := -kq10.l4b2, polarity=+1; - MCBCH.10L4.B2, KICK := -acbch10.l4b2, polarity=+1; - MCO.10L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.10L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B10L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B10L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A10L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A10L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQMC.9L4.B2, K1 := -kq9.l4b2, polarity=-1; - MQM.9L4.B2, K1 := -kq9.l4b2, polarity=-1; - MCBCV.9L4.B2, KICK := -acbcv9.l4b2, polarity=+1; - MCO.9L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.9L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B9L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B9L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A9L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A9L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQML.8L4.B2, K1 := -kq8.l4b2, polarity=+1; - MCBCH.8L4.B2, KICK := -acbch8.l4b2, polarity=+1; - MCO.8L4.B2, KNL := {0, 0, 0, -kco.a34b2*l.MCO, 0}, polarity=+1; - MCD.8L4.B2, KNL := {0, 0, 0, 0, -kcd.a34b2*l.MCD}, polarity=+1; - MB.B8L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.B8L4.B2, K2 := -kcs.a34b2, polarity=+1; - MB.A8L4.B2, ANGLE := -ab.a34, K0 := -kb.a34, polarity=+1; - MCS.A8L4.B2, K2 := -kcs.a34b2, polarity=+1; - MQM.7L4.B2, K1 := -kq7.l4b2, polarity=-1; - MCBCV.7L4.B2, KICK := -acbcv7.l4b2, polarity=+1; - MQY.6L4.B2, K1 := -kq6.l4b2, polarity=+1; - MCBYH.6L4.B2, KICK := -acbyh6.l4b2, polarity=+1; - MKQA.6L4.B2, HKICK := khmkqa.l4b2, VKICK := kvmkqa.l4b2; - MQY.5L4.B2, K1 := -kq5.l4b2, polarity=-1; - MCBYV.5L4.B2, KICK := -acbyv5.l4b2, polarity=+1; - MBRB.5L4.B2, ANGLE := ad4.l4, K0 := kd4.l4, polarity=-1; - MBRS.5L4.B2, ANGLE := -ad3.l4, K0 := -kd3.l4, polarity=+1; - MU.D5L4.B2, HKICK := kmu.l4b2, polarity=-1; - MU.C5L4.B2, HKICK := kmu.l4b2, polarity=-1; - MU.B5L4.B2, HKICK := kmu.l4b2, polarity=-1; - MU.A5L4.B2, HKICK := kmu.l4b2, polarity=-1; - ADTKV.D5L4.B2, VKICK := akadtkv.l4b2; - ADTKV.C5L4.B2, VKICK := akadtkv.l4b2; - ADTKV.B5L4.B2, VKICK := akadtkv.l4b2; - ADTKV.A5L4.B2, VKICK := akadtkv.l4b2; - ADTKH.A5R4.B2, HKICK := akadtkh.r4b2; - ADTKH.B5R4.B2, HKICK := akadtkh.r4b2; - ADTKH.C5R4.B2, HKICK := akadtkh.r4b2; - ADTKH.D5R4.B2, HKICK := akadtkh.r4b2; - MBRS.5R4.B2, ANGLE := -ad3.r4, K0 := -kd3.r4, polarity=+1; - MGMWV.A5R4.B2, VKICK := -kgmwv.r4b2, polarity=-1; - MGMWV.C5R4.B2, VKICK := kgmwv.r4b2, polarity=+1; - MGMWH.C5R4.B2, HKICK := -kgmwh.r4b2, polarity=+1; - MGMWH.A5R4.B2, HKICK := kgmwh.r4b2, polarity=-1; - MBRB.5R4.B2, ANGLE := ad4.r4, K0 := kd4.r4, polarity=-1; - MCBYH.5R4.B2, KICK := -acbyh5.r4b2, polarity=+1; - MQY.5R4.B2, K1 := -kq5.r4b2, polarity=+1; - BQKH.A6R4.B2, HKICK := akbqkh.r4b2; - BQKV.6R4.B2, VKICK := akbqkv.r4b2; - MQY.6R4.B2, K1 := -kq6.r4b2, polarity=-1; - MCBYV.6R4.B2, KICK := -acbyv6.r4b2, polarity=+1; - MQM.7R4.B2, K1 := -kq7.r4b2, polarity=+1; - MCBCH.7R4.B2, KICK := -acbch7.r4b2, polarity=+1; - MCO.8R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.8R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A8R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A8R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B8R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B8R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQML.8R4.B2, K1 := -kq8.r4b2, polarity=-1; - MCBCV.8R4.B2, KICK := -acbcv8.r4b2, polarity=+1; - MCO.9R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.9R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A9R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A9R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B9R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B9R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQMC.9R4.B2, K1 := -kq9.r4b2, polarity=+1; - MQM.9R4.B2, K1 := -kq9.r4b2, polarity=+1; - MCBCH.9R4.B2, KICK := -acbch9.r4b2, polarity=+1; - MCO.10R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.10R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A10R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A10R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B10R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B10R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQML.10R4.B2, K1 := -kq10.r4b2, polarity=-1; - MCBCV.10R4.B2, KICK := -acbcv10.r4b2, polarity=+1; - MCO.11R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.11R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A11R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A11R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B11R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B11R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQ.11R4.B2, K1 := -kqf.a45, polarity=+1; - MQTLI.11R4.B2, K1 := -kqtl11.r4b2, polarity=+1; - MS.11R4.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.11R4.B2, KICK := -acbh11.r4b2, polarity=+1; - MCO.A12R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A12R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A12R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A12R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B12R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B12R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B12R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B12R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C12R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C12R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.12R4.B2, K1 := -kqt12.r4b2, polarity=-1; - MQ.12R4.B2, K1 := -kqd.a45, polarity=-1; - MS.12R4.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.12R4.B2, KICK := -acbv12.r4b2, polarity=+1; - MB.A13R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A13R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.13R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.13R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B13R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B13R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C13R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C13R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.13R4.B2, K1 := -kqt13.r4b2, polarity=+1; - MQ.13R4.B2, K1 := -kqf.a45, polarity=+1; - MS.13R4.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.13R4.B2, KICK := -acbh13.r4b2, polarity=+1; - MCO.A14R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A14R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A14R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A14R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B14R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B14R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B14R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B14R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C14R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C14R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.14R4.B2, K1 := -kqtd.a45b2, polarity=-1; - MQ.14R4.B2, K1 := -kqd.a45, polarity=-1; - MS.14R4.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.14R4.B2, KICK := -acbv14.r4b2, polarity=+1; - MB.A15R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A15R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.15R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.15R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B15R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B15R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C15R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C15R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.15R4.B2, K1 := -kqtf.a45b2, polarity=+1; - MQ.15R4.B2, K1 := -kqf.a45, polarity=+1; - MS.15R4.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.15R4.B2, KICK := -acbh15.r4b2, polarity=+1; - MCO.A16R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A16R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A16R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A16R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B16R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B16R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B16R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B16R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C16R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C16R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.16R4.B2, K1 := -kqtd.a45b2, polarity=-1; - MQ.16R4.B2, K1 := -kqd.a45, polarity=-1; - MS.16R4.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.16R4.B2, KICK := -acbv16.r4b2, polarity=+1; - MB.A17R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A17R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.17R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.17R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B17R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B17R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C17R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C17R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.17R4.B2, K1 := -kqtf.a45b2, polarity=+1; - MQ.17R4.B2, K1 := -kqf.a45, polarity=+1; - MS.17R4.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.17R4.B2, KICK := -acbh17.r4b2, polarity=+1; - MCO.A18R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A18R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A18R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A18R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B18R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B18R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B18R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B18R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C18R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C18R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.18R4.B2, K1 := -kqtd.a45b2, polarity=-1; - MQ.18R4.B2, K1 := -kqd.a45, polarity=-1; - MS.18R4.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.18R4.B2, KICK := -acbv18.r4b2, polarity=+1; - MB.A19R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A19R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.19R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.19R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B19R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B19R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C19R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C19R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.19R4.B2, K1 := -kqtf.a45b2, polarity=+1; - MQ.19R4.B2, K1 := -kqf.a45, polarity=+1; - MS.19R4.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.19R4.B2, KICK := -acbh19.r4b2, polarity=+1; - MCO.A20R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A20R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A20R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A20R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B20R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B20R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B20R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B20R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C20R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C20R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.20R4.B2, K1 := -kqtd.a45b2, polarity=-1; - MQ.20R4.B2, K1 := -kqd.a45, polarity=-1; - MS.20R4.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.20R4.B2, KICK := -acbv20.r4b2, polarity=+1; - MB.A21R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A21R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.21R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.21R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B21R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B21R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C21R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C21R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.21R4.B2, K1 := -kqtf.a45b2, polarity=+1; - MQ.21R4.B2, K1 := -kqf.a45, polarity=+1; - MS.21R4.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.21R4.B2, KICK := -acbh21.r4b2, polarity=+1; - MCO.A22R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A22R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A22R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A22R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B22R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B22R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B22R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B22R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C22R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C22R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.22R4.B2, K3 := -kod.a45b2, polarity=-1; - MQ.22R4.B2, K1 := -kqd.a45, polarity=-1; - MS.22R4.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.22R4.B2, KICK := -acbv22.r4b2, polarity=+1; - MB.A23R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A23R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.23R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.23R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B23R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B23R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C23R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C23R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQS.23R4.B2, K1S := -kqs.r4b2, polarity=-1; - MQ.23R4.B2, K1 := -kqf.a45, polarity=+1; - MS.23R4.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.23R4.B2, KICK := -acbh23.r4b2, polarity=+1; - MCO.A24R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A24R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A24R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A24R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B24R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B24R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B24R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B24R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C24R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C24R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.24R4.B2, K3 := -kod.a45b2, polarity=-1; - MQ.24R4.B2, K1 := -kqd.a45, polarity=-1; - MS.24R4.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.24R4.B2, KICK := -acbv24.r4b2, polarity=+1; - MB.A25R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A25R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.25R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.25R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B25R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B25R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C25R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C25R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.25R4.B2, K3 := -kof.a45b2, polarity=+1; - MQ.25R4.B2, K1 := -kqf.a45, polarity=+1; - MS.25R4.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.25R4.B2, KICK := -acbh25.r4b2, polarity=+1; - MCO.A26R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A26R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A26R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A26R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B26R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B26R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B26R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B26R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C26R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C26R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.26R4.B2, K3 := -kod.a45b2, polarity=-1; - MQ.26R4.B2, K1 := -kqd.a45, polarity=-1; - MS.26R4.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.26R4.B2, KICK := -acbv26.r4b2, polarity=+1; - MB.A27R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A27R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.27R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.27R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B27R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B27R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C27R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C27R4.B2, K2 := -kcs.a45b2, polarity=+1; - MQS.27R4.B2, K1S := -kqs.r4b2, polarity=-1; - MQ.27R4.B2, K1 := -kqf.a45, polarity=+1; - MS.27R4.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.27R4.B2, KICK := -acbh27.r4b2, polarity=+1; - MCO.A28R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A28R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A28R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A28R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B28R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B28R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B28R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B28R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C28R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C28R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.28R4.B2, K3 := -kod.a45b2, polarity=-1; - MQ.28R4.B2, K1 := -kqd.a45, polarity=-1; - MS.28R4.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.28R4.B2, KICK := -acbv28.r4b2, polarity=+1; - MB.A29R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A29R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.29R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.29R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B29R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B29R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C29R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C29R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.29R4.B2, K3 := -kof.a45b2, polarity=+1; - MQ.29R4.B2, K1 := -kqf.a45, polarity=+1; - MSS.29R4.B2, K2S := -kss.a45b2, polarity=-1; - MCBH.29R4.B2, KICK := -acbh29.r4b2, polarity=+1; - MCO.A30R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A30R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A30R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A30R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B30R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B30R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B30R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B30R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C30R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C30R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.30R4.B2, K3 := -kod.a45b2, polarity=-1; - MQ.30R4.B2, K1 := -kqd.a45, polarity=-1; - MS.30R4.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.30R4.B2, KICK := -acbv30.r4b2, polarity=+1; - MB.A31R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A31R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.31R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.31R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B31R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B31R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C31R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C31R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.31R4.B2, K3 := -kof.a45b2, polarity=+1; - MQ.31R4.B2, K1 := -kqf.a45, polarity=+1; - MS.31R4.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.31R4.B2, KICK := -acbh31.r4b2, polarity=+1; - MCO.A32R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A32R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A32R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A32R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B32R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B32R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B32R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B32R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C32R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C32R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.32R4.B2, K3 := -kod.a45b2, polarity=-1; - MQ.32R4.B2, K1 := -kqd.a45, polarity=-1; - MS.32R4.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.32R4.B2, KICK := -acbv32.r4b2, polarity=+1; - MB.A33R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A33R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.33R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.33R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B33R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B33R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.C33R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C33R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.33R4.B2, K3 := -kof.a45b2, polarity=+1; - MQ.33R4.B2, K1 := -kqf.a45, polarity=+1; - MSS.33R4.B2, K2S := -kss.a45b2, polarity=-1; - MCBH.33R4.B2, KICK := -acbh33.r4b2, polarity=+1; - MCO.A34R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A34R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A34R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A34R4.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B34R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B34R4.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.B34R4.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B34R4.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C34R4.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C34R4.B2, K2 := -kcs.a45b2, polarity=+1; - MO.34R4.B2, K3 := -kod.a45b2, polarity=-1; - MQ.34R4.B2, K1 := -kqd.a45, polarity=-1; - MS.34L5.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.34L5.B2, KICK := -acbv34.l5b2, polarity=+1; - MB.C34L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C34L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.34L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.34L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B34L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B34L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A34L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A34L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.33L5.B2, K3 := -kof.a45b2, polarity=+1; - MQ.33L5.B2, K1 := -kqf.a45, polarity=+1; - MSS.33L5.B2, K2S := -kss.a45b2, polarity=-1; - MCBH.33L5.B2, KICK := -acbh33.l5b2, polarity=+1; - MCO.B33L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B33L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C33L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C33L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B33L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B33L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A33L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A33L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A33L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A33L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.32L5.B2, K3 := -kod.a45b2, polarity=-1; - MQ.32L5.B2, K1 := -kqd.a45, polarity=-1; - MS.32L5.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.32L5.B2, KICK := -acbv32.l5b2, polarity=+1; - MB.C32L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C32L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.32L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.32L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B32L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B32L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A32L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A32L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.31L5.B2, K3 := -kof.a45b2, polarity=+1; - MQ.31L5.B2, K1 := -kqf.a45, polarity=+1; - MS.31L5.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.31L5.B2, KICK := -acbh31.l5b2, polarity=+1; - MCO.B31L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B31L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C31L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C31L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B31L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B31L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A31L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A31L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A31L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A31L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.30L5.B2, K3 := -kod.a45b2, polarity=-1; - MQ.30L5.B2, K1 := -kqd.a45, polarity=-1; - MS.30L5.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.30L5.B2, KICK := -acbv30.l5b2, polarity=+1; - MB.C30L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C30L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.30L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.30L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B30L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B30L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A30L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A30L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.29L5.B2, K3 := -kof.a45b2, polarity=+1; - MQ.29L5.B2, K1 := -kqf.a45, polarity=+1; - MSS.29L5.B2, K2S := -kss.a45b2, polarity=-1; - MCBH.29L5.B2, KICK := -acbh29.l5b2, polarity=+1; - MCO.B29L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B29L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C29L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C29L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B29L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B29L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A29L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A29L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A29L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A29L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.28L5.B2, K3 := -kod.a45b2, polarity=-1; - MQ.28L5.B2, K1 := -kqd.a45, polarity=-1; - MS.28L5.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.28L5.B2, KICK := -acbv28.l5b2, polarity=+1; - MB.C28L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C28L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.28L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.28L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B28L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B28L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A28L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A28L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQS.27L5.B2, K1S := -kqs.l5b2, polarity=-1; - MQ.27L5.B2, K1 := -kqf.a45, polarity=+1; - MS.27L5.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.27L5.B2, KICK := -acbh27.l5b2, polarity=+1; - MCO.B27L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B27L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C27L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C27L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B27L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B27L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A27L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A27L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A27L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A27L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.26L5.B2, K3 := -kod.a45b2, polarity=-1; - MQ.26L5.B2, K1 := -kqd.a45, polarity=-1; - MS.26L5.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.26L5.B2, KICK := -acbv26.l5b2, polarity=+1; - MB.C26L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C26L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.26L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.26L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B26L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B26L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A26L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A26L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.25L5.B2, K3 := -kof.a45b2, polarity=+1; - MQ.25L5.B2, K1 := -kqf.a45, polarity=+1; - MS.25L5.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.25L5.B2, KICK := -acbh25.l5b2, polarity=+1; - MCO.B25L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B25L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C25L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C25L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B25L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B25L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A25L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A25L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A25L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A25L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.24L5.B2, K3 := -kod.a45b2, polarity=-1; - MQ.24L5.B2, K1 := -kqd.a45, polarity=-1; - MS.24L5.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.24L5.B2, KICK := -acbv24.l5b2, polarity=+1; - MB.C24L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C24L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.24L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.24L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B24L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B24L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A24L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A24L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQS.23L5.B2, K1S := -kqs.l5b2, polarity=-1; - MQ.23L5.B2, K1 := -kqf.a45, polarity=+1; - MS.23L5.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.23L5.B2, KICK := -acbh23.l5b2, polarity=+1; - MCO.B23L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B23L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C23L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C23L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B23L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B23L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A23L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A23L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A23L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A23L5.B2, K2 := -kcs.a45b2, polarity=+1; - MO.22L5.B2, K3 := -kod.a45b2, polarity=-1; - MQ.22L5.B2, K1 := -kqd.a45, polarity=-1; - MS.22L5.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.22L5.B2, KICK := -acbv22.l5b2, polarity=+1; - MB.C22L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C22L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.22L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.22L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B22L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B22L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A22L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A22L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.21L5.B2, K1 := -kqtf.a45b2, polarity=+1; - MQ.21L5.B2, K1 := -kqf.a45, polarity=+1; - MS.21L5.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.21L5.B2, KICK := -acbh21.l5b2, polarity=+1; - MCO.B21L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B21L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C21L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C21L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B21L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B21L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A21L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A21L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A21L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A21L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.20L5.B2, K1 := -kqtd.a45b2, polarity=-1; - MQ.20L5.B2, K1 := -kqd.a45, polarity=-1; - MS.20L5.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.20L5.B2, KICK := -acbv20.l5b2, polarity=+1; - MB.C20L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C20L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.20L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.20L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B20L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B20L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A20L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A20L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.19L5.B2, K1 := -kqtf.a45b2, polarity=+1; - MQ.19L5.B2, K1 := -kqf.a45, polarity=+1; - MS.19L5.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.19L5.B2, KICK := -acbh19.l5b2, polarity=+1; - MCO.B19L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B19L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C19L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C19L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B19L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B19L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A19L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A19L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A19L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A19L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.18L5.B2, K1 := -kqtd.a45b2, polarity=-1; - MQ.18L5.B2, K1 := -kqd.a45, polarity=-1; - MS.18L5.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.18L5.B2, KICK := -acbv18.l5b2, polarity=+1; - MB.C18L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C18L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.18L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.18L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B18L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B18L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A18L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A18L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.17L5.B2, K1 := -kqtf.a45b2, polarity=+1; - MQ.17L5.B2, K1 := -kqf.a45, polarity=+1; - MS.17L5.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.17L5.B2, KICK := -acbh17.l5b2, polarity=+1; - MCO.B17L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B17L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C17L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C17L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B17L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B17L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A17L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A17L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A17L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A17L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.16L5.B2, K1 := -kqtd.a45b2, polarity=-1; - MQ.16L5.B2, K1 := -kqd.a45, polarity=-1; - MS.16L5.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.16L5.B2, KICK := -acbv16.l5b2, polarity=+1; - MB.C16L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C16L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.16L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.16L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B16L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B16L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A16L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A16L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.15L5.B2, K1 := -kqtf.a45b2, polarity=+1; - MQ.15L5.B2, K1 := -kqf.a45, polarity=+1; - MS.15L5.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.15L5.B2, KICK := -acbh15.l5b2, polarity=+1; - MCO.B15L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B15L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C15L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C15L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B15L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B15L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A15L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A15L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A15L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A15L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.14L5.B2, K1 := -kqtd.a45b2, polarity=-1; - MQ.14L5.B2, K1 := -kqd.a45, polarity=-1; - MS.14L5.B2, K2 := -ksd1.a45b2, polarity=-1; - MCBV.14L5.B2, KICK := -acbv14.l5b2, polarity=+1; - MB.C14L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C14L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.14L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.14L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B14L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B14L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A14L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A14L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.13L5.B2, K1 := -kqt13.l5b2, polarity=+1; - MQ.13L5.B2, K1 := -kqf.a45, polarity=+1; - MS.13L5.B2, K2 := -ksf1.a45b2, polarity=+1; - MCBH.13L5.B2, KICK := -acbh13.l5b2, polarity=+1; - MCO.B13L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.B13L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.C13L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C13L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.B13L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B13L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.A13L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.A13L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.A13L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A13L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQT.12L5.B2, K1 := -kqt12.l5b2, polarity=-1; - MQ.12L5.B2, K1 := -kqd.a45, polarity=-1; - MS.12L5.B2, K2 := -ksd2.a45b2, polarity=-1; - MCBV.12L5.B2, KICK := -acbv12.l5b2, polarity=+1; - MB.C12L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.C12L5.B2, K2 := -kcs.a45b2, polarity=+1; - MCO.12L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.12L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B12L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B12L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A12L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A12L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQ.11L5.B2, K1 := -kqf.a45, polarity=+1; - MQTLI.11L5.B2, K1 := -kqtl11.l5b2, polarity=+1; - MS.11L5.B2, K2 := -ksf2.a45b2, polarity=+1; - MCBH.11L5.B2, KICK := -acbh11.l5b2, polarity=+1; - MCO.11L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.11L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B11L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B11L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A11L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A11L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQML.10L5.B2, K1 := -kq10.l5b2, polarity=-1; - MCBCV.10L5.B2, KICK := -acbcv10.l5b2, polarity=+1; - MCO.10L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.10L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B10L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B10L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A10L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A10L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQMC.9L5.B2, K1 := -kq9.l5b2, polarity=+1; - MQM.9L5.B2, K1 := -kq9.l5b2, polarity=+1; - MCBCH.9L5.B2, KICK := -acbch9.l5b2, polarity=+1; - MCO.9L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.9L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B9L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B9L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A9L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A9L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQML.8L5.B2, K1 := -kq8.l5b2, polarity=-1; - MCBCV.8L5.B2, KICK := -acbcv8.l5b2, polarity=+1; - MCO.8L5.B2, KNL := {0, 0, 0, -kco.a45b2*l.MCO, 0}, polarity=+1; - MCD.8L5.B2, KNL := {0, 0, 0, 0, -kcd.a45b2*l.MCD}, polarity=+1; - MB.B8L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.B8L5.B2, K2 := -kcs.a45b2, polarity=+1; - MB.A8L5.B2, ANGLE := -ab.a45, K0 := -kb.a45, polarity=+1; - MCS.A8L5.B2, K2 := -kcs.a45b2, polarity=+1; - MQM.B7L5.B2, K1 := -kq7.l5b2, polarity=+1; - MQM.A7L5.B2, K1 := -kq7.l5b2, polarity=+1; - MCBCH.7L5.B2, KICK := -acbch7.l5b2, polarity=+1; - MQML.6L5.B2, K1 := -kq6.l5b2, polarity=-1; - MCBCV.6L5.B2, KICK := -acbcv6.l5b2, polarity=+1; - MQML.5L5.B2, K1 := -kq5.l5b2, polarity=+1; - MCBCH.5L5.B2, KICK := -acbch5.l5b2, polarity=+1; - MQY.4L5.B2, K1 := -kq4.l5b2, polarity=-1; - MCBYV.B4L5.B2, KICK := -acbyv4.l5b2, polarity=+1; - MCBYH.4L5.B2, KICK := -acbyhs4.l5b2, polarity=+1; - MCBYV.A4L5.B2, KICK := -acbyvs4.l5b2, polarity=+1; - MBRC.4L5.B2, ANGLE := -ad2.l5, K0 := -kd2.l5, polarity=+1; - MBXW.F4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.E4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.D4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.C4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.B4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MBXW.A4L5, ANGLE := ad1.lr5, K0 := kd1.lr5, polarity=+1; - MCOSX.3L5, KSL := {0, 0, 0, kcosx3.l5*l.MCOSX}, polarity=-1; - MCOX.3L5, KNL := {0, 0, 0, kcox3.l5*l.MCOX}, polarity=+1; - MCSSX.3L5, KSL := {0, 0, kcssx3.l5*l.MCSSX, 0}, polarity=-1; - MCBXH.3L5, KICK := acbxh3.l5, polarity=+1; - MCBXV.3L5, KICK := acbxv3.l5, polarity=+1; - MCSX.3L5, KNL := {0, 0, kcsx3.l5*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3L5, KNL := {0, 0, 0, 0, 0, kctx3.l5*l.MCTX}, polarity=+1; - MQXA.3L5, K1 := kqx.l5, polarity=-1; - MQSX.3L5, K1S := kqsx3.l5, polarity=-1; - MQXB.B2L5, K1 := -kqx.l5-ktqx2.l5, polarity=+1; - MCBXH.2L5, KICK := acbxh2.l5, polarity=+1; - MCBXV.2L5, KICK := acbxv2.l5, polarity=+1; - MQXB.A2L5, K1 := -kqx.l5-ktqx2.l5, polarity=+1; - MCBXH.1L5, KICK := acbxh1.l5, polarity=+1; - MCBXV.1L5, KICK := acbxv1.l5, polarity=+1; - MQXA.1L5, K1 := kqx.l5+ktqx1.l5, polarity=-1; - MBCS2.1L5, KS := abcs; - MBCS2.1R5, KS := abcs; - MQXA.1R5, K1 := kqx.r5+ktqx1.r5, polarity=+1; - MCBXH.1R5, KICK := acbxh1.r5, polarity=+1; - MCBXV.1R5, KICK := acbxv1.r5, polarity=+1; - MQXB.A2R5, K1 := -kqx.r5-ktqx2.r5, polarity=-1; - MCBXH.2R5, KICK := acbxh2.r5, polarity=+1; - MCBXV.2R5, KICK := acbxv2.r5, polarity=+1; - MQXB.B2R5, K1 := -kqx.r5-ktqx2.r5, polarity=-1; - MQSX.3R5, K1S := kqsx3.r5, polarity=-1; - MQXA.3R5, K1 := kqx.r5, polarity=+1; - MCBXH.3R5, KICK := acbxh3.r5, polarity=+1; - MCBXV.3R5, KICK := acbxv3.r5, polarity=+1; - MCSX.3R5, KNL := {0, 0, kcsx3.r5*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3R5, KNL := {0, 0, 0, 0, 0, kctx3.r5*l.MCTX}, polarity=+1; - MCOSX.3R5, KSL := {0, 0, 0, kcosx3.r5*l.MCOSX}, polarity=-1; - MCOX.3R5, KNL := {0, 0, 0, kcox3.r5*l.MCOX}, polarity=+1; - MCSSX.3R5, KSL := {0, 0, kcssx3.r5*l.MCSSX, 0}, polarity=-1; - MBXW.A4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.B4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.C4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.D4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.E4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBXW.F4R5, ANGLE := -ad1.lr5, K0 := -kd1.lr5, polarity=-1; - MBRC.4R5.B2, ANGLE := ad2.r5, K0 := kd2.r5, polarity=-1; - MCBYH.A4R5.B2, KICK := -acbyhs4.r5b2, polarity=+1; - MCBYV.4R5.B2, KICK := -acbyvs4.r5b2, polarity=+1; - MCBYH.B4R5.B2, KICK := -acbyh4.r5b2, polarity=+1; - MQY.4R5.B2, K1 := -kq4.r5b2, polarity=+1; - MQML.5R5.B2, K1 := -kq5.r5b2, polarity=-1; - MCBCV.5R5.B2, KICK := -acbcv5.r5b2, polarity=+1; - MQML.6R5.B2, K1 := -kq6.r5b2, polarity=+1; - MCBCH.6R5.B2, KICK := -acbch6.r5b2, polarity=+1; - MQM.A7R5.B2, K1 := -kq7.r5b2, polarity=-1; - MQM.B7R5.B2, K1 := -kq7.r5b2, polarity=-1; - MCBCV.7R5.B2, KICK := -acbcv7.r5b2, polarity=+1; - MCO.8R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.8R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A8R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A8R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B8R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B8R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQML.8R5.B2, K1 := -kq8.r5b2, polarity=+1; - MCBCH.8R5.B2, KICK := -acbch8.r5b2, polarity=+1; - MCO.9R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.9R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A9R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A9R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B9R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B9R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQMC.9R5.B2, K1 := -kq9.r5b2, polarity=-1; - MQM.9R5.B2, K1 := -kq9.r5b2, polarity=-1; - MCBCV.9R5.B2, KICK := -acbcv9.r5b2, polarity=+1; - MCO.10R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.10R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A10R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A10R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B10R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B10R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQML.10R5.B2, K1 := -kq10.r5b2, polarity=+1; - MCBCH.10R5.B2, KICK := -acbch10.r5b2, polarity=+1; - MCO.11R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.11R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A11R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A11R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B11R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B11R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQ.11R5.B2, K1 := -kqd.a56, polarity=-1; - MQTLI.11R5.B2, K1 := -kqtl11.r5b2, polarity=-1; - MS.11R5.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.11R5.B2, KICK := -acbv11.r5b2, polarity=+1; - MCO.A12R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A12R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A12R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A12R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B12R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B12R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B12R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B12R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C12R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C12R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.12R5.B2, K1 := -kqt12.r5b2, polarity=+1; - MQ.12R5.B2, K1 := -kqf.a56, polarity=+1; - MS.12R5.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.12R5.B2, KICK := -acbh12.r5b2, polarity=+1; - MB.A13R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A13R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.13R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.13R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B13R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B13R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C13R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C13R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.13R5.B2, K1 := -kqt13.r5b2, polarity=-1; - MQ.13R5.B2, K1 := -kqd.a56, polarity=-1; - MS.13R5.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.13R5.B2, KICK := -acbv13.r5b2, polarity=+1; - MCO.A14R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A14R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A14R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A14R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B14R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B14R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B14R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B14R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C14R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C14R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.14R5.B2, K1 := -kqtf.a56b2, polarity=+1; - MQ.14R5.B2, K1 := -kqf.a56, polarity=+1; - MS.14R5.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.14R5.B2, KICK := -acbh14.r5b2, polarity=+1; - MB.A15R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A15R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.15R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.15R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B15R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B15R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C15R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C15R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.15R5.B2, K1 := -kqtd.a56b2, polarity=-1; - MQ.15R5.B2, K1 := -kqd.a56, polarity=-1; - MS.15R5.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.15R5.B2, KICK := -acbv15.r5b2, polarity=+1; - MCO.A16R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A16R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A16R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A16R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B16R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B16R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B16R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B16R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C16R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C16R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.16R5.B2, K1 := -kqtf.a56b2, polarity=+1; - MQ.16R5.B2, K1 := -kqf.a56, polarity=+1; - MS.16R5.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.16R5.B2, KICK := -acbh16.r5b2, polarity=+1; - MB.A17R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A17R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.17R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.17R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B17R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B17R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C17R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C17R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.17R5.B2, K1 := -kqtd.a56b2, polarity=-1; - MQ.17R5.B2, K1 := -kqd.a56, polarity=-1; - MS.17R5.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.17R5.B2, KICK := -acbv17.r5b2, polarity=+1; - MCO.A18R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A18R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A18R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A18R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B18R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B18R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B18R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B18R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C18R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C18R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.18R5.B2, K1 := -kqtf.a56b2, polarity=+1; - MQ.18R5.B2, K1 := -kqf.a56, polarity=+1; - MS.18R5.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.18R5.B2, KICK := -acbh18.r5b2, polarity=+1; - MB.A19R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A19R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.19R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.19R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B19R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B19R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C19R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C19R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.19R5.B2, K1 := -kqtd.a56b2, polarity=-1; - MQ.19R5.B2, K1 := -kqd.a56, polarity=-1; - MS.19R5.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.19R5.B2, KICK := -acbv19.r5b2, polarity=+1; - MCO.A20R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A20R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A20R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A20R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B20R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B20R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B20R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B20R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C20R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C20R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.20R5.B2, K1 := -kqtf.a56b2, polarity=+1; - MQ.20R5.B2, K1 := -kqf.a56, polarity=+1; - MS.20R5.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.20R5.B2, KICK := -acbh20.r5b2, polarity=+1; - MB.A21R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A21R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.21R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.21R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B21R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B21R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C21R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C21R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.21R5.B2, K1 := -kqtd.a56b2, polarity=-1; - MQ.21R5.B2, K1 := -kqd.a56, polarity=-1; - MS.21R5.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.21R5.B2, KICK := -acbv21.r5b2, polarity=+1; - MCO.A22R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A22R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A22R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A22R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B22R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B22R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B22R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B22R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C22R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C22R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.22R5.B2, K3 := -kof.a56b2, polarity=+1; - MQ.22R5.B2, K1 := -kqf.a56, polarity=+1; - MS.22R5.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.22R5.B2, KICK := -acbh22.r5b2, polarity=+1; - MB.A23R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A23R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.23R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.23R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B23R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B23R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C23R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C23R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQS.23R5.B2, K1S := -kqs.a56b2, polarity=-1; - MQ.23R5.B2, K1 := -kqd.a56, polarity=-1; - MS.23R5.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.23R5.B2, KICK := -acbv23.r5b2, polarity=+1; - MCO.A24R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A24R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A24R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A24R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B24R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B24R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B24R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B24R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C24R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C24R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.24R5.B2, K3 := -kof.a56b2, polarity=+1; - MQ.24R5.B2, K1 := -kqf.a56, polarity=+1; - MS.24R5.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.24R5.B2, KICK := -acbh24.r5b2, polarity=+1; - MB.A25R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A25R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.25R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.25R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B25R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B25R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C25R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C25R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.25R5.B2, K3 := -kod.a56b2, polarity=-1; - MQ.25R5.B2, K1 := -kqd.a56, polarity=-1; - MS.25R5.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.25R5.B2, KICK := -acbv25.r5b2, polarity=+1; - MCO.A26R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A26R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A26R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A26R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B26R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B26R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B26R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B26R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C26R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C26R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.26R5.B2, K3 := -kof.a56b2, polarity=+1; - MQ.26R5.B2, K1 := -kqf.a56, polarity=+1; - MS.26R5.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.26R5.B2, KICK := -acbh26.r5b2, polarity=+1; - MB.A27R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A27R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.27R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.27R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B27R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B27R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C27R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C27R5.B2, K2 := -kcs.a56b2, polarity=+1; - MQS.27R5.B2, K1S := -kqs.a56b2, polarity=-1; - MQ.27R5.B2, K1 := -kqd.a56, polarity=-1; - MS.27R5.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.27R5.B2, KICK := -acbv27.r5b2, polarity=+1; - MCO.A28R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A28R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A28R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A28R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B28R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B28R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B28R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B28R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C28R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C28R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.28R5.B2, K3 := -kof.a56b2, polarity=+1; - MQ.28R5.B2, K1 := -kqf.a56, polarity=+1; - MS.28R5.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.28R5.B2, KICK := -acbh28.r5b2, polarity=+1; - MB.A29R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A29R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.29R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.29R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B29R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B29R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C29R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C29R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.29R5.B2, K3 := -kod.a56b2, polarity=-1; - MQ.29R5.B2, K1 := -kqd.a56, polarity=-1; - MS.29R5.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.29R5.B2, KICK := -acbv29.r5b2, polarity=+1; - MCO.A30R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A30R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A30R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A30R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B30R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B30R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B30R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B30R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C30R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C30R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.30R5.B2, K3 := -kof.a56b2, polarity=+1; - MQ.30R5.B2, K1 := -kqf.a56, polarity=+1; - MSS.30R5.B2, K2S := -kss.a56b2, polarity=-1; - MCBH.30R5.B2, KICK := -acbh30.r5b2, polarity=+1; - MB.A31R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A31R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.31R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.31R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B31R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B31R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C31R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C31R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.31R5.B2, K3 := -kod.a56b2, polarity=-1; - MQ.31R5.B2, K1 := -kqd.a56, polarity=-1; - MS.31R5.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.31R5.B2, KICK := -acbv31.r5b2, polarity=+1; - MCO.A32R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A32R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A32R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A32R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B32R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B32R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B32R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B32R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C32R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C32R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.32R5.B2, K3 := -kof.a56b2, polarity=+1; - MQ.32R5.B2, K1 := -kqf.a56, polarity=+1; - MS.32R5.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.32R5.B2, KICK := -acbh32.r5b2, polarity=+1; - MB.A33R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A33R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.33R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.33R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B33R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B33R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.C33R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C33R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.33R5.B2, K3 := -kod.a56b2, polarity=-1; - MQ.33R5.B2, K1 := -kqd.a56, polarity=-1; - MS.33R5.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.33R5.B2, KICK := -acbv33.r5b2, polarity=+1; - MCO.A34R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A34R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A34R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A34R5.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B34R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B34R5.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.B34R5.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B34R5.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C34R5.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C34R5.B2, K2 := -kcs.a56b2, polarity=+1; - MO.34R5.B2, K3 := -kof.a56b2, polarity=+1; - MQ.34R5.B2, K1 := -kqf.a56, polarity=+1; - MSS.34L6.B2, K2S := -kss.a56b2, polarity=-1; - MCBH.34L6.B2, KICK := -acbh34.l6b2, polarity=+1; - MB.C34L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C34L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.34L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.34L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B34L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B34L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A34L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A34L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.33L6.B2, K3 := -kod.a56b2, polarity=-1; - MQ.33L6.B2, K1 := -kqd.a56, polarity=-1; - MS.33L6.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.33L6.B2, KICK := -acbv33.l6b2, polarity=+1; - MCO.B33L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B33L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C33L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C33L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B33L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B33L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A33L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A33L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A33L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A33L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.32L6.B2, K3 := -kof.a56b2, polarity=+1; - MQ.32L6.B2, K1 := -kqf.a56, polarity=+1; - MSS.32L6.B2, K2S := -kss.a56b2, polarity=-1; - MCBH.32L6.B2, KICK := -acbh32.l6b2, polarity=+1; - MB.C32L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C32L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.32L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.32L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B32L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B32L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A32L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A32L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.31L6.B2, K3 := -kod.a56b2, polarity=-1; - MQ.31L6.B2, K1 := -kqd.a56, polarity=-1; - MS.31L6.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.31L6.B2, KICK := -acbv31.l6b2, polarity=+1; - MCO.B31L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B31L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C31L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C31L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B31L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B31L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A31L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A31L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A31L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A31L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.30L6.B2, K3 := -kof.a56b2, polarity=+1; - MQ.30L6.B2, K1 := -kqf.a56, polarity=+1; - MS.30L6.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.30L6.B2, KICK := -acbh30.l6b2, polarity=+1; - MB.C30L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C30L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.30L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.30L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B30L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B30L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A30L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A30L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.29L6.B2, K3 := -kod.a56b2, polarity=-1; - MQ.29L6.B2, K1 := -kqd.a56, polarity=-1; - MS.29L6.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.29L6.B2, KICK := -acbv29.l6b2, polarity=+1; - MCO.B29L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B29L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C29L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C29L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B29L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B29L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A29L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A29L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A29L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A29L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.28L6.B2, K3 := -kof.a56b2, polarity=+1; - MQ.28L6.B2, K1 := -kqf.a56, polarity=+1; - MSS.28L6.B2, K2S := -kss.a56b2, polarity=-1; - MCBH.28L6.B2, KICK := -acbh28.l6b2, polarity=+1; - MB.C28L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C28L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.28L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.28L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B28L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B28L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A28L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A28L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQS.27L6.B2, K1S := -kqs.a56b2, polarity=-1; - MQ.27L6.B2, K1 := -kqd.a56, polarity=-1; - MS.27L6.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.27L6.B2, KICK := -acbv27.l6b2, polarity=+1; - MCO.B27L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B27L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C27L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C27L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B27L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B27L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A27L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A27L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A27L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A27L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.26L6.B2, K3 := -kof.a56b2, polarity=+1; - MQ.26L6.B2, K1 := -kqf.a56, polarity=+1; - MS.26L6.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.26L6.B2, KICK := -acbh26.l6b2, polarity=+1; - MB.C26L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C26L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.26L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.26L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B26L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B26L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A26L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A26L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.25L6.B2, K3 := -kod.a56b2, polarity=-1; - MQ.25L6.B2, K1 := -kqd.a56, polarity=-1; - MS.25L6.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.25L6.B2, KICK := -acbv25.l6b2, polarity=+1; - MCO.B25L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B25L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C25L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C25L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B25L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B25L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A25L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A25L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A25L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A25L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.24L6.B2, K3 := -kof.a56b2, polarity=+1; - MQ.24L6.B2, K1 := -kqf.a56, polarity=+1; - MS.24L6.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.24L6.B2, KICK := -acbh24.l6b2, polarity=+1; - MB.C24L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C24L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.24L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.24L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B24L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B24L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A24L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A24L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQS.23L6.B2, K1S := -kqs.a56b2, polarity=-1; - MQ.23L6.B2, K1 := -kqd.a56, polarity=-1; - MS.23L6.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.23L6.B2, KICK := -acbv23.l6b2, polarity=+1; - MCO.B23L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B23L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C23L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C23L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B23L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B23L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A23L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A23L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A23L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A23L6.B2, K2 := -kcs.a56b2, polarity=+1; - MO.22L6.B2, K3 := -kof.a56b2, polarity=+1; - MQ.22L6.B2, K1 := -kqf.a56, polarity=+1; - MS.22L6.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.22L6.B2, KICK := -acbh22.l6b2, polarity=+1; - MB.C22L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C22L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.22L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.22L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B22L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B22L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A22L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A22L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.21L6.B2, K1 := -kqtd.a56b2, polarity=-1; - MQ.21L6.B2, K1 := -kqd.a56, polarity=-1; - MS.21L6.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.21L6.B2, KICK := -acbv21.l6b2, polarity=+1; - MCO.B21L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B21L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C21L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C21L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B21L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B21L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A21L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A21L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A21L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A21L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.20L6.B2, K1 := -kqtf.a56b2, polarity=+1; - MQ.20L6.B2, K1 := -kqf.a56, polarity=+1; - MS.20L6.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.20L6.B2, KICK := -acbh20.l6b2, polarity=+1; - MB.C20L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C20L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.20L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.20L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B20L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B20L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A20L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A20L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.19L6.B2, K1 := -kqtd.a56b2, polarity=-1; - MQ.19L6.B2, K1 := -kqd.a56, polarity=-1; - MS.19L6.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.19L6.B2, KICK := -acbv19.l6b2, polarity=+1; - MCO.B19L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B19L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C19L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C19L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B19L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B19L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A19L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A19L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A19L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A19L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.18L6.B2, K1 := -kqtf.a56b2, polarity=+1; - MQ.18L6.B2, K1 := -kqf.a56, polarity=+1; - MS.18L6.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.18L6.B2, KICK := -acbh18.l6b2, polarity=+1; - MB.C18L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C18L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.18L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.18L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B18L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B18L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A18L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A18L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.17L6.B2, K1 := -kqtd.a56b2, polarity=-1; - MQ.17L6.B2, K1 := -kqd.a56, polarity=-1; - MS.17L6.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.17L6.B2, KICK := -acbv17.l6b2, polarity=+1; - MCO.B17L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B17L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C17L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C17L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B17L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B17L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A17L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A17L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A17L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A17L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.16L6.B2, K1 := -kqtf.a56b2, polarity=+1; - MQ.16L6.B2, K1 := -kqf.a56, polarity=+1; - MS.16L6.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.16L6.B2, KICK := -acbh16.l6b2, polarity=+1; - MB.C16L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C16L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.16L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.16L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B16L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B16L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A16L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A16L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.15L6.B2, K1 := -kqtd.a56b2, polarity=-1; - MQ.15L6.B2, K1 := -kqd.a56, polarity=-1; - MS.15L6.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.15L6.B2, KICK := -acbv15.l6b2, polarity=+1; - MCO.B15L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B15L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C15L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C15L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B15L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B15L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A15L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A15L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A15L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A15L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.14L6.B2, K1 := -kqtf.a56b2, polarity=+1; - MQ.14L6.B2, K1 := -kqf.a56, polarity=+1; - MS.14L6.B2, K2 := -ksf2.a56b2, polarity=+1; - MCBH.14L6.B2, KICK := -acbh14.l6b2, polarity=+1; - MB.C14L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C14L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.14L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.14L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B14L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B14L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A14L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A14L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.13L6.B2, K1 := -kqt13.l6b2, polarity=-1; - MQ.13L6.B2, K1 := -kqd.a56, polarity=-1; - MS.13L6.B2, K2 := -ksd1.a56b2, polarity=-1; - MCBV.13L6.B2, KICK := -acbv13.l6b2, polarity=+1; - MCO.B13L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.B13L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.C13L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C13L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.B13L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B13L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.A13L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.A13L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.A13L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A13L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQT.12L6.B2, K1 := -kqt12.l6b2, polarity=+1; - MQ.12L6.B2, K1 := -kqf.a56, polarity=+1; - MS.12L6.B2, K2 := -ksf1.a56b2, polarity=+1; - MCBH.12L6.B2, KICK := -acbh12.l6b2, polarity=+1; - MB.C12L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.C12L6.B2, K2 := -kcs.a56b2, polarity=+1; - MCO.12L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.12L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B12L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B12L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A12L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A12L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQ.11L6.B2, K1 := -kqd.a56, polarity=-1; - MQTLI.11L6.B2, K1 := -kqtl11.l6b2, polarity=-1; - MS.11L6.B2, K2 := -ksd2.a56b2, polarity=-1; - MCBV.11L6.B2, KICK := -acbv11.l6b2, polarity=+1; - MCO.11L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.11L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B11L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B11L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A11L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A11L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQML.10L6.B2, K1 := -kq10.l6b2, polarity=+1; - MCBCH.10L6.B2, KICK := -acbch10.l6b2, polarity=+1; - MCO.10L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.10L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B10L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B10L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A10L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A10L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQMC.9L6.B2, K1 := -kq9.l6b2, polarity=-1; - MQM.9L6.B2, K1 := -kq9.l6b2, polarity=-1; - MCBCV.9L6.B2, KICK := -acbcv9.l6b2, polarity=+1; - MCO.9L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.9L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B9L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B9L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A9L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A9L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQML.8L6.B2, K1 := -kq8.l6b2, polarity=+1; - MCBCH.8L6.B2, KICK := -acbch8.l6b2, polarity=+1; - MCO.8L6.B2, KNL := {0, 0, 0, -kco.a56b2*l.MCO, 0}, polarity=+1; - MCD.8L6.B2, KNL := {0, 0, 0, 0, -kcd.a56b2*l.MCD}, polarity=+1; - MB.B8L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.B8L6.B2, K2 := -kcs.a56b2, polarity=+1; - MB.A8L6.B2, ANGLE := -ab.a56, K0 := -kb.a56, polarity=+1; - MCS.A8L6.B2, K2 := -kcs.a56b2, polarity=+1; - MQY.5L6.B2, K1 := -kq5.l6b2, polarity=-1; - MCBYV.5L6.B2, KICK := -acbyv5.l6b2, polarity=+1; - MQY.4L6.B2, K1 := -kq4.l6b2, polarity=+1; - MCBYH.4L6.B2, KICK := -acbyh4.l6b2, polarity=+1; - MSDC.E4L6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDC.D4L6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDC.C4L6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDC.B4L6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDC.A4L6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDB.C4L6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDB.B4L6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDB2.4L6.B2, VKICK := kmsd.lr6b2/2, polarity=+1; - MSDB2.4R6.B2, VKICK := kmsd.lr6b2/2, polarity=+1; - MSDB.A4R6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDB.B4R6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDA.A4R6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDA.B4R6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDA.C4R6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDA.D4R6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MSDA.E4R6.B2, VKICK := kmsd.lr6b2, polarity=+1; - MQY.4R6.B2, K1 := -kq4.r6b2, polarity=-1; - MCBYV.4R6.B2, KICK := -acbyv4.r6b2, polarity=+1; - MKD.A5R6.B2, HKICK := akmkd; - MKD.B5R6.B2, HKICK := akmkd; - MKD.C5R6.B2, HKICK := akmkd; - MKD.D5R6.B2, HKICK := akmkd; - MKD.E5R6.B2, HKICK := akmkd; - MKD.F5R6.B2, HKICK := akmkd; - MKD.G5R6.B2, HKICK := akmkd; - MKD.H5R6.B2, HKICK := akmkd; - MKD.I5R6.B2, HKICK := akmkd; - MKD.J5R6.B2, HKICK := akmkd; - MKD.K5R6.B2, HKICK := akmkd; - MKD.L5R6.B2, HKICK := akmkd; - MKD.M5R6.B2, HKICK := akmkd; - MKD.N5R6.B2, HKICK := akmkd; - MKD.O5R6.B2, HKICK := akmkd; - MQY.5R6.B2, K1 := -kq5.r6b2, polarity=+1; - MCBYH.5R6.B2, KICK := -acbyh5.r6b2, polarity=+1; - MCO.8R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.8R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A8R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A8R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B8R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B8R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQML.8R6.B2, K1 := -kq8.r6b2, polarity=-1; - MCBCV.8R6.B2, KICK := -acbcv8.r6b2, polarity=+1; - MCO.9R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.9R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A9R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A9R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B9R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B9R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQMC.9R6.B2, K1 := -kq9.r6b2, polarity=+1; - MQM.9R6.B2, K1 := -kq9.r6b2, polarity=+1; - MCBCH.9R6.B2, KICK := -acbch9.r6b2, polarity=+1; - MCO.10R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.10R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A10R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A10R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B10R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B10R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQML.10R6.B2, K1 := -kq10.r6b2, polarity=-1; - MCBCV.10R6.B2, KICK := -acbcv10.r6b2, polarity=+1; - MCO.11R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.11R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A11R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A11R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B11R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B11R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQ.11R6.B2, K1 := -kqf.a67, polarity=+1; - MQTLI.11R6.B2, K1 := -kqtl11.r6b2, polarity=+1; - MS.11R6.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.11R6.B2, KICK := -acbh11.r6b2, polarity=+1; - MCO.A12R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A12R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A12R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A12R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B12R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B12R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B12R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B12R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C12R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C12R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.12R6.B2, K1 := -kqt12.r6b2, polarity=-1; - MQ.12R6.B2, K1 := -kqd.a67, polarity=-1; - MS.12R6.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.12R6.B2, KICK := -acbv12.r6b2, polarity=+1; - MB.A13R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A13R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.13R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.13R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B13R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B13R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C13R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C13R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.13R6.B2, K1 := -kqt13.r6b2, polarity=+1; - MQ.13R6.B2, K1 := -kqf.a67, polarity=+1; - MS.13R6.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.13R6.B2, KICK := -acbh13.r6b2, polarity=+1; - MCO.A14R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A14R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A14R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A14R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B14R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B14R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B14R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B14R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C14R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C14R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.14R6.B2, K1 := -kqtd.a67b2, polarity=-1; - MQ.14R6.B2, K1 := -kqd.a67, polarity=-1; - MS.14R6.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.14R6.B2, KICK := -acbv14.r6b2, polarity=+1; - MB.A15R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A15R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.15R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.15R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B15R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B15R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C15R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C15R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.15R6.B2, K1 := -kqtf.a67b2, polarity=+1; - MQ.15R6.B2, K1 := -kqf.a67, polarity=+1; - MS.15R6.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.15R6.B2, KICK := -acbh15.r6b2, polarity=+1; - MCO.A16R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A16R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A16R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A16R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B16R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B16R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B16R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B16R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C16R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C16R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.16R6.B2, K1 := -kqtd.a67b2, polarity=-1; - MQ.16R6.B2, K1 := -kqd.a67, polarity=-1; - MS.16R6.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.16R6.B2, KICK := -acbv16.r6b2, polarity=+1; - MB.A17R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A17R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.17R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.17R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B17R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B17R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C17R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C17R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.17R6.B2, K1 := -kqtf.a67b2, polarity=+1; - MQ.17R6.B2, K1 := -kqf.a67, polarity=+1; - MS.17R6.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.17R6.B2, KICK := -acbh17.r6b2, polarity=+1; - MCO.A18R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A18R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A18R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A18R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B18R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B18R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B18R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B18R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C18R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C18R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.18R6.B2, K1 := -kqtd.a67b2, polarity=-1; - MQ.18R6.B2, K1 := -kqd.a67, polarity=-1; - MS.18R6.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.18R6.B2, KICK := -acbv18.r6b2, polarity=+1; - MB.A19R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A19R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.19R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.19R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B19R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B19R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C19R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C19R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.19R6.B2, K1 := -kqtf.a67b2, polarity=+1; - MQ.19R6.B2, K1 := -kqf.a67, polarity=+1; - MS.19R6.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.19R6.B2, KICK := -acbh19.r6b2, polarity=+1; - MCO.A20R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A20R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A20R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A20R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B20R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B20R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B20R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B20R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C20R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C20R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.20R6.B2, K1 := -kqtd.a67b2, polarity=-1; - MQ.20R6.B2, K1 := -kqd.a67, polarity=-1; - MS.20R6.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.20R6.B2, KICK := -acbv20.r6b2, polarity=+1; - MB.A21R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A21R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.21R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.21R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B21R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B21R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C21R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C21R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.21R6.B2, K1 := -kqtf.a67b2, polarity=+1; - MQ.21R6.B2, K1 := -kqf.a67, polarity=+1; - MS.21R6.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.21R6.B2, KICK := -acbh21.r6b2, polarity=+1; - MCO.A22R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A22R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A22R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A22R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B22R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B22R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B22R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B22R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C22R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C22R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.22R6.B2, K3 := -kod.a67b2, polarity=-1; - MQ.22R6.B2, K1 := -kqd.a67, polarity=-1; - MS.22R6.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.22R6.B2, KICK := -acbv22.r6b2, polarity=+1; - MB.A23R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A23R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.23R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.23R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B23R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B23R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C23R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C23R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQS.23R6.B2, K1S := -kqs.r6b2, polarity=-1; - MQ.23R6.B2, K1 := -kqf.a67, polarity=+1; - MS.23R6.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.23R6.B2, KICK := -acbh23.r6b2, polarity=+1; - MCO.A24R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A24R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A24R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A24R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B24R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B24R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B24R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B24R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C24R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C24R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.24R6.B2, K3 := -kod.a67b2, polarity=-1; - MQ.24R6.B2, K1 := -kqd.a67, polarity=-1; - MS.24R6.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.24R6.B2, KICK := -acbv24.r6b2, polarity=+1; - MB.A25R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A25R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.25R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.25R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B25R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B25R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C25R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C25R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.25R6.B2, K3 := -kof.a67b2, polarity=+1; - MQ.25R6.B2, K1 := -kqf.a67, polarity=+1; - MS.25R6.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.25R6.B2, KICK := -acbh25.r6b2, polarity=+1; - MCO.A26R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A26R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A26R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A26R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B26R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B26R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B26R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B26R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C26R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C26R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.26R6.B2, K3 := -kod.a67b2, polarity=-1; - MQ.26R6.B2, K1 := -kqd.a67, polarity=-1; - MS.26R6.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.26R6.B2, KICK := -acbv26.r6b2, polarity=+1; - MB.A27R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A27R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.27R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.27R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B27R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B27R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C27R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C27R6.B2, K2 := -kcs.a67b2, polarity=+1; - MQS.27R6.B2, K1S := -kqs.r6b2, polarity=-1; - MQ.27R6.B2, K1 := -kqf.a67, polarity=+1; - MS.27R6.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.27R6.B2, KICK := -acbh27.r6b2, polarity=+1; - MCO.A28R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A28R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A28R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A28R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B28R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B28R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B28R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B28R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C28R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C28R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.28R6.B2, K3 := -kod.a67b2, polarity=-1; - MQ.28R6.B2, K1 := -kqd.a67, polarity=-1; - MS.28R6.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.28R6.B2, KICK := -acbv28.r6b2, polarity=+1; - MB.A29R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A29R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.29R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.29R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B29R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B29R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C29R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C29R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.29R6.B2, K3 := -kof.a67b2, polarity=+1; - MQ.29R6.B2, K1 := -kqf.a67, polarity=+1; - MSS.29R6.B2, K2S := -kss.a67b2, polarity=-1; - MCBH.29R6.B2, KICK := -acbh29.r6b2, polarity=+1; - MCO.A30R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A30R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A30R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A30R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B30R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B30R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B30R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B30R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C30R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C30R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.30R6.B2, K3 := -kod.a67b2, polarity=-1; - MQ.30R6.B2, K1 := -kqd.a67, polarity=-1; - MS.30R6.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.30R6.B2, KICK := -acbv30.r6b2, polarity=+1; - MB.A31R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A31R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.31R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.31R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B31R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B31R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C31R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C31R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.31R6.B2, K3 := -kof.a67b2, polarity=+1; - MQ.31R6.B2, K1 := -kqf.a67, polarity=+1; - MS.31R6.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.31R6.B2, KICK := -acbh31.r6b2, polarity=+1; - MCO.A32R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A32R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A32R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A32R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B32R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B32R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B32R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B32R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C32R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C32R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.32R6.B2, K3 := -kod.a67b2, polarity=-1; - MQ.32R6.B2, K1 := -kqd.a67, polarity=-1; - MS.32R6.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.32R6.B2, KICK := -acbv32.r6b2, polarity=+1; - MB.A33R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A33R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.33R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.33R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B33R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B33R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.C33R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C33R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.33R6.B2, K3 := -kof.a67b2, polarity=+1; - MQ.33R6.B2, K1 := -kqf.a67, polarity=+1; - MSS.33R6.B2, K2S := -kss.a67b2, polarity=-1; - MCBH.33R6.B2, KICK := -acbh33.r6b2, polarity=+1; - MCO.A34R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A34R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A34R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A34R6.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B34R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B34R6.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.B34R6.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B34R6.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C34R6.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C34R6.B2, K2 := -kcs.a67b2, polarity=+1; - MO.34R6.B2, K3 := -kod.a67b2, polarity=-1; - MQ.34R6.B2, K1 := -kqd.a67, polarity=-1; - MS.34L7.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.34L7.B2, KICK := -acbv34.l7b2, polarity=+1; - MB.C34L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C34L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.34L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.34L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B34L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B34L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A34L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A34L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.33L7.B2, K3 := -kof.a67b2, polarity=+1; - MQ.33L7.B2, K1 := -kqf.a67, polarity=+1; - MSS.33L7.B2, K2S := -kss.a67b2, polarity=-1; - MCBH.33L7.B2, KICK := -acbh33.l7b2, polarity=+1; - MCO.B33L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B33L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C33L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C33L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B33L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B33L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A33L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A33L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A33L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A33L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.32L7.B2, K3 := -kod.a67b2, polarity=-1; - MQ.32L7.B2, K1 := -kqd.a67, polarity=-1; - MS.32L7.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.32L7.B2, KICK := -acbv32.l7b2, polarity=+1; - MB.C32L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C32L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.32L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.32L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B32L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B32L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A32L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A32L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.31L7.B2, K3 := -kof.a67b2, polarity=+1; - MQ.31L7.B2, K1 := -kqf.a67, polarity=+1; - MS.31L7.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.31L7.B2, KICK := -acbh31.l7b2, polarity=+1; - MCO.B31L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B31L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C31L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C31L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B31L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B31L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A31L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A31L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A31L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A31L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.30L7.B2, K3 := -kod.a67b2, polarity=-1; - MQ.30L7.B2, K1 := -kqd.a67, polarity=-1; - MS.30L7.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.30L7.B2, KICK := -acbv30.l7b2, polarity=+1; - MB.C30L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C30L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.30L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.30L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B30L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B30L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A30L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A30L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.29L7.B2, K3 := -kof.a67b2, polarity=+1; - MQ.29L7.B2, K1 := -kqf.a67, polarity=+1; - MSS.29L7.B2, K2S := -kss.a67b2, polarity=-1; - MCBH.29L7.B2, KICK := -acbh29.l7b2, polarity=+1; - MCO.B29L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B29L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C29L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C29L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B29L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B29L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A29L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A29L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A29L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A29L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.28L7.B2, K3 := -kod.a67b2, polarity=-1; - MQ.28L7.B2, K1 := -kqd.a67, polarity=-1; - MS.28L7.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.28L7.B2, KICK := -acbv28.l7b2, polarity=+1; - MB.C28L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C28L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.28L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.28L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B28L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B28L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A28L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A28L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQS.27L7.B2, K1S := -kqs.l7b2, polarity=-1; - MQ.27L7.B2, K1 := -kqf.a67, polarity=+1; - MS.27L7.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.27L7.B2, KICK := -acbh27.l7b2, polarity=+1; - MCO.B27L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B27L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C27L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C27L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B27L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B27L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A27L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A27L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A27L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A27L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.26L7.B2, K3 := -kod.a67b2, polarity=-1; - MQ.26L7.B2, K1 := -kqd.a67, polarity=-1; - MS.26L7.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.26L7.B2, KICK := -acbv26.l7b2, polarity=+1; - MB.C26L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C26L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.26L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.26L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B26L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B26L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A26L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A26L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.25L7.B2, K3 := -kof.a67b2, polarity=+1; - MQ.25L7.B2, K1 := -kqf.a67, polarity=+1; - MS.25L7.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.25L7.B2, KICK := -acbh25.l7b2, polarity=+1; - MCO.B25L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B25L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C25L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C25L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B25L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B25L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A25L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A25L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A25L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A25L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.24L7.B2, K3 := -kod.a67b2, polarity=-1; - MQ.24L7.B2, K1 := -kqd.a67, polarity=-1; - MS.24L7.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.24L7.B2, KICK := -acbv24.l7b2, polarity=+1; - MB.C24L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C24L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.24L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.24L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B24L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B24L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A24L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A24L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQS.23L7.B2, K1S := -kqs.l7b2, polarity=-1; - MQ.23L7.B2, K1 := -kqf.a67, polarity=+1; - MS.23L7.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.23L7.B2, KICK := -acbh23.l7b2, polarity=+1; - MCO.B23L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B23L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C23L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C23L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B23L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B23L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A23L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A23L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A23L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A23L7.B2, K2 := -kcs.a67b2, polarity=+1; - MO.22L7.B2, K3 := -kod.a67b2, polarity=-1; - MQ.22L7.B2, K1 := -kqd.a67, polarity=-1; - MS.22L7.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.22L7.B2, KICK := -acbv22.l7b2, polarity=+1; - MB.C22L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C22L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.22L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.22L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B22L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B22L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A22L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A22L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.21L7.B2, K1 := -kqtf.a67b2, polarity=+1; - MQ.21L7.B2, K1 := -kqf.a67, polarity=+1; - MS.21L7.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.21L7.B2, KICK := -acbh21.l7b2, polarity=+1; - MCO.B21L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B21L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C21L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C21L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B21L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B21L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A21L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A21L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A21L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A21L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.20L7.B2, K1 := -kqtd.a67b2, polarity=-1; - MQ.20L7.B2, K1 := -kqd.a67, polarity=-1; - MS.20L7.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.20L7.B2, KICK := -acbv20.l7b2, polarity=+1; - MB.C20L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C20L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.20L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.20L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B20L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B20L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A20L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A20L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.19L7.B2, K1 := -kqtf.a67b2, polarity=+1; - MQ.19L7.B2, K1 := -kqf.a67, polarity=+1; - MS.19L7.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.19L7.B2, KICK := -acbh19.l7b2, polarity=+1; - MCO.B19L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B19L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C19L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C19L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B19L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B19L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A19L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A19L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A19L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A19L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.18L7.B2, K1 := -kqtd.a67b2, polarity=-1; - MQ.18L7.B2, K1 := -kqd.a67, polarity=-1; - MS.18L7.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.18L7.B2, KICK := -acbv18.l7b2, polarity=+1; - MB.C18L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C18L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.18L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.18L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B18L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B18L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A18L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A18L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.17L7.B2, K1 := -kqtf.a67b2, polarity=+1; - MQ.17L7.B2, K1 := -kqf.a67, polarity=+1; - MS.17L7.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.17L7.B2, KICK := -acbh17.l7b2, polarity=+1; - MCO.B17L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B17L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C17L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C17L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B17L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B17L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A17L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A17L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A17L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A17L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.16L7.B2, K1 := -kqtd.a67b2, polarity=-1; - MQ.16L7.B2, K1 := -kqd.a67, polarity=-1; - MS.16L7.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.16L7.B2, KICK := -acbv16.l7b2, polarity=+1; - MB.C16L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C16L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.16L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.16L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B16L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B16L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A16L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A16L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.15L7.B2, K1 := -kqtf.a67b2, polarity=+1; - MQ.15L7.B2, K1 := -kqf.a67, polarity=+1; - MS.15L7.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.15L7.B2, KICK := -acbh15.l7b2, polarity=+1; - MCO.B15L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B15L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C15L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C15L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B15L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B15L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A15L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A15L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A15L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A15L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.14L7.B2, K1 := -kqtd.a67b2, polarity=-1; - MQ.14L7.B2, K1 := -kqd.a67, polarity=-1; - MS.14L7.B2, K2 := -ksd2.a67b2, polarity=-1; - MCBV.14L7.B2, KICK := -acbv14.l7b2, polarity=+1; - MB.C14L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C14L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.14L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.14L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B14L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B14L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A14L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A14L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.13L7.B2, K1 := -kqt13.l7b2, polarity=+1; - MQ.13L7.B2, K1 := -kqf.a67, polarity=+1; - MS.13L7.B2, K2 := -ksf1.a67b2, polarity=+1; - MCBH.13L7.B2, KICK := -acbh13.l7b2, polarity=+1; - MCO.B13L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.B13L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.C13L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C13L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.B13L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B13L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.A13L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.A13L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.A13L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A13L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQT.12L7.B2, K1 := -kqt12.l7b2, polarity=-1; - MQ.12L7.B2, K1 := -kqd.a67, polarity=-1; - MS.12L7.B2, K2 := -ksd1.a67b2, polarity=-1; - MCBV.12L7.B2, KICK := -acbv12.l7b2, polarity=+1; - MB.C12L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.C12L7.B2, K2 := -kcs.a67b2, polarity=+1; - MCO.12L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.12L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B12L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B12L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A12L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A12L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQ.11L7.B2, K1 := -kqf.a67, polarity=+1; - MQTLI.11L7.B2, K1 := -kqtl11.l7b2, polarity=+1; - MS.11L7.B2, K2 := -ksf2.a67b2, polarity=+1; - MCBH.11L7.B2, KICK := -acbh11.l7b2, polarity=+1; - MCO.11L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.11L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B11L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B11L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A11L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A11L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQ.10L7.B2, K1 := -kqd.a67, polarity=-1; - MQTLI.10L7.B2, K1 := -kqtl10.l7b2, polarity=-1; - MCBCV.10L7.B2, KICK := -acbcv10.l7b2, polarity=+1; - MCO.10L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.10L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B10L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B10L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A10L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A10L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQ.9L7.B2, K1 := -kqf.a67, polarity=+1; - MQTLI.B9L7.B2, K1 := -kqtl9.l7b2, polarity=+1; - MQTLI.A9L7.B2, K1 := -kqtl9.l7b2, polarity=+1; - MCBCH.9L7.B2, KICK := -acbch9.l7b2, polarity=+1; - MCO.9L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.9L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B9L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B9L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A9L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A9L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQ.8L7.B2, K1 := -kqd.a67, polarity=-1; - MQTLI.8L7.B2, K1 := -kqtl8.l7b2, polarity=-1; - MCBCV.8L7.B2, KICK := -acbcv8.l7b2, polarity=+1; - MCO.8L7.B2, KNL := {0, 0, 0, -kco.a67b2*l.MCO, 0}, polarity=+1; - MCD.8L7.B2, KNL := {0, 0, 0, 0, -kcd.a67b2*l.MCD}, polarity=+1; - MB.B8L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.B8L7.B2, K2 := -kcs.a67b2, polarity=+1; - MB.A8L7.B2, ANGLE := -ab.a67, K0 := -kb.a67, polarity=+1; - MCS.A8L7.B2, K2 := -kcs.a67b2, polarity=+1; - MQ.7L7.B2, K1 := -kqf.a67, polarity=+1; - MQTLI.7L7.B2, K1 := -kqtl7.l7b2, polarity=+1; - MCBCH.7L7.B2, KICK := -acbch7.l7b2, polarity=+1; - MQTLH.F6L7.B2, K1 := -kq6.l7b2, polarity=-1; - MQTLH.E6L7.B2, K1 := -kq6.l7b2, polarity=-1; - MQTLH.D6L7.B2, K1 := -kq6.l7b2, polarity=-1; - MQTLH.C6L7.B2, K1 := -kq6.l7b2, polarity=-1; - MQTLH.B6L7.B2, K1 := -kq6.l7b2, polarity=-1; - MQTLH.A6L7.B2, K1 := -kq6.l7b2, polarity=-1; - MCBCV.6L7.B2, KICK := -acbcv6.l7b2, polarity=+1; - MBW.D6L7.B2, ANGLE := -ad34.lr7, K0 := -kd34.lr7, polarity=+1; - MBW.C6L7.B2, ANGLE := -ad34.lr7, K0 := -kd34.lr7, polarity=+1; - MBW.B6L7.B2, ANGLE := ad34.lr7, K0 := kd34.lr7, polarity=-1; - MBW.A6L7.B2, ANGLE := ad34.lr7, K0 := kd34.lr7, polarity=-1; - MQWA.D5L7.B2, K1 := kq5.lr7, polarity=+1; - MQWA.C5L7.B2, K1 := kq5.lr7, polarity=+1; - MQWA.F5L7.B2, K1 := kq5.lr7, polarity=+1; - MQWA.B5L7.B2, K1 := kq5.lr7, polarity=+1; - MQWA.A5L7.B2, K1 := kq5.lr7, polarity=+1; - MCBWH.5L7.B2, KICK := -acbwh5.l7b2, polarity=+1; - MQWA.E4L7.B2, K1 := kq4.lr7, polarity=-1; - MQWA.D4L7.B2, K1 := kq4.lr7, polarity=-1; - MQWA.C4L7.B2, K1 := kq4.lr7, polarity=-1; - MQWB.4L7.B2, K1 := -kqt4.l7, polarity=+1; - MQWA.B4L7.B2, K1 := kq4.lr7, polarity=-1; - MQWA.A4L7.B2, K1 := kq4.lr7, polarity=-1; - MCBWV.4L7.B2, KICK := -acbwv4.l7b2, polarity=+1; - MCBWH.4R7.B2, KICK := -acbwh4.r7b2, polarity=+1; - MQWA.A4R7.B2, K1 := -kq4.lr7, polarity=+1; - MQWA.B4R7.B2, K1 := -kq4.lr7, polarity=+1; - MQWB.4R7.B2, K1 := -kqt4.r7, polarity=-1; - MQWA.C4R7.B2, K1 := -kq4.lr7, polarity=+1; - MQWA.D4R7.B2, K1 := -kq4.lr7, polarity=+1; - MQWA.E4R7.B2, K1 := -kq4.lr7, polarity=+1; - MCBWV.5R7.B2, KICK := -acbwv5.r7b2, polarity=+1; - MQWA.A5R7.B2, K1 := -kq5.lr7, polarity=-1; - MQWA.B5R7.B2, K1 := -kq5.lr7, polarity=-1; - MQWA.F5R7.B2, K1 := -kq5.lr7, polarity=-1; - MQWA.C5R7.B2, K1 := -kq5.lr7, polarity=-1; - MQWA.D5R7.B2, K1 := -kq5.lr7, polarity=-1; - MBW.A6R7.B2, ANGLE := ad34.lr7, K0 := kd34.lr7, polarity=-1; - MBW.B6R7.B2, ANGLE := ad34.lr7, K0 := kd34.lr7, polarity=-1; - MBW.C6R7.B2, ANGLE := -ad34.lr7, K0 := -kd34.lr7, polarity=+1; - MBW.D6R7.B2, ANGLE := -ad34.lr7, K0 := -kd34.lr7, polarity=+1; - MQTLH.A6R7.B2, K1 := -kq6.r7b2, polarity=+1; - MQTLH.B6R7.B2, K1 := -kq6.r7b2, polarity=+1; - MQTLH.C6R7.B2, K1 := -kq6.r7b2, polarity=+1; - MQTLH.D6R7.B2, K1 := -kq6.r7b2, polarity=+1; - MQTLH.E6R7.B2, K1 := -kq6.r7b2, polarity=+1; - MQTLH.F6R7.B2, K1 := -kq6.r7b2, polarity=+1; - MCBCH.6R7.B2, KICK := -acbch6.r7b2, polarity=+1; - MQ.7R7.B2, K1 := -kqd.a78, polarity=-1; - MQTLI.7R7.B2, K1 := -kqtl7.r7b2, polarity=-1; - MCBCV.7R7.B2, KICK := -acbcv7.r7b2, polarity=+1; - MCD.8R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A8R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A8R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B8R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B8R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQ.8R7.B2, K1 := -kqf.a78, polarity=+1; - MQTLI.8R7.B2, K1 := -kqtl8.r7b2, polarity=+1; - MCBCH.8R7.B2, KICK := -acbch8.r7b2, polarity=+1; - MCD.9R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A9R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MB.B9R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B9R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQ.9R7.B2, K1 := -kqd.a78, polarity=-1; - MQTLI.A9R7.B2, K1 := -kqtl9.r7b2, polarity=-1; - MQTLI.B9R7.B2, K1 := -kqtl9.r7b2, polarity=-1; - MCBCV.9R7.B2, KICK := -acbcv9.r7b2, polarity=+1; - MCD.10R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A10R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A10R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B10R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B10R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQ.10R7.B2, K1 := -kqf.a78, polarity=+1; - MQTLI.10R7.B2, K1 := -kqtl10.r7b2, polarity=+1; - MCBCH.10R7.B2, KICK := -acbch10.r7b2, polarity=+1; - MCD.11R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A11R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A11R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B11R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B11R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQ.11R7.B2, K1 := -kqd.a78, polarity=-1; - MQTLI.11R7.B2, K1 := -kqtl11.r7b2, polarity=-1; - MS.11R7.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.11R7.B2, KICK := -acbv11.r7b2, polarity=+1; - MCD.A12R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A12R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A12R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B12R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B12R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B12R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C12R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C12R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.12R7.B2, K1 := -kqt12.r7b2, polarity=+1; - MQ.12R7.B2, K1 := -kqf.a78, polarity=+1; - MS.12R7.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.12R7.B2, KICK := -acbh12.r7b2, polarity=+1; - MB.A13R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A13R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.13R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B13R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B13R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C13R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C13R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.13R7.B2, K1 := -kqt13.r7b2, polarity=-1; - MQ.13R7.B2, K1 := -kqd.a78, polarity=-1; - MS.13R7.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.13R7.B2, KICK := -acbv13.r7b2, polarity=+1; - MCD.A14R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A14R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A14R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B14R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B14R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B14R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C14R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C14R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.14R7.B2, K1 := -kqtf.a78b2, polarity=+1; - MQ.14R7.B2, K1 := -kqf.a78, polarity=+1; - MS.14R7.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.14R7.B2, KICK := -acbh14.r7b2, polarity=+1; - MB.A15R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A15R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.15R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B15R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B15R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C15R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C15R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.15R7.B2, K1 := -kqtd.a78b2, polarity=-1; - MQ.15R7.B2, K1 := -kqd.a78, polarity=-1; - MS.15R7.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.15R7.B2, KICK := -acbv15.r7b2, polarity=+1; - MCD.A16R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A16R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A16R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B16R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B16R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B16R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C16R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C16R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.16R7.B2, K1 := -kqtf.a78b2, polarity=+1; - MQ.16R7.B2, K1 := -kqf.a78, polarity=+1; - MS.16R7.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.16R7.B2, KICK := -acbh16.r7b2, polarity=+1; - MB.A17R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A17R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.17R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B17R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B17R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C17R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C17R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.17R7.B2, K1 := -kqtd.a78b2, polarity=-1; - MQ.17R7.B2, K1 := -kqd.a78, polarity=-1; - MS.17R7.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.17R7.B2, KICK := -acbv17.r7b2, polarity=+1; - MCD.A18R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A18R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A18R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B18R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B18R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B18R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C18R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C18R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.18R7.B2, K1 := -kqtf.a78b2, polarity=+1; - MQ.18R7.B2, K1 := -kqf.a78, polarity=+1; - MS.18R7.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.18R7.B2, KICK := -acbh18.r7b2, polarity=+1; - MB.A19R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A19R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.19R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B19R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B19R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C19R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C19R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.19R7.B2, K1 := -kqtd.a78b2, polarity=-1; - MQ.19R7.B2, K1 := -kqd.a78, polarity=-1; - MS.19R7.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.19R7.B2, KICK := -acbv19.r7b2, polarity=+1; - MCD.A20R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A20R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A20R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B20R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B20R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B20R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C20R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C20R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.20R7.B2, K1 := -kqtf.a78b2, polarity=+1; - MQ.20R7.B2, K1 := -kqf.a78, polarity=+1; - MS.20R7.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.20R7.B2, KICK := -acbh20.r7b2, polarity=+1; - MB.A21R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A21R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.21R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B21R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B21R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C21R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C21R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.21R7.B2, K1 := -kqtd.a78b2, polarity=-1; - MQ.21R7.B2, K1 := -kqd.a78, polarity=-1; - MS.21R7.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.21R7.B2, KICK := -acbv21.r7b2, polarity=+1; - MCD.A22R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A22R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A22R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B22R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B22R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B22R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C22R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C22R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.22R7.B2, K3 := -kof.a78b2, polarity=+1; - MQ.22R7.B2, K1 := -kqf.a78, polarity=+1; - MS.22R7.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.22R7.B2, KICK := -acbh22.r7b2, polarity=+1; - MB.A23R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A23R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.23R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B23R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B23R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C23R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C23R7.B2, K2 := -kcs.a78b2, polarity=+1; - MQS.23R7.B2, K1S := -kqs.a78b2, polarity=-1; - MQ.23R7.B2, K1 := -kqd.a78, polarity=-1; - MS.23R7.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.23R7.B2, KICK := -acbv23.r7b2, polarity=+1; - MCD.A24R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A24R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A24R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B24R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B24R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B24R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C24R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C24R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.24R7.B2, K3 := -kof.a78b2, polarity=+1; - MQ.24R7.B2, K1 := -kqf.a78, polarity=+1; - MS.24R7.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.24R7.B2, KICK := -acbh24.r7b2, polarity=+1; - MB.A25R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A25R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.25R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B25R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B25R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C25R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C25R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.25R7.B2, K3 := -kod.a78b2, polarity=-1; - MQ.25R7.B2, K1 := -kqd.a78, polarity=-1; - MS.25R7.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.25R7.B2, KICK := -acbv25.r7b2, polarity=+1; - MCD.A26R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A26R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A26R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B26R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B26R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B26R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C26R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C26R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.26R7.B2, K3 := -kof.a78b2, polarity=+1; - MQ.26R7.B2, K1 := -kqf.a78, polarity=+1; - MS.26R7.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.26R7.B2, KICK := -acbh26.r7b2, polarity=+1; - MB.A27R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A27R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.27R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B27R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B27R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C27R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MQS.27R7.B2, K1S := -kqs.a78b2, polarity=-1; - MQ.27R7.B2, K1 := -kqd.a78, polarity=-1; - MS.27R7.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.27R7.B2, KICK := -acbv27.r7b2, polarity=+1; - MCD.A28R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A28R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A28R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B28R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCD.B28R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C28R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C28R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.28R7.B2, K3 := -kof.a78b2, polarity=+1; - MQ.28R7.B2, K1 := -kqf.a78, polarity=+1; - MS.28R7.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.28R7.B2, KICK := -acbh28.r7b2, polarity=+1; - MB.A29R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCD.29R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B29R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B29R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C29R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MO.29R7.B2, K3 := -kod.a78b2, polarity=-1; - MQ.29R7.B2, K1 := -kqd.a78, polarity=-1; - MS.29R7.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.29R7.B2, KICK := -acbv29.r7b2, polarity=+1; - MCD.A30R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A30R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A30R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B30R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B30R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B30R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C30R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C30R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.30R7.B2, K3 := -kof.a78b2, polarity=+1; - MQ.30R7.B2, K1 := -kqf.a78, polarity=+1; - MSS.30R7.B2, K2S := -kss.a78b2, polarity=-1; - MCBH.30R7.B2, KICK := -acbh30.r7b2, polarity=+1; - MB.A31R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A31R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.31R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B31R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B31R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C31R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C31R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.31R7.B2, K3 := -kod.a78b2, polarity=-1; - MQ.31R7.B2, K1 := -kqd.a78, polarity=-1; - MS.31R7.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.31R7.B2, KICK := -acbv31.r7b2, polarity=+1; - MCD.A32R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A32R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A32R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B32R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B32R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B32R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C32R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C32R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.32R7.B2, K3 := -kof.a78b2, polarity=+1; - MQ.32R7.B2, K1 := -kqf.a78, polarity=+1; - MS.32R7.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.32R7.B2, KICK := -acbh32.r7b2, polarity=+1; - MB.A33R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A33R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.33R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B33R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B33R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.C33R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C33R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.33R7.B2, K3 := -kod.a78b2, polarity=-1; - MQ.33R7.B2, K1 := -kqd.a78, polarity=-1; - MS.33R7.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.33R7.B2, KICK := -acbv33.r7b2, polarity=+1; - MCD.A34R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A34R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A34R7.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B34R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B34R7.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.B34R7.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C34R7.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C34R7.B2, K2 := -kcs.a78b2, polarity=+1; - MO.34R7.B2, K3 := -kof.a78b2, polarity=+1; - MQ.34R7.B2, K1 := -kqf.a78, polarity=+1; - MSS.34L8.B2, K2S := -kss.a78b2, polarity=-1; - MCBH.34L8.B2, KICK := -acbh34.l8b2, polarity=+1; - MB.C34L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C34L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.34L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B34L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B34L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A34L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A34L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.33L8.B2, K3 := -kod.a78b2, polarity=-1; - MQ.33L8.B2, K1 := -kqd.a78, polarity=-1; - MS.33L8.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.33L8.B2, KICK := -acbv33.l8b2, polarity=+1; - MCD.B33L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C33L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C33L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B33L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B33L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A33L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A33L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A33L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.32L8.B2, K3 := -kof.a78b2, polarity=+1; - MQ.32L8.B2, K1 := -kqf.a78, polarity=+1; - MSS.32L8.B2, K2S := -kss.a78b2, polarity=-1; - MCBH.32L8.B2, KICK := -acbh32.l8b2, polarity=+1; - MB.C32L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C32L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.32L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B32L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B32L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A32L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A32L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.31L8.B2, K3 := -kod.a78b2, polarity=-1; - MQ.31L8.B2, K1 := -kqd.a78, polarity=-1; - MS.31L8.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.31L8.B2, KICK := -acbv31.l8b2, polarity=+1; - MCD.B31L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C31L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C31L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B31L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B31L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A31L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A31L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A31L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.30L8.B2, K3 := -kof.a78b2, polarity=+1; - MQ.30L8.B2, K1 := -kqf.a78, polarity=+1; - MS.30L8.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.30L8.B2, KICK := -acbh30.l8b2, polarity=+1; - MB.C30L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C30L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.30L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B30L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B30L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A30L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A30L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.29L8.B2, K3 := -kod.a78b2, polarity=-1; - MQ.29L8.B2, K1 := -kqd.a78, polarity=-1; - MS.29L8.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.29L8.B2, KICK := -acbv29.l8b2, polarity=+1; - MCD.B29L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C29L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C29L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B29L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B29L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A29L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A29L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A29L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.28L8.B2, K3 := -kof.a78b2, polarity=+1; - MQ.28L8.B2, K1 := -kqf.a78, polarity=+1; - MSS.28L8.B2, K2S := -kss.a78b2, polarity=-1; - MCBH.28L8.B2, KICK := -acbh28.l8b2, polarity=+1; - MB.C28L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C28L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.28L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B28L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B28L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A28L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A28L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQS.27L8.B2, K1S := -kqs.a78b2, polarity=-1; - MQ.27L8.B2, K1 := -kqd.a78, polarity=-1; - MS.27L8.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.27L8.B2, KICK := -acbv27.l8b2, polarity=+1; - MCD.B27L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C27L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C27L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B27L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B27L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A27L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A27L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A27L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.26L8.B2, K3 := -kof.a78b2, polarity=+1; - MQ.26L8.B2, K1 := -kqf.a78, polarity=+1; - MS.26L8.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.26L8.B2, KICK := -acbh26.l8b2, polarity=+1; - MB.C26L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C26L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.26L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B26L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B26L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A26L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A26L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.25L8.B2, K3 := -kod.a78b2, polarity=-1; - MQ.25L8.B2, K1 := -kqd.a78, polarity=-1; - MS.25L8.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.25L8.B2, KICK := -acbv25.l8b2, polarity=+1; - MCD.B25L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C25L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C25L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B25L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B25L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A25L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A25L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A25L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.24L8.B2, K3 := -kof.a78b2, polarity=+1; - MQ.24L8.B2, K1 := -kqf.a78, polarity=+1; - MS.24L8.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.24L8.B2, KICK := -acbh24.l8b2, polarity=+1; - MB.C24L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C24L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.24L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B24L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B24L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A24L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A24L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQS.23L8.B2, K1S := -kqs.a78b2, polarity=-1; - MQ.23L8.B2, K1 := -kqd.a78, polarity=-1; - MS.23L8.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.23L8.B2, KICK := -acbv23.l8b2, polarity=+1; - MCD.B23L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C23L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C23L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B23L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B23L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A23L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A23L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A23L8.B2, K2 := -kcs.a78b2, polarity=+1; - MO.22L8.B2, K3 := -kof.a78b2, polarity=+1; - MQ.22L8.B2, K1 := -kqf.a78, polarity=+1; - MS.22L8.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.22L8.B2, KICK := -acbh22.l8b2, polarity=+1; - MB.C22L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C22L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.22L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B22L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B22L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A22L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A22L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.21L8.B2, K1 := -kqtd.a78b2, polarity=-1; - MQ.21L8.B2, K1 := -kqd.a78, polarity=-1; - MS.21L8.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.21L8.B2, KICK := -acbv21.l8b2, polarity=+1; - MCD.B21L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C21L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C21L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B21L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B21L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A21L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A21L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A21L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.20L8.B2, K1 := -kqtf.a78b2, polarity=+1; - MQ.20L8.B2, K1 := -kqf.a78, polarity=+1; - MS.20L8.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.20L8.B2, KICK := -acbh20.l8b2, polarity=+1; - MB.C20L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C20L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.20L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B20L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B20L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A20L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A20L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.19L8.B2, K1 := -kqtd.a78b2, polarity=-1; - MQ.19L8.B2, K1 := -kqd.a78, polarity=-1; - MS.19L8.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.19L8.B2, KICK := -acbv19.l8b2, polarity=+1; - MCD.B19L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C19L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C19L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B19L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B19L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A19L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A19L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A19L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.18L8.B2, K1 := -kqtf.a78b2, polarity=+1; - MQ.18L8.B2, K1 := -kqf.a78, polarity=+1; - MS.18L8.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.18L8.B2, KICK := -acbh18.l8b2, polarity=+1; - MB.C18L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C18L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.18L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B18L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B18L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A18L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A18L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.17L8.B2, K1 := -kqtd.a78b2, polarity=-1; - MQ.17L8.B2, K1 := -kqd.a78, polarity=-1; - MS.17L8.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.17L8.B2, KICK := -acbv17.l8b2, polarity=+1; - MCD.B17L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C17L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C17L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B17L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B17L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A17L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A17L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A17L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.16L8.B2, K1 := -kqtf.a78b2, polarity=+1; - MQ.16L8.B2, K1 := -kqf.a78, polarity=+1; - MS.16L8.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.16L8.B2, KICK := -acbh16.l8b2, polarity=+1; - MB.C16L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C16L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.16L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B16L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B16L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A16L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A16L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.15L8.B2, K1 := -kqtd.a78b2, polarity=-1; - MQ.15L8.B2, K1 := -kqd.a78, polarity=-1; - MS.15L8.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.15L8.B2, KICK := -acbv15.l8b2, polarity=+1; - MCD.B15L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C15L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C15L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B15L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B15L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A15L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A15L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A15L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.14L8.B2, K1 := -kqtf.a78b2, polarity=+1; - MQ.14L8.B2, K1 := -kqf.a78, polarity=+1; - MS.14L8.B2, K2 := -ksf2.a78b2, polarity=+1; - MCBH.14L8.B2, KICK := -acbh14.l8b2, polarity=+1; - MB.C14L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C14L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.14L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B14L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B14L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A14L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A14L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.13L8.B2, K1 := -kqt13.l8b2, polarity=-1; - MQ.13L8.B2, K1 := -kqd.a78, polarity=-1; - MS.13L8.B2, K2 := -ksd1.a78b2, polarity=-1; - MCBV.13L8.B2, KICK := -acbv13.l8b2, polarity=+1; - MCD.B13L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.C13L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C13L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.B13L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B13L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.A13L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.A13L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A13L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQT.12L8.B2, K1 := -kqt12.l8b2, polarity=+1; - MQ.12L8.B2, K1 := -kqf.a78, polarity=+1; - MS.12L8.B2, K2 := -ksf1.a78b2, polarity=+1; - MCBH.12L8.B2, KICK := -acbh12.l8b2, polarity=+1; - MB.C12L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.C12L8.B2, K2 := -kcs.a78b2, polarity=+1; - MCD.12L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B12L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B12L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A12L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A12L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQ.11L8.B2, K1 := -kqd.a78, polarity=-1; - MQTLI.11L8.B2, K1 := -kqtl11.l8b2, polarity=-1; - MS.11L8.B2, K2 := -ksd2.a78b2, polarity=-1; - MCBV.11L8.B2, KICK := -acbv11.l8b2, polarity=+1; - MCD.11L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B11L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B11L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A11L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A11L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQML.10L8.B2, K1 := -kq10.l8b2, polarity=+1; - MCBCH.10L8.B2, KICK := -acbch10.l8b2, polarity=+1; - MCD.10L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B10L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B10L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A10L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A10L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQMC.9L8.B2, K1 := -kq9.l8b2, polarity=-1; - MQM.9L8.B2, K1 := -kq9.l8b2, polarity=-1; - MCBCV.9L8.B2, KICK := -acbcv9.l8b2, polarity=+1; - MCD.9L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B9L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B9L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A9L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A9L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQML.8L8.B2, K1 := -kq8.l8b2, polarity=+1; - MCBCH.8L8.B2, KICK := -acbch8.l8b2, polarity=+1; - MCD.8L8.B2, KNL := {0, 0, 0, 0, -kcd.a78b2*l.MCD}, polarity=+1; - MB.B8L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.B8L8.B2, K2 := -kcs.a78b2, polarity=+1; - MB.A8L8.B2, ANGLE := -ab.a78, K0 := -kb.a78, polarity=+1; - MCS.A8L8.B2, K2 := -kcs.a78b2, polarity=+1; - MQM.B7L8.B2, K1 := -kq7.l8b2, polarity=-1; - MQM.A7L8.B2, K1 := -kq7.l8b2, polarity=-1; - MCBCV.7L8.B2, KICK := -acbcv7.l8b2, polarity=+1; - MCBCH.6L8.B2, KICK := -acbch6.l8b2, polarity=+1; - MQML.6L8.B2, K1 := -kq6.l8b2, polarity=+1; - MQM.6L8.B2, K1 := -kq6.l8b2, polarity=+1; - MCBCV.B5L8.B2, KICK := -acbcvs5.l8b2, polarity=+1; - MCBCH.5L8.B2, KICK := -acbchs5.l8b2, polarity=+1; - MCBCV.A5L8.B2, KICK := -acbcv5.l8b2, polarity=+1; - MQM.B5L8.B2, K1 := -kq5.l8b2, polarity=-1; - MQM.A5L8.B2, K1 := -kq5.l8b2, polarity=-1; - MQY.B4L8.B2, K1 := -kq4.l8b2, polarity=+1; - MQY.A4L8.B2, K1 := -kq4.l8b2, polarity=+1; - MCBYH.B4L8.B2, KICK := -acbyh4.l8b2, polarity=+1; - MCBYV.4L8.B2, KICK := -acbyvs4.l8b2, polarity=+1; - MCBYH.A4L8.B2, KICK := -acbyhs4.l8b2, polarity=+1; - MBRC.4L8.B2, ANGLE := ad2.l8, K0 := kd2.l8, polarity=-1; - MBX.4L8, ANGLE := -ad1.l8, K0 := -kd1.l8, polarity=-1; - MCOSX.3L8, KSL := {0, 0, 0, kcosx3.l8*l.MCOSX}, polarity=-1; - MCOX.3L8, KNL := {0, 0, 0, kcox3.l8*l.MCOX}, polarity=+1; - MCSSX.3L8, KSL := {0, 0, kcssx3.l8*l.MCSSX, 0}, polarity=-1; - MCBXH.3L8, KICK := acbxh3.l8, polarity=+1; - MCBXV.3L8, KICK := acbxv3.l8, polarity=+1; - MCSX.3L8, KNL := {0, 0, kcsx3.l8*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3L8, KNL := {0, 0, 0, 0, 0, kctx3.l8*l.MCTX}, polarity=+1; - MQXA.3L8, K1 := kqx.l8, polarity=+1; - MQSX.3L8, K1S := kqsx3.l8, polarity=-1; - MQXB.B2L8, K1 := -kqx.l8-ktqx2.l8, polarity=-1; - MCBXH.2L8, KICK := acbxh2.l8, polarity=+1; - MCBXV.2L8, KICK := acbxv2.l8, polarity=+1; - MQXB.A2L8, K1 := -kqx.l8-ktqx2.l8, polarity=-1; - MCBXH.1L8, KICK := acbxh1.l8, polarity=+1; - MCBXV.1L8, KICK := acbxv1.l8, polarity=+1; - MQXA.1L8, K1 := kqx.l8+ktqx1.l8, polarity=+1; - MBXWS.1L8, TILT := +0.013405855024372, KICK := abxws.l8, polarity=+1; - MBXWH.1L8, TILT := +0.013405855024372, KICK := abxwh.l8, polarity=+1; - MBLW.1R8, TILT := +0.013405855024372, KICK := ablw.r8, polarity=+1; - MBXWS.1R8, TILT := +0.013405855024372, KICK := abxws.r8, polarity=+1; - MQXA.1R8, K1 := kqx.r8+ktqx1.r8, polarity=-1; - MCBXH.1R8, KICK := acbxh1.r8, polarity=+1; - MCBXV.1R8, KICK := acbxv1.r8, polarity=+1; - MQXB.A2R8, K1 := -kqx.r8-ktqx2.r8, polarity=+1; - MCBXH.2R8, KICK := acbxh2.r8, polarity=+1; - MCBXV.2R8, KICK := acbxv2.r8, polarity=+1; - MQXB.B2R8, K1 := -kqx.r8-ktqx2.r8, polarity=+1; - MQSX.3R8, K1S := kqsx3.r8, polarity=-1; - MQXA.3R8, K1 := kqx.r8, polarity=-1; - MCBXH.3R8, KICK := acbxh3.r8, polarity=+1; - MCBXV.3R8, KICK := acbxv3.r8, polarity=+1; - MCSX.3R8, KNL := {0, 0, kcsx3.r8*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3R8, KNL := {0, 0, 0, 0, 0, kctx3.r8*l.MCTX}, polarity=+1; - MCOSX.3R8, KSL := {0, 0, 0, kcosx3.r8*l.MCOSX}, polarity=-1; - MCOX.3R8, KNL := {0, 0, 0, kcox3.r8*l.MCOX}, polarity=+1; - MCSSX.3R8, KSL := {0, 0, kcssx3.r8*l.MCSSX, 0}, polarity=-1; - MBX.4R8, ANGLE := ad1.r8, K0 := kd1.r8, polarity=+1; - MBRC.4R8.B2, ANGLE := -ad2.r8, K0 := -kd2.r8, polarity=+1; - MCBYV.A4R8.B2, KICK := -acbyvs4.r8b2, polarity=+1; - MCBYH.4R8.B2, KICK := -acbyhs4.r8b2, polarity=+1; - MCBYV.B4R8.B2, KICK := -acbyv4.r8b2, polarity=+1; - MQY.A4R8.B2, K1 := -kq4.r8b2, polarity=-1; - MQY.B4R8.B2, K1 := -kq4.r8b2, polarity=-1; - MKI.A5R8.B2, VKICK := akmki, polarity=+1; - MKI.B5R8.B2, VKICK := akmki, polarity=+1; - MKI.C5R8.B2, VKICK := akmki, polarity=+1; - MKI.D5R8.B2, VKICK := akmki, polarity=+1; - MQY.A5R8.B2, K1 := -kq5.r8b2, polarity=+1; - MQY.B5R8.B2, K1 := -kq5.r8b2, polarity=+1; - MCBYH.A5R8.B2, KICK := -acbyh5.r8b2, polarity=+1; - MCBYV.5R8.B2, KICK := -acbyvs5.r8b2, polarity=+1; - MCBYH.B5R8.B2, KICK := -acbyhs5.r8b2, polarity=+1; - MSIA.A6R8.B2, HKICK := akmsia.r8b2, polarity=-1; - MSIA.B6R8.B2, HKICK := akmsia.r8b2, polarity=-1; - MSIB.A6R8.B2, HKICK := akmsib.r8b2, polarity=-1; - MSIB.B6R8.B2, HKICK := akmsib.r8b2, polarity=-1; - MSIB.C6R8.B2, HKICK := akmsib.r8b2, polarity=-1; - MCBCV.6R8.B2, KICK := -acbcv6.r8b2, polarity=+1; - MQML.6R8.B2, K1 := -kq6.r8b2, polarity=-1; - MQM.6R8.B2, K1 := -kq6.r8b2, polarity=-1; - MQM.A7R8.B2, K1 := -kq7.r8b2, polarity=+1; - MQM.B7R8.B2, K1 := -kq7.r8b2, polarity=+1; - MCBCH.7R8.B2, KICK := -acbch7.r8b2, polarity=+1; - MCO.8R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.8R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A8R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A8R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B8R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B8R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQML.8R8.B2, K1 := -kq8.r8b2, polarity=-1; - MCBCV.8R8.B2, KICK := -acbcv8.r8b2, polarity=+1; - MCO.9R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.9R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A9R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A9R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B9R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B9R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQMC.9R8.B2, K1 := -kq9.r8b2, polarity=+1; - MQM.9R8.B2, K1 := -kq9.r8b2, polarity=+1; - MCBCH.9R8.B2, KICK := -acbch9.r8b2, polarity=+1; - MCO.10R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.10R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A10R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A10R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B10R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B10R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQML.10R8.B2, K1 := -kq10.r8b2, polarity=-1; - MCBCV.10R8.B2, KICK := -acbcv10.r8b2, polarity=+1; - MCO.11R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.11R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A11R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A11R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B11R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B11R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQ.11R8.B2, K1 := -kqf.a81, polarity=+1; - MQTLI.11R8.B2, K1 := -kqtl11.r8b2, polarity=+1; - MS.11R8.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.11R8.B2, KICK := -acbh11.r8b2, polarity=+1; - MCO.A12R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A12R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A12R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A12R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B12R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B12R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B12R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B12R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C12R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C12R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.12R8.B2, K1 := -kqt12.r8b2, polarity=-1; - MQ.12R8.B2, K1 := -kqd.a81, polarity=-1; - MS.12R8.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.12R8.B2, KICK := -acbv12.r8b2, polarity=+1; - MB.A13R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A13R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.13R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.13R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B13R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B13R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C13R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C13R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.13R8.B2, K1 := -kqt13.r8b2, polarity=+1; - MQ.13R8.B2, K1 := -kqf.a81, polarity=+1; - MS.13R8.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.13R8.B2, KICK := -acbh13.r8b2, polarity=+1; - MCO.A14R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A14R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A14R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A14R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B14R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B14R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B14R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B14R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C14R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C14R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.14R8.B2, K1 := -kqtd.a81b2, polarity=-1; - MQ.14R8.B2, K1 := -kqd.a81, polarity=-1; - MS.14R8.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.14R8.B2, KICK := -acbv14.r8b2, polarity=+1; - MB.A15R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A15R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.15R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.15R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B15R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B15R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C15R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C15R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.15R8.B2, K1 := -kqtf.a81b2, polarity=+1; - MQ.15R8.B2, K1 := -kqf.a81, polarity=+1; - MS.15R8.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.15R8.B2, KICK := -acbh15.r8b2, polarity=+1; - MCO.A16R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A16R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A16R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A16R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B16R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B16R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B16R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B16R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C16R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C16R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.16R8.B2, K1 := -kqtd.a81b2, polarity=-1; - MQ.16R8.B2, K1 := -kqd.a81, polarity=-1; - MS.16R8.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.16R8.B2, KICK := -acbv16.r8b2, polarity=+1; - MB.A17R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A17R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.17R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.17R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B17R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B17R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C17R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C17R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.17R8.B2, K1 := -kqtf.a81b2, polarity=+1; - MQ.17R8.B2, K1 := -kqf.a81, polarity=+1; - MS.17R8.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.17R8.B2, KICK := -acbh17.r8b2, polarity=+1; - MCO.A18R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A18R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A18R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A18R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B18R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B18R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B18R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B18R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C18R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C18R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.18R8.B2, K1 := -kqtd.a81b2, polarity=-1; - MQ.18R8.B2, K1 := -kqd.a81, polarity=-1; - MS.18R8.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.18R8.B2, KICK := -acbv18.r8b2, polarity=+1; - MB.A19R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A19R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.19R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.19R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B19R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B19R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C19R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C19R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.19R8.B2, K1 := -kqtf.a81b2, polarity=+1; - MQ.19R8.B2, K1 := -kqf.a81, polarity=+1; - MS.19R8.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.19R8.B2, KICK := -acbh19.r8b2, polarity=+1; - MCO.A20R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A20R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A20R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A20R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B20R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B20R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B20R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B20R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C20R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C20R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.20R8.B2, K1 := -kqtd.a81b2, polarity=-1; - MQ.20R8.B2, K1 := -kqd.a81, polarity=-1; - MS.20R8.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.20R8.B2, KICK := -acbv20.r8b2, polarity=+1; - MB.A21R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A21R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.21R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.21R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B21R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B21R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C21R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C21R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.21R8.B2, K1 := -kqtf.a81b2, polarity=+1; - MQ.21R8.B2, K1 := -kqf.a81, polarity=+1; - MS.21R8.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.21R8.B2, KICK := -acbh21.r8b2, polarity=+1; - MCO.A22R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A22R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A22R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A22R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B22R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B22R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B22R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B22R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C22R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C22R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.22R8.B2, K3 := -kod.a81b2, polarity=-1; - MQ.22R8.B2, K1 := -kqd.a81, polarity=-1; - MS.22R8.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.22R8.B2, KICK := -acbv22.r8b2, polarity=+1; - MB.A23R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A23R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.23R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.23R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B23R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B23R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C23R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C23R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQS.23R8.B2, K1S := -kqs.r8b2, polarity=-1; - MQ.23R8.B2, K1 := -kqf.a81, polarity=+1; - MS.23R8.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.23R8.B2, KICK := -acbh23.r8b2, polarity=+1; - MCO.A24R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A24R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A24R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A24R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B24R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B24R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B24R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B24R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C24R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C24R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.24R8.B2, K3 := -kod.a81b2, polarity=-1; - MQ.24R8.B2, K1 := -kqd.a81, polarity=-1; - MS.24R8.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.24R8.B2, KICK := -acbv24.r8b2, polarity=+1; - MB.A25R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A25R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.25R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.25R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B25R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B25R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C25R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C25R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.25R8.B2, K3 := -kof.a81b2, polarity=+1; - MQ.25R8.B2, K1 := -kqf.a81, polarity=+1; - MS.25R8.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.25R8.B2, KICK := -acbh25.r8b2, polarity=+1; - MCO.A26R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A26R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A26R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A26R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B26R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B26R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B26R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B26R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C26R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C26R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.26R8.B2, K3 := -kod.a81b2, polarity=-1; - MQ.26R8.B2, K1 := -kqd.a81, polarity=-1; - MS.26R8.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.26R8.B2, KICK := -acbv26.r8b2, polarity=+1; - MB.A27R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A27R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.27R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.27R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B27R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B27R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C27R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C27R8.B2, K2 := -kcs.a81b2, polarity=+1; - MQS.27R8.B2, K1S := -kqs.r8b2, polarity=-1; - MQ.27R8.B2, K1 := -kqf.a81, polarity=+1; - MS.27R8.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.27R8.B2, KICK := -acbh27.r8b2, polarity=+1; - MCO.A28R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A28R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A28R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A28R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B28R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B28R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B28R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B28R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C28R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C28R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.28R8.B2, K3 := -kod.a81b2, polarity=-1; - MQ.28R8.B2, K1 := -kqd.a81, polarity=-1; - MS.28R8.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.28R8.B2, KICK := -acbv28.r8b2, polarity=+1; - MB.A29R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A29R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.29R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.29R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B29R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B29R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C29R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C29R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.29R8.B2, K3 := -kof.a81b2, polarity=+1; - MQ.29R8.B2, K1 := -kqf.a81, polarity=+1; - MSS.29R8.B2, K2S := -kss.a81b2, polarity=-1; - MCBH.29R8.B2, KICK := -acbh29.r8b2, polarity=+1; - MCO.A30R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A30R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A30R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A30R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B30R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B30R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B30R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B30R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C30R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C30R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.30R8.B2, K3 := -kod.a81b2, polarity=-1; - MQ.30R8.B2, K1 := -kqd.a81, polarity=-1; - MS.30R8.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.30R8.B2, KICK := -acbv30.r8b2, polarity=+1; - MB.A31R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A31R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.31R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.31R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B31R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B31R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C31R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C31R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.31R8.B2, K3 := -kof.a81b2, polarity=+1; - MQ.31R8.B2, K1 := -kqf.a81, polarity=+1; - MS.31R8.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.31R8.B2, KICK := -acbh31.r8b2, polarity=+1; - MCO.A32R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A32R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A32R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A32R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B32R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B32R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B32R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B32R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C32R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C32R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.32R8.B2, K3 := -kod.a81b2, polarity=-1; - MQ.32R8.B2, K1 := -kqd.a81, polarity=-1; - MS.32R8.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.32R8.B2, KICK := -acbv32.r8b2, polarity=+1; - MB.A33R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A33R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.33R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.33R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B33R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B33R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.C33R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C33R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.33R8.B2, K3 := -kof.a81b2, polarity=+1; - MQ.33R8.B2, K1 := -kqf.a81, polarity=+1; - MSS.33R8.B2, K2S := -kss.a81b2, polarity=-1; - MCBH.33R8.B2, KICK := -acbh33.r8b2, polarity=+1; - MCO.A34R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A34R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A34R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A34R8.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B34R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B34R8.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.B34R8.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B34R8.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C34R8.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C34R8.B2, K2 := -kcs.a81b2, polarity=+1; - MO.34R8.B2, K3 := -kod.a81b2, polarity=-1; - MQ.34R8.B2, K1 := -kqd.a81, polarity=-1; - MS.34L1.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.34L1.B2, KICK := -acbv34.l1b2, polarity=+1; - MB.C34L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C34L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.34L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.34L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B34L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B34L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A34L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A34L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.33L1.B2, K3 := -kof.a81b2, polarity=+1; - MQ.33L1.B2, K1 := -kqf.a81, polarity=+1; - MSS.33L1.B2, K2S := -kss.a81b2, polarity=-1; - MCBH.33L1.B2, KICK := -acbh33.l1b2, polarity=+1; - MCO.B33L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B33L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C33L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C33L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B33L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B33L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A33L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A33L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A33L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A33L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.32L1.B2, K3 := -kod.a81b2, polarity=-1; - MQ.32L1.B2, K1 := -kqd.a81, polarity=-1; - MS.32L1.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.32L1.B2, KICK := -acbv32.l1b2, polarity=+1; - MB.C32L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C32L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.32L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.32L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B32L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B32L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A32L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A32L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.31L1.B2, K3 := -kof.a81b2, polarity=+1; - MQ.31L1.B2, K1 := -kqf.a81, polarity=+1; - MS.31L1.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.31L1.B2, KICK := -acbh31.l1b2, polarity=+1; - MCO.B31L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B31L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C31L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C31L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B31L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B31L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A31L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A31L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A31L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A31L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.30L1.B2, K3 := -kod.a81b2, polarity=-1; - MQ.30L1.B2, K1 := -kqd.a81, polarity=-1; - MS.30L1.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.30L1.B2, KICK := -acbv30.l1b2, polarity=+1; - MB.C30L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C30L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.30L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.30L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B30L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B30L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A30L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A30L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.29L1.B2, K3 := -kof.a81b2, polarity=+1; - MQ.29L1.B2, K1 := -kqf.a81, polarity=+1; - MSS.29L1.B2, K2S := -kss.a81b2, polarity=-1; - MCBH.29L1.B2, KICK := -acbh29.l1b2, polarity=+1; - MCO.B29L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B29L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C29L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C29L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B29L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B29L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A29L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A29L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A29L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A29L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.28L1.B2, K3 := -kod.a81b2, polarity=-1; - MQ.28L1.B2, K1 := -kqd.a81, polarity=-1; - MS.28L1.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.28L1.B2, KICK := -acbv28.l1b2, polarity=+1; - MB.C28L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C28L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.28L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.28L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B28L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B28L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A28L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A28L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQS.27L1.B2, K1S := -kqs.l1b2, polarity=-1; - MQ.27L1.B2, K1 := -kqf.a81, polarity=+1; - MS.27L1.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.27L1.B2, KICK := -acbh27.l1b2, polarity=+1; - MCO.B27L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B27L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C27L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C27L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B27L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B27L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A27L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A27L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A27L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A27L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.26L1.B2, K3 := -kod.a81b2, polarity=-1; - MQ.26L1.B2, K1 := -kqd.a81, polarity=-1; - MS.26L1.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.26L1.B2, KICK := -acbv26.l1b2, polarity=+1; - MB.C26L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C26L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.26L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.26L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B26L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B26L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A26L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A26L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.25L1.B2, K3 := -kof.a81b2, polarity=+1; - MQ.25L1.B2, K1 := -kqf.a81, polarity=+1; - MS.25L1.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.25L1.B2, KICK := -acbh25.l1b2, polarity=+1; - MCO.B25L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B25L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C25L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C25L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B25L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B25L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A25L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A25L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A25L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A25L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.24L1.B2, K3 := -kod.a81b2, polarity=-1; - MQ.24L1.B2, K1 := -kqd.a81, polarity=-1; - MS.24L1.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.24L1.B2, KICK := -acbv24.l1b2, polarity=+1; - MB.C24L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C24L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.24L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.24L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B24L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B24L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A24L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A24L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQS.23L1.B2, K1S := -kqs.l1b2, polarity=-1; - MQ.23L1.B2, K1 := -kqf.a81, polarity=+1; - MS.23L1.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.23L1.B2, KICK := -acbh23.l1b2, polarity=+1; - MCO.B23L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B23L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C23L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C23L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B23L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B23L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A23L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A23L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A23L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A23L1.B2, K2 := -kcs.a81b2, polarity=+1; - MO.22L1.B2, K3 := -kod.a81b2, polarity=-1; - MQ.22L1.B2, K1 := -kqd.a81, polarity=-1; - MS.22L1.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.22L1.B2, KICK := -acbv22.l1b2, polarity=+1; - MB.C22L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C22L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.22L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.22L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B22L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B22L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A22L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A22L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.21L1.B2, K1 := -kqtf.a81b2, polarity=+1; - MQ.21L1.B2, K1 := -kqf.a81, polarity=+1; - MS.21L1.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.21L1.B2, KICK := -acbh21.l1b2, polarity=+1; - MCO.B21L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B21L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C21L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C21L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B21L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B21L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A21L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A21L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A21L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A21L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.20L1.B2, K1 := -kqtd.a81b2, polarity=-1; - MQ.20L1.B2, K1 := -kqd.a81, polarity=-1; - MS.20L1.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.20L1.B2, KICK := -acbv20.l1b2, polarity=+1; - MB.C20L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C20L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.20L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.20L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B20L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B20L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A20L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A20L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.19L1.B2, K1 := -kqtf.a81b2, polarity=+1; - MQ.19L1.B2, K1 := -kqf.a81, polarity=+1; - MS.19L1.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.19L1.B2, KICK := -acbh19.l1b2, polarity=+1; - MCO.B19L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B19L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C19L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C19L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B19L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B19L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A19L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A19L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A19L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A19L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.18L1.B2, K1 := -kqtd.a81b2, polarity=-1; - MQ.18L1.B2, K1 := -kqd.a81, polarity=-1; - MS.18L1.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.18L1.B2, KICK := -acbv18.l1b2, polarity=+1; - MB.C18L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C18L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.18L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.18L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B18L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B18L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A18L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A18L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.17L1.B2, K1 := -kqtf.a81b2, polarity=+1; - MQ.17L1.B2, K1 := -kqf.a81, polarity=+1; - MS.17L1.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.17L1.B2, KICK := -acbh17.l1b2, polarity=+1; - MCO.B17L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B17L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C17L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C17L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B17L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B17L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A17L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A17L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A17L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A17L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.16L1.B2, K1 := -kqtd.a81b2, polarity=-1; - MQ.16L1.B2, K1 := -kqd.a81, polarity=-1; - MS.16L1.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.16L1.B2, KICK := -acbv16.l1b2, polarity=+1; - MB.C16L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C16L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.16L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.16L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B16L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B16L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A16L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A16L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.15L1.B2, K1 := -kqtf.a81b2, polarity=+1; - MQ.15L1.B2, K1 := -kqf.a81, polarity=+1; - MS.15L1.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.15L1.B2, KICK := -acbh15.l1b2, polarity=+1; - MCO.B15L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B15L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C15L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C15L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B15L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B15L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A15L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A15L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A15L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A15L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.14L1.B2, K1 := -kqtd.a81b2, polarity=-1; - MQ.14L1.B2, K1 := -kqd.a81, polarity=-1; - MS.14L1.B2, K2 := -ksd1.a81b2, polarity=-1; - MCBV.14L1.B2, KICK := -acbv14.l1b2, polarity=+1; - MB.C14L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C14L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.14L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.14L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B14L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B14L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A14L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A14L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.13L1.B2, K1 := -kqt13.l1b2, polarity=+1; - MQ.13L1.B2, K1 := -kqf.a81, polarity=+1; - MS.13L1.B2, K2 := -ksf1.a81b2, polarity=+1; - MCBH.13L1.B2, KICK := -acbh13.l1b2, polarity=+1; - MCO.B13L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.B13L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.C13L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C13L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.B13L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B13L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCO.A13L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.A13L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.A13L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A13L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQT.12L1.B2, K1 := -kqt12.l1b2, polarity=-1; - MQ.12L1.B2, K1 := -kqd.a81, polarity=-1; - MS.12L1.B2, K2 := -ksd2.a81b2, polarity=-1; - MCBV.12L1.B2, KICK := -acbv12.l1b2, polarity=+1; - MB.C12L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.C12L1.B2, K2 := -kcs.a81b2, polarity=+1; - MCD.12L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B12L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B12L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A12L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A12L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQ.11L1.B2, K1 := -kqf.a81, polarity=+1; - MQTLI.11L1.B2, K1 := -kqtl11.l1b2, polarity=+1; - MS.11L1.B2, K2 := -ksf2.a81b2, polarity=+1; - MCBH.11L1.B2, KICK := -acbh11.l1b2, polarity=+1; - MCD.11L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B11L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B11L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A11L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A11L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQML.10L1.B2, K1 := -kq10.l1b2, polarity=-1; - MCBCV.10L1.B2, KICK := -acbcv10.l1b2, polarity=+1; - MCO.10L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.10L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B10L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B10L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A10L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A10L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQMC.9L1.B2, K1 := -kq9.l1b2, polarity=+1; - MQM.9L1.B2, K1 := -kq9.l1b2, polarity=+1; - MCBCH.9L1.B2, KICK := -acbch9.l1b2, polarity=+1; - MCO.9L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.9L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B9L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B9L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A9L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A9L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQML.8L1.B2, K1 := -kq8.l1b2, polarity=-1; - MCBCV.8L1.B2, KICK := -acbcv8.l1b2, polarity=+1; - MCO.8L1.B2, KNL := {0, 0, 0, -kco.a81b2*l.MCO, 0}, polarity=+1; - MCD.8L1.B2, KNL := {0, 0, 0, 0, -kcd.a81b2*l.MCD}, polarity=+1; - MB.B8L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.B8L1.B2, K2 := -kcs.a81b2, polarity=+1; - MB.A8L1.B2, ANGLE := -ab.a81, K0 := -kb.a81, polarity=+1; - MCS.A8L1.B2, K2 := -kcs.a81b2, polarity=+1; - MQM.B7L1.B2, K1 := -kq7.l1b2, polarity=+1; - MQM.A7L1.B2, K1 := -kq7.l1b2, polarity=+1; - MCBCH.7L1.B2, KICK := -acbch7.l1b2, polarity=+1; - MCBCV.6L1.B2, KICK := -acbcv6.l1b2, polarity=+1; - MQML.6L1.B2, K1 := -kq6.l1b2, polarity=-1; - MCBCH.5L1.B2, KICK := -acbch5.l1b2, polarity=+1; - MQML.5L1.B2, K1 := -kq5.l1b2, polarity=+1; - MQY.4L1.B2, K1 := -kq4.l1b2, polarity=-1; - MCBYV.B4L1.B2, KICK := -acbyv4.l1b2, polarity=+1; - MCBYH.4L1.B2, KICK := -acbyhs4.l1b2, polarity=+1; - MCBYV.A4L1.B2, KICK := -acbyvs4.l1b2, polarity=+1; - MBRC.4L1.B2, ANGLE := -ad2.l1, K0 := -kd2.l1, polarity=+1; - MBXW.F4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.E4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.D4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.C4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.B4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MBXW.A4L1, ANGLE := ad1.lr1, K0 := kd1.lr1, polarity=+1; - MCOX.3L1, KNL := {0, 0, 0, kcox3.l1*l.MCOX}, polarity=+1; - MCSSX.3L1, KSL := {0, 0, kcssx3.l1*l.MCSSX, 0}, polarity=-1; - MCBXH.3L1, KICK := acbxh3.l1, polarity=+1; - MCBXV.3L1, KICK := acbxv3.l1, polarity=+1; - MCSX.3L1, KNL := {0, 0, kcsx3.l1*l.MCSX, 0, 0, 0}, polarity=+1; - MCTX.3L1, KNL := {0, 0, 0, 0, 0, kctx3.l1*l.MCTX}, polarity=+1; - MQXA.3L1, K1 := kqx.l1, polarity=-1; - MQSX.3L1, K1S := kqsx3.l1, polarity=-1; - MQXB.B2L1, K1 := -kqx.l1-ktqx2.l1, polarity=+1; - MCBXH.2L1, KICK := acbxh2.l1, polarity=+1; - MCBXV.2L1, KICK := acbxv2.l1, polarity=+1; - MQXB.A2L1, K1 := -kqx.l1-ktqx2.l1, polarity=+1; - MCBXH.1L1, KICK := acbxh1.l1, polarity=+1; - MCBXV.1L1, KICK := acbxv1.l1, polarity=+1; - MQXA.1L1, K1 := kqx.l1+ktqx1.l1, polarity=-1; - MBAS2.1L1, KS := abas; - -/************************************************************************************/ -/* Kmax at 4.5K */ -/************************************************************************************/ - - MBRC.4R1.B1, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MCBYV.A4R1.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.4R1.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.B4R1.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.4R1.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBCH.5R1.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.5R1.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCV.6R1.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.6R1.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCV.6L2.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.6L2.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQM.6L2.B1, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBYH.B5L2.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.5L2.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.A5L2.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.B5L2.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.A5L2.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.B4L2.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.A4L2.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.B4L2.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.4L2.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.A4L2.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MBRC.4L2.B1, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MBRC.4R2.B1, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MCBYH.A4R2.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.4R2.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.B4R2.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.A4R2.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.B4R2.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBCV.A5R2.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MCBCH.5R2.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MCBCV.B5R2.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQM.A5R2.B1, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MQM.B5R2.B1, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBCH.6R2.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.6R2.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQM.6R2.B1, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBCH.6L3.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQTLH.F6L3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.E6L3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.D6L3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.C6L3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.B6L3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.A6L3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MCBCV.6R3.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQTLH.A6R3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.B6R3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.C6R3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.D6R3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.E6R3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.F6R3.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQY.6L4.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.6L4.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.5L4.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.5L4.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MBRB.5L4.B1, Kmax := Kmax_MBRB_4.5K, Kmin := Kmin_MBRB_4.5K, Calib := Kmax_MBRB_4.5K / Imax_MBRB_4.5K; - MBRS.5L4.B1, Kmax := Kmax_MBRS_4.5K, Kmin := Kmin_MBRS_4.5K, Calib := Kmax_MBRS_4.5K / Imax_MBRS_4.5K; - MBRS.5R4.B1, Kmax := Kmax_MBRS_4.5K, Kmin := Kmin_MBRS_4.5K, Calib := Kmax_MBRS_4.5K / Imax_MBRS_4.5K; - MBRB.5R4.B1, Kmax := Kmax_MBRB_4.5K, Kmin := Kmin_MBRB_4.5K, Calib := Kmax_MBRB_4.5K / Imax_MBRB_4.5K; - MCBYV.5R4.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.5R4.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.6R4.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.6R4.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQML.6L5.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCH.6L5.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.5L5.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCV.5L5.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQY.4L5.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.B4L5.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.4L5.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.A4L5.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MBRC.4L5.B1, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MBRC.4R5.B1, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MCBYV.A4R5.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.4R5.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.B4R5.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.4R5.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQML.5R5.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCH.5R5.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.6R5.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCV.6R5.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQY.5L6.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.5L6.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.4L6.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.4L6.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.4R6.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.4R6.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.5R6.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.5R6.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQTLH.F6L7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.E6L7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.D6L7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.C6L7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.B6L7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.A6L7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MCBCH.6L7.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQTLH.A6R7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.B6R7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.C6R7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.D6R7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.E6R7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.F6R7.B1, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MCBCV.6R7.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MCBCV.6L8.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.6L8.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQM.6L8.B1, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBCH.B5L8.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MCBCV.5L8.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MCBCH.A5L8.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQM.B5L8.B1, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MQM.A5L8.B1, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MQY.B4L8.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.A4L8.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.B4L8.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.4L8.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.A4L8.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MBRC.4L8.B1, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MBRC.4R8.B1, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MCBYH.A4R8.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.4R8.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.B4R8.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.A4R8.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.B4R8.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.A5R8.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.B5R8.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.A5R8.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.5R8.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.B5R8.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBCH.6R8.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.6R8.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQM.6R8.B1, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBCH.6L1.B1, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.6L1.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCV.5L1.B1, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.5L1.B1, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQY.4L1.B1, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.B4L1.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.4L1.B1, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.A4L1.B1, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MBRC.4L1.B1, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MBRC.4R1.B2, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MCBYH.A4R1.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.4R1.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.B4R1.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.4R1.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBCV.5R1.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.5R1.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCH.6R1.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.6R1.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCH.6L2.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.6L2.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQM.6L2.B2, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBYV.B5L2.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.5L2.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.A5L2.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.B5L2.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.A5L2.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.B4L2.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.A4L2.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.B4L2.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.4L2.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.A4L2.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MBRC.4L2.B2, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MBRC.4R2.B2, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MCBYV.A4R2.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.4R2.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.B4R2.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.A4R2.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.B4R2.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBCH.A5R2.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MCBCV.5R2.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MCBCH.B5R2.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQM.A5R2.B2, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MQM.B5R2.B2, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBCV.6R2.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.6R2.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQM.6R2.B2, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBCV.6L3.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQTLH.F6L3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.E6L3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.D6L3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.C6L3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.B6L3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.A6L3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MCBCH.6R3.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQTLH.A6R3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.B6R3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.C6R3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.D6R3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.E6R3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.F6R3.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQY.6L4.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.6L4.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.5L4.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.5L4.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MBRB.5L4.B2, Kmax := Kmax_MBRB_4.5K, Kmin := Kmin_MBRB_4.5K, Calib := Kmax_MBRB_4.5K / Imax_MBRB_4.5K; - MBRS.5L4.B2, Kmax := Kmax_MBRS_4.5K, Kmin := Kmin_MBRS_4.5K, Calib := Kmax_MBRS_4.5K / Imax_MBRS_4.5K; - MBRS.5R4.B2, Kmax := Kmax_MBRS_4.5K, Kmin := Kmin_MBRS_4.5K, Calib := Kmax_MBRS_4.5K / Imax_MBRS_4.5K; - MBRB.5R4.B2, Kmax := Kmax_MBRB_4.5K, Kmin := Kmin_MBRB_4.5K, Calib := Kmax_MBRB_4.5K / Imax_MBRB_4.5K; - MCBYH.5R4.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.5R4.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.6R4.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.6R4.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQML.6L5.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCV.6L5.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.5L5.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCH.5L5.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQY.4L5.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.B4L5.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.4L5.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.A4L5.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MBRC.4L5.B2, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MBRC.4R5.B2, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MCBYH.A4R5.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.4R5.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.B4R5.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.4R5.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQML.5R5.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCV.5R5.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.6R5.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCH.6R5.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQY.5L6.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.5L6.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.4L6.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.4L6.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQY.4R6.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.4R6.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.5R6.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.5R6.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MQTLH.F6L7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.E6L7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.D6L7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.C6L7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.B6L7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.A6L7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MCBCV.6L7.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQTLH.A6R7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.B6R7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.C6R7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.D6R7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.E6R7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MQTLH.F6R7.B2, Kmax := Kmax_MQTLH_4.5K, Kmin := Kmin_MQTLH_4.5K, Calib := Kmax_MQTLH_4.5K / Imax_MQTLH_4.5K; - MCBCH.6R7.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MCBCH.6L8.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.6L8.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQM.6L8.B2, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBCV.B5L8.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MCBCH.5L8.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MCBCV.A5L8.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQM.B5L8.B2, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MQM.A5L8.B2, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MQY.B4L8.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.A4L8.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.B4L8.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.4L8.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.A4L8.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MBRC.4L8.B2, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MBRC.4R8.B2, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - MCBYV.A4R8.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.4R8.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.B4R8.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MQY.A4R8.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.B4R8.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.A5R8.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MQY.B5R8.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYH.A5R8.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.5R8.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.B5R8.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBCV.6R8.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.6R8.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQM.6R8.B2, Kmax := Kmax_MQM_4.5K, Kmin := Kmin_MQM_4.5K, Calib := Kmax_MQM_4.5K / Imax_MQM_4.5K; - MCBCV.6L1.B2, Kmax := Kmax_MCBCV_4.5K, Kmin := Kmin_MCBCV_4.5K, Calib := Kmax_MCBCV_4.5K / Imax_MCBCV_4.5K; - MQML.6L1.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MCBCH.5L1.B2, Kmax := Kmax_MCBCH_4.5K, Kmin := Kmin_MCBCH_4.5K, Calib := Kmax_MCBCH_4.5K / Imax_MCBCH_4.5K; - MQML.5L1.B2, Kmax := Kmax_MQML_4.5K, Kmin := Kmin_MQML_4.5K, Calib := Kmax_MQML_4.5K / Imax_MQML_4.5K; - MQY.4L1.B2, Kmax := Kmax_MQY_4.5K, Kmin := Kmin_MQY_4.5K, Calib := Kmax_MQY_4.5K / Imax_MQY_4.5K; - MCBYV.B4L1.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MCBYH.4L1.B2, Kmax := Kmax_MCBYH_4.5K, Kmin := Kmin_MCBYH_4.5K, Calib := Kmax_MCBYH_4.5K / Imax_MCBYH_4.5K; - MCBYV.A4L1.B2, Kmax := Kmax_MCBYV_4.5K, Kmin := Kmin_MCBYV_4.5K, Calib := Kmax_MCBYV_4.5K / Imax_MCBYV_4.5K; - MBRC.4L1.B2, Kmax := Kmax_MBRC_4.5K, Kmin := Kmin_MBRC_4.5K, Calib := Kmax_MBRC_4.5K / Imax_MBRC_4.5K; - - -/************************************************************************************/ -/* ACSCA CAVITIES */ -/************************************************************************************/ - - ACSCA.D5L4.B1, VOLT := VRF400/8, LAG := LAGRF400.B1; - ACSCA.C5L4.B1, VOLT := VRF400/8, LAG := LAGRF400.B1; - ACSCA.B5L4.B1, VOLT := VRF400/8, LAG := LAGRF400.B1; - ACSCA.A5L4.B1, VOLT := VRF400/8, LAG := LAGRF400.B1; - ACSCA.A5R4.B1, VOLT := VRF400/8, LAG := LAGRF400.B1; - ACSCA.B5R4.B1, VOLT := VRF400/8, LAG := LAGRF400.B1; - ACSCA.C5R4.B1, VOLT := VRF400/8, LAG := LAGRF400.B1; - ACSCA.D5R4.B1, VOLT := VRF400/8, LAG := LAGRF400.B1; - ACSCA.D5L4.B2, VOLT := VRF400/8, LAG := LAGRF400.B2; - ACSCA.C5L4.B2, VOLT := VRF400/8, LAG := LAGRF400.B2; - ACSCA.B5L4.B2, VOLT := VRF400/8, LAG := LAGRF400.B2; - ACSCA.A5L4.B2, VOLT := VRF400/8, LAG := LAGRF400.B2; - ACSCA.A5R4.B2, VOLT := VRF400/8, LAG := LAGRF400.B2; - ACSCA.B5R4.B2, VOLT := VRF400/8, LAG := LAGRF400.B2; - ACSCA.C5R4.B2, VOLT := VRF400/8, LAG := LAGRF400.B2; - ACSCA.D5R4.B2, VOLT := VRF400/8, LAG := LAGRF400.B2; - -return; \ No newline at end of file diff --git a/examples/acc-models-lhc/operation/optics/R2022a_A11mC11mA10mL10m.madx b/examples/acc-models-lhc/operation/optics/R2022a_A11mC11mA10mL10m.madx deleted file mode 100644 index 0af60c45..00000000 --- a/examples/acc-models-lhc/operation/optics/R2022a_A11mC11mA10mL10m.madx +++ /dev/null @@ -1,10 +0,0 @@ -! JMad export of model LHC 2022 optic R2022a_A11mC11mA10mL10m - - -call, file="acc-models-lhc/toolkit/zero-strengths.madx"; -call, file="acc-models-lhc/strengths/ATS_Nominal/2022/ramp/ats_11m.madx"; -call, file="acc-models-lhc/toolkit/reset-bump-flags.madx"; -call, file="acc-models-lhc/toolkit/match-lumiknobs.madx"; -call, file="acc-models-lhc/toolkit/generate-op-tune-knobs-ats.madx"; -call, file="acc-models-lhc/toolkit/generate-op-chroma-knobs-ats.madx"; -call, file="acc-models-lhc/toolkit/generate-op-coupling-knobs-ats.madx"; diff --git a/examples/acc-models-lhc/operation/optics/R2022a_A30cmC30cmA10mL200cm.madx b/examples/acc-models-lhc/operation/optics/R2022a_A30cmC30cmA10mL200cm.madx deleted file mode 100755 index 0bb9124a..00000000 --- a/examples/acc-models-lhc/operation/optics/R2022a_A30cmC30cmA10mL200cm.madx +++ /dev/null @@ -1,11 +0,0 @@ -! JMad export of model LHC 2022 optic R2022a_A30cmC30cmA10mL200cm -! Generated: 2022-04-04T13:29:35.583822Z - - -call, file="acc-models-lhc/toolkit/zero-strengths.madx"; -call, file="acc-models-lhc/strengths/ATS_Nominal/2022/squeeze/ats_30cm.madx"; -call, file="acc-models-lhc/toolkit/reset-bump-flags.madx"; -call, file="acc-models-lhc/toolkit/match-lumiknobs.madx"; -call, file="acc-models-lhc/toolkit/generate-op-tune-knobs-ats.madx"; -call, file="acc-models-lhc/toolkit/generate-op-chroma-knobs-ats.madx"; -call, file="acc-models-lhc/toolkit/generate-op-coupling-knobs-ats.madx"; diff --git a/examples/acc-models-lhc/strengths/ATS_Nominal/2022/ramp/ats_11m.madx b/examples/acc-models-lhc/strengths/ATS_Nominal/2022/ramp/ats_11m.madx deleted file mode 100644 index 5f4e630d..00000000 --- a/examples/acc-models-lhc/strengths/ATS_Nominal/2022/ramp/ats_11m.madx +++ /dev/null @@ -1,1562 +0,0 @@ -NRJ := 450.000000 ; -ARC_SQUEEZE := 0.000000 ; - - !***BETAS in IR1 and IR5*** -betx_IP1 := 11.000000 ; -bety_IP1 := 11.000000 ; -betx_IP5 := 11.000000 ; -bety_IP5 := 11.000000 ; - - !***TELE-INDEX in IR1 and IR5*** - rx_IP1 := 1.000000 ; - ry_IP1 := 1.000000 ; - rx_IP5 := 1.000000 ; - ry_IP5 := 1.000000 ; - - !***Exp. configuration in IR1, IR2, IR5 and IR8*** - - !** IR1 -on_x1 := 170.000 ; -on_sep1 := -2.000 ; - on_oh1 := 0.000 ; - on_ov1 := 0.000 ; - phi_IR1:= 90.000 ; -on_sep1_h :=on_sep1 ; -on_sep1_v := 0 ; -on_x1_h := 0 ; -on_x1_v := on_x1 ; -!*on_ssep1_h:=on_sep1_h; -!*on_ssep1_v:=on_sep1_v; -!*on_xx1_h:=on_x1_h ; -!*on_xx1_v:=on_x1_v ; - - !** IR5 -on_x5 := 170.000 ; -on_sep5 := 2.000 ; - on_oh5 := 0.000 ; - on_ov5 := 0.000 ; - phi_IR5:= 0.000 ; -on_sep5_h := 0 ; -on_sep5_v :=on_sep5 ; -on_x5_h := on_x5 ; -on_x5_v := 0 ; -!*on_ssep5_h:=on_sep5_h; -!*on_ssep5_v:=on_sep5_v; -!*on_xx5_h:=on_x5_h ; -!*on_xx5_v:=on_x5_v ; - - !**Spurious dispersion correction -on_disp := 0.000 ; - - !** IR2 - on_x2h := 0.000 ; - on_sep2h:= 3.500 ; - on_x2v := 170.000 ; - on_sep2v:= 0.000 ; - on_a2 := -40.000 ; - on_o2 := 0.000 ; - on_oh2 := 0.000 ; - on_ov2 := 0.000 ; - phi_IR2 := 90.000 ; - - !** IR8 - on_x8h := -170.000 ; - on_sep8h:= 0.000 ; - on_x8v := 0.000 ; - on_sep8v:= -3.500 ; - on_a8 := -40.000 ; - on_o8 := 0.000 ; - on_oh8 := 0.000 ; - on_ov8 := 0.000 ; - phi_IR8 := 180.000 ; - - !** Experimental solenoids -abas:= 12.00/ 6.0*clight/(7E12)*on_sol_atlas; -abls:= 6.05/12.1*clight/(7E12)*on_sol_alice ; -abcs:= 52.00/13.0*clight/(7E12)*on_sol_cms ; - - !***Ring Geometry*** - - !Separation/recombination dipoles -kd1.lr1 := ad1.lr1/l.mbxw; -kd2.l1 := ad2.l5/l.mbrc ; -kd2.r1 := ad2.r5/l.mbrc ; -kd1.l2 := ad1.l2/l.mbx ; -kd1.r2 := ad1.r2/l.mbx ; -kd2.l2 := ad2.l2/l.mbrc ; -kd2.r2 := ad2.r2/l.mbrc ; -kd3.lr3 := ad3.lr3/l.mbw ; -kd4.lr3 := ad4.lr3/l.mbw ; -kd3.l4 := ad3.l4/l.mbrs ; -kd3.r4 := ad3.r4/l.mbrs ; -kd4.l4 := ad4.l4/l.mbrb ; -kd4.r4 := ad4.r4/l.mbrb ; -kd34.lr3 := ad3.lr3/l.mbw ; -kd34.lr7 := ad3.lr7/l.mbw ; -kd1.lr5 := ad1.lr5/l.mbxw; -kd2.l5 := ad2.l5/l.mbrc ; -kd2.r5 := ad2.r5/l.mbrc ; -kd3.lr7 := ad3.lr7/l.mbw ; -kd4.lr7 := ad4.lr7/l.mbw ; -kd1.l8 := ad1.l8/l.mbx ; -kd1.r8 := ad1.r8/l.mbx ; -kd2.l8 := ad2.l8/l.mbrc ; -kd2.r8 := ad2.r8/l.mbrc ; -ksumd2.l1b2 := kd2.l1 ; -ksumd2.l2b2 := kd2.l2 ; -ksumd2.l5b2 := kd2.l5 ; -ksumd2.l8b2 := kd2.l8 ; -ksumd2.r1b2 := kd2.l1 ; -ksumd2.r2b2 := kd2.l2 ; -ksumd2.r5b2 := kd2.l5 ; -ksumd2.r8b2 := kd2.l8 ; - - !Main dipoles -kb.a12 := ab.a12/l.mb ; -kb.a23 := ab.a23/l.mb ; -kb.a34 := ab.a34/l.mb ; -kb.a45 := ab.a45/l.mb ; -kb.a56 := ab.a56/l.mb ; -kb.a67 := ab.a67/l.mb ; -kb.a78 := ab.a78/l.mb ; -kb.a81 := ab.a81/l.mb ; - - !***IR1 Optics*** -KQX.L1 := -0.854562504357E-02 ; -KTQX1.L1 := 0.000000000000E+00 ; -KTQX2.L1 := 0.000000000000E+00 ; -KQX.R1 := -KQX.L1 ; -KTQX1.R1 := -KTQX1.L1 ; -KTQX2.R1 := -KTQX2.L1 ; - - !Beam1 -KQ4.L1B1 := 0.532939746961E-02 ; -KQ4.R1B1 := -0.532939746961E-02 ; -KQ5.L1B1 := -0.549310859055E-02 ; -KQ5.R1B1 := 0.549310859055E-02 ; -KQ6.L1B1 := 0.499494557346E-02 ; -KQ6.R1B1 := -0.499494557346E-02 ; -KQ7.L1B1 := -0.456683783331E-02 ; -KQ7.R1B1 := 0.448901787695E-02 ; -KQ8.L1B1 := 0.732209287546E-02 ; -KQ8.R1B1 := -0.733784873620E-02 ; -KQ9.L1B1 := -0.680559079530E-02 ; -KQ9.R1B1 := 0.686826741479E-02 ; -KQ10.L1B1 := 0.723117774947E-02 ; -KQ10.R1B1 := -0.717547782475E-02 ; -KQTL11.L1B1 := -0.568441367868E-03 ; -KQTL11.R1B1 := 0.447635694271E-03 ; -KQT12.L1B1 := 0.875025120228E-04 ; -KQT12.R1B1 := 0.251274473750E-02 ; -KQT13.L1B1 := -0.242130986821E-02 ; -KQT13.R1B1 := 0.719121815526E-04 ; - - !Beam2 -KQ4.L1B2 := -0.480712170430E-02 ; -KQ4.R1B2 := 0.480712170430E-02 ; -KQ5.L1B2 := 0.509850806769E-02 ; -KQ5.R1B2 := -0.509850806769E-02 ; -KQ6.L1B2 := -0.501561197551E-02 ; -KQ6.R1B2 := 0.501561197551E-02 ; -KQ7.L1B2 := 0.477695999326E-02 ; -KQ7.R1B2 := -0.472762660695E-02 ; -KQ8.L1B2 := -0.710402639207E-02 ; -KQ8.R1B2 := 0.709847080621E-02 ; -KQ9.L1B2 := 0.709604793831E-02 ; -KQ9.R1B2 := -0.712819245801E-02 ; -KQ10.L1B2 := -0.733748351116E-02 ; -KQ10.R1B2 := 0.731101565147E-02 ; -KQTL11.L1B2 := 0.598240054096E-03 ; -KQTL11.R1B2 := -0.479983721888E-03 ; -KQT12.L1B2 := -0.902980664653E-03 ; -KQT12.R1B2 := -0.117280120507E-02 ; -KQT13.L1B2 := 0.171100605794E-02 ; -KQT13.R1B2 := -0.259385575933E-03 ; - - !***IR1 X-scheme*** -ACBXV1.L1x := 0.549019607843E-07 ; -ACBXV1.L1s := -0.800000000000E-05 ; -ACBXV1.L1 := ( 0.549019607843E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXV1.R1x := -0.549019607843E-07 ; -ACBXV1.R1s := -0.800000000000E-05 ; -ACBXV1.R1 := ( -0.549019607843E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXH1.L1x := 0.549019607843E-07 ; -ACBXH1.L1s := 0.800000000000E-05 ; -ACBXH1.L1 := ( 0.549019607843E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXH1.R1x := -0.549019607843E-07 ; -ACBXH1.R1s := 0.800000000000E-05 ; -ACBXH1.R1 := ( -0.549019607843E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXV2.L1x := 0.549019607843E-07 ; -ACBXV2.L1s := -0.800000000000E-05 ; -ACBXV2.L1 := ( 0.549019607843E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXV2.R1x := -0.549019607843E-07 ; -ACBXV2.R1s := -0.800000000000E-05 ; -ACBXV2.R1 := ( -0.549019607843E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXH2.L1x := 0.549019607843E-07 ; -ACBXH2.L1s := 0.800000000000E-05 ; -ACBXH2.L1 := ( 0.549019607843E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXH2.R1x := -0.549019607843E-07 ; -ACBXH2.R1s := 0.800000000000E-05 ; -ACBXH2.R1 := ( -0.549019607843E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXV3.L1x := 0.549019607843E-07 ; -ACBXV3.L1s := -0.800000000000E-05 ; -ACBXV3.L1 := ( 0.549019607843E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXV3.R1x := -0.549019607843E-07 ; -ACBXV3.R1s := -0.800000000000E-05 ; -ACBXV3.R1 := ( -0.549019607843E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXH3.L1x := 0.549019607843E-07 ; -ACBXH3.L1s := 0.800000000000E-05 ; -ACBXH3.L1 := ( 0.549019607843E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXH3.R1x := -0.549019607843E-07 ; -ACBXH3.R1s := 0.800000000000E-05 ; -ACBXH3.R1 := ( -0.549019607843E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; - - !Beam1 -ACBYVS4.L1B1x := -0.238960627295E-06 ; -ACBYVS4.L1B1s := -0.213926221358E-04 ; -ACBYVS4.L1B1ov:= 0.243888055356E-04 ; -ACBYVS4.L1B1 := ( -0.238960627295E-06 )*on_x1_v+( -0.213926221358E-04 )*on_sep1_v+( 0.243888055356E-04 )*on_ov1; -ACBYVS4.R1B1x := 0.983050840700E-07 ; -ACBYVS4.R1B1s := 0.313262793246E-05 ; -ACBYVS4.R1B1ov:= 0.103683643244E-04 ; -ACBYVS4.R1B1 := ( 0.983050840700E-07 )*on_x1_v+( 0.313262793246E-05 )*on_sep1_v+( 0.103683643244E-04 )*on_ov1; -ACBCV5.L1B1x := -0.897503400093E-07 ; -ACBCV5.L1B1s := 0.906000825746E-05 ; -ACBCV5.L1B1ov := 0.227603525803E-04 ; -ACBCV5.L1B1 := ( -0.897503400093E-07 )*on_x1_v+( 0.906000825746E-05 )*on_sep1_v+( 0.227603525803E-04 )*on_ov1; -ACBCV6.R1B1x := 0.168417771323E-06 ; -ACBCV6.R1B1s := -0.104145657263E-04 ; -ACBCV6.R1B1ov := 0.967606336277E-05 ; -ACBCV6.R1B1 := ( 0.168417771323E-06 )*on_x1_v+( -0.104145657263E-04 )*on_sep1_v+( 0.967606336277E-05 )*on_ov1; -ACBYHS4.L1B1x := -0.110276141294E-06 ; -ACBYHS4.L1B1s := -0.239228162795E-05 ; -ACBYHS4.L1B1oh:= 0.109403349767E-04 ; -ACBYHS4.L1B1 := ( -0.110276141294E-06 )*on_x1_h+( -0.239228162795E-05 )*on_sep1_h+( 0.109403349767E-04 )*on_oh1; -ACBYHS4.R1B1x := 0.220934724398E-06 ; -ACBYHS4.R1B1s := 0.232106850028E-04 ; -ACBYHS4.R1B1oh:= 0.220185968638E-04 ; -ACBYHS4.R1B1 := ( 0.220934724398E-06 )*on_x1_h+( 0.232106850028E-04 )*on_sep1_h+( 0.220185968638E-04 )*on_oh1; -ACBCH6.L1B1x := -0.159508355581E-06 ; -ACBCH6.L1B1s := 0.986356371258E-05 ; -ACBCH6.L1B1oh := 0.102098432436E-04 ; -ACBCH6.L1B1 := ( -0.159508355581E-06 )*on_x1_h+( 0.986356371258E-05 )*on_sep1_h+( 0.102098432436E-04 )*on_oh1; -ACBCH5.R1B1x := 0.101918482920E-06 ; -ACBCH5.R1B1s := -0.102874530490E-04 ; -ACBCH5.R1B1oh := 0.205484039475E-04 ; -ACBCH5.R1B1 := ( 0.101918482920E-06 )*on_x1_h+( -0.102874530490E-04 )*on_sep1_h+( 0.205484039475E-04 )*on_oh1; -ACBCH8.L1B1oh := -0.223268262538E-04 ; -ACBCH8.L1B1 := ( -0.223268262538E-04)*on_oh1; -ACBCV7.L1B1ov := -0.393902876746E-04 ; -ACBCV7.L1B1 := ( -0.393902876746E-04)*on_ov1; -ACBCH7.R1B1oh := -0.377177579090E-04 ; -ACBCH7.R1B1 := ( -0.377177579090E-04)*on_oh1; -ACBCV8.R1B1ov := -0.225071599802E-04 ; -ACBCV8.R1B1 := ( -0.225071599802E-04)*on_ov1; - - !Beam2 -ACBYVS4.L1B2x := 0.924432833657E-07 ; -ACBYVS4.L1B2s := -0.349510819116E-05 ; -ACBYVS4.L1B2ov:= 0.123686048725E-04 ; -ACBYVS4.L1B2 := ( 0.924432833657E-07 )*on_x1_v+( -0.349510819116E-05 )*on_sep1_v+( 0.123686048725E-04 )*on_ov1; -ACBYVS4.R1B2x := -0.224563718073E-06 ; -ACBYVS4.R1B2s := 0.228459436339E-04 ; -ACBYVS4.R1B2ov:= 0.234429686230E-04 ; -ACBYVS4.R1B2 := ( -0.224563718073E-06 )*on_x1_v+( 0.228459436339E-04 )*on_sep1_v+( 0.234429686230E-04 )*on_ov1; -ACBCV6.L1B2x := 0.161872533892E-06 ; -ACBCV6.L1B2s := 0.100098234838E-04 ; -ACBCV6.L1B2ov := 0.115427468317E-04 ; -ACBCV6.L1B2 := ( 0.161872533892E-06 )*on_x1_v+( 0.100098234838E-04 )*on_sep1_v+( 0.115427468317E-04 )*on_ov1; -ACBCV5.R1B2x := -0.102478345969E-06 ; -ACBCV5.R1B2s := -0.103448593934E-04 ; -ACBCV5.R1B2ov := 0.218776696796E-04 ; -ACBCV5.R1B2 := ( -0.102478345969E-06 )*on_x1_v+( -0.103448593934E-04 )*on_sep1_v+( 0.218776696796E-04 )*on_ov1; -ACBYHS4.L1B2x := 0.242711053793E-06 ; -ACBYHS4.L1B2s := -0.210126288317E-04 ; -ACBYHS4.L1B2oh:= 0.257613904862E-04 ; -ACBYHS4.L1B2 := ( 0.242711053793E-06 )*on_x1_h+( -0.210126288317E-04 )*on_sep1_h+( 0.257613904862E-04 )*on_oh1; -ACBYHS4.R1B2x := -0.801291730920E-07 ; -ACBYHS4.R1B2s := 0.425649177212E-05 ; -ACBYHS4.R1B2oh:= 0.117943365273E-04 ; -ACBYHS4.R1B2 := ( -0.801291730920E-07 )*on_x1_h+( 0.425649177212E-05 )*on_sep1_h+( 0.117943365273E-04 )*on_oh1; -ACBCH5.L1B2x := 0.897888250373E-07 ; -ACBCH5.L1B2s := 0.906311195827E-05 ; -ACBCH5.L1B2oh := 0.240412893353E-04 ; -ACBCH5.L1B2 := ( 0.897888250373E-07 )*on_x1_h+( 0.906311195827E-05 )*on_sep1_h+( 0.240412893353E-04 )*on_oh1; -ACBCH6.R1B2x := -0.170602962675E-06 ; -ACBCH6.R1B2s := -0.105496309899E-04 ; -ACBCH6.R1B2oh := 0.110068226761E-04 ; -ACBCH6.R1B2 := ( -0.170602962675E-06 )*on_x1_h+( -0.105496309899E-04 )*on_sep1_h+( 0.110068226761E-04 )*on_oh1; -ACBCV8.L1B2ov := -0.231366909020E-04 ; -ACBCV8.L1B2 := ( -0.231366909020E-04)*on_ov1; -ACBCH7.L1B2oh := -0.376095212107E-04 ; -ACBCH7.L1B2 := ( -0.376095212107E-04)*on_oh1; -ACBCV7.R1B2ov := -0.361136185547E-04 ; -ACBCV7.R1B2 := ( -0.361136185547E-04)*on_ov1; -ACBCH8.R1B2oh := -0.231010415515E-04 ; -ACBCH8.R1B2 := ( -0.231010415515E-04)*on_oh1; - - !***IR5 Optics*** -KQX.L5 := -0.854562504357E-02 ; -KTQX1.L5 := 0.000000000000E+00 ; -KTQX2.L5 := 0.000000000000E+00 ; -KQX.R5 := -KQX.L5 ; -KTQX1.R5 := -KTQX1.L5 ; -KTQX2.R5 := -KTQX2.L5 ; - - !Beam1 -KQ4.L5B1 := 0.532939746961E-02 ; -KQ4.R5B1 := -0.532939746961E-02 ; -KQ5.L5B1 := -0.549310859055E-02 ; -KQ5.R5B1 := 0.549310859055E-02 ; -KQ6.L5B1 := 0.499494557346E-02 ; -KQ6.R5B1 := -0.499494557346E-02 ; -KQ7.L5B1 := -0.456683783331E-02 ; -KQ7.R5B1 := 0.448901787695E-02 ; -KQ8.L5B1 := 0.732209287546E-02 ; -KQ8.R5B1 := -0.733784873620E-02 ; -KQ9.L5B1 := -0.680559079530E-02 ; -KQ9.R5B1 := 0.686826741479E-02 ; -KQ10.L5B1 := 0.723117774947E-02 ; -KQ10.R5B1 := -0.717547782475E-02 ; -KQTL11.L5B1 := -0.568441367868E-03 ; -KQTL11.R5B1 := 0.447635694271E-03 ; -KQT12.L5B1 := 0.875025120228E-04 ; -KQT12.R5B1 := 0.251274473750E-02 ; -KQT13.L5B1 := -0.242130986821E-02 ; -KQT13.R5B1 := 0.719121815526E-04 ; - - !Beam2 -KQ4.L5B2 := -0.480712170430E-02 ; -KQ4.R5B2 := 0.480712170430E-02 ; -KQ5.L5B2 := 0.509850806769E-02 ; -KQ5.R5B2 := -0.509850806769E-02 ; -KQ6.L5B2 := -0.501561197551E-02 ; -KQ6.R5B2 := 0.501561197551E-02 ; -KQ7.L5B2 := 0.477695999326E-02 ; -KQ7.R5B2 := -0.472762660695E-02 ; -KQ8.L5B2 := -0.710402639207E-02 ; -KQ8.R5B2 := 0.709847080621E-02 ; -KQ9.L5B2 := 0.709604793831E-02 ; -KQ9.R5B2 := -0.712819245801E-02 ; -KQ10.L5B2 := -0.733748351116E-02 ; -KQ10.R5B2 := 0.731101565147E-02 ; -KQTL11.L5B2 := 0.598240054096E-03 ; -KQTL11.R5B2 := -0.479983721888E-03 ; -KQT12.L5B2 := -0.902980664653E-03 ; -KQT12.R5B2 := -0.117280120507E-02 ; -KQT13.L5B2 := 0.171100605794E-02 ; -KQT13.R5B2 := -0.259385575933E-03 ; - - !***IR5 X-scheme*** -ACBXV1.L5x := 0.549019607843E-07 ; -ACBXV1.L5s := 0.800000000000E-05 ; -ACBXV1.L5 := ( 0.549019607843E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXV1.R5x := -0.549019607843E-07 ; -ACBXV1.R5s := 0.800000000000E-05 ; -ACBXV1.R5 := ( -0.549019607843E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXH1.L5x := 0.549019607843E-07 ; -ACBXH1.L5s := -0.800000000000E-05 ; -ACBXH1.L5 := ( 0.549019607843E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXH1.R5x := -0.549019607843E-07 ; -ACBXH1.R5s := -0.800000000000E-05 ; -ACBXH1.R5 := ( -0.549019607843E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXV2.L5x := 0.549019607843E-07 ; -ACBXV2.L5s := 0.800000000000E-05 ; -ACBXV2.L5 := ( 0.549019607843E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXV2.R5x := -0.549019607843E-07 ; -ACBXV2.R5s := 0.800000000000E-05 ; -ACBXV2.R5 := ( -0.549019607843E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXH2.L5x := 0.549019607843E-07 ; -ACBXH2.L5s := -0.800000000000E-05 ; -ACBXH2.L5 := ( 0.549019607843E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXH2.R5x := -0.549019607843E-07 ; -ACBXH2.R5s := -0.800000000000E-05 ; -ACBXH2.R5 := ( -0.549019607843E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXV3.L5x := 0.549019607843E-07 ; -ACBXV3.L5s := 0.800000000000E-05 ; -ACBXV3.L5 := ( 0.549019607843E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXV3.R5x := -0.549019607843E-07 ; -ACBXV3.R5s := 0.800000000000E-05 ; -ACBXV3.R5 := ( -0.549019607843E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXH3.L5x := 0.549019607843E-07 ; -ACBXH3.L5s := -0.800000000000E-05 ; -ACBXH3.L5 := ( 0.549019607843E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXH3.R5x := -0.549019607843E-07 ; -ACBXH3.R5s := -0.800000000000E-05 ; -ACBXH3.R5 := ( -0.549019607843E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; - - !Beam1 -ACBYVS4.L5B1x := -0.220949195645E-06 ; -ACBYVS4.L5B1s := 0.232108182498E-04 ; -ACBYVS4.L5B1ov:= 0.238291621199E-04 ; -ACBYVS4.L5B1 := ( -0.220949195645E-06 )*on_x5_v+( 0.232108182498E-04 )*on_sep5_v+( 0.238291621199E-04 )*on_ov5; -ACBYVS4.R5B1x := 0.110280617994E-06 ; -ACBYVS4.R5B1s := -0.239208859279E-05 ; -ACBYVS4.R5B1ov:= 0.105572715976E-04 ; -ACBYVS4.R5B1 := ( 0.110280617994E-06 )*on_x5_v+( -0.239208859279E-05 )*on_sep5_v+( 0.105572715976E-04 )*on_ov5; -ACBCV5.L5B1x := -0.101910593064E-06 ; -ACBCV5.L5B1s := -0.102875467053E-04 ; -ACBCV5.L5B1ov := 0.222380768403E-04 ; -ACBCV5.L5B1 := ( -0.101910593064E-06 )*on_x5_v+( -0.102875467053E-04 )*on_sep5_v+( 0.222380768403E-04 )*on_ov5; -ACBCV6.R5B1x := 0.159506191946E-06 ; -ACBCV6.R5B1s := 0.986349425437E-05 ; -ACBCV6.R5B1ov := 0.985235720125E-05 ; -ACBCV6.R5B1 := ( 0.159506191946E-06 )*on_x5_v+( 0.986349425437E-05 )*on_sep5_v+( 0.985235720125E-05 )*on_ov5; -ACBYHS4.L5B1x := -0.983004449266E-07 ; -ACBYHS4.L5B1s := 0.313282618249E-05 ; -ACBYHS4.L5B1oh:= 0.107380079522E-04 ; -ACBYHS4.L5B1 := ( -0.983004449266E-07 )*on_x5_h+( 0.313282618249E-05 )*on_sep5_h+( 0.107380079522E-04 )*on_oh5; -ACBYHS4.R5B1x := 0.238947550477E-06 ; -ACBYHS4.R5B1s := -0.213925054414E-04 ; -ACBYHS4.R5B1oh:= 0.224745235292E-04 ; -ACBYHS4.R5B1 := ( 0.238947550477E-06 )*on_x5_h+( -0.213925054414E-04 )*on_sep5_h+( 0.224745235292E-04 )*on_oh5; -ACBCH6.L5B1x := -0.168420055840E-06 ; -ACBCH6.L5B1s := -0.104146390652E-04 ; -ACBCH6.L5B1oh := 0.100210256974E-04 ; -ACBCH6.L5B1 := ( -0.168420055840E-06 )*on_x5_h+( -0.104146390652E-04 )*on_sep5_h+( 0.100210256974E-04 )*on_oh5; -ACBCH5.R5B1x := 0.897572884285E-07 ; -ACBCH5.R5B1s := 0.905992577644E-05 ; -ACBCH5.R5B1oh := 0.209738881576E-04 ; -ACBCH5.R5B1 := ( 0.897572884285E-07 )*on_x5_h+( 0.905992577644E-05 )*on_sep5_h+( 0.209738881576E-04 )*on_oh5; -ACBCH8.L5B1oh := -0.219370052312E-04 ; -ACBCH8.L5B1 := ( -0.219370052312E-04)*on_oh5; -ACBCV7.L5B1ov := -0.380276570706E-04 ; -ACBCV7.L5B1 := ( -0.380276570706E-04)*on_ov5; -ACBCH7.R5B1oh := -0.389631993797E-04 ; -ACBCH7.R5B1 := ( -0.389631993797E-04)*on_oh5; -ACBCV8.R5B1ov := -0.228931104417E-04 ; -ACBCV8.R5B1 := ( -0.228931104417E-04)*on_ov5; - - !Beam2 -ACBYVS4.L5B2x := 0.801340596828E-07 ; -ACBYVS4.L5B2s := 0.425628214283E-05 ; -ACBYVS4.L5B2ov:= 0.121329380580E-04 ; -ACBYVS4.L5B2 := ( 0.801340596828E-07 )*on_x5_v+( 0.425628214283E-05 )*on_sep5_v+( 0.121329380580E-04 )*on_ov5; -ACBYVS4.R5B2x := -0.242723837542E-06 ; -ACBYVS4.R5B2s := -0.210127379873E-04 ; -ACBYVS4.R5B2ov:= 0.239826987798E-04 ; -ACBYVS4.R5B2 := ( -0.242723837542E-06 )*on_x5_v+( -0.210127379873E-04 )*on_sep5_v+( 0.239826987798E-04 )*on_ov5; -ACBCV6.L5B2x := 0.170600646628E-06 ; -ACBCV6.L5B2s := -0.105495498088E-04 ; -ACBCV6.L5B2ov := 0.113228156103E-04 ; -ACBCV6.L5B2 := ( 0.170600646628E-06 )*on_x5_v+( -0.105495498088E-04 )*on_sep5_v+( 0.113228156103E-04 )*on_ov5; -ACBCV5.R5B2x := -0.897818754159E-07 ; -ACBCV5.R5B2s := 0.906319153047E-05 ; -ACBCV5.R5B2ov := 0.223813617792E-04 ; -ACBCV5.R5B2 := ( -0.897818754159E-07 )*on_x5_v+( 0.906319153047E-05 )*on_sep5_v+( 0.223813617792E-04 )*on_ov5; -ACBYHS4.L5B2x := 0.224549528623E-06 ; -ACBYHS4.L5B2s := 0.228458183833E-04 ; -ACBYHS4.L5B2oh:= 0.251161661279E-04 ; -ACBYHS4.L5B2 := ( 0.224549528623E-06 )*on_x5_h+( 0.228458183833E-04 )*on_sep5_h+( 0.251161661279E-04 )*on_oh5; -ACBYHS4.R5B2x := -0.924385638824E-07 ; -ACBYHS4.R5B2s := -0.349531196308E-05 ; -ACBYHS4.R5B2oh:= 0.120170681991E-04 ; -ACBYHS4.R5B2 := ( -0.924385638824E-07 )*on_x5_h+( -0.349531196308E-05 )*on_sep5_h+( 0.120170681991E-04 )*on_oh5; -ACBCH5.L5B2x := 0.102486278372E-06 ; -ACBCH5.L5B2s := -0.103447685685E-04 ; -ACBCH5.L5B2oh := 0.234391469357E-04 ; -ACBCH5.L5B2 := ( 0.102486278372E-06 )*on_x5_h+( -0.103447685685E-04 )*on_sep5_h+( 0.234391469357E-04 )*on_oh5; -ACBCH6.R5B2x := -0.161874731447E-06 ; -ACBCH6.R5B2s := 0.100099005116E-04 ; -ACBCH6.R5B2oh := 0.112146824409E-04 ; -ACBCH6.R5B2 := ( -0.161874731447E-06 )*on_x5_h+( 0.100099005116E-04 )*on_sep5_h+( 0.112146824409E-04 )*on_oh5; -ACBCV8.L5B2ov := -0.227064267043E-04 ; -ACBCV8.L5B2 := ( -0.227064267043E-04)*on_ov5; -ACBCH7.L5B2oh := -0.361933012237E-04 ; -ACBCH7.L5B2 := ( -0.361933012237E-04)*on_oh5; -ACBCV7.R5B2ov := -0.374291564539E-04 ; -ACBCV7.R5B2 := ( -0.374291564539E-04)*on_ov5; -ACBCH8.R5B2oh := -0.235263402012E-04 ; -ACBCH8.R5B2 := ( -0.235263402012E-04)*on_oh5; - - !***IR2 Optics*** -KQX.L2 := 0.950981581300E-02 ; -KTQX1.L2 := 0.000000000000E+00 ; -KTQX2.L2 := 0.000000000000E+00 ; -KQX.R2 := -KQX.L2 ; -KTQX1.R2 := -KTQX1.L2 ; -KTQX2.R2 := -KTQX2.L2 ; - - !Beam1 -KQ4.L2B1 := -0.549274522900E-02 ; -KQ4.R2B1 := 0.471284923000E-02 ; -KQ5.L2B1 := 0.482678438300E-02 ; -KQ5.R2B1 := -0.461752389200E-02 ; -KQ6.L2B1 := -0.412280426800E-02 ; -KQ6.R2B1 := 0.411759641200E-02 ; -KQ7.L2B1 := 0.567093958700E-02 ; -KQ7.R2B1 := -0.558634402600E-02 ; -KQ8.L2B1 := -0.372181911500E-02 ; -KQ8.R2B1 := 0.549676225900E-02 ; -KQ9.L2B1 := 0.569021737800E-02 ; -KQ9.R2B1 := -0.552491220300E-02 ; -KQ10.L2B1 := -0.546840282100E-02 ; -KQ10.R2B1 := 0.725790465900E-02 ; -KQTL11.L2B1 := 0.243572091600E-03 ; -KQTL11.R2B1 := -0.707734797100E-03 ; -KQT12.L2B1 := 0.247915277100E-02 ; -KQT12.R2B1 := -0.212101584500E-02 ; -KQT13.L2B1 := -0.361161054600E-02 ; -KQT13.R2B1 := -0.565934150300E-03 ; - - !Beam2 -KQ4.L2B2 := 0.452521222318E-02 ; -KQ4.R2B2 := -0.500626968981E-02 ; -KQ5.L2B2 := -0.405061343361E-02 ; -KQ5.R2B2 := 0.467063541927E-02 ; -KQ6.L2B2 := 0.406368933511E-02 ; -KQ6.R2B2 := -0.406381317453E-02 ; -KQ7.L2B2 := -0.640786355563E-02 ; -KQ7.R2B2 := 0.582033421128E-02 ; -KQ8.L2B2 := 0.633750244207E-02 ; -KQ8.R2B2 := -0.396639924046E-02 ; -KQ9.L2B2 := -0.689032817327E-02 ; -KQ9.R2B2 := 0.589585691962E-02 ; -KQ10.L2B2 := 0.725229605511E-02 ; -KQ10.R2B2 := -0.569250285723E-02 ; -KQTL11.L2B2 := 0.174716642135E-02 ; -KQTL11.R2B2 := 0.368388534240E-03 ; -KQT12.L2B2 := -0.461187461690E-02 ; -KQT12.R2B2 := 0.250760353834E-03 ; -KQT13.L2B2 := 0.495111039908E-02 ; -KQT13.R2B2 := -0.212771737980E-02 ; - - !***IR2 X-scheme*** -abxwt.l2 := -0.0000772587268993839836*on_alice ; -abwmd.l2 := +0.0001472587268993839840*on_alice ; -abaw.r2 := -0.0001335474860334838000*on_alice ; -abxwt.r2 := +0.0000635474860334838004*on_alice ; -ACBXV1.L2x := 0.588235294118E-08; -ACBXV1.L2s := 0.900000000000E-05; -ACBXV1.L2 := 0.588235294118E-08 * on_x2v + ( 0.900000000000E-05) * on_sep2v; -ACBXV1.R2x := -0.588235294118E-08; -ACBXV1.R2s := 0.900000000000E-05; -ACBXV1.R2 := -0.588235294118E-08 * on_x2v + ( 0.900000000000E-05) * on_sep2v; -ACBXH1.L2x := 0.000000000000E+00; -ACBXH1.L2s := 0.000000000000E+00; -ACBXH1.L2 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h; -ACBXH1.R2x := -0.588235294118E-08; -ACBXH1.R2s := 0.900000000000E-05; -ACBXH1.R2 := -0.588235294118E-08 * on_x2h + ( 0.900000000000E-05) * on_sep2h; -ACBXV2.L2x := 0.588235294118E-08; -ACBXV2.L2s := 0.900000000000E-05; -ACBXV2.L2 := 0.588235294118E-08 * on_x2v + ( 0.900000000000E-05) * on_sep2v; -ACBXV2.R2x := -0.588235294118E-08; -ACBXV2.R2s := 0.900000000000E-05; -ACBXV2.R2 := -0.588235294118E-08 * on_x2v + ( 0.900000000000E-05) * on_sep2v; -ACBXH2.L2x := 0.882352941176E-08; -ACBXH2.L2s := 0.135000000000E-04; -ACBXH2.L2 := 0.882352941176E-08 * on_x2h + ( 0.135000000000E-04) * on_sep2h; -ACBXH2.R2x := -0.588235294118E-08; -ACBXH2.R2s := 0.900000000000E-05; -ACBXH2.R2 := -0.588235294118E-08 * on_x2h + ( 0.900000000000E-05) * on_sep2h; -ACBXV3.L2x := 0.588235294118E-08; -ACBXV3.L2s := 0.900000000000E-05; -ACBXV3.L2 := 0.588235294118E-08 * on_x2v + ( 0.900000000000E-05) * on_sep2v; -ACBXV3.R2x := -0.588235294118E-08; -ACBXV3.R2s := 0.900000000000E-05; -ACBXV3.R2 := -0.588235294118E-08 * on_x2v + ( 0.900000000000E-05) * on_sep2v; -ACBXH3.L2x := 0.882352941176E-08; -ACBXH3.L2s := 0.135000000000E-04; -ACBXH3.L2 := 0.882352941176E-08 * on_x2h + ( 0.135000000000E-04) * on_sep2h; -ACBXH3.R2x := -0.588235294118E-08; -ACBXH3.R2s := 0.900000000000E-05; -ACBXH3.R2 := -0.588235294118E-08 * on_x2h + ( 0.900000000000E-05) * on_sep2h; - - !Beam1 - ACBYVS4.L2B1x := -0.359306469082E-06 ; - ACBYVS4.L2B1s := 0.967871365304E-05 ; - ACBYVS4.L2B1o := 0.226681316440E-04 ; - ACBYVS4.L2B1ov:= 0.647912745271E-05 ; - ACBYVS4.L2B1 := -0.359306469082E-06 * on_x2v + ( 0.967871365304E-05) * on_sep2v + ( 0.226681316440E-04) * on_o2 + ( 0.647912745271E-05) * on_ov2; - ACBYV4.L2B1 := 0.000000000000E+00 * on_x2v + ( 0.000000000000E+00) * on_sep2v + ( 0.000000000000E+00) * on_o2 + ( 0.647912745271E-05) * on_ov2; - ACBYVS4.R2B1x := -0.265881050814E-07 ; - ACBYVS4.R2B1s := 0.187114720092E-04 ; - ACBYVS4.R2B1o := 0.121026173328E-03 ; - ACBYVS4.R2B1ov:= 0.421914517202E-04 ; - ACBYVS4.R2B1 := -0.265881050814E-07 * on_x2v + ( 0.187114720092E-04) * on_sep2v + ( 0.121026173328E-03) * on_o2 + ( 0.421914517202E-04) * on_ov2; - ACBYVS5.L2B1x := -0.370036866051E-07 ; - ACBYVS5.L2B1s := 0.484848457040E-05 ; - ACBYVS5.L2B1o := -0.681187797143E-04 ; - ACBYVS5.L2B1ov:= -0.464522709319E-04 ; - ACBYVS5.L2B1 := -0.370036866051E-07 * on_x2v + ( 0.484848457040E-05) * on_sep2v + ( -0.681187797143E-04) * on_o2 + ( -0.464522709319E-04) * on_ov2; - ACBCVS5.R2B1x := 0.263924957448E-06 ; - ACBCVS5.R2B1s := -0.543938795831E-05 ; - ACBCVS5.R2B1o := -0.548545420249E-04 ; - ACBCVS5.R2B1ov:= -0.809924595773E-05 ; - ACBCVS5.R2B1 := 0.263924957448E-06 * on_x2v + ( -0.543938795831E-05) * on_sep2v + ( -0.548545420249E-04) * on_o2 + ( -0.809924595773E-05) * on_ov2; - ACBCV5.R2B1 := 0.000000000000E+00 * on_x2v + ( 0.000000000000E+00) * on_sep2v + ( 0.000000000000E+00) * on_o2 + ( -0.809924595773E-05) * on_ov2; - ACBYHS4.L2B1x := -0.301684625582E-07 ; - ACBYHS4.L2B1s := 0.803040506369E-05 ; - ACBYHS4.L2B1a := 0.368242425339E-07 ; - ACBYHS4.L2B1oh:= 0.442919848516E-04 ; - ACBYHS4.L2B1 := -0.301684625582E-07 * on_x2h + ( 0.803040506369E-05) * on_sep2h + ( 0.368242425339E-07) * on_a2 + ( 0.442919848516E-04) * on_oh2; - ACBYHS4.R2B1x := 0.336005985737E-06 ; - ACBYHS4.R2B1s := 0.662687107340E-05 ; - ACBYHS4.R2B1a := 0.297500680936E-06 ; - ACBYHS4.R2B1oh:= 0.130805280449E-04 ; - ACBYHS4.R2B1 := 0.336005985737E-06 * on_x2h + ( 0.662687107340E-05) * on_sep2h + ( 0.297500680936E-06) * on_a2 + ( 0.130805280449E-04) * on_oh2; - ACBYH4.R2B1 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h + ( 0.000000000000E+00) * on_a2 + ( 0.130805280449E-04) * on_oh2; - ACBYHS5.L2B1x := -0.209785441294E-06 ; - ACBYHS5.L2B1s := -0.155017932911E-05 ; - ACBYHS5.L2B1a := -0.237517327511E-06 ; - ACBYHS5.L2B1oh:= -0.747106707276E-05 ; - ACBYHS5.L2B1 := -0.209785441294E-06 * on_x2h + ( -0.155017932911E-05) * on_sep2h + ( -0.237517327511E-06) * on_a2 + ( -0.747106707276E-05) * on_oh2; - ACBYH5.L2B1 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h + ( 0.000000000000E+00) * on_a2 + ( -0.747106707276E-05) * on_oh2; - ACBCHS5.R2B1x := 0.550071248297E-07 ; - ACBCHS5.R2B1s := 0.720563921720E-05 ; - ACBCHS5.R2B1a := 0.125878506890E-06 ; - ACBCHS5.R2B1oh:= -0.316351747110E-04 ; - ACBCHS5.R2B1 := 0.550071248297E-07 * on_x2h + ( 0.720563921720E-05) * on_sep2h + ( 0.125878506890E-06) * on_a2 + ( -0.316351747110E-04) * on_oh2; - ACBCH6.R2B1oh := -0.122071345316E-04 ; - ACBCH6.R2B1 :=( -0.122071345316E-04)*on_oh2; - ACBCV6.L2B1ov := -0.604651281594E-05 ; - ACBCV6.L2B1 :=( -0.604651281594E-05)*on_ov2; - ACBCH7.L2B1oh := -0.212190413889E-04 ; - ACBCH7.L2B1 :=( -0.212190413889E-04)*on_oh2; - ACBCV7.R2B1ov := -0.202127351779E-04 ; - ACBCV7.R2B1 :=( -0.202127351779E-04)*on_ov2; - - !Beam2 - ACBYVS4.L2B2x := 0.577672138807E-07 ; - ACBYVS4.L2B2s := -0.169729431706E-04 ; - ACBYVS4.L2B2o := 0.103493647937E-03 ; - ACBYVS4.L2B2ov:= 0.416028721622E-04 ; - ACBYVS4.L2B2 := 0.577672138807E-07 * on_x2v + ( -0.169729431706E-04) * on_sep2v + ( 0.103493647937E-03) * on_o2 + ( 0.416028721622E-04) * on_ov2; - ACBYVS4.R2B2x := -0.338366891365E-06 ; - ACBYVS4.R2B2s := -0.693506266163E-05 ; - ACBYVS4.R2B2o := 0.612150535242E-04 ; - ACBYVS4.R2B2ov:= 0.121133629350E-04 ; - ACBYVS4.R2B2 := -0.338366891365E-06 * on_x2v + ( -0.693506266163E-05) * on_sep2v + ( 0.612150535242E-04) * on_o2 + ( 0.121133629350E-04) * on_ov2; - ACBYV4.R2B2 := 0.000000000000E+00 * on_x2v + ( 0.000000000000E+00) * on_sep2v + ( 0.000000000000E+00) * on_o2 + ( 0.121133629350E-04) * on_ov2; - ACBYVS5.L2B2x := 0.210669686866E-06 ; - ACBYVS5.L2B2s := 0.434181842841E-05 ; - ACBYVS5.L2B2o := -0.437858929958E-04 ; - ACBYVS5.L2B2ov:= -0.235466128048E-05 ; - ACBYVS5.L2B2 := 0.210669686866E-06 * on_x2v + ( 0.434181842841E-05) * on_sep2v + ( -0.437858929958E-04) * on_o2 + ( -0.235466128048E-05) * on_ov2; - ACBYV5.L2B2 := 0.000000000000E+00 * on_x2v + ( 0.000000000000E+00) * on_sep2v + ( 0.000000000000E+00) * on_o2 + ( -0.235466128048E-05) * on_ov2; - ACBCVS5.R2B2x := -0.556113941340E-07 ; - ACBCVS5.R2B2s := -0.728659552868E-05 ; - ACBCVS5.R2B2o := -0.102373015930E-03 ; - ACBCVS5.R2B2ov:= -0.377186132907E-04 ; - ACBCVS5.R2B2 := -0.556113941340E-07 * on_x2v + ( -0.728659552868E-05) * on_sep2v + ( -0.102373015930E-03) * on_o2 + ( -0.377186132907E-04) * on_ov2; - ACBYHS4.L2B2x := 0.351657604285E-06 ; - ACBYHS4.L2B2s := -0.655793522704E-05 ; - ACBYHS4.L2B2a := -0.330398196602E-06 ; - ACBYHS4.L2B2oh:= 0.112925479721E-04 ; - ACBYHS4.L2B2 := 0.351657604285E-06 * on_x2h + ( -0.655793522704E-05) * on_sep2h + ( -0.330398196602E-06) * on_a2 + ( 0.112925479721E-04) * on_oh2; - ACBYH4.L2B2 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h + ( 0.000000000000E+00) * on_a2 + ( 0.112925479721E-04) * on_oh2; - ACBYHS4.R2B2x := 0.360918624029E-07 ; - ACBYHS4.R2B2s := -0.189056672398E-04 ; - ACBYHS4.R2B2a := -0.104121190725E-06 ; - ACBYHS4.R2B2oh:= 0.435128290583E-04 ; - ACBYHS4.R2B2 := 0.360918624029E-07 * on_x2h + ( -0.189056672398E-04) * on_sep2h + ( -0.104121190725E-06) * on_a2 + ( 0.435128290583E-04) * on_oh2; - ACBYHS5.L2B2x := 0.348993247816E-07 ; - ACBYHS5.L2B2s := -0.697737704950E-05 ; - ACBYHS5.L2B2a := -0.831782737488E-07 ; - ACBYHS5.L2B2oh:= -0.310788968197E-04 ; - ACBYHS5.L2B2 := 0.348993247816E-07 * on_x2h + ( -0.697737704950E-05) * on_sep2h + ( -0.831782737488E-07) * on_a2 + ( -0.310788968197E-04) * on_oh2; - ACBCHS5.R2B2x := -0.261914932151E-06 ; - ACBCHS5.R2B2s := 0.539723817366E-05 ; - ACBCHS5.R2B2a := 0.293963812481E-06 ; - ACBCHS5.R2B2oh:= -0.808365061049E-05 ; - ACBCHS5.R2B2 := -0.261914932151E-06 * on_x2h + ( 0.539723817366E-05) * on_sep2h + ( 0.293963812481E-06) * on_a2 + ( -0.808365061049E-05) * on_oh2; - ACBCH5.R2B2 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h + ( 0.000000000000E+00) * on_a2 + ( -0.808365061049E-05) * on_oh2; - ACBCH6.L2B2oh := -0.105385387981E-04 ; - ACBCH6.L2B2 :=( -0.105385387981E-04)*on_oh2; - ACBCV6.R2B2ov := -0.113045475282E-04 ; - ACBCV6.R2B2 :=( -0.113045475282E-04)*on_ov2; - ACBCH7.R2B2oh := -0.208457698120E-04 ; - ACBCH7.R2B2 :=( -0.208457698120E-04)*on_oh2; - ACBCV7.L2B2ov := -0.199307633032E-04 ; - ACBCV7.L2B2 :=( -0.199307633032E-04)*on_ov2; - - !***IR8 Optics*** -KQX.L8 := 0.950981581300E-02 ; -KTQX1.L8 := 0.000000000000E+00 ; -KTQX2.L8 := 0.000000000000E+00 ; -KQX.R8 := -KQX.L8 ; -KTQX1.R8 := -KTQX1.L8 ; -KTQX2.R8 := -KTQX2.L8 ; - - !Beam1 -KQ4.L8B1 := -0.444742916700E-02 ; -KQ4.R8B1 := 0.518334462400E-02 ; -KQ5.L8B1 := 0.436221680400E-02 ; -KQ5.R8B1 := -0.445506455500E-02 ; -KQ6.L8B1 := -0.410379100600E-02 ; -KQ6.R8B1 := 0.363751203300E-02 ; -KQ7.L8B1 := 0.602522217500E-02 ; -KQ7.R8B1 := -0.588377725600E-02 ; -KQ8.L8B1 := -0.463355083200E-02 ; -KQ8.R8B1 := 0.641931511900E-02 ; -KQ9.L8B1 := 0.655889492800E-02 ; -KQ9.R8B1 := -0.665649775100E-02 ; -KQ10.L8B1 := -0.579881572000E-02 ; -KQ10.R8B1 := 0.730644092200E-02 ; -KQTL11.L8B1 := 0.140097521800E-03 ; -KQTL11.R8B1 := 0.279089877900E-03 ; -KQT12.L8B1 := 0.319089331500E-02 ; -KQT12.R8B1 := -0.326612795500E-02 ; -KQT13.L8B1 := 0.638267067900E-03 ; -KQT13.R8B1 := -0.102490097000E-02 ; - - !Beam2 -KQ4.L8B2 := 0.449559181916E-02 ; -KQ4.R8B2 := -0.447368899600E-02 ; -KQ5.L8B2 := -0.538821723331E-02 ; -KQ5.R8B2 := 0.425682473400E-02 ; -KQ6.L8B2 := 0.437836800124E-02 ; -KQ6.R8B2 := -0.357803963762E-02 ; -KQ7.L8B2 := -0.634827888396E-02 ; -KQ7.R8B2 := 0.577974785469E-02 ; -KQ8.L8B2 := 0.591138830612E-02 ; -KQ8.R8B2 := -0.507012392471E-02 ; -KQ9.L8B2 := -0.520380412295E-02 ; -KQ9.R8B2 := 0.687320071310E-02 ; -KQ10.L8B2 := 0.713269884012E-02 ; -KQ10.R8B2 := -0.645711113202E-02 ; -KQTL11.L8B2 := 0.193266159142E-02 ; -KQTL11.R8B2 := 0.513724567865E-03 ; -KQT12.L8B2 := -0.277897753841E-02 ; -KQT12.R8B2 := 0.295012492459E-02 ; -KQT13.L8B2 := 0.462333918060E-02 ; -KQT13.R8B2 := 0.293618183397E-02 ; - - !***IR8 X-scheme*** -abxws.l8 := -0.000045681598453109894*on_lhcb ; -abxwh.l8 := +0.000180681598453109894*on_lhcb ; -ablw.r8 := -0.000180681598453109894*on_lhcb ; -abxws.r8 := +0.000045681598453109894*on_lhcb ; -ACBXV1.L8x := 0.117647058824E-07; -ACBXV1.L8s := 0.900000000000E-05; -ACBXV1.L8 := 0.117647058824E-07 * on_x8v + ( 0.900000000000E-05) * on_sep8v; -ACBXV1.R8x := -0.117647058824E-07; -ACBXV1.R8s := 0.900000000000E-05; -ACBXV1.R8 := -0.117647058824E-07 * on_x8v + ( 0.900000000000E-05) * on_sep8v; -ACBXH1.L8x := 0.117647058824E-07; -ACBXH1.L8s := 0.900000000000E-05; -ACBXH1.L8 := 0.117647058824E-07 * on_x8h + ( 0.900000000000E-05) * on_sep8h; -ACBXH1.R8x := -0.117647058824E-07; -ACBXH1.R8s := 0.900000000000E-05; -ACBXH1.R8 := -0.117647058824E-07 * on_x8h + ( 0.900000000000E-05) * on_sep8h; -ACBXV2.L8x := 0.117647058824E-07; -ACBXV2.L8s := 0.900000000000E-05; -ACBXV2.L8 := 0.117647058824E-07 * on_x8v + ( 0.900000000000E-05) * on_sep8v; -ACBXV2.R8x := -0.117647058824E-07; -ACBXV2.R8s := 0.900000000000E-05; -ACBXV2.R8 := -0.117647058824E-07 * on_x8v + ( 0.900000000000E-05) * on_sep8v; -ACBXH2.L8x := 0.117647058824E-07; -ACBXH2.L8s := 0.900000000000E-05; -ACBXH2.L8 := 0.117647058824E-07 * on_x8h + ( 0.900000000000E-05) * on_sep8h; -ACBXH2.R8x := -0.117647058824E-07; -ACBXH2.R8s := 0.900000000000E-05; -ACBXH2.R8 := -0.117647058824E-07 * on_x8h + ( 0.900000000000E-05) * on_sep8h; -ACBXV3.L8x := 0.117647058824E-07; -ACBXV3.L8s := 0.900000000000E-05; -ACBXV3.L8 := 0.117647058824E-07 * on_x8v + ( 0.900000000000E-05) * on_sep8v; -ACBXV3.R8x := -0.117647058824E-07; -ACBXV3.R8s := 0.900000000000E-05; -ACBXV3.R8 := -0.117647058824E-07 * on_x8v + ( 0.900000000000E-05) * on_sep8v; -ACBXH3.L8x := 0.117647058824E-07; -ACBXH3.L8s := 0.900000000000E-05; -ACBXH3.L8 := 0.117647058824E-07 * on_x8h + ( 0.900000000000E-05) * on_sep8h; -ACBXH3.R8x := -0.117647058824E-07; -ACBXH3.R8s := 0.900000000000E-05; -ACBXH3.R8 := -0.117647058824E-07 * on_x8h + ( 0.900000000000E-05) * on_sep8h; - - !Beam1 - ACBYVS4.L8B1x := -0.370598600532E-06 ; - ACBYVS4.L8B1s := 0.840739730187E-05 ; - ACBYVS4.L8B1a := -0.328608937393E-06 ; - ACBYVS4.L8B1ov:= 0.126145542272E-04 ; - ACBYVS4.L8B1 := -0.370598600532E-06 * on_x8v + ( 0.840739730187E-05) * on_sep8v + ( -0.328608937393E-06) * on_a8 + ( 0.126145542272E-04) * on_ov8; - ACBYV4.L8B1 := 0.000000000000E+00 * on_x8v + ( 0.000000000000E+00) * on_sep8v + ( 0.000000000000E+00) * on_a8 + ( 0.126145542272E-04) * on_ov8; - ACBYVS4.R8B1x := 0.938377208233E-07 ; - ACBYVS4.R8B1s := 0.174538575200E-04 ; - ACBYVS4.R8B1a := -0.249723205992E-07 ; - ACBYVS4.R8B1ov:= 0.389867684856E-04 ; - ACBYVS4.R8B1 := 0.938377208233E-07 * on_x8v + ( 0.174538575200E-04) * on_sep8v + ( -0.249723205992E-07) * on_a8 + ( 0.389867684856E-04) * on_ov8; - ACBCVS5.L8B1x := 0.103695222682E-07 ; - ACBCVS5.L8B1s := 0.470430103501E-05 ; - ACBCVS5.L8B1a := -0.821760660637E-07 ; - ACBCVS5.L8B1ov:= -0.301641088553E-04 ; - ACBCVS5.L8B1 := 0.103695222682E-07 * on_x8v + ( 0.470430103501E-05) * on_sep8v + ( -0.821760660637E-07) * on_a8 + ( -0.301641088553E-04) * on_ov8; - ACBYVS5.R8B1x := 0.184450496490E-06 ; - ACBYVS5.R8B1s := -0.433151486387E-05 ; - ACBYVS5.R8B1a := 0.235889032138E-06 ; - ACBYVS5.R8B1ov:= -0.498374128676E-05 ; - ACBYVS5.R8B1 := 0.184450496490E-06 * on_x8v + ( -0.433151486387E-05) * on_sep8v + ( 0.235889032138E-06) * on_a8 + ( -0.498374128676E-05) * on_ov8; -ACBYV5.R8B1 := 0.000000000000E+00 * on_x8v + ( 0.000000000000E+00) * on_sep8v + ( 0.000000000000E+00) * on_a8 + ( -0.498374128676E-05) * on_ov8; - ACBYHS4.L8B1x := -0.117205865645E-06 ; - ACBYHS4.L8B1s := 0.169035964274E-04 ; - ACBYHS4.L8B1o := 0.102799389258E-03 ; - ACBYHS4.L8B1oh:= 0.447164644971E-04 ; - ACBYHS4.L8B1 := -0.117205865645E-06 * on_x8h + ( 0.169035964274E-04) * on_sep8h + ( 0.102799389258E-03) * on_o8 + ( 0.447164644971E-04) * on_oh8; - ACBYHS4.R8B1x := 0.368622757856E-06 ; - ACBYHS4.R8B1s := 0.930146960875E-05 ; - ACBYHS4.R8B1o := 0.279661736368E-04 ; - ACBYHS4.R8B1oh:= 0.787038416337E-05 ; - ACBYHS4.R8B1 := 0.368622757856E-06 * on_x8h + ( 0.930146960875E-05) * on_sep8h + ( 0.279661736368E-04) * on_o8 + ( 0.787038416337E-05) * on_oh8; - ACBYH4.R8B1 := 0.000000000000E+00 * on_x8h + ( 0.000000000000E+00) * on_sep8h + ( 0.000000000000E+00) * on_o8 + ( 0.787038416337E-05) * on_oh8; - ACBCHS5.L8B1x := -0.187734558528E-06 ; - ACBCHS5.L8B1s := -0.440800786381E-05 ; - ACBCHS5.L8B1o := -0.444555100070E-04 ; - ACBCHS5.L8B1oh:= -0.375977649657E-05 ; - ACBCHS5.L8B1 := -0.187734558528E-06 * on_x8h + ( -0.440800786381E-05) * on_sep8h + ( -0.444555100070E-04) * on_o8 + ( -0.375977649657E-05) * on_oh8; - ACBCH5.L8B1 := 0.000000000000E+00 * on_x8h + ( 0.000000000000E+00) * on_sep8h + ( 0.000000000000E+00) * on_o8 + ( -0.375977649657E-05) * on_oh8; - ACBYHS5.R8B1x := -0.106483961780E-07 ; - ACBYHS5.R8B1s := 0.483652230929E-05 ; - ACBYHS5.R8B1o := -0.679454818244E-04 ; - ACBYHS5.R8B1oh:= -0.402874597858E-04 ; - ACBYHS5.R8B1 := -0.106483961780E-07 * on_x8h + ( 0.483652230929E-05) * on_sep8h + ( -0.679454818244E-04) * on_o8 + ( -0.402874597858E-04) * on_oh8; - ACBCH6.R8B1oh := -0.734487460812E-05 ; - ACBCH6.R8B1 :=( -0.734487460812E-05)*on_oh8; - ACBCV6.L8B1ov := -0.117722740228E-04 ; - ACBCV6.L8B1 :=( -0.117722740228E-04)*on_ov8; - ACBCH7.L8B1oh := -0.214223976213E-04 ; - ACBCH7.L8B1 :=( -0.214223976213E-04)*on_oh8; - ACBCV7.R8B1ov := -0.186774617775E-04 ; - ACBCV7.R8B1 :=( -0.186774617775E-04)*on_ov8; - - !Beam2 - ACBYVS4.L8B2x := 0.117180757512E-06 ; - ACBYVS4.L8B2s := -0.169056856716E-04 ; - ACBYVS4.L8B2a := -0.488045166324E-08 ; - ACBYVS4.L8B2ov:= 0.433275254079E-04 ; - ACBYVS4.L8B2 := 0.117180757512E-06 * on_x8v + ( -0.169056856716E-04) * on_sep8v + ( -0.488045166324E-08) * on_a8 + ( 0.433275254079E-04) * on_ov8; - ACBYVS4.R8B2x := -0.370517978833E-06 ; - ACBYVS4.R8B2s := -0.844397268837E-05 ; - ACBYVS4.R8B2a := 0.329247846628E-06 ; - ACBYVS4.R8B2ov:= 0.114119006058E-04 ; - ACBYVS4.R8B2 := -0.370517978833E-06 * on_x8v + ( -0.844397268837E-05) * on_sep8v + ( 0.329247846628E-06) * on_a8 + ( 0.114119006058E-04) * on_ov8; - ACBYV4.R8B2 := 0.000000000000E+00 * on_x8v + ( 0.000000000000E+00) * on_sep8v + ( 0.000000000000E+00) * on_a8 + ( 0.114119006058E-04) * on_ov8; - ACBCVS5.L8B2x := 0.195659225750E-06 ; - ACBCVS5.L8B2s := 0.459473378142E-05 ; - ACBCVS5.L8B2a := -0.250223614299E-06 ; - ACBCVS5.L8B2ov:= -0.124159489441E-04 ; - ACBCVS5.L8B2 := 0.195659225750E-06 * on_x8v + ( 0.459473378142E-05) * on_sep8v + ( -0.250223614299E-06) * on_a8 + ( -0.124159489441E-04) * on_ov8; - ACBCV5.L8B2 := 0.000000000000E+00 * on_x8v + ( 0.000000000000E+00) * on_sep8v + ( 0.000000000000E+00) * on_a8 + ( -0.124159489441E-04) * on_ov8; - ACBYVS5.R8B2x := 0.104086484620E-07 ; - ACBYVS5.R8B2s := -0.472205870866E-05 ; - ACBYVS5.R8B2a := 0.824862621483E-07 ; - ACBYVS5.R8B2ov:= -0.267165638870E-04 ; - ACBYVS5.R8B2 := 0.104086484620E-07 * on_x8v + ( -0.472205870866E-05) * on_sep8v + ( 0.824862621483E-07) * on_a8 + ( -0.267165638870E-04) * on_ov8; - ACBYHS4.L8B2x := 0.370528835639E-06 ; - ACBYHS4.L8B2s := -0.843572526061E-05 ; - ACBYHS4.L8B2o := 0.401285097500E-04 ; - ACBYHS4.L8B2oh:= 0.126679491018E-04 ; - ACBYHS4.L8B2 := 0.370528835639E-06 * on_x8h + ( -0.843572526061E-05) * on_sep8h + ( 0.401285097500E-04) * on_o8 + ( 0.126679491018E-04) * on_oh8; - ACBYH4.L8B2 := 0.000000000000E+00 * on_x8h + ( 0.000000000000E+00) * on_sep8h + ( 0.000000000000E+00) * on_o8 + ( 0.126679491018E-04) * on_oh8; - ACBYHS4.R8B2x := -0.116250421371E-06 ; - ACBYHS4.R8B2s := -0.169260077017E-04 ; - ACBYHS4.R8B2o := 0.103025638291E-03 ; - ACBYHS4.R8B2oh:= 0.368868985081E-04 ; - ACBYHS4.R8B2 := -0.116250421371E-06 * on_x8h + ( -0.169260077017E-04) * on_sep8h + ( 0.103025638291E-03) * on_o8 + ( 0.368868985081E-04) * on_oh8; - ACBCHS5.L8B2x := -0.100793000386E-07 ; - ACBCHS5.L8B2s := -0.457801904082E-05 ; - ACBCHS5.L8B2o := -0.643141827314E-04 ; - ACBCHS5.L8B2oh:= -0.259949391155E-04 ; - ACBCHS5.L8B2 := -0.100793000386E-07 * on_x8h + ( -0.457801904082E-05) * on_sep8h + ( -0.643141827314E-04) * on_o8 + ( -0.259949391155E-04) * on_oh8; - ACBYHS5.R8B2x := -0.186717054487E-06 ; - ACBYHS5.R8B2s := 0.438410426426E-05 ; - ACBYHS5.R8B2o := -0.442145652312E-04 ; - ACBYHS5.R8B2oh:= -0.473283800199E-05 ; - ACBYHS5.R8B2 := -0.186717054487E-06 * on_x8h + ( 0.438410426426E-05) * on_sep8h + ( -0.442145652312E-04) * on_o8 + ( -0.473283800199E-05) * on_oh8; - ACBYH5.R8B2 := 0.000000000000E+00 * on_x8h + ( 0.000000000000E+00) * on_sep8h + ( 0.000000000000E+00) * on_o8 + ( -0.473283800199E-05) * on_oh8; - ACBCH6.L8B2oh := -0.118221036945E-04 ; - ACBCH6.L8B2 :=( -0.118221036945E-04)*on_oh8; - ACBCV6.R8B2ov := -0.106499221957E-04 ; - ACBCV6.R8B2 :=( -0.106499221957E-04)*on_ov8; - ACBCH7.R8B2oh := -0.176714732648E-04 ; - ACBCH7.R8B2 :=( -0.176714732648E-04)*on_oh8; - ACBCV7.L8B2ov := -0.207569960567E-04 ; - ACBCV7.L8B2 :=( -0.207569960567E-04)*on_ov8; - - !***IR4 Optics*** - - !Beam1 -KQ5.L4B1 := 0.424661437787E-02 ; -KQ5.R4B1 := -0.433498008414E-02 ; -KQ6.L4B1 := -0.505182623195E-02 ; -KQ6.R4B1 := 0.586991737700E-02 ; -KQ7.L4B1 := 0.710885440748E-02 ; -KQ7.R4B1 := -0.803917164603E-02 ; -KQ8.L4B1 := -0.487871574000E-02 ; -KQ8.R4B1 := 0.841787257258E-02 ; -KQ9.L4B1 := 0.666341447294E-02 ; -KQ9.R4B1 := -0.657270822152E-02 ; -KQ10.L4B1 := -0.560598317583E-02 ; -KQ10.R4B1 := 0.712809436385E-02 ; -KQTL11.L4B1 := 0.285697973189E-03 ; -KQTL11.R4B1 := 0.143457787233E-02 ; -KQT12.L4B1 := 0.347281451879E-02 ; -KQT12.R4B1 := -0.164097580184E-02 ; -KQT13.L4B1 := 0.141422735277E-02 ; -KQT13.R4B1 := -0.881864591583E-03 ; - - !Beam2 -KQ5.L4B2 := -0.422607022260E-02 ; -KQ5.R4B2 := 0.458706672627E-02 ; -KQ6.L4B2 := 0.585667110556E-02 ; -KQ6.R4B2 := -0.611835214396E-02 ; -KQ7.L4B2 := -0.504519892340E-02 ; -KQ7.R4B2 := 0.666437961122E-02 ; -KQ8.L4B2 := 0.856569447707E-02 ; -KQ8.R4B2 := -0.733406676228E-02 ; -KQ9.L4B2 := -0.510187013370E-02 ; -KQ9.R4B2 := 0.637625907364E-02 ; -KQ10.L4B2 := 0.714189340172E-02 ; -KQ10.R4B2 := -0.566728474458E-02 ; -KQTL11.L4B2 := 0.124411469642E-02 ; -KQTL11.R4B2 := 0.544319559471E-03 ; -KQT12.L4B2 := 0.823049005124E-03 ; -KQT12.R4B2 := 0.284569448861E-02 ; -KQT13.L4B2 := 0.132911144488E-02 ; -KQT13.R4B2 := -0.929482557175E-03 ; - - !***IR6 Optics*** - - !Beam1 -KQ4.L6B1 := -0.488141473400E-02 ; -KQ4.R6B1 := 0.573212897533E-02 ; -KQ5.L6B1 := 0.646745674089E-02 ; -KQ5.R6B1 := -0.667304786888E-02 ; -KQ8.L6B1 := -0.504073116977E-02 ; -KQ8.R6B1 := 0.762757138243E-02 ; -KQ9.L6B1 := 0.669045344296E-02 ; -KQ9.R6B1 := -0.655757996110E-02 ; -KQ10.L6B1 := -0.770486742073E-02 ; -KQ10.R6B1 := 0.711719158505E-02 ; -KQTL11.L6B1 := 0.874471746678E-03 ; -KQTL11.R6B1 := -0.461116869017E-03 ; -KQT12.L6B1 := -0.319415427295E-02 ; -KQT12.R6B1 := -0.186388189423E-02 ; -KQT13.L6B1 := 0.344900777508E-03 ; -KQT13.R6B1 := 0.102054118252E-02 ; - - !Beam2 -KQ4.L6B2 := 0.575352048600E-02 ; -KQ4.R6B2 := -0.483383773000E-02 ; -KQ5.L6B2 := -0.672026946100E-02 ; -KQ5.R6B2 := 0.643791542900E-02 ; -KQ8.L6B2 := 0.770011925000E-02 ; -KQ8.R6B2 := -0.511750117200E-02 ; -KQ9.L6B2 := -0.711953547200E-02 ; -KQ9.R6B2 := 0.666473261800E-02 ; -KQ10.L6B2 := 0.717256284700E-02 ; -KQ10.R6B2 := -0.740260848400E-02 ; -KQTL11.L6B2 := -0.170815548900E-02 ; -KQTL11.R6B2 := 0.422211660500E-03 ; -KQT12.L6B2 := -0.115079353200E-03 ; -KQT12.R6B2 := 0.415173587700E-02 ; -KQT13.L6B2 := 0.329034593900E-02 ; -KQT13.R6B2 := -0.118956328800E-02 ; - - !***IR3 Optics*** -KQ4.LR3 := 0.124128400000E-02 ; -KQT4.L3 := 0.688713000000E-03 ; -KQT4.R3 := 0.688713000000E-03 ; -KQ5.LR3 := -0.130392400000E-02 ; -KQT5.L3 := 0.972084000000E-03 ; -KQT5.R3 := 0.972084000000E-03 ; - - !Beam1 -KQ6.L3B1 := 0.265206600700E-02 ; -KQ6.R3B1 := -0.248284002200E-02 ; -KQTL7.L3B1 := -0.199490058500E-02 ; -KQTL7.R3B1 := 0.910271209100E-03 ; -KQTL8.L3B1 := 0.129306774100E-03 ; -KQTL8.R3B1 := 0.250745464100E-02 ; -KQTL9.L3B1 := -0.471507917000E-02 ; -KQTL9.R3B1 := -0.746685541000E-04 ; -KQTL10.L3B1 := 0.915285061000E-03 ; -KQTL10.R3B1 := 0.285281176400E-02 ; -KQTL11.L3B1 := -0.338523656500E-03 ; -KQTL11.R3B1 := -0.363123332200E-02 ; -KQT12.L3B1 := 0.284276661600E-02 ; -KQT12.R3B1 := 0.500000000000E-02 ; -KQT13.L3B1 := -0.635371688300E-03 ; -KQT13.R3B1 := -0.456628965700E-02 ; - - !Beam2 -KQ6.L3B2 := -0.247436871800E-02 ; -KQ6.R3B2 := 0.267567475900E-02 ; -KQTL7.L3B2 := 0.766905226600E-03 ; -KQTL7.R3B2 := -0.281553667400E-02 ; -KQTL8.L3B2 := 0.219362332600E-02 ; -KQTL8.R3B2 := -0.148739570200E-03 ; -KQTL9.L3B2 := 0.847198389400E-05 ; -KQTL9.R3B2 := -0.396947896700E-02 ; -KQTL10.L3B2 := 0.214887891600E-02 ; -KQTL10.R3B2 := 0.851839112500E-03 ; -KQTL11.L3B2 := -0.341390900600E-02 ; -KQTL11.R3B2 := 0.110161035700E-02 ; -KQT12.L3B2 := 0.918454053400E-03 ; -KQT12.R3B2 := 0.280357642100E-02 ; -KQT13.L3B2 := -0.508018044000E-02 ; -KQT13.R3B2 := -0.632055499900E-03 ; - - !***IR7 Optics*** -KQ4.LR7 := 0.131382724100E-02 ; -KQT4.L7 := 0.331689344000E-03 ; -KQT4.R7 := 0.331689344000E-03 ; -KQ5.LR7 := -0.133553657300E-02 ; -KQT5.L7 := 0.000000000000E+00 ; -KQT5.R7 := 0.000000000000E+00 ; - - !Beam1 -KQ6.L7B1 := 0.332380383100E-02 ; -KQ6.R7B1 := -0.281821059300E-02 ; -KQTL7.L7B1 := 0.307231360100E-03 ; -KQTL7.R7B1 := 0.411775382800E-02 ; -KQTL8.L7B1 := 0.535631538200E-03 ; -KQTL8.R7B1 := 0.180061251400E-02 ; -KQTL9.L7B1 := 0.104649831600E-03 ; -KQTL9.R7B1 := 0.316515736800E-02 ; -KQTL10.L7B1 := 0.469149843300E-02 ; -KQTL10.R7B1 := 0.234006504200E-03 ; -KQTL11.L7B1 := 0.109300381500E-02 ; -KQTL11.R7B1 := -0.129517571700E-03 ; -KQT12.L7B1 := 0.203869506000E-02 ; -KQT12.R7B1 := 0.414855502900E-03 ; -KQT13.L7B1 := -0.647047560500E-03 ; -KQT13.R7B1 := 0.163470209700E-03 ; - - !Beam2 -KQ6.L7B2 := -0.278052285800E-02 ; -KQ6.R7B2 := 0.330261896100E-02 ; -KQTL7.L7B2 := 0.391109869200E-02 ; -KQTL7.R7B2 := 0.307913213400E-03 ; -KQTL8.L7B2 := 0.141328062600E-02 ; -KQTL8.R7B2 := 0.139274871000E-02 ; -KQTL9.L7B2 := 0.363516060400E-02 ; -KQTL9.R7B2 := 0.692028108000E-04 ; -KQTL10.L7B2 := 0.156243369200E-03 ; -KQTL10.R7B2 := 0.451207010600E-02 ; -KQTL11.L7B2 := 0.360602594900E-03 ; -KQTL11.R7B2 := 0.131920025500E-02 ; -KQT12.L7B2 := -0.705199531300E-03 ; -KQT12.R7B2 := -0.138620184600E-02 ; -KQT13.L7B2 := -0.606647736700E-03 ; -KQT13.R7B2 := -0.585571959400E-03 ; - - !***Arc Optics*** - !QF/QD -KQF.A81 := 0.870329953900E-02 ; -KQF.A12 := 0.870329953900E-02 ; -KQF.A45 := 0.870329953900E-02 ; -KQF.A56 := 0.870329953900E-02 ; -KQD.A81 := -0.870475552100E-02 ; -KQD.A12 := -0.870475552100E-02 ; -KQD.A45 := -0.870475552100E-02 ; -KQD.A56 := -0.870475552100E-02 ; -KQF.A78 := 0.877219370500E-02 ; -KQF.A23 := 0.874003742200E-02 ; -KQF.A34 := 0.874003742200E-02 ; -KQF.A67 := 0.877219370500E-02 ; -KQD.A78 := -0.885967069500E-02 ; -KQD.A23 := -0.855353408600E-02 ; -KQD.A34 := -0.855353408600E-02 ; -KQD.A67 := -0.885967069500E-02 ; - - !QTF/QTD BEAM1 -dQx.b1 := 0.000000000000E+00 ; -dQy.b1 := 0.000000000000E+00 ; -dQx.b1_sq := 0.000000000000E+00 ; -dQy.b1_sq := 0.000000000000E+00 ; - -KQTF.A81B1 := 0.000000000000E+00 + ( 0.386676513181E-02) * dQx.b1 + ( 0.714331925873E-03) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTF.A12B1 := 0.000000000000E+00 + ( 0.386676513181E-02) * dQx.b1 + ( 0.714331925873E-03) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTF.A45B1 := 0.000000000000E+00 + ( 0.386676513181E-02) * dQx.b1 + ( 0.714331925873E-03) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTF.A56B1 := 0.000000000000E+00 + ( 0.386676513181E-02) * dQx.b1 + ( 0.714331925873E-03) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTD.A81B1 := 0.000000000000E+00 + (-0.675083603533E-03) * dQx.b1 + (-0.361401832632E-02) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTD.A12B1 := 0.000000000000E+00 + (-0.675083603533E-03) * dQx.b1 + (-0.361401832632E-02) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTD.A45B1 := 0.000000000000E+00 + (-0.675083603533E-03) * dQx.b1 + (-0.361401832632E-02) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTD.A56B1 := 0.000000000000E+00 + (-0.675083603533E-03) * dQx.b1 + (-0.361401832632E-02) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTF.A78B1 := 0.761119694300E-03 + ( 0.386676513181E-02) * dQx.b1 + ( 0.714331925873E-03) * dQy.b1 + ( 0.724576651335E-02) * dQx.b1_sq + ( 0.132470834350E-02) * dQy.b1_sq ; -KQTF.A23B1 := -0.771991245000E-03 + ( 0.386676513181E-02) * dQx.b1 + ( 0.714331925873E-03) * dQy.b1 + ( 0.724576651335E-02) * dQx.b1_sq + ( 0.132470834350E-02) * dQy.b1_sq ; -KQTF.A34B1 := -0.771991245000E-03 + ( 0.386676513181E-02) * dQx.b1 + ( 0.714331925873E-03) * dQy.b1 + ( 0.724576651335E-02) * dQx.b1_sq + ( 0.132470834350E-02) * dQy.b1_sq ; -KQTF.A67B1 := 0.761119694300E-03 + ( 0.386676513181E-02) * dQx.b1 + ( 0.714331925873E-03) * dQy.b1 + ( 0.724576651335E-02) * dQx.b1_sq + ( 0.132470834350E-02) * dQy.b1_sq ; -KQTD.A78B1 := -0.933337382400E-03 + (-0.675083603533E-03) * dQx.b1 + (-0.361401832632E-02) * dQy.b1 + (-0.134605020682E-02) * dQx.b1_sq + (-0.720191761063E-02) * dQy.b1_sq ; -KQTD.A23B1 := 0.915761029700E-03 + (-0.675083603533E-03) * dQx.b1 + (-0.361401832632E-02) * dQy.b1 + (-0.134605020682E-02) * dQx.b1_sq + (-0.720191761063E-02) * dQy.b1_sq ; -KQTD.A34B1 := 0.915761029700E-03 + (-0.675083603533E-03) * dQx.b1 + (-0.361401832632E-02) * dQy.b1 + (-0.134605020682E-02) * dQx.b1_sq + (-0.720191761063E-02) * dQy.b1_sq ; -KQTD.A67B1 := -0.933337382400E-03 + (-0.675083603533E-03) * dQx.b1 + (-0.361401832632E-02) * dQy.b1 + (-0.134605020682E-02) * dQx.b1_sq + (-0.720191761063E-02) * dQy.b1_sq ; - - !QTF/QTD BEAM2 -dQx.b2 := 0.000000000000E+00 ; -dQy.b2 := 0.000000000000E+00 ; -dQx.b2_sq := 0.000000000000E+00 ; -dQy.b2_sq := 0.000000000000E+00 ; - -KQTF.A81B2 := 0.000000000000E+00 + ( 0.362511545988E-02) * dQx.b2 + ( 0.670934528663E-03) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTF.A12B2 := 0.000000000000E+00 + ( 0.362511545988E-02) * dQx.b2 + ( 0.670934528663E-03) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTF.A45B2 := 0.000000000000E+00 + ( 0.362511545988E-02) * dQx.b2 + ( 0.670934528663E-03) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTF.A56B2 := 0.000000000000E+00 + ( 0.362511545988E-02) * dQx.b2 + ( 0.670934528663E-03) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTD.A81B2 := 0.000000000000E+00 + (-0.676003525867E-03) * dQx.b2 + (-0.362125819951E-02) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTD.A12B2 := 0.000000000000E+00 + (-0.676003525867E-03) * dQx.b2 + (-0.362125819951E-02) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTD.A45B2 := 0.000000000000E+00 + (-0.676003525867E-03) * dQx.b2 + (-0.362125819951E-02) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTD.A56B2 := 0.000000000000E+00 + (-0.676003525867E-03) * dQx.b2 + (-0.362125819951E-02) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTF.A78B2 := -0.761119694300E-03 + ( 0.362511545988E-02) * dQx.b2 + ( 0.670934528663E-03) * dQy.b2 + ( 0.724555877649E-02) * dQx.b2_sq + ( 0.132958267416E-02) * dQy.b2_sq ; -KQTF.A23B2 := 0.771991245000E-03 + ( 0.362511545988E-02) * dQx.b2 + ( 0.670934528663E-03) * dQy.b2 + ( 0.724555877649E-02) * dQx.b2_sq + ( 0.132958267416E-02) * dQy.b2_sq ; -KQTF.A34B2 := 0.771991245000E-03 + ( 0.362511545988E-02) * dQx.b2 + ( 0.670934528663E-03) * dQy.b2 + ( 0.724555877649E-02) * dQx.b2_sq + ( 0.132958267416E-02) * dQy.b2_sq ; -KQTF.A67B2 := -0.761119694300E-03 + ( 0.362511545988E-02) * dQx.b2 + ( 0.670934528663E-03) * dQy.b2 + ( 0.724555877649E-02) * dQx.b2_sq + ( 0.132958267416E-02) * dQy.b2_sq ; -KQTD.A78B2 := 0.933337382400E-03 + (-0.676003525867E-03) * dQx.b2 + (-0.362125819951E-02) * dQy.b2 + (-0.134980561765E-02) * dQx.b2_sq + (-0.723074576787E-02) * dQy.b2_sq ; -KQTD.A23B2 := -0.915761029700E-03 + (-0.676003525867E-03) * dQx.b2 + (-0.362125819951E-02) * dQy.b2 + (-0.134980561765E-02) * dQx.b2_sq + (-0.723074576787E-02) * dQy.b2_sq ; -KQTD.A34B2 := -0.915761029700E-03 + (-0.676003525867E-03) * dQx.b2 + (-0.362125819951E-02) * dQy.b2 + (-0.134980561765E-02) * dQx.b2_sq + (-0.723074576787E-02) * dQy.b2_sq ; -KQTD.A67B2 := 0.933337382400E-03 + (-0.676003525867E-03) * dQx.b2 + (-0.362125819951E-02) * dQy.b2 + (-0.134980561765E-02) * dQx.b2_sq + (-0.723074576787E-02) * dQy.b2_sq ; - - !Sextupole BEAM1 -dQpx.b1 := 0.000000000000E+00 ; -dQpy.b1 := 0.000000000000E+00 ; -dQpx.b1_sq := 0.000000000000E+00 ; -dQpy.b1_sq := 0.000000000000E+00 ; - - !Strong sextupoles of sectors 81/12/45/56 -KSF1.A81B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF1.A12B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF1.A45B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF1.A56B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD2.A81B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD2.A12B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD2.A45B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD2.A56B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; - - !Weak sextupoles of sectors 81/12/45/56 -KSF2.A81B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF2.A12B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF2.A45B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF2.A56B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD1.A81B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD1.A12B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD1.A45B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD1.A56B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; - - !Weak sextupoles of sectors 78/23/34/67 -KSF1.A78B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.120139469137E-02) * dQpx.b1_sq + ( 0.219684419819E-03) * dQpy.b1_sq ; -KSF2.A78B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.120139469137E-02) * dQpx.b1_sq + ( 0.219684419819E-03) * dQpy.b1_sq ; -KSF1.A23B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.120139469137E-02) * dQpx.b1_sq + ( 0.219684419819E-03) * dQpy.b1_sq ; -KSF2.A23B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.120139469137E-02) * dQpx.b1_sq + ( 0.219684419819E-03) * dQpy.b1_sq ; -KSF1.A34B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.120139469137E-02) * dQpx.b1_sq + ( 0.219684419819E-03) * dQpy.b1_sq ; -KSF2.A34B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.120139469137E-02) * dQpx.b1_sq + ( 0.219684419819E-03) * dQpy.b1_sq ; -KSF1.A67B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.120139469137E-02) * dQpx.b1_sq + ( 0.219684419819E-03) * dQpy.b1_sq ; -KSF2.A67B1 := 0.588546421584E-01 + ( 0.595401465145E-03) * dQpx.b1 + ( 0.110121796520E-03) * dQpy.b1 + ( 0.120139469137E-02) * dQpx.b1_sq + ( 0.219684419819E-03) * dQpy.b1_sq ; -KSD1.A78B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + (-0.376419376007E-03) * dQpx.b1_sq + (-0.200285511737E-02) * dQpy.b1_sq ; -KSD2.A78B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + (-0.376419376007E-03) * dQpx.b1_sq + (-0.200285511737E-02) * dQpy.b1_sq ; -KSD1.A23B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + (-0.376419376007E-03) * dQpx.b1_sq + (-0.200285511737E-02) * dQpy.b1_sq ; -KSD2.A23B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + (-0.376419376007E-03) * dQpx.b1_sq + (-0.200285511737E-02) * dQpy.b1_sq ; -KSD1.A34B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + (-0.376419376007E-03) * dQpx.b1_sq + (-0.200285511737E-02) * dQpy.b1_sq ; -KSD2.A34B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + (-0.376419376007E-03) * dQpx.b1_sq + (-0.200285511737E-02) * dQpy.b1_sq ; -KSD1.A67B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + (-0.376419376007E-03) * dQpx.b1_sq + (-0.200285511737E-02) * dQpy.b1_sq ; -KSD2.A67B1 := -0.970134663097E-01 + (-0.185524728432E-03) * dQpx.b1 + (-0.993072214958E-03) * dQpy.b1 + (-0.376419376007E-03) * dQpx.b1_sq + (-0.200285511737E-02) * dQpy.b1_sq ; - - !Sextupole BEAM2 -dQpx.b2 := 0.000000000000E+00 ; -dQpy.b2 := 0.000000000000E+00 ; -dQpx.b2_sq := 0.000000000000E+00 ; -dQpy.b2_sq := 0.000000000000E+00 ; - - !Strong sextupoles of sectors 81/12/45/56 -KSF2.A81B2 := 0.591774798333E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF2.A12B2 := 0.591774798333E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF2.A45B2 := 0.591774798333E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF2.A56B2 := 0.591774798333E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD1.A81B2 := -0.976453305953E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD1.A12B2 := -0.976453305953E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD1.A45B2 := -0.976453305953E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD1.A56B2 := -0.976453305953E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; - - !Weak sextupoles of sectors 81/12/45/56 -KSF1.A81B2 := 0.591774798333E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF1.A12B2 := 0.591774798333E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF1.A45B2 := 0.591774798333E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF1.A56B2 := 0.591774798333E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD2.A81B2 := -0.976453305953E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD2.A12B2 := -0.976453305953E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD2.A45B2 := -0.976453305953E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD2.A56B2 := -0.976453305953E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; - - !Weak sextupoles of sectors 78/23/34/67 -KSF1.A78B2 := 0.591774798332E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.119467103401E-02) * dQpx.b2_sq + ( 0.219909921634E-03) * dQpy.b2_sq ; -KSF2.A78B2 := 0.591774798332E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.119467103401E-02) * dQpx.b2_sq + ( 0.219909921634E-03) * dQpy.b2_sq ; -KSF1.A23B2 := 0.591774798332E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.119467103401E-02) * dQpx.b2_sq + ( 0.219909921634E-03) * dQpy.b2_sq ; -KSF2.A23B2 := 0.591774798332E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.119467103401E-02) * dQpx.b2_sq + ( 0.219909921634E-03) * dQpy.b2_sq ; -KSF1.A34B2 := 0.591774798332E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.119467103401E-02) * dQpx.b2_sq + ( 0.219909921634E-03) * dQpy.b2_sq ; -KSF2.A34B2 := 0.591774798332E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.119467103401E-02) * dQpx.b2_sq + ( 0.219909921634E-03) * dQpy.b2_sq ; -KSF1.A67B2 := 0.591774798332E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.119467103401E-02) * dQpx.b2_sq + ( 0.219909921634E-03) * dQpy.b2_sq ; -KSF2.A67B2 := 0.591774798332E-01 + ( 0.596514774636E-03) * dQpx.b2 + ( 0.110451575511E-03) * dQpy.b2 + ( 0.119467103401E-02) * dQpx.b2_sq + ( 0.219909921634E-03) * dQpy.b2_sq ; -KSD1.A78B2 := -0.976453305964E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + (-0.374666386809E-03) * dQpx.b2_sq + (-0.199949018947E-02) * dQpy.b2_sq ; -KSD2.A78B2 := -0.976453305964E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + (-0.374666386809E-03) * dQpx.b2_sq + (-0.199949018947E-02) * dQpy.b2_sq ; -KSD1.A23B2 := -0.976453305964E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + (-0.374666386809E-03) * dQpx.b2_sq + (-0.199949018947E-02) * dQpy.b2_sq ; -KSD2.A23B2 := -0.976453305964E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + (-0.374666386809E-03) * dQpx.b2_sq + (-0.199949018947E-02) * dQpy.b2_sq ; -KSD1.A34B2 := -0.976453305964E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + (-0.374666386809E-03) * dQpx.b2_sq + (-0.199949018947E-02) * dQpy.b2_sq ; -KSD2.A34B2 := -0.976453305964E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + (-0.374666386809E-03) * dQpx.b2_sq + (-0.199949018947E-02) * dQpy.b2_sq ; -KSD1.A67B2 := -0.976453305964E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + (-0.374666386809E-03) * dQpx.b2_sq + (-0.199949018947E-02) * dQpy.b2_sq ; -KSD2.A67B2 := -0.976453305964E-01 + (-0.186376785517E-03) * dQpx.b2 + (-0.993784197335E-03) * dQpy.b2 + (-0.374666386809E-03) * dQpx.b2_sq + (-0.199949018947E-02) * dQpy.b2_sq ; - - !MQS BEAM1 -CMRS.b1 := 0.000000000000E+00 ; -CMIS.b1 := 0.000000000000E+00 ; -CMRS.b1_sq := 0.000000000000E+00 ; -CMIS.b1_sq := 0.000000000000E+00 ; -ona2_b1 := 0.000000000000E+00 ; - - KQS.R1B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.280686316043E-01) * CMRS.b1 + (-0.150086236672E-02) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; - KQS.L2B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.280686316043E-01) * CMRS.b1 + (-0.150086236672E-02) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; -KQS.A23B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.114478730038E-01) * CMRS.b1 + ( 0.120058055868E-01) * CMIS.b1 + ( 0.261719946305E-01) * CMRS.b1_sq + ( 0.187050881463E-01) * CMIS.b1_sq ; - KQS.R3B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.143126970962E-01) * CMRS.b1 + (-0.123848295077E-01) * CMIS.b1 + (-0.365294742709E-01) * CMRS.b1_sq + (-0.187466040969E-01) * CMIS.b1_sq ; - KQS.L4B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.143126970962E-01) * CMRS.b1 + (-0.123848295077E-01) * CMIS.b1 + (-0.365294742709E-01) * CMRS.b1_sq + (-0.187466040969E-01) * CMIS.b1_sq ; -KQS.A45B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.839713242611E-02) * CMRS.b1 + ( 0.122601188299E-01) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; - KQS.R5B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.491234725876E-02) * CMRS.b1 + ( 0.118500012957E-01) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; - KQS.L6B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.491234725876E-02) * CMRS.b1 + ( 0.118500012957E-01) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; -KQS.A67B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.181434492476E-01) * CMRS.b1 + ( 0.598554938318E-02) * CMIS.b1 + (-0.777589377415E-01) * CMRS.b1_sq + ( 0.145560531033E-01) * CMIS.b1_sq ; - KQS.R7B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.445820381483E-02) * CMRS.b1 + (-0.114994329352E-01) * CMIS.b1 + (-0.294734119906E-03) * CMRS.b1_sq + (-0.193431207443E-01) * CMIS.b1_sq ; - KQS.L8B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.445820381483E-02) * CMRS.b1 + (-0.114994329352E-01) * CMIS.b1 + (-0.294734119906E-03) * CMRS.b1_sq + (-0.193431207443E-01) * CMIS.b1_sq ; -KQS.A81B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.258286623986E-01) * CMRS.b1 + (-0.278051803450E-02) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; - - !MQS BEAM2 -CMRS.b2 := 0.000000000000E+00 ; -CMIS.b2 := 0.000000000000E+00 ; -CMRS.b2_sq := 0.000000000000E+00 ; -CMIS.b2_sq := 0.000000000000E+00 ; -ona2_b2 := 0.000000000000E+00 ; - -KQS.A12B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.135037705330E-01) * CMRS.b2 + (-0.200797321792E-01) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - KQS.R2B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.119181969783E-01) * CMRS.b2 + ( 0.460486139466E-02) * CMIS.b2 + ( 0.196812068149E-01) * CMRS.b2_sq + ( 0.817759311982E-02) * CMIS.b2_sq ; - KQS.L3B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.119181969783E-01) * CMRS.b2 + ( 0.460486139466E-02) * CMIS.b2 + ( 0.196812068149E-01) * CMRS.b2_sq + ( 0.817759311982E-02) * CMIS.b2_sq ; -KQS.A34B2 := ( 0.000000000000E+00) * ona2_b2 + (-0.180939204059E-01) * CMRS.b2 + ( 0.277912722934E-02) * CMIS.b2 + (-0.415626926119E-01) * CMRS.b2_sq + ( 0.191210585660E-01) * CMIS.b2_sq ; - KQS.R4B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.126568600221E-01) * CMRS.b2 + ( 0.427311110085E-02) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - KQS.L5B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.126568600221E-01) * CMRS.b2 + ( 0.427311110085E-02) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; -KQS.A56B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.147205903153E-01) * CMRS.b2 + ( 0.215362435731E-02) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - KQS.R6B2 := ( 0.000000000000E+00) * ona2_b2 + (-0.707437243226E-02) * CMRS.b2 + ( 0.175564174176E-01) * CMIS.b2 + (-0.359449194435E-01) * CMRS.b2_sq + ( 0.606374570183E-01) * CMIS.b2_sq ; - KQS.L7B2 := ( 0.000000000000E+00) * ona2_b2 + (-0.707437243226E-02) * CMRS.b2 + ( 0.175564174176E-01) * CMIS.b2 + (-0.359449194435E-01) * CMRS.b2_sq + ( 0.606374570183E-01) * CMIS.b2_sq ; -KQS.A78B2 := ( 0.000000000000E+00) * ona2_b2 + (-0.115459135687E-01) * CMRS.b2 + (-0.508410394662E-02) * CMIS.b2 + (-0.183213483542E-01) * CMRS.b2_sq + (-0.993334552106E-02) * CMIS.b2_sq ; - KQS.R8B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.155044851427E-01) * CMRS.b2 + (-0.204151361066E-01) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - KQS.L1B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.155044851427E-01) * CMRS.b2 + (-0.204151361066E-01) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - - !MSS BEAM1 -ona3_b1 := 0.000000000000E+00 ; - -KSS.A12B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A23B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A34B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A45B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A56B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A67B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A78B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A81B1 := ( 0.000000000000E+00) * ona3_b1 ; - - !MSS BEAM2 -ona3_b2 := 0.000000000000E+00 ; - -KSS.A12B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A23B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A34B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A45B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A56B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A67B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A78B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A81B2 := ( 0.000000000000E+00) * ona3_b2 ; - - !OF/OD BEAM1 -ON_MO.b1 := 0.000000000000E+00 ; -KOF.B1 := 0.000000000000E+00 ; -KOD.B1 := 0.000000000000E+00 ; -KOF.A12B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A23B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A34B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A45B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A56B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A67B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A78B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A81B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOD.A12B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A23B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A34B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A45B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A56B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A67B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A78B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A81B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; - - !OF/OD BEAM2 -ON_MO.b2 := 0.000000000000E+00 ; -KOF.B2 := 0.000000000000E+00 ; -KOD.B2 := 0.000000000000E+00 ; -KOF.A12B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A23B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A34B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A45B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A56B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A67B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A78B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A81B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOD.A12B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A23B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A34B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A45B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A56B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A67B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A78B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A81B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; - - !! MCB-beam1 for spurious dispersion correction - - !! MCB in sector 81 and 12 -acbh14.r8b1x := 0.000000000000E+00 ; -acbh14.r8b1s := -0.000000000000E+00 ; -acbh14.r8b1 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh16.r8b1x := 0.000000000000E+00 ; -acbh16.r8b1s := -0.000000000000E+00 ; -acbh16.r8b1 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh14.l1b1x := 0.000000000000E+00 ; -acbh14.l1b1s := -0.000000000000E+00 ; -acbh14.l1b1 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh12.l1b1x := -0.000000000000E+00 ; -acbh12.l1b1s := 0.000000000000E+00 ; -acbh12.l1b1 := (( -0.000000000000E+00 )*on_xx1_h+( 0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh13.r1b1x := -0.000000000000E+00 ; -acbh13.r1b1s := -0.000000000000E+00 ; -acbh13.r1b1 := (( -0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh15.r1b1x := 0.000000000000E+00 ; -acbh15.r1b1s := -0.000000000000E+00 ; -acbh15.r1b1 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh15.l2b1x := 0.000000000000E+00 ; -acbh15.l2b1s := -0.000000000000E+00 ; -acbh15.l2b1 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh13.l2b1x := 0.000000000000E+00 ; -acbh13.l2b1s := -0.000000000000E+00 ; -acbh13.l2b1 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbv13.r8b1x := 0.000000000000E+00 ; -acbv13.r8b1s := -0.000000000000E+00 ; -acbv13.r8b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv15.r8b1x := 0.000000000000E+00 ; -acbv15.r8b1s := -0.000000000000E+00 ; -acbv15.r8b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv15.l1b1x := 0.000000000000E+00 ; -acbv15.l1b1s := -0.000000000000E+00 ; -acbv15.l1b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv13.l1b1x := 0.000000000000E+00 ; -acbv13.l1b1s := 0.000000000000E+00 ; -acbv13.l1b1 := (( 0.000000000000E+00 )*on_xx1_v+( 0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv12.r1b1x := 0.000000000000E+00 ; -acbv12.r1b1s := -0.000000000000E+00 ; -acbv12.r1b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv14.r1b1x := 0.000000000000E+00 ; -acbv14.r1b1s := -0.000000000000E+00 ; -acbv14.r1b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv16.l2b1x := 0.000000000000E+00 ; -acbv16.l2b1s := -0.000000000000E+00 ; -acbv16.l2b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv14.l2b1x := 0.000000000000E+00 ; -acbv14.l2b1s := -0.000000000000E+00 ; -acbv14.l2b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; - - !! MCB in sector 45 and 56 -acbh14.r4b1x := 0.000000000000E+00 ; -acbh14.r4b1s := 0.000000000000E+00 ; -acbh14.r4b1 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh16.r4b1x := 0.000000000000E+00 ; -acbh16.r4b1s := 0.000000000000E+00 ; -acbh16.r4b1 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh14.l5b1x := 0.000000000000E+00 ; -acbh14.l5b1s := 0.000000000000E+00 ; -acbh14.l5b1 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh12.l5b1x := -0.000000000000E+00 ; -acbh12.l5b1s := -0.000000000000E+00 ; -acbh12.l5b1 := (( -0.000000000000E+00 )*on_xx5_h+( -0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh13.r5b1x := -0.000000000000E+00 ; -acbh13.r5b1s := 0.000000000000E+00 ; -acbh13.r5b1 := (( -0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh15.r5b1x := 0.000000000000E+00 ; -acbh15.r5b1s := 0.000000000000E+00 ; -acbh15.r5b1 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh15.l6b1x := 0.000000000000E+00 ; -acbh15.l6b1s := 0.000000000000E+00 ; -acbh15.l6b1 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh13.l6b1x := 0.000000000000E+00 ; -acbh13.l6b1s := 0.000000000000E+00 ; -acbh13.l6b1 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbv13.r4b1x := 0.000000000000E+00 ; -acbv13.r4b1s := 0.000000000000E+00 ; -acbv13.r4b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv15.r4b1x := 0.000000000000E+00 ; -acbv15.r4b1s := 0.000000000000E+00 ; -acbv15.r4b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv15.l5b1x := 0.000000000000E+00 ; -acbv15.l5b1s := 0.000000000000E+00 ; -acbv15.l5b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv13.l5b1x := 0.000000000000E+00 ; -acbv13.l5b1s := -0.000000000000E+00 ; -acbv13.l5b1 := (( 0.000000000000E+00 )*on_xx5_v+( -0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv12.r5b1x := 0.000000000000E+00 ; -acbv12.r5b1s := 0.000000000000E+00 ; -acbv12.r5b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv14.r5b1x := 0.000000000000E+00 ; -acbv14.r5b1s := 0.000000000000E+00 ; -acbv14.r5b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv16.l6b1x := 0.000000000000E+00 ; -acbv16.l6b1s := 0.000000000000E+00 ; -acbv16.l6b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv14.l6b1x := 0.000000000000E+00 ; -acbv14.l6b1s := 0.000000000000E+00 ; -acbv14.l6b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; - - !! MCB-beam2 for spurious dispersion correction - - !! MCB in sector 81 and 12 -acbh13.r8b2x := 0.000000000000E+00 ; -acbh13.r8b2s := -0.000000000000E+00 ; -acbh13.r8b2 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh15.r8b2x := 0.000000000000E+00 ; -acbh15.r8b2s := -0.000000000000E+00 ; -acbh15.r8b2 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh15.l1b2x := 0.000000000000E+00 ; -acbh15.l1b2s := -0.000000000000E+00 ; -acbh15.l1b2 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh13.l1b2x := -0.000000000000E+00 ; -acbh13.l1b2s := 0.000000000000E+00 ; -acbh13.l1b2 := (( -0.000000000000E+00 )*on_xx1_h+( 0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh12.r1b2x := -0.000000000000E+00 ; -acbh12.r1b2s := -0.000000000000E+00 ; -acbh12.r1b2 := (( -0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh14.r1b2x := 0.000000000000E+00 ; -acbh14.r1b2s := -0.000000000000E+00 ; -acbh14.r1b2 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh16.l2b2x := 0.000000000000E+00 ; -acbh16.l2b2s := -0.000000000000E+00 ; -acbh16.l2b2 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh14.l2b2x := 0.000000000000E+00 ; -acbh14.l2b2s := -0.000000000000E+00 ; -acbh14.l2b2 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbv14.r8b2x := 0.000000000000E+00 ; -acbv14.r8b2s := -0.000000000000E+00 ; -acbv14.r8b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv16.r8b2x := 0.000000000000E+00 ; -acbv16.r8b2s := -0.000000000000E+00 ; -acbv16.r8b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv14.l1b2x := 0.000000000000E+00 ; -acbv14.l1b2s := -0.000000000000E+00 ; -acbv14.l1b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv12.l1b2x := 0.000000000000E+00 ; -acbv12.l1b2s := 0.000000000000E+00 ; -acbv12.l1b2 := (( 0.000000000000E+00 )*on_xx1_v+( 0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv13.r1b2x := 0.000000000000E+00 ; -acbv13.r1b2s := -0.000000000000E+00 ; -acbv13.r1b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv15.r1b2x := 0.000000000000E+00 ; -acbv15.r1b2s := -0.000000000000E+00 ; -acbv15.r1b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv15.l2b2x := 0.000000000000E+00 ; -acbv15.l2b2s := -0.000000000000E+00 ; -acbv15.l2b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv13.l2b2x := 0.000000000000E+00 ; -acbv13.l2b2s := -0.000000000000E+00 ; -acbv13.l2b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; - - !! MCB in sector 45 and 56 -acbh13.r4b2x := 0.000000000000E+00 ; -acbh13.r4b2s := 0.000000000000E+00 ; -acbh13.r4b2 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh15.r4b2x := 0.000000000000E+00 ; -acbh15.r4b2s := 0.000000000000E+00 ; -acbh15.r4b2 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh15.l5b2x := 0.000000000000E+00 ; -acbh15.l5b2s := 0.000000000000E+00 ; -acbh15.l5b2 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh13.l5b2x := -0.000000000000E+00 ; -acbh13.l5b2s := -0.000000000000E+00 ; -acbh13.l5b2 := (( -0.000000000000E+00 )*on_xx5_h+( -0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh12.r5b2x := -0.000000000000E+00 ; -acbh12.r5b2s := 0.000000000000E+00 ; -acbh12.r5b2 := (( -0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh14.r5b2x := 0.000000000000E+00 ; -acbh14.r5b2s := 0.000000000000E+00 ; -acbh14.r5b2 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh16.l6b2x := 0.000000000000E+00 ; -acbh16.l6b2s := 0.000000000000E+00 ; -acbh16.l6b2 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh14.l6b2x := 0.000000000000E+00 ; -acbh14.l6b2s := 0.000000000000E+00 ; -acbh14.l6b2 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbv14.r4b2x := 0.000000000000E+00 ; -acbv14.r4b2s := 0.000000000000E+00 ; -acbv14.r4b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv16.r4b2x := 0.000000000000E+00 ; -acbv16.r4b2s := 0.000000000000E+00 ; -acbv16.r4b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv14.l5b2x := 0.000000000000E+00 ; -acbv14.l5b2s := 0.000000000000E+00 ; -acbv14.l5b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv12.l5b2x := 0.000000000000E+00 ; -acbv12.l5b2s := -0.000000000000E+00 ; -acbv12.l5b2 := (( 0.000000000000E+00 )*on_xx5_v+( -0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv13.r5b2x := 0.000000000000E+00 ; -acbv13.r5b2s := 0.000000000000E+00 ; -acbv13.r5b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv15.r5b2x := 0.000000000000E+00 ; -acbv15.r5b2s := 0.000000000000E+00 ; -acbv15.r5b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv15.l6b2x := 0.000000000000E+00 ; -acbv15.l6b2s := 0.000000000000E+00 ; -acbv15.l6b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv13.l6b2x := 0.000000000000E+00 ; -acbv13.l6b2s := 0.000000000000E+00 ; -acbv13.l6b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; - - /* - !****OPTICS SUMMARY**** - - !Tune and Chroma -Qxb1 = 62.310000; Qyb1 = 60.320000; Qpxb1= -0.000000; Qpyb1= -0.000000; dmux15b1= 30.9765534; dmuy15b1= 29.6485062; -Qxb2 = 62.310000; Qyb2 = 60.320000; Qpxb2= 0.000000; Qpyb2= 0.000000; dmux15b2= 31.0619743; dmuy15b2= 29.7618930; - - !IR Optics summary (phase, twiss param., dispersion) -muxIP1b1= 2.6448000; muyIP1b1= 2.6450000; muxIP1b1_L= 1.2935038; muyIP1b1_L= 1.3627990; muxIP1b1_R= 1.3512962; muyIP1b1_R= 1.2822010; betxIP1b1= 11.000000; betyIP1b1= 11.000000; alfxIP1b1= 0.000000; alfyIP1b1= -0.000000; dxIP1b1= 0.000000; dpxIP1b1= -0.000000; -muxIP1b2= 2.6448000; muyIP1b2= 2.6450000; muxIP1b2_L= 1.3795986; muyIP1b2_L= 1.2742484; muxIP1b2_R= 1.2652014; muyIP1b2_R= 1.3707516; betxIP1b2= 11.000000; betyIP1b2= 11.000000; alfxIP1b2= 0.000000; alfyIP1b2= -0.000000; dxIP1b2= -0.000000; dpxIP1b2= -0.000000; -muxIP5b1= 2.6448000; muyIP5b1= 2.6450000; muxIP5b1_L= 1.2935038; muyIP5b1_L= 1.3627990; muxIP5b1_R= 1.3512962; muyIP5b1_R= 1.2822010; betxIP5b1= 11.000000; betyIP5b1= 11.000000; alfxIP5b1= 0.000000; alfyIP5b1= 0.000000; dxIP5b1= 0.000000; dpxIP5b1= 0.000000; -muxIP5b2= 2.6448000; muyIP5b2= 2.6450000; muxIP5b2_L= 1.3795986; muyIP5b2_L= 1.2742484; muxIP5b2_R= 1.2652014; muyIP5b2_R= 1.3707516; betxIP5b2= 11.000000; betyIP5b2= 11.000000; alfxIP5b2= 0.000000; alfyIP5b2= -0.000000; dxIP5b2= -0.000000; dpxIP5b2= -0.000000; -muxIP2b1= 2.9500000; muyIP2b1= 2.7450000; betxIP2b1= 10.000000; betyIP2b1= 10.000000; alfxIP2b1= -0.000000; alfyIP2b1= -0.000000; dxIP2b1= -0.000000; dpxIP2b1= -0.000000; -muxIP2b2= 2.9500000; muyIP2b2= 2.7450000; betxIP2b2= 10.000000; betyIP2b2= 10.000000; alfxIP2b2= 0.000000; alfyIP2b2= -0.000000; dxIP2b2= -0.000000; dpxIP2b2= -0.000000; -muxIP8b1= 3.0200000; muyIP8b1= 2.8000000; betxIP8b1= 10.000000; betyIP8b1= 10.000000; alfxIP8b1= -0.000000; alfyIP8b1= 0.000000; dxIP8b1= 0.000000; dpxIP8b1= -0.000000; -muxIP8b2= 3.0200000; muyIP8b2= 2.8000000; betxIP8b2= 10.000000; betyIP8b2= 10.000000; alfxIP8b2= -0.000000; alfyIP8b2= 0.000000; dxIP8b2= 0.000000; dpxIP8b2= -0.000000; -muxIP4b1= 2.1600000; muyIP4b1= 1.7200000; betxIP4b1= 239.413644; betyIP4b1= 242.774144; alfxIP4b1= 0.495763; alfyIP4b1= -0.373724; dxIP4b1= 0.000000; dpxIP4b1= -0.000000; -muxIP4b2= 2.1600000; muyIP4b2= 1.7200000; betxIP4b2= 231.105188; betyIP4b2= 303.948682; alfxIP4b2= -0.500292; alfyIP4b2= 0.498879; dxIP4b2= -0.000000; dpxIP4b2= 0.000000; -muxIP6b1= 2.1600000; muyIP6b1= 1.9800000; betxIP6b1= 188.438199; betyIP6b1= 175.629947; alfxIP6b1= -0.553539; alfyIP6b1= 0.667606; dxIP6b1= -0.331638; dpxIP6b1= -0.001250; -muxIP6b2= 2.1600000; muyIP6b2= 1.9800000; betxIP6b2= 189.334229; betyIP6b2= 181.968922; alfxIP6b2= 0.568601; alfyIP6b2= -0.626959; dxIP6b2= -0.304990; dpxIP6b2= 0.000451; -muxIP3b1= 2.2230000; muyIP3b1= 1.9650000; betxIP3b1= 121.566844; betyIP3b1= 218.585060; alfxIP3b1= 2.295731; alfyIP3b1= -2.642890; dxIP3b1= -0.537375; dpxIP3b1= -0.006869; -muxIP3b2= 2.2230000; muyIP3b2= 1.9650000; betxIP3b2= 121.567284; betyIP3b2= 218.584477; alfxIP3b2= -2.295728; alfyIP3b2= 2.642905; dxIP3b2= -0.445260; dpxIP3b2= 0.008749; -muxIP7b1= 2.4640000; muyIP7b1= 2.0000000; betxIP7b1= 120.813252; betyIP7b1= 149.430470; alfxIP7b1= 1.276977; alfyIP7b1= -1.385146; dxIP7b1= -0.169987; dpxIP7b1= -0.000000; -muxIP7b2= 2.4640000; muyIP7b2= 2.0000000; betxIP7b2= 120.813252; betyIP7b2= 149.430471; alfxIP7b2= -1.276977; alfyIP7b2= 1.385146; dxIP7b2= -0.008803; dpxIP7b2= -0.000000; - - !Xscheme summary in IR1, IR2,IR5 and IR8 -xIP1b1=-0.0020000004; yIP1b1=-0.0000000001; pxIP1b1=-0.0000000000; pyIP1b1= 0.0001700000; -xIP1b2= 0.0020000004; yIP1b2=-0.0000000001; pxIP1b2= 0.0000000000; pyIP1b2=-0.0001700000; -xIP2b1= 0.0034999999; yIP2b1= 0.0000000000; pxIP2b1=-0.0000354589; pyIP2b1= 0.0012588794; -xIP2b2=-0.0035000000; yIP2b2=-0.0000000001; pxIP2b2=-0.0000445411; pyIP2b2=-0.0012588794; -xIP5b1= 0.0000000004; yIP5b1= 0.0020000000; pxIP5b1= 0.0001700000; pyIP5b1= 0.0000000000; -xIP5b2=-0.0000000003; yIP5b2=-0.0019999999; pxIP5b2=-0.0001700000; pyIP5b2=-0.0000000000; -xIP8b1=-0.0000000003; yIP8b1=-0.0035000000; pxIP8b1= 0.0019298113; pyIP8b1=-0.0000118486; -xIP8b2=-0.0000000001; yIP8b2= 0.0035000000; pxIP8b2=-0.0019298113; pyIP8b2=-0.0000681514; - - !Arc Optics summary -muxcell81b1=0.24998197; muycell81b1=0.24998197; mux81b1= 5.2178933; muy81b1= 5.2437868; -muxcell45b1=0.24998197; muycell45b1=0.24998197; mux45b1= 5.2178933; muy45b1= 5.2437868; -muxcell12b2=0.24998197; muycell12b2=0.24998197; mux12b2= 5.2178933; muy12b2= 5.2437868; -muxcell56b2=0.24998197; muycell56b2=0.24998197; mux56b2= 5.2178933; muy56b2= 5.2437868; -muxcell12b1=0.25000000; muycell12b1=0.25000000; mux12b1= 5.2441653; muy12b1= 5.2182697; -muxcell56b1=0.25000000; muycell56b1=0.25000000; mux56b1= 5.2441653; muy56b1= 5.2182697; -muxcell81b2=0.25000000; muycell81b2=0.25000000; mux81b2= 5.2441653; muy81b2= 5.2182697; -muxcell45b2=0.25000000; muycell45b2=0.25000000; mux45b2= 5.2441653; muy45b2= 5.2182697; -muxcell23b1=0.25278573; muycell23b1=0.24296472; mux23b1= 5.2552629; muy23b1= 5.0687037; -muxcell78b2=0.25184855; muycell78b2=0.25634235; mux78b2= 5.2352463; muy78b2= 5.3488243; -muxcell34b1=0.25278573; muycell34b1=0.24296472; mux34b1= 5.2814318; muy34b1= 5.0427460; -muxcell67b2=0.25184855; muycell67b2=0.25634235; mux67b2= 5.2619207; muy67b2= 5.3222263; -muxcell67b1=0.25186692; muycell67b1=0.25636098; mux67b1= 5.2775277; muy67b1= 5.4073245; -muxcell34b2=0.25280379; muycell34b2=0.24298226; mux34b2= 5.2973354; muy34b2= 5.1243893; -muxcell78b1=0.25186692; muycell78b1=0.25636098; mux78b1= 5.3050602; muy78b1= 5.3771129; -muxcell23b2=0.25280379; muycell23b2=0.24298226; mux23b2= 5.3247802; muy23b2= 5.1004473; - */ - - - return ; diff --git a/examples/acc-models-lhc/strengths/ATS_Nominal/2022/squeeze/ats_30cm.madx b/examples/acc-models-lhc/strengths/ATS_Nominal/2022/squeeze/ats_30cm.madx deleted file mode 100755 index b95a97c5..00000000 --- a/examples/acc-models-lhc/strengths/ATS_Nominal/2022/squeeze/ats_30cm.madx +++ /dev/null @@ -1,1562 +0,0 @@ -NRJ := 6800.000000 ; -ARC_SQUEEZE := 1.000000 ; - - !***BETAS in IR1 and IR5*** -betx_IP1 := 0.300000 ; -bety_IP1 := 0.300000 ; -betx_IP5 := 0.300000 ; -bety_IP5 := 0.300000 ; - - !***TELE-INDEX in IR1 and IR5*** - rx_IP1 := 2.000000 ; - ry_IP1 := 2.000000 ; - rx_IP5 := 2.000000 ; - ry_IP5 := 2.000000 ; - - !***Exp. configuration in IR1, IR2, IR5 and IR8*** - - !** IR1 -on_x1 := 160.000 ; -on_sep1 := -0.550 ; - on_oh1 := 0.000 ; - on_ov1 := 0.000 ; - phi_IR1:= 90.000 ; -on_sep1_h :=on_sep1 ; -on_sep1_v := 0 ; -on_x1_h := 0 ; -on_x1_v := on_x1 ; -!*on_ssep1_h:=on_sep1_h; -!*on_ssep1_v:=on_sep1_v; -!*on_xx1_h:=on_x1_h ; -!*on_xx1_v:=on_x1_v ; - - !** IR5 -on_x5 := 160.000 ; -on_sep5 := 0.550 ; - on_oh5 := 0.000 ; - on_ov5 := 0.000 ; - phi_IR5:= 0.000 ; -on_sep5_h := 0 ; -on_sep5_v :=on_sep5 ; -on_x5_h := on_x5 ; -on_x5_v := 0 ; -!*on_ssep5_h:=on_sep5_h; -!*on_ssep5_v:=on_sep5_v; -!*on_xx5_h:=on_x5_h ; -!*on_xx5_v:=on_x5_v ; - - !**Spurious dispersion correction -on_disp := 0.000 ; - - !** IR2 - on_x2h := 0.000 ; - on_sep2h:= 1.000 ; - on_x2v := 200.000 ; - on_sep2v:= 0.000 ; - on_a2 := 0.000 ; - on_o2 := 0.000 ; - on_oh2 := 0.000 ; - on_ov2 := 0.000 ; - phi_IR2 := 90.000 ; - - !** IR8 - on_x8h := -200.000 ; - on_sep8h:= 0.000 ; - on_x8v := 0.000 ; - on_sep8v:= -1.000 ; - on_a8 := 0.000 ; - on_o8 := 0.000 ; - on_oh8 := 0.000 ; - on_ov8 := 0.000 ; - phi_IR8 := 180.000 ; - - !** Experimental solenoids -abas:= 12.00/ 6.0*clight/(7E12)*on_sol_atlas; -abls:= 6.05/12.1*clight/(7E12)*on_sol_alice ; -abcs:= 52.00/13.0*clight/(7E12)*on_sol_cms ; - - !***Ring Geometry*** - - !Separation/recombination dipoles -kd1.lr1 := ad1.lr1/l.mbxw; -kd2.l1 := ad2.l5/l.mbrc ; -kd2.r1 := ad2.r5/l.mbrc ; -kd1.l2 := ad1.l2/l.mbx ; -kd1.r2 := ad1.r2/l.mbx ; -kd2.l2 := ad2.l2/l.mbrc ; -kd2.r2 := ad2.r2/l.mbrc ; -kd3.lr3 := ad3.lr3/l.mbw ; -kd4.lr3 := ad4.lr3/l.mbw ; -kd3.l4 := ad3.l4/l.mbrs ; -kd3.r4 := ad3.r4/l.mbrs ; -kd4.l4 := ad4.l4/l.mbrb ; -kd4.r4 := ad4.r4/l.mbrb ; -kd34.lr3 := ad3.lr3/l.mbw ; -kd34.lr7 := ad3.lr7/l.mbw ; -kd1.lr5 := ad1.lr5/l.mbxw; -kd2.l5 := ad2.l5/l.mbrc ; -kd2.r5 := ad2.r5/l.mbrc ; -kd3.lr7 := ad3.lr7/l.mbw ; -kd4.lr7 := ad4.lr7/l.mbw ; -kd1.l8 := ad1.l8/l.mbx ; -kd1.r8 := ad1.r8/l.mbx ; -kd2.l8 := ad2.l8/l.mbrc ; -kd2.r8 := ad2.r8/l.mbrc ; -ksumd2.l1b2 := kd2.l1 ; -ksumd2.l2b2 := kd2.l2 ; -ksumd2.l5b2 := kd2.l5 ; -ksumd2.l8b2 := kd2.l8 ; -ksumd2.r1b2 := kd2.l1 ; -ksumd2.r2b2 := kd2.l2 ; -ksumd2.r5b2 := kd2.l5 ; -ksumd2.r8b2 := kd2.l8 ; - - !Main dipoles -kb.a12 := ab.a12/l.mb ; -kb.a23 := ab.a23/l.mb ; -kb.a34 := ab.a34/l.mb ; -kb.a45 := ab.a45/l.mb ; -kb.a56 := ab.a56/l.mb ; -kb.a67 := ab.a67/l.mb ; -kb.a78 := ab.a78/l.mb ; -kb.a81 := ab.a81/l.mb ; - - !***IR1 Optics*** -KQX.L1 := -0.877783444912E-02 ; -KTQX1.L1 := 0.617780576424E-04 ; -KTQX2.L1 := 0.125165424386E-04 ; -KQX.R1 := -KQX.L1 ; -KTQX1.R1 := -KTQX1.L1 ; -KTQX2.R1 := -KTQX2.L1 ; - - !Beam1 -KQ4.L1B1 := 0.348610526342E-02 ; -KQ4.R1B1 := -0.348610526342E-02 ; -KQ5.L1B1 := -0.215335522036E-02 ; -KQ5.R1B1 := 0.199596830214E-02 ; -KQ6.L1B1 := 0.322580651773E-03 ; -KQ6.R1B1 := -0.322580651659E-03 ; -KQ7.L1B1 := -0.703393382042E-02 ; -KQ7.R1B1 := 0.668075870251E-02 ; -KQ8.L1B1 := 0.783967055175E-02 ; -KQ8.R1B1 := -0.732499473054E-02 ; -KQ9.L1B1 := -0.664472235184E-02 ; -KQ9.R1B1 := 0.657852345480E-02 ; -KQ10.L1B1 := 0.703681858794E-02 ; -KQ10.R1B1 := -0.664461481782E-02 ; -KQTL11.L1B1 := 0.182468617483E-02 ; -KQTL11.R1B1 := -0.206826716434E-03 ; -KQT12.L1B1 := -0.124751358961E-02 ; -KQT12.R1B1 := -0.221716335952E-02 ; -KQT13.L1B1 := 0.810798669400E-03 ; -KQT13.R1B1 := -0.401475427321E-03 ; - - !Beam2 -KQ4.L1B2 := -0.338572138643E-02 ; -KQ4.R1B2 := 0.338572138643E-02 ; -KQ5.L1B2 := 0.178918170733E-02 ; -KQ5.R1B2 := -0.194213206923E-02 ; -KQ6.L1B2 := -0.322580651773E-03 ; -KQ6.R1B2 := 0.322580651659E-03 ; -KQ7.L1B2 := 0.670812235286E-02 ; -KQ7.R1B2 := -0.727568607311E-02 ; -KQ8.L1B2 := -0.772303210513E-02 ; -KQ8.R1B2 := 0.777204419047E-02 ; -KQ9.L1B2 := 0.663357954112E-02 ; -KQ9.R1B2 := -0.644539899507E-02 ; -KQ10.L1B2 := -0.648227868367E-02 ; -KQ10.R1B2 := 0.701717664650E-02 ; -KQTL11.L1B2 := -0.458355761348E-03 ; -KQTL11.R1B2 := 0.280088861473E-02 ; -KQT12.L1B2 := -0.376602324363E-04 ; -KQT12.R1B2 := -0.215672284025E-02 ; -KQT13.L1B2 := -0.729742747429E-03 ; -KQT13.R1B2 := -0.138145708621E-02 ; - - !***IR1 X-scheme*** -ACBXV1.L1x := 0.392156862745E-07 ; -ACBXV1.L1s := -0.800000000000E-05 ; -ACBXV1.L1 := ( 0.392156862745E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXV1.R1x := -0.392156862745E-07 ; -ACBXV1.R1s := -0.800000000000E-05 ; -ACBXV1.R1 := ( -0.392156862745E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXH1.L1x := 0.392156862745E-07 ; -ACBXH1.L1s := 0.800000000000E-05 ; -ACBXH1.L1 := ( 0.392156862745E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXH1.R1x := -0.392156862745E-07 ; -ACBXH1.R1s := 0.800000000000E-05 ; -ACBXH1.R1 := ( -0.392156862745E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXV2.L1x := 0.392156862745E-07 ; -ACBXV2.L1s := -0.800000000000E-05 ; -ACBXV2.L1 := ( 0.392156862745E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXV2.R1x := -0.392156862745E-07 ; -ACBXV2.R1s := -0.800000000000E-05 ; -ACBXV2.R1 := ( -0.392156862745E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXH2.L1x := 0.392156862745E-07 ; -ACBXH2.L1s := 0.800000000000E-05 ; -ACBXH2.L1 := ( 0.392156862745E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXH2.R1x := -0.392156862745E-07 ; -ACBXH2.R1s := 0.800000000000E-05 ; -ACBXH2.R1 := ( -0.392156862745E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXV3.L1x := 0.392156862745E-07 ; -ACBXV3.L1s := -0.800000000000E-05 ; -ACBXV3.L1 := ( 0.392156862745E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXV3.R1x := -0.392156862745E-07 ; -ACBXV3.R1s := -0.800000000000E-05 ; -ACBXV3.R1 := ( -0.392156862745E-07 )*on_x1_v +( -0.800000000000E-05 )*on_sep1_v ; -ACBXH3.L1x := 0.392156862745E-07 ; -ACBXH3.L1s := 0.800000000000E-05 ; -ACBXH3.L1 := ( 0.392156862745E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; -ACBXH3.R1x := -0.392156862745E-07 ; -ACBXH3.R1s := 0.800000000000E-05 ; -ACBXH3.R1 := ( -0.392156862745E-07 )*on_x1_h +( 0.800000000000E-05 )*on_sep1_h ; - - !Beam1 -ACBYVS4.L1B1x := -0.281245952134E-06 ; -ACBYVS4.L1B1s := -0.237594863146E-04 ; -ACBYVS4.L1B1ov:= 0.353233761277E-04 ; -ACBYVS4.L1B1 := ( -0.281245952134E-06 )*on_x1_v+( -0.237594863146E-04 )*on_sep1_v+( 0.353233761277E-04 )*on_ov1; -ACBYVS4.R1B1x := 0.110872193863E-06 ; -ACBYVS4.R1B1s := 0.594916066580E-06 ; -ACBYVS4.R1B1ov:= 0.267150278371E-04 ; -ACBYVS4.R1B1 := ( 0.110872193863E-06 )*on_x1_v+( 0.594916066580E-06 )*on_sep1_v+( 0.267150278371E-04 )*on_ov1; -ACBCV5.L1B1x := -0.722482932831E-07 ; -ACBCV5.L1B1s := 0.112239012505E-04 ; -ACBCV5.L1B1ov := 0.329648163302E-04 ; -ACBCV5.L1B1 := ( -0.722482932831E-07 )*on_x1_v+( 0.112239012505E-04 )*on_sep1_v+( 0.329648163302E-04 )*on_ov1; -ACBCV6.R1B1x := 0.150617216906E-06 ; -ACBCV6.R1B1s := -0.777218164977E-05 ; -ACBCV6.R1B1ov := 0.249312518351E-04 ; -ACBCV6.R1B1 := ( 0.150617216906E-06 )*on_x1_v+( -0.777218164977E-05 )*on_sep1_v+( 0.249312518351E-04 )*on_ov1; -ACBYHS4.L1B1x := -0.121655339249E-06 ; -ACBYHS4.L1B1s := -0.384135329061E-07 ; -ACBYHS4.L1B1oh:= 0.284911563821E-04 ; -ACBYHS4.L1B1 := ( -0.121655339249E-06 )*on_x1_h+( -0.384135329061E-07 )*on_sep1_h+( 0.284911563821E-04 )*on_oh1; -ACBYHS4.R1B1x := 0.266153400225E-06 ; -ACBYHS4.R1B1s := 0.261019442741E-04 ; -ACBYHS4.R1B1oh:= 0.328956357932E-04 ; -ACBYHS4.R1B1 := ( 0.266153400225E-06 )*on_x1_h+( 0.261019442741E-04 )*on_sep1_h+( 0.328956357932E-04 )*on_oh1; -ACBCH6.L1B1x := -0.134357030618E-06 ; -ACBCH6.L1B1s := 0.693306923764E-05 ; -ACBCH6.L1B1oh := 0.265887873734E-04 ; -ACBCH6.L1B1 := ( -0.134357030618E-06 )*on_x1_h+( 0.693306923764E-05 )*on_sep1_h+( 0.265887873734E-04 )*on_oh1; -ACBCH5.R1B1x := 0.857610895141E-07 ; -ACBCH5.R1B1s := -0.133217916395E-04 ; -ACBCH5.R1B1oh := 0.306991774531E-04 ; -ACBCH5.R1B1 := ( 0.857610895141E-07 )*on_x1_h+( -0.133217916395E-04 )*on_sep1_h+( 0.306991774531E-04 )*on_oh1; -ACBCH8.L1B1oh := -0.133588134247E-04 ; -ACBCH8.L1B1 := ( -0.133588134247E-04)*on_oh1; -ACBCV7.L1B1ov := -0.433241051972E-04 ; -ACBCV7.L1B1 := ( -0.433241051972E-04)*on_ov1; -ACBCH7.R1B1oh := -0.444525824854E-04 ; -ACBCH7.R1B1 := ( -0.444525824854E-04)*on_oh1; -ACBCV8.R1B1ov := -0.130813381718E-04 ; -ACBCV8.R1B1 := ( -0.130813381718E-04)*on_ov1; - - !Beam2 -ACBYVS4.L1B2x := 0.122546085791E-06 ; -ACBYVS4.L1B2s := 0.748252135538E-08 ; -ACBYVS4.L1B2ov:= 0.273634965302E-04 ; -ACBYVS4.L1B2 := ( 0.122546085791E-06 )*on_x1_v+( 0.748252135538E-08 )*on_sep1_v+( 0.273634965302E-04 )*on_ov1; -ACBYVS4.R1B2x := -0.266756733078E-06 ; -ACBYVS4.R1B2s := 0.260104113592E-04 ; -ACBYVS4.R1B2ov:= 0.327645072486E-04 ; -ACBYVS4.R1B2 := ( -0.266756733078E-06 )*on_x1_v+( 0.260104113592E-04 )*on_sep1_v+( 0.327645072486E-04 )*on_ov1; -ACBCV6.L1B2x := 0.137617206149E-06 ; -ACBCV6.L1B2s := 0.710135246162E-05 ; -ACBCV6.L1B2ov := 0.255364219436E-04 ; -ACBCV6.L1B2 := ( 0.137617206149E-06 )*on_x1_v+( 0.710135246162E-05 )*on_sep1_v+( 0.255364219436E-04 )*on_ov1; -ACBCV5.R1B2x := -0.858457836992E-07 ; -ACBCV5.R1B2s := -0.133362948735E-04 ; -ACBCV5.R1B2ov := 0.305768044282E-04 ; -ACBCV5.R1B2 := ( -0.858457836992E-07 )*on_x1_v+( -0.133362948735E-04 )*on_sep1_v+( 0.305768044282E-04 )*on_ov1; -ACBYHS4.L1B2x := 0.281816169434E-06 ; -ACBYHS4.L1B2s := -0.236689561328E-04 ; -ACBYHS4.L1B2oh:= 0.370307769924E-04 ; -ACBYHS4.L1B2 := ( 0.281816169434E-06 )*on_x1_h+( -0.236689561328E-04 )*on_sep1_h+( 0.370307769924E-04 )*on_oh1; -ACBYHS4.R1B2x := -0.108294138900E-06 ; -ACBYHS4.R1B2s := 0.727880650888E-06 ; -ACBYHS4.R1B2oh:= 0.273423708564E-04 ; -ACBYHS4.R1B2 := ( -0.108294138900E-06 )*on_x1_h+( 0.727880650888E-06 )*on_sep1_h+( 0.273423708564E-04 )*on_oh1; -ACBCH5.L1B2x := 0.719880545811E-07 ; -ACBCH5.L1B2s := 0.111823462090E-04 ; -ACBCH5.L1B2oh := 0.345582131704E-04 ; -ACBCH5.L1B2 := ( 0.719880545811E-07 )*on_x1_h+( 0.111823462090E-04 )*on_sep1_h+( 0.345582131704E-04 )*on_oh1; -ACBCH6.R1B2x := -0.150896899480E-06 ; -ACBCH6.R1B2s := -0.778656531047E-05 ; -ACBCH6.R1B2oh := 0.255167068418E-04 ; -ACBCH6.R1B2 := ( -0.150896899480E-06 )*on_x1_h+( -0.778656531047E-05 )*on_sep1_h+( 0.255167068418E-04 )*on_oh1; -ACBCV8.L1B2ov := -0.138347635080E-04 ; -ACBCV8.L1B2 := ( -0.138347635080E-04)*on_ov1; -ACBCH7.L1B2oh := -0.422294250221E-04 ; -ACBCH7.L1B2 := ( -0.422294250221E-04)*on_oh1; -ACBCV7.R1B2ov := -0.449767680820E-04 ; -ACBCV7.R1B2 := ( -0.449767680820E-04)*on_ov1; -ACBCH8.R1B2oh := -0.126156306220E-04 ; -ACBCH8.R1B2 := ( -0.126156306220E-04)*on_oh1; - - !***IR5 Optics*** -KQX.L5 := -0.877783444912E-02 ; -KTQX1.L5 := 0.617780576424E-04 ; -KTQX2.L5 := 0.125165424386E-04 ; -KQX.R5 := -KQX.L5 ; -KTQX1.R5 := -KTQX1.L5 ; -KTQX2.R5 := -KTQX2.L5 ; - - !Beam1 -KQ4.L5B1 := 0.348610526342E-02 ; -KQ4.R5B1 := -0.348610526342E-02 ; -KQ5.L5B1 := -0.215335522036E-02 ; -KQ5.R5B1 := 0.199596830214E-02 ; -KQ6.L5B1 := 0.322580651773E-03 ; -KQ6.R5B1 := -0.322580651659E-03 ; -KQ7.L5B1 := -0.703393382042E-02 ; -KQ7.R5B1 := 0.668075870251E-02 ; -KQ8.L5B1 := 0.783967055175E-02 ; -KQ8.R5B1 := -0.732499473054E-02 ; -KQ9.L5B1 := -0.664472235184E-02 ; -KQ9.R5B1 := 0.657852345480E-02 ; -KQ10.L5B1 := 0.703681858794E-02 ; -KQ10.R5B1 := -0.664461481782E-02 ; -KQTL11.L5B1 := 0.182468617483E-02 ; -KQTL11.R5B1 := -0.206826716434E-03 ; -KQT12.L5B1 := -0.124751358961E-02 ; -KQT12.R5B1 := -0.221716335952E-02 ; -KQT13.L5B1 := 0.810798669400E-03 ; -KQT13.R5B1 := -0.401475427321E-03 ; - - !Beam2 -KQ4.L5B2 := -0.338572138643E-02 ; -KQ4.R5B2 := 0.338572138643E-02 ; -KQ5.L5B2 := 0.178918170733E-02 ; -KQ5.R5B2 := -0.194213206923E-02 ; -KQ6.L5B2 := -0.322580651773E-03 ; -KQ6.R5B2 := 0.322580651659E-03 ; -KQ7.L5B2 := 0.670812235286E-02 ; -KQ7.R5B2 := -0.727568607311E-02 ; -KQ8.L5B2 := -0.772303210513E-02 ; -KQ8.R5B2 := 0.777204419047E-02 ; -KQ9.L5B2 := 0.663357954112E-02 ; -KQ9.R5B2 := -0.644539899507E-02 ; -KQ10.L5B2 := -0.648227868367E-02 ; -KQ10.R5B2 := 0.701717664650E-02 ; -KQTL11.L5B2 := -0.458355761348E-03 ; -KQTL11.R5B2 := 0.280088861473E-02 ; -KQT12.L5B2 := -0.376602324363E-04 ; -KQT12.R5B2 := -0.215672284025E-02 ; -KQT13.L5B2 := -0.729742747429E-03 ; -KQT13.R5B2 := -0.138145708621E-02 ; - - !***IR5 X-scheme*** -ACBXV1.L5x := 0.392156862745E-07 ; -ACBXV1.L5s := 0.800000000000E-05 ; -ACBXV1.L5 := ( 0.392156862745E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXV1.R5x := -0.392156862745E-07 ; -ACBXV1.R5s := 0.800000000000E-05 ; -ACBXV1.R5 := ( -0.392156862745E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXH1.L5x := 0.392156862745E-07 ; -ACBXH1.L5s := -0.800000000000E-05 ; -ACBXH1.L5 := ( 0.392156862745E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXH1.R5x := -0.392156862745E-07 ; -ACBXH1.R5s := -0.800000000000E-05 ; -ACBXH1.R5 := ( -0.392156862745E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXV2.L5x := 0.392156862745E-07 ; -ACBXV2.L5s := 0.800000000000E-05 ; -ACBXV2.L5 := ( 0.392156862745E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXV2.R5x := -0.392156862745E-07 ; -ACBXV2.R5s := 0.800000000000E-05 ; -ACBXV2.R5 := ( -0.392156862745E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXH2.L5x := 0.392156862745E-07 ; -ACBXH2.L5s := -0.800000000000E-05 ; -ACBXH2.L5 := ( 0.392156862745E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXH2.R5x := -0.392156862745E-07 ; -ACBXH2.R5s := -0.800000000000E-05 ; -ACBXH2.R5 := ( -0.392156862745E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXV3.L5x := 0.392156862745E-07 ; -ACBXV3.L5s := 0.800000000000E-05 ; -ACBXV3.L5 := ( 0.392156862745E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXV3.R5x := -0.392156862745E-07 ; -ACBXV3.R5s := 0.800000000000E-05 ; -ACBXV3.R5 := ( -0.392156862745E-07 )*on_x5_v +( 0.800000000000E-05 )*on_sep5_v ; -ACBXH3.L5x := 0.392156862745E-07 ; -ACBXH3.L5s := -0.800000000000E-05 ; -ACBXH3.L5 := ( 0.392156862745E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; -ACBXH3.R5x := -0.392156862745E-07 ; -ACBXH3.R5s := -0.800000000000E-05 ; -ACBXH3.R5 := ( -0.392156862745E-07 )*on_x5_h +( -0.800000000000E-05 )*on_sep5_h ; - - !Beam1 -ACBYVS4.L5B1x := -0.266166903849E-06 ; -ACBYVS4.L5B1s := 0.261020433656E-04 ; -ACBYVS4.L5B1ov:= 0.343079074809E-04 ; -ACBYVS4.L5B1 := ( -0.266166903849E-06 )*on_x5_v+( 0.261020433656E-04 )*on_sep5_v+( 0.343079074809E-04 )*on_ov5; -ACBYVS4.R5B1x := 0.123368232749E-06 ; -ACBYVS4.R5B1s := 0.499071887817E-07 ; -ACBYVS4.R5B1ov:= 0.275828131491E-04 ; -ACBYVS4.R5B1 := ( 0.123368232749E-06 )*on_x5_v+( 0.499071887817E-07 )*on_sep5_v+( 0.275828131491E-04 )*on_ov5; -ACBCV5.L5B1x := -0.857529857738E-07 ; -ACBCV5.L5B1s := -0.133218793205E-04 ; -ACBCV5.L5B1ov := 0.320171510416E-04 ; -ACBCV5.L5B1 := ( -0.857529857738E-07 )*on_x5_v+( -0.133218793205E-04 )*on_sep5_v+( 0.320171510416E-04 )*on_ov5; -ACBCV6.R5B1x := 0.135842703770E-06 ; -ACBCV6.R5B1s := 0.700978408167E-05 ; -ACBCV6.R5B1ov := 0.257410946803E-04 ; -ACBCV6.R5B1 := ( 0.135842703770E-06 )*on_x5_v+( 0.700978408167E-05 )*on_sep5_v+( 0.257410946803E-04 )*on_ov5; -ACBYHS4.L5B1x := -0.109420513229E-06 ; -ACBYHS4.L5B1s := 0.669752998485E-06 ; -ACBYHS4.L5B1oh:= 0.275961266314E-04 ; -ACBYHS4.L5B1 := ( -0.109420513229E-06 )*on_x5_h+( 0.669752998485E-06 )*on_sep5_h+( 0.275961266314E-04 )*on_oh5; -ACBYHS4.R5B1x := 0.281216265263E-06 ; -ACBYHS4.R5B1s := -0.237621378342E-04 ; -ACBYHS4.R5B1oh:= 0.337477618893E-04 ; -ACBYHS4.R5B1 := ( 0.281216265263E-06 )*on_x5_h+( -0.237621378342E-04 )*on_sep5_h+( 0.337477618893E-04 )*on_oh5; -ACBCH6.L5B1x := -0.149102001116E-06 ; -ACBCH6.L5B1s := -0.769393676277E-05 ; -ACBCH6.L5B1oh := 0.257535192146E-04 ; -ACBCH6.L5B1 := ( -0.149102001116E-06 )*on_x5_h+( -0.769393676277E-05 )*on_sep5_h+( 0.257535192146E-04 )*on_oh5; -ACBCH5.R5B1x := 0.721047148887E-07 ; -ACBCH5.R5B1s := 0.112004639097E-04 ; -ACBCH5.R5B1oh := 0.314944066562E-04 ; -ACBCH5.R5B1 := ( 0.721047148887E-07 )*on_x5_h+( 0.112004639097E-04 )*on_sep5_h+( 0.314944066562E-04 )*on_oh5; -ACBCH8.L5B1oh := -0.126700783025E-04 ; -ACBCH8.L5B1 := ( -0.126700783025E-04)*on_oh5; -ACBCV7.L5B1ov := -0.407706318521E-04 ; -ACBCV7.L5B1 := ( -0.407706318521E-04)*on_ov5; -ACBCH7.R5B1oh := -0.471309617448E-04 ; -ACBCH7.R5B1 := ( -0.471309617448E-04)*on_oh5; -ACBCV8.R5B1ov := -0.137689941345E-04 ; -ACBCV8.R5B1 := ( -0.137689941345E-04)*on_ov5; - - !Beam2 -ACBYVS4.L5B2x := 0.109736563940E-06 ; -ACBYVS4.L5B2s := 0.653517160831E-06 ; -ACBYVS4.L5B2ov:= 0.264884641979E-04 ; -ACBYVS4.L5B2 := ( 0.109736563940E-06 )*on_x5_v+( 0.653517160831E-06 )*on_sep5_v+( 0.264884641979E-04 )*on_ov5; -ACBYVS4.R5B2x := -0.281845261328E-06 ; -ACBYVS4.R5B2s := -0.236663817133E-04 ; -ACBYVS4.R5B2ov:= 0.336200208644E-04 ; -ACBYVS4.R5B2 := ( -0.281845261328E-06 )*on_x5_v+( -0.236663817133E-04 )*on_sep5_v+( 0.336200208644E-04 )*on_ov5; -ACBCV6.L5B2x := 0.152404833794E-06 ; -ACBCV6.L5B2s := -0.786442678145E-05 ; -ACBCV6.L5B2ov := 0.247198159654E-04 ; -ACBCV6.L5B2 := ( 0.152404833794E-06 )*on_x5_v+( -0.786442678145E-05 )*on_sep5_v+( 0.247198159654E-04 )*on_ov5; -ACBCV5.R5B2x := -0.721269061931E-07 ; -ACBCV5.R5B2s := 0.112050429019E-04 ; -ACBCV5.R5B2ov := 0.313751949645E-04 ; -ACBCV5.R5B2 := ( -0.721269061931E-07 )*on_x5_v+( 0.112050429019E-04 )*on_sep5_v+( 0.313751949645E-04 )*on_ov5; -ACBYHS4.L5B2x := 0.266743291524E-06 ; -ACBYHS4.L5B2s := 0.260103187394E-04 ; -ACBYHS4.L5B2oh:= 0.359135356249E-04 ; -ACBYHS4.L5B2 := ( 0.266743291524E-06 )*on_x5_h+( 0.260103187394E-04 )*on_sep5_h+( 0.359135356249E-04 )*on_oh5; -ACBYHS4.R5B2x := -0.120840120185E-06 ; -ACBYHS4.R5B2s := -0.804842961618E-07 ; -ACBYHS4.R5B2oh:= 0.282427348442E-04 ; -ACBYHS4.R5B2 := ( -0.120840120185E-06 )*on_x5_h+( -0.804842961618E-07 )*on_sep5_h+( 0.282427348442E-04 )*on_oh5; -ACBCH5.L5B2x := 0.858538912509E-07 ; -ACBCH5.L5B2s := -0.133362116939E-04 ; -ACBCH5.L5B2oh := 0.335155705775E-04 ; -ACBCH5.L5B2 := ( 0.858538912509E-07 )*on_x5_h+( -0.133362116939E-04 )*on_sep5_h+( 0.335155705775E-04 )*on_oh5; -ACBCH6.R5B2x := -0.136135186404E-06 ; -ACBCH6.R5B2s := 0.702483300611E-05 ; -ACBCH6.R5B2oh := 0.263569530680E-04 ; -ACBCH6.R5B2 := ( -0.136135186404E-06 )*on_x5_h+( 0.702483300611E-05 )*on_sep5_h+( 0.263569530680E-04 )*on_oh5; -ACBCV8.L5B2ov := -0.131556103492E-04 ; -ACBCV8.L5B2 := ( -0.131556103492E-04)*on_ov5; -ACBCH7.L5B2oh := -0.395818463357E-04 ; -ACBCH7.L5B2 := ( -0.395818463357E-04)*on_oh5; -ACBCV7.R5B2ov := -0.476899426658E-04 ; -ACBCV7.R5B2 := ( -0.476899426658E-04)*on_ov5; -ACBCH8.R5B2oh := -0.132885845728E-04 ; -ACBCH8.R5B2 := ( -0.132885845728E-04)*on_oh5; - - !***IR2 Optics*** -KQX.L2 := 0.877985714100E-02 ; -KTQX1.L2 := 0.000000000000E+00 ; -KTQX2.L2 := 0.000000000000E+00 ; -KQX.R2 := -KQX.L2 ; -KTQX1.R2 := -KTQX1.L2 ; -KTQX2.R2 := -KTQX2.L2 ; - - !Beam1 -KQ4.L2B1 := -0.358852557200E-02 ; -KQ4.R2B1 := 0.358852557200E-02 ; -KQ5.L2B1 := 0.386883789905E-02 ; -KQ5.R2B1 := -0.386883789905E-02 ; -KQ6.L2B1 := -0.492435569092E-02 ; -KQ6.R2B1 := 0.425177467072E-02 ; -KQ7.L2B1 := 0.761616118623E-02 ; -KQ7.R2B1 := -0.613869012049E-02 ; -KQ8.L2B1 := -0.537965601625E-02 ; -KQ8.R2B1 := 0.657798395538E-02 ; -KQ9.L2B1 := 0.681341947198E-02 ; -KQ9.R2B1 := -0.596094433128E-02 ; -KQ10.L2B1 := -0.650362717973E-02 ; -KQ10.R2B1 := 0.726423138201E-02 ; -KQTL11.L2B1 := 0.675669396109E-03 ; -KQTL11.R2B1 := -0.923676200832E-03 ; -KQT12.L2B1 := -0.312494616900E-02 ; -KQT12.R2B1 := -0.102110530253E-02 ; -KQT13.L2B1 := 0.237691686504E-02 ; -KQT13.R2B1 := -0.284614990308E-02 ; - - !Beam2 -KQ4.L2B2 := 0.312579529788E-02 ; -KQ4.R2B2 := -0.312579529788E-02 ; -KQ5.L2B2 := -0.415746617545E-02 ; -KQ5.R2B2 := 0.415746617545E-02 ; -KQ6.L2B2 := 0.441581636867E-02 ; -KQ6.R2B2 := -0.426662345639E-02 ; -KQ7.L2B2 := -0.789021364853E-02 ; -KQ7.R2B2 := 0.720178834277E-02 ; -KQ8.L2B2 := 0.787922290717E-02 ; -KQ8.R2B2 := -0.527165690537E-02 ; -KQ9.L2B2 := -0.696896821457E-02 ; -KQ9.R2B2 := 0.658463305103E-02 ; -KQ10.L2B2 := 0.714020053108E-02 ; -KQ10.R2B2 := -0.632208194372E-02 ; -KQTL11.L2B2 := 0.325614420757E-02 ; -KQTL11.R2B2 := 0.648296308048E-03 ; -KQT12.L2B2 := -0.356981565600E-02 ; -KQT12.R2B2 := -0.346326625000E-04 ; -KQT13.L2B2 := 0.338269578600E-02 ; -KQT13.R2B2 := 0.119626950939E-02 ; - - !***IR2 X-scheme*** -abxwt.l2 := -0.0000772587268993839836*on_alice ; -abwmd.l2 := +0.0001472587268993839840*on_alice ; -abaw.r2 := -0.0001335474860334838000*on_alice ; -abxwt.r2 := +0.0000635474860334838004*on_alice ; -ACBXV1.L2x := 0.794117647059E-07; -ACBXV1.L2s := 0.800000000000E-05; -ACBXV1.L2 := 0.794117647059E-07 * on_x2v + ( 0.800000000000E-05) * on_sep2v; -ACBXV1.R2x := -0.794117647059E-07; -ACBXV1.R2s := 0.800000000000E-05; -ACBXV1.R2 := -0.794117647059E-07 * on_x2v + ( 0.800000000000E-05) * on_sep2v; -ACBXH1.L2x := 0.000000000000E+00; -ACBXH1.L2s := 0.000000000000E+00; -ACBXH1.L2 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h; -ACBXH1.R2x := -0.794117647059E-07; -ACBXH1.R2s := 0.800000000000E-05; -ACBXH1.R2 := -0.794117647059E-07 * on_x2h + ( 0.800000000000E-05) * on_sep2h; -ACBXV2.L2x := 0.794117647059E-07; -ACBXV2.L2s := 0.800000000000E-05; -ACBXV2.L2 := 0.794117647059E-07 * on_x2v + ( 0.800000000000E-05) * on_sep2v; -ACBXV2.R2x := -0.794117647059E-07; -ACBXV2.R2s := 0.800000000000E-05; -ACBXV2.R2 := -0.794117647059E-07 * on_x2v + ( 0.800000000000E-05) * on_sep2v; -ACBXH2.L2x := 0.119117647059E-06; -ACBXH2.L2s := 0.120000000000E-04; -ACBXH2.L2 := 0.119117647059E-06 * on_x2h + ( 0.120000000000E-04) * on_sep2h; -ACBXH2.R2x := -0.794117647059E-07; -ACBXH2.R2s := 0.800000000000E-05; -ACBXH2.R2 := -0.794117647059E-07 * on_x2h + ( 0.800000000000E-05) * on_sep2h; -ACBXV3.L2x := 0.794117647059E-07; -ACBXV3.L2s := 0.800000000000E-05; -ACBXV3.L2 := 0.794117647059E-07 * on_x2v + ( 0.800000000000E-05) * on_sep2v; -ACBXV3.R2x := -0.794117647059E-07; -ACBXV3.R2s := 0.800000000000E-05; -ACBXV3.R2 := -0.794117647059E-07 * on_x2v + ( 0.800000000000E-05) * on_sep2v; -ACBXH3.L2x := 0.119117647059E-06; -ACBXH3.L2s := 0.120000000000E-04; -ACBXH3.L2 := 0.119117647059E-06 * on_x2h + ( 0.120000000000E-04) * on_sep2h; -ACBXH3.R2x := -0.794117647059E-07; -ACBXH3.R2s := 0.800000000000E-05; -ACBXH3.R2 := -0.794117647059E-07 * on_x2h + ( 0.800000000000E-05) * on_sep2h; - - !Beam1 - ACBYVS4.L2B1x := -0.316791822695E-06 ; - ACBYVS4.L2B1s := 0.224918760551E-06 ; - ACBYVS4.L2B1o := 0.416512646006E-04 ; - ACBYVS4.L2B1ov:= 0.124276324679E-04 ; - ACBYVS4.L2B1 := -0.316791822695E-06 * on_x2v + ( 0.224918760551E-06) * on_sep2v + ( 0.416512646006E-04) * on_o2 + ( 0.124276324679E-04) * on_ov2; - ACBYV4.L2B1 := 0.000000000000E+00 * on_x2v + ( 0.000000000000E+00) * on_sep2v + ( 0.000000000000E+00) * on_o2 + ( 0.124276324679E-04) * on_ov2; - ACBYVS4.R2B1x := 0.131256716597E-06 ; - ACBYVS4.R2B1s := 0.149773235597E-04 ; - ACBYVS4.R2B1o := 0.104983092554E-03 ; - ACBYVS4.R2B1ov:= 0.351929077576E-04 ; - ACBYVS4.R2B1 := 0.131256716597E-06 * on_x2v + ( 0.149773235597E-04) * on_sep2v + ( 0.104983092554E-03) * on_o2 + ( 0.351929077576E-04) * on_ov2; - ACBYVS5.L2B1x := -0.831042935597E-07 ; - ACBYVS5.L2B1s := 0.154816151303E-04 ; - ACBYVS5.L2B1o := -0.459774008719E-04 ; - ACBYVS5.L2B1ov:= -0.840825063426E-05 ; - ACBYVS5.L2B1 := -0.831042935597E-07 * on_x2v + ( 0.154816151303E-04) * on_sep2v + ( -0.459774008719E-04) * on_o2 + ( -0.840825063426E-05) * on_ov2; - ACBCVS5.R2B1x := 0.201032114300E-06 ; - ACBCVS5.R2B1s := -0.374219428473E-05 ; - ACBCVS5.R2B1o := -0.516326774526E-04 ; - ACBCVS5.R2B1ov:= -0.302153453818E-05 ; - ACBCVS5.R2B1 := 0.201032114300E-06 * on_x2v + ( -0.374219428473E-05) * on_sep2v + ( -0.516326774526E-04) * on_o2 + ( -0.302153453818E-05) * on_ov2; - ACBCV5.R2B1 := 0.000000000000E+00 * on_x2v + ( 0.000000000000E+00) * on_sep2v + ( 0.000000000000E+00) * on_o2 + ( -0.302153453818E-05) * on_ov2; - ACBYHS4.L2B1x := -0.249627090553E-06 ; - ACBYHS4.L2B1s := 0.803508181850E-05 ; - ACBYHS4.L2B1a := 0.557911400224E-06 ; - ACBYHS4.L2B1oh:= 0.339908754463E-04 ; - ACBYHS4.L2B1 := -0.249627090553E-06 * on_x2h + ( 0.803508181850E-05) * on_sep2h + ( 0.557911400224E-06) * on_a2 + ( 0.339908754463E-04) * on_oh2; - ACBYHS4.R2B1x := 0.281869585804E-06 ; - ACBYHS4.R2B1s := -0.627854144732E-05 ; - ACBYHS4.R2B1a := -0.385607874382E-06 ; - ACBYHS4.R2B1oh:= 0.126868746335E-04 ; - ACBYHS4.R2B1 := 0.281869585804E-06 * on_x2h + ( -0.627854144732E-05) * on_sep2h + ( -0.385607874382E-06) * on_a2 + ( 0.126868746335E-04) * on_oh2; - ACBYH4.R2B1 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h + ( 0.000000000000E+00) * on_a2 + ( 0.126868746335E-04) * on_oh2; - ACBYHS5.L2B1x := -0.142510897364E-06 ; - ACBYHS5.L2B1s := -0.131051689387E-05 ; - ACBYHS5.L2B1a := -0.534440984980E-06 ; - ACBYHS5.L2B1oh:= -0.199709128145E-05 ; - ACBYHS5.L2B1 := -0.142510897364E-06 * on_x2h + ( -0.131051689387E-05) * on_sep2h + ( -0.534440984980E-06) * on_a2 + ( -0.199709128145E-05) * on_oh2; - ACBYH5.L2B1 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h + ( 0.000000000000E+00) * on_a2 + ( -0.199709128145E-05) * on_oh2; - ACBCHS5.R2B1x := 0.124609032603E-06 ; - ACBCHS5.R2B1s := 0.232108990184E-04 ; - ACBCHS5.R2B1a := 0.103924167497E-05 ; - ACBCHS5.R2B1oh:= -0.597671817392E-05 ; - ACBCHS5.R2B1 := 0.124609032603E-06 * on_x2h + ( 0.232108990184E-04) * on_sep2h + ( 0.103924167497E-05) * on_a2 + ( -0.597671817392E-05) * on_oh2; - ACBCH6.R2B1oh := -0.118397655588E-04 ; - ACBCH6.R2B1 :=( -0.118397655588E-04)*on_oh2; - ACBCV6.L2B1ov := -0.115978331245E-04 ; - ACBCV6.L2B1 :=( -0.115978331245E-04)*on_ov2; - ACBCH7.L2B1oh := -0.162840702524E-04 ; - ACBCH7.L2B1 :=( -0.162840702524E-04)*on_oh2; - ACBCV7.R2B1ov := -0.168599300484E-04 ; - ACBCV7.R2B1 :=( -0.168599300484E-04)*on_ov2; - - !Beam2 - ACBYVS4.L2B2x := 0.205588592677E-06 ; - ACBYVS4.L2B2s := -0.135936428073E-04 ; - ACBYVS4.L2B2o := 0.858918476844E-04 ; - ACBYVS4.L2B2ov:= 0.330822844034E-04 ; - ACBYVS4.L2B2 := 0.205588592677E-06 * on_x2v + ( -0.135936428073E-04) * on_sep2v + ( 0.858918476844E-04) * on_o2 + ( 0.330822844034E-04) * on_ov2; - ACBYVS4.R2B2x := -0.273868666656E-06 ; - ACBYVS4.R2B2s := 0.777129445790E-05 ; - ACBYVS4.R2B2o := 0.653984699459E-04 ; - ACBYVS4.R2B2ov:= 0.136912620487E-04 ; - ACBYVS4.R2B2 := -0.273868666656E-06 * on_x2v + ( 0.777129445790E-05) * on_sep2v + ( 0.653984699459E-04) * on_o2 + ( 0.136912620487E-04) * on_ov2; - ACBYV4.R2B2 := 0.000000000000E+00 * on_x2v + ( 0.000000000000E+00) * on_sep2v + ( 0.000000000000E+00) * on_o2 + ( 0.136912620487E-04) * on_ov2; - ACBYVS5.L2B2x := 0.162905350757E-06 ; - ACBYVS5.L2B2s := 0.303246827609E-05 ; - ACBYVS5.L2B2o := -0.418402789457E-04 ; - ACBYVS5.L2B2ov:= -0.575384785747E-05 ; - ACBYVS5.L2B2 := 0.162905350757E-06 * on_x2v + ( 0.303246827609E-05) * on_sep2v + ( -0.418402789457E-04) * on_o2 + ( -0.575384785747E-05) * on_ov2; - ACBYV5.L2B2 := 0.000000000000E+00 * on_x2v + ( 0.000000000000E+00) * on_sep2v + ( 0.000000000000E+00) * on_o2 + ( -0.575384785747E-05) * on_ov2; - ACBCVS5.R2B2x := -0.122483704346E-06 ; - ACBCVS5.R2B2s := -0.228176574735E-04 ; - ACBCVS5.R2B2o := -0.677640260130E-04 ; - ACBCVS5.R2B2ov:= 0.249654281951E-05 ; - ACBCVS5.R2B2 := -0.122483704346E-06 * on_x2v + ( -0.228176574735E-04) * on_sep2v + ( -0.677640260130E-04) * on_o2 + ( 0.249654281951E-05) * on_ov2; - ACBYHS4.L2B2x := 0.325950554022E-06 ; - ACBYHS4.L2B2s := 0.338917174460E-05 ; - ACBYHS4.L2B2a := 0.172607756515E-06 ; - ACBYHS4.L2B2oh:= 0.140342551621E-04 ; - ACBYHS4.L2B2 := 0.325950554022E-06 * on_x2h + ( 0.338917174460E-05) * on_sep2h + ( 0.172607756515E-06) * on_a2 + ( 0.140342551621E-04) * on_oh2; - ACBYH4.L2B2 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h + ( 0.000000000000E+00) * on_a2 + ( 0.140342551621E-04) * on_oh2; - ACBYHS4.R2B2x := -0.142852958105E-06 ; - ACBYHS4.R2B2s := -0.147600213927E-04 ; - ACBYHS4.R2B2a := -0.723065790836E-06 ; - ACBYHS4.R2B2oh:= 0.347717867608E-04 ; - ACBYHS4.R2B2 := -0.142852958105E-06 * on_x2h + ( -0.147600213927E-04) * on_sep2h + ( -0.723065790836E-06) * on_a2 + ( 0.347717867608E-04) * on_oh2; - ACBYHS5.L2B2x := 0.693105482803E-07 ; - ACBYHS5.L2B2s := -0.162409688886E-04 ; - ACBYHS5.L2B2a := -0.674830481204E-06 ; - ACBYHS5.L2B2oh:= -0.294863747766E-06 ; - ACBYHS5.L2B2 := 0.693105482803E-07 * on_x2h + ( -0.162409688886E-04) * on_sep2h + ( -0.674830481204E-06) * on_a2 + ( -0.294863747766E-06) * on_oh2; - ACBCHS5.R2B2x := -0.203582966069E-06 ; - ACBCHS5.R2B2s := 0.378894834253E-05 ; - ACBCHS5.R2B2a := 0.684948293340E-06 ; - ACBCHS5.R2B2oh:= -0.685483166461E-05 ; - ACBCHS5.R2B2 := -0.203582966069E-06 * on_x2h + ( 0.378894834253E-05) * on_sep2h + ( 0.684948293340E-06) * on_a2 + ( -0.685483166461E-05) * on_oh2; - ACBCH5.R2B2 := 0.000000000000E+00 * on_x2h + ( 0.000000000000E+00) * on_sep2h + ( 0.000000000000E+00) * on_a2 + ( -0.685483166461E-05) * on_oh2; - ACBCH6.L2B2oh := -0.130971808039E-04 ; - ACBCH6.L2B2 :=( -0.130971808039E-04)*on_oh2; - ACBCV6.R2B2ov := -0.127770895152E-04 ; - ACBCV6.R2B2 :=( -0.127770895152E-04)*on_ov2; - ACBCH7.R2B2oh := -0.166581828499E-04 ; - ACBCH7.R2B2 :=( -0.166581828499E-04)*on_oh2; - ACBCV7.L2B2ov := -0.158487898961E-04 ; - ACBCV7.L2B2 :=( -0.158487898961E-04)*on_ov2; - - !***IR8 Optics*** -KQX.L8 := 0.877985714100E-02 ; -KTQX1.L8 := 0.000000000000E+00 ; -KTQX2.L8 := 0.000000000000E+00 ; -KQX.R8 := -KQX.L8 ; -KTQX1.R8 := -KTQX1.L8 ; -KTQX2.R8 := -KTQX2.L8 ; - - !Beam1 -KQ4.L8B1 := -0.316056989600E-02 ; -KQ4.R8B1 := 0.316088748630E-02 ; -KQ5.L8B1 := 0.351005097629E-02 ; -KQ5.R8B1 := -0.277504295613E-02 ; -KQ6.L8B1 := -0.595992085145E-02 ; -KQ6.R8B1 := 0.478002376183E-02 ; -KQ7.L8B1 := 0.816031538662E-02 ; -KQ7.R8B1 := -0.726167095265E-02 ; -KQ8.L8B1 := -0.594057322564E-02 ; -KQ8.R8B1 := 0.790218067845E-02 ; -KQ9.L8B1 := 0.638196684596E-02 ; -KQ9.R8B1 := -0.687639702132E-02 ; -KQ10.L8B1 := -0.581417804126E-02 ; -KQ10.R8B1 := 0.728532248428E-02 ; -KQTL11.L8B1 := -0.754695613835E-04 ; -KQTL11.R8B1 := -0.597935395436E-04 ; -KQT12.L8B1 := 0.195115857050E-02 ; -KQT12.R8B1 := -0.140336108040E-02 ; -KQT13.L8B1 := -0.159424461148E-02 ; -KQT13.R8B1 := -0.137103556900E-02 ; - - !Beam2 -KQ4.L8B2 := 0.304770152560E-02 ; -KQ4.R8B2 := -0.304757762650E-02 ; -KQ5.L8B2 := -0.269364703549E-02 ; -KQ5.R8B2 := 0.282032377744E-02 ; -KQ6.L8B2 := 0.560792942326E-02 ; -KQ6.R8B2 := -0.532553892063E-02 ; -KQ7.L8B2 := -0.581719557468E-02 ; -KQ7.R8B2 := 0.738272492824E-02 ; -KQ8.L8B2 := 0.721115029205E-02 ; -KQ8.R8B2 := -0.722675240889E-02 ; -KQ9.L8B2 := -0.664511660396E-02 ; -KQ9.R8B2 := 0.691845529114E-02 ; -KQ10.L8B2 := 0.736665680717E-02 ; -KQ10.R8B2 := -0.652591880146E-02 ; -KQTL11.L8B2 := -0.193785468690E-02 ; -KQTL11.R8B2 := -0.463037534260E-04 ; -KQT12.L8B2 := -0.839905898000E-03 ; -KQT12.R8B2 := -0.167476419950E-02 ; -KQT13.L8B2 := 0.344283404480E-02 ; -KQT13.R8B2 := 0.233057326513E-02 ; - - !***IR8 X-scheme*** -abxws.l8 := -0.000045681598453109894*on_lhcb ; -abxwh.l8 := +0.000180681598453109894*on_lhcb ; -ablw.r8 := -0.000180681598453109894*on_lhcb ; -abxws.r8 := +0.000045681598453109894*on_lhcb ; -ACBXV1.L8x := 0.794117647059E-07; -ACBXV1.L8s := 0.800000000000E-05; -ACBXV1.L8 := 0.794117647059E-07 * on_x8v + ( 0.800000000000E-05) * on_sep8v; -ACBXV1.R8x := -0.794117647059E-07; -ACBXV1.R8s := 0.800000000000E-05; -ACBXV1.R8 := -0.794117647059E-07 * on_x8v + ( 0.800000000000E-05) * on_sep8v; -ACBXH1.L8x := 0.794117647059E-07; -ACBXH1.L8s := 0.800000000000E-05; -ACBXH1.L8 := 0.794117647059E-07 * on_x8h + ( 0.800000000000E-05) * on_sep8h; -ACBXH1.R8x := -0.794117647059E-07; -ACBXH1.R8s := 0.800000000000E-05; -ACBXH1.R8 := -0.794117647059E-07 * on_x8h + ( 0.800000000000E-05) * on_sep8h; -ACBXV2.L8x := 0.794117647059E-07; -ACBXV2.L8s := 0.800000000000E-05; -ACBXV2.L8 := 0.794117647059E-07 * on_x8v + ( 0.800000000000E-05) * on_sep8v; -ACBXV2.R8x := -0.794117647059E-07; -ACBXV2.R8s := 0.800000000000E-05; -ACBXV2.R8 := -0.794117647059E-07 * on_x8v + ( 0.800000000000E-05) * on_sep8v; -ACBXH2.L8x := 0.794117647059E-07; -ACBXH2.L8s := 0.800000000000E-05; -ACBXH2.L8 := 0.794117647059E-07 * on_x8h + ( 0.800000000000E-05) * on_sep8h; -ACBXH2.R8x := -0.794117647059E-07; -ACBXH2.R8s := 0.800000000000E-05; -ACBXH2.R8 := -0.794117647059E-07 * on_x8h + ( 0.800000000000E-05) * on_sep8h; -ACBXV3.L8x := 0.794117647059E-07; -ACBXV3.L8s := 0.800000000000E-05; -ACBXV3.L8 := 0.794117647059E-07 * on_x8v + ( 0.800000000000E-05) * on_sep8v; -ACBXV3.R8x := -0.794117647059E-07; -ACBXV3.R8s := 0.800000000000E-05; -ACBXV3.R8 := -0.794117647059E-07 * on_x8v + ( 0.800000000000E-05) * on_sep8v; -ACBXH3.L8x := 0.794117647059E-07; -ACBXH3.L8s := 0.800000000000E-05; -ACBXH3.L8 := 0.794117647059E-07 * on_x8h + ( 0.800000000000E-05) * on_sep8h; -ACBXH3.R8x := -0.794117647059E-07; -ACBXH3.R8s := 0.800000000000E-05; -ACBXH3.R8 := -0.794117647059E-07 * on_x8h + ( 0.800000000000E-05) * on_sep8h; - - !Beam1 - ACBYVS4.L8B1x := -0.308389072797E-06 ; - ACBYVS4.L8B1s := -0.134044143788E-05 ; - ACBYVS4.L8B1a := 0.164513179439E-06 ; - ACBYVS4.L8B1ov:= 0.150506532593E-04 ; - ACBYVS4.L8B1 := -0.308389072797E-06 * on_x8v + ( -0.134044143788E-05) * on_sep8v + ( 0.164513179439E-06) * on_a8 + ( 0.150506532593E-04) * on_ov8; - ACBYV4.L8B1 := 0.000000000000E+00 * on_x8v + ( 0.000000000000E+00) * on_sep8v + ( 0.000000000000E+00) * on_a8 + ( 0.150506532593E-04) * on_ov8; - ACBYVS4.R8B1x := 0.202928009000E-06 ; - ACBYVS4.R8B1s := 0.136431690554E-04 ; - ACBYVS4.R8B1a := -0.521029529608E-06 ; - ACBYVS4.R8B1ov:= 0.293445280057E-04 ; - ACBYVS4.R8B1 := 0.202928009000E-06 * on_x8v + ( 0.136431690554E-04) * on_sep8v + ( -0.521029529608E-06) * on_a8 + ( 0.293445280057E-04) * on_ov8; - ACBCVS5.L8B1x := -0.825707858716E-07 ; - ACBCVS5.L8B1s := 0.153822277517E-04 ; - ACBCVS5.L8B1a := -0.688725434222E-06 ; - ACBCVS5.L8B1ov:= -0.847485805784E-05 ; - ACBCVS5.L8B1 := -0.825707858716E-07 * on_x8v + ( 0.153822277517E-04) * on_sep8v + ( -0.688725434222E-06) * on_a8 + ( -0.847485805784E-05) * on_ov8; - ACBYVS5.R8B1x := 0.153929780031E-06 ; - ACBYVS5.R8B1s := -0.286538867231E-05 ; - ACBYVS5.R8B1a := 0.517929720958E-06 ; - ACBYVS5.R8B1ov:= 0.610207819410E-05 ; - ACBYVS5.R8B1 := 0.153929780031E-06 * on_x8v + ( -0.286538867231E-05) * on_sep8v + ( 0.517929720958E-06) * on_a8 + ( 0.610207819410E-05) * on_ov8; -ACBYV5.R8B1 := 0.000000000000E+00 * on_x8v + ( 0.000000000000E+00) * on_sep8v + ( 0.000000000000E+00) * on_a8 + ( 0.610207819410E-05) * on_ov8; - ACBYHS4.L8B1x := -0.203721979179E-06 ; - ACBYHS4.L8B1s := 0.136271842406E-04 ; - ACBYHS4.L8B1o := 0.863615972625E-04 ; - ACBYHS4.L8B1oh:= 0.343246678531E-04 ; - ACBYHS4.L8B1 := -0.203721979179E-06 * on_x8h + ( 0.136271842406E-04) * on_sep8h + ( 0.863615972625E-04) * on_o8 + ( 0.343246678531E-04) * on_oh8; - ACBYHS4.R8B1x := 0.308780920057E-06 ; - ACBYHS4.R8B1s := -0.126577271976E-05 ; - ACBYHS4.R8B1o := 0.460771192829E-04 ; - ACBYHS4.R8B1oh:= 0.132638432053E-04 ; - ACBYHS4.R8B1 := 0.308780920057E-06 * on_x8h + ( -0.126577271976E-05) * on_sep8h + ( 0.460771192829E-04) * on_o8 + ( 0.132638432053E-04) * on_oh8; - ACBYH4.R8B1 := 0.000000000000E+00 * on_x8h + ( 0.000000000000E+00) * on_sep8h + ( 0.000000000000E+00) * on_o8 + ( 0.132638432053E-04) * on_oh8; - ACBCHS5.L8B1x := -0.158569938549E-06 ; - ACBCHS5.L8B1s := -0.295120658871E-05 ; - ACBCHS5.L8B1o := -0.407222892154E-04 ; - ACBCHS5.L8B1oh:= 0.174584751089E-05 ; - ACBCHS5.L8B1 := -0.158569938549E-06 * on_x8h + ( -0.295120658871E-05) * on_sep8h + ( -0.407222892154E-04) * on_o8 + ( 0.174584751089E-05) * on_oh8; - ACBCH5.L8B1 := 0.000000000000E+00 * on_x8h + ( 0.000000000000E+00) * on_sep8h + ( 0.000000000000E+00) * on_o8 + ( 0.174584751089E-05) * on_oh8; - ACBYHS5.R8B1x := 0.843574998560E-07 ; - ACBYHS5.R8B1s := 0.157132542456E-04 ; - ACBYHS5.R8B1o := -0.466639865719E-04 ; - ACBYHS5.R8B1oh:= -0.567444345978E-05 ; - ACBYHS5.R8B1 := 0.843574998560E-07 * on_x8h + ( 0.157132542456E-04) * on_sep8h + ( -0.466639865719E-04) * on_o8 + ( -0.567444345978E-05) * on_oh8; - ACBCH6.R8B1oh := -0.123782096455E-04 ; - ACBCH6.R8B1 :=( -0.123782096455E-04)*on_oh8; - ACBCV6.L8B1ov := -0.140457134830E-04 ; - ACBCV6.L8B1 :=( -0.140457134830E-04)*on_ov8; - ACBCH7.L8B1oh := -0.164439807851E-04 ; - ACBCH7.L8B1 :=( -0.164439807851E-04)*on_oh8; - ACBCV7.R8B1ov := -0.140581361702E-04 ; - ACBCV7.R8B1 :=( -0.140581361702E-04)*on_ov8; - - !Beam2 - ACBYVS4.L8B2x := 0.206056286343E-06 ; - ACBYVS4.L8B2s := -0.135849366795E-04 ; - ACBYVS4.L8B2a := 0.510503809834E-06 ; - ACBYVS4.L8B2ov:= 0.351155427120E-04 ; - ACBYVS4.L8B2 := 0.206056286343E-06 * on_x8v + ( -0.135849366795E-04) * on_sep8v + ( 0.510503809834E-06) * on_a8 + ( 0.351155427120E-04) * on_ov8; - ACBYVS4.R8B2x := -0.306539856125E-06 ; - ACBYVS4.R8B2s := 0.168493370856E-05 ; - ACBYVS4.R8B2a := -0.179937511501E-06 ; - ACBYVS4.R8B2ov:= 0.136626895948E-04 ; - ACBYVS4.R8B2 := -0.306539856125E-06 * on_x8v + ( 0.168493370856E-05) * on_sep8v + ( -0.179937511501E-06) * on_a8 + ( 0.136626895948E-04) * on_ov8; - ACBYV4.R8B2 := 0.000000000000E+00 * on_x8v + ( 0.000000000000E+00) * on_sep8v + ( 0.000000000000E+00) * on_a8 + ( 0.136626895948E-04) * on_ov8; - ACBCVS5.L8B2x := 0.154004587490E-06 ; - ACBCVS5.L8B2s := 0.286678134465E-05 ; - ACBCVS5.L8B2a := -0.518181451693E-06 ; - ACBCVS5.L8B2ov:= 0.713583797045E-05 ; - ACBCVS5.L8B2 := 0.154004587490E-06 * on_x8v + ( 0.286678134465E-05) * on_sep8v + ( -0.518181451693E-06) * on_a8 + ( 0.713583797045E-05) * on_ov8; - ACBCV5.L8B2 := 0.000000000000E+00 * on_x8v + ( 0.000000000000E+00) * on_sep8v + ( 0.000000000000E+00) * on_a8 + ( 0.713583797045E-05) * on_ov8; - ACBYVS5.R8B2x := -0.838541922188E-07 ; - ACBYVS5.R8B2s := -0.156213126143E-04 ; - ACBYVS5.R8B2a := 0.699430244245E-06 ; - ACBYVS5.R8B2ov:= -0.397734536479E-05 ; - ACBYVS5.R8B2 := -0.838541922188E-07 * on_x8v + ( -0.156213126143E-04) * on_sep8v + ( 0.699430244245E-06) * on_a8 + ( -0.397734536479E-05) * on_ov8; - ACBYHS4.L8B2x := 0.306554661594E-06 ; - ACBYHS4.L8B2s := 0.168045100772E-05 ; - ACBYHS4.L8B2o := 0.473086173139E-04 ; - ACBYHS4.L8B2oh:= 0.151964138270E-04 ; - ACBYHS4.L8B2 := 0.306554661594E-06 * on_x8h + ( 0.168045100772E-05) * on_sep8h + ( 0.473086173139E-04) * on_o8 + ( 0.151964138270E-04) * on_oh8; - ACBYH4.L8B2 := 0.000000000000E+00 * on_x8h + ( 0.000000000000E+00) * on_sep8h + ( 0.000000000000E+00) * on_o8 + ( 0.151964138270E-04) * on_oh8; - ACBYHS4.R8B2x := -0.206211070466E-06 ; - ACBYHS4.R8B2s := -0.135808430978E-04 ; - ACBYHS4.R8B2o := 0.857223746194E-04 ; - ACBYHS4.R8B2oh:= 0.279208834387E-04 ; - ACBYHS4.R8B2 := -0.206211070466E-06 * on_x8h + ( -0.135808430978E-04) * on_sep8h + ( 0.857223746194E-04) * on_o8 + ( 0.279208834387E-04) * on_oh8; - ACBCHS5.L8B2x := 0.842116539795E-07 ; - ACBCHS5.L8B2s := -0.156860681863E-04 ; - ACBCHS5.L8B2o := -0.465833090975E-04 ; - ACBCHS5.L8B2oh:= -0.109958240502E-04 ; - ACBCHS5.L8B2 := 0.842116539795E-07 * on_x8h + ( -0.156860681863E-04) * on_sep8h + ( -0.465833090975E-04) * on_o8 + ( -0.109958240502E-04) * on_oh8; - ACBYHS5.R8B2x := -0.154736469320E-06 ; - ACBYHS5.R8B2s := 0.287985041324E-05 ; - ACBYHS5.R8B2o := -0.397378173538E-04 ; - ACBYHS5.R8B2oh:= 0.598033554948E-05 ; - ACBYHS5.R8B2 := -0.154736469320E-06 * on_x8h + ( 0.287985041324E-05) * on_sep8h + ( -0.397378173538E-04) * on_o8 + ( 0.598033554948E-05) * on_oh8; - ACBYH5.R8B2 := 0.000000000000E+00 * on_x8h + ( 0.000000000000E+00) * on_sep8h + ( 0.000000000000E+00) * on_o8 + ( 0.598033554948E-05) * on_oh8; - ACBCH6.L8B2oh := -0.141817415434E-04 ; - ACBCH6.L8B2 :=( -0.141817415434E-04)*on_oh8; - ACBCV6.R8B2ov := -0.127504248586E-04 ; - ACBCV6.R8B2 :=( -0.127504248586E-04)*on_ov8; - ACBCH7.R8B2oh := -0.133761081895E-04 ; - ACBCH7.R8B2 :=( -0.133761081895E-04)*on_oh8; - ACBCV7.L8B2ov := -0.168228666359E-04 ; - ACBCV7.L8B2 :=( -0.168228666359E-04)*on_ov8; - - !***IR4 Optics*** - - !Beam1 -KQ5.L4B1 := 0.396408419575E-02 ; -KQ5.R4B1 := -0.496344186057E-02 ; -KQ6.L4B1 := -0.481920325604E-02 ; -KQ6.R4B1 := 0.571655239956E-02 ; -KQ7.L4B1 := 0.715445137072E-02 ; -KQ7.R4B1 := -0.627905863672E-02 ; -KQ8.L4B1 := -0.501862797275E-02 ; -KQ8.R4B1 := 0.845939607345E-02 ; -KQ9.L4B1 := 0.692330463681E-02 ; -KQ9.R4B1 := -0.574455721928E-02 ; -KQ10.L4B1 := -0.543841064268E-02 ; -KQ10.R4B1 := 0.711801592423E-02 ; -KQTL11.L4B1 := 0.210747211281E-03 ; -KQTL11.R4B1 := 0.481642253752E-03 ; -KQT12.L4B1 := 0.297894580510E-02 ; -KQT12.R4B1 := -0.267866412773E-03 ; -KQT13.L4B1 := 0.339461461487E-02 ; -KQT13.R4B1 := -0.246182995750E-02 ; - - !Beam2 -KQ5.L4B2 := -0.421434783533E-02 ; -KQ5.R4B2 := 0.514422371828E-02 ; -KQ6.L4B2 := 0.582923098101E-02 ; -KQ6.R4B2 := -0.628091179505E-02 ; -KQ7.L4B2 := -0.512855233245E-02 ; -KQ7.R4B2 := 0.580354016786E-02 ; -KQ8.L4B2 := 0.851116969305E-02 ; -KQ8.R4B2 := -0.636421600235E-02 ; -KQ9.L4B2 := -0.517559008684E-02 ; -KQ9.R4B2 := 0.596395066328E-02 ; -KQ10.L4B2 := 0.716640268223E-02 ; -KQ10.R4B2 := -0.579117179040E-02 ; -KQTL11.L4B2 := 0.428439699952E-03 ; -KQTL11.R4B2 := 0.805498530037E-03 ; -KQT12.L4B2 := 0.141403376852E-02 ; -KQT12.R4B2 := 0.117894614500E-02 ; -KQT13.L4B2 := -0.325873584000E-03 ; -KQT13.R4B2 := -0.356103631962E-02 ; - - !***IR6 Optics*** - - !Beam1 -KQ4.L6B1 := -0.488141473400E-02 ; -KQ4.R6B1 := 0.569067871890E-02 ; -KQ5.L6B1 := 0.674637092653E-02 ; -KQ5.R6B1 := -0.666902203098E-02 ; -KQ8.L6B1 := -0.595187511942E-02 ; -KQ8.R6B1 := 0.731607378845E-02 ; -KQ9.L6B1 := 0.684573907610E-02 ; -KQ9.R6B1 := -0.662836044371E-02 ; -KQ10.L6B1 := -0.767619429380E-02 ; -KQ10.R6B1 := 0.713649318373E-02 ; -KQTL11.L6B1 := 0.367734941217E-03 ; -KQTL11.R6B1 := -0.542460216618E-03 ; -KQT12.L6B1 := -0.414944106850E-02 ; -KQT12.R6B1 := 0.109548757828E-02 ; -KQT13.L6B1 := -0.636367833604E-03 ; -KQT13.R6B1 := 0.178905866314E-02 ; - - !Beam2 -KQ4.L6B2 := 0.555779707706E-02 ; -KQ4.R6B2 := -0.483383773000E-02 ; -KQ5.L6B2 := -0.684144542745E-02 ; -KQ5.R6B2 := 0.643388502361E-02 ; -KQ8.L6B2 := 0.813396410845E-02 ; -KQ8.R6B2 := -0.509941262849E-02 ; -KQ9.L6B2 := -0.698801842258E-02 ; -KQ9.R6B2 := 0.682264446040E-02 ; -KQ10.L6B2 := 0.710322951277E-02 ; -KQ10.R6B2 := -0.763354061242E-02 ; -KQTL11.L6B2 := 0.118934477264E-02 ; -KQTL11.R6B2 := 0.743187306432E-03 ; -KQT12.L6B2 := 0.195012495741E-02 ; -KQT12.R6B2 := 0.131215863100E-02 ; -KQT13.L6B2 := 0.355406513900E-02 ; -KQT13.R6B2 := -0.212731429779E-02 ; - - !***IR3 Optics*** -KQ4.LR3 := 0.124128400000E-02 ; -KQT4.L3 := 0.688713000000E-03 ; -KQT4.R3 := 0.688713000000E-03 ; -KQ5.LR3 := -0.130392400000E-02 ; -KQT5.L3 := 0.972084000000E-03 ; -KQT5.R3 := 0.972084000000E-03 ; - - !Beam1 -KQ6.L3B1 := 0.265206600700E-02 ; -KQ6.R3B1 := -0.248284002200E-02 ; -KQTL7.L3B1 := -0.199490058500E-02 ; -KQTL7.R3B1 := 0.910271209100E-03 ; -KQTL8.L3B1 := 0.129306774100E-03 ; -KQTL8.R3B1 := 0.250745464100E-02 ; -KQTL9.L3B1 := -0.471507917000E-02 ; -KQTL9.R3B1 := -0.746685541000E-04 ; -KQTL10.L3B1 := 0.915285061000E-03 ; -KQTL10.R3B1 := 0.285281176400E-02 ; -KQTL11.L3B1 := -0.338523656500E-03 ; -KQTL11.R3B1 := -0.363123332200E-02 ; -KQT12.L3B1 := 0.284276661600E-02 ; -KQT12.R3B1 := 0.500000000000E-02 ; -KQT13.L3B1 := -0.635371688300E-03 ; -KQT13.R3B1 := -0.456628965700E-02 ; - - !Beam2 -KQ6.L3B2 := -0.247436871800E-02 ; -KQ6.R3B2 := 0.267567475900E-02 ; -KQTL7.L3B2 := 0.766905226600E-03 ; -KQTL7.R3B2 := -0.281553667400E-02 ; -KQTL8.L3B2 := 0.219362332600E-02 ; -KQTL8.R3B2 := -0.148739570200E-03 ; -KQTL9.L3B2 := 0.847198389400E-05 ; -KQTL9.R3B2 := -0.396947896700E-02 ; -KQTL10.L3B2 := 0.214887891600E-02 ; -KQTL10.R3B2 := 0.851839112500E-03 ; -KQTL11.L3B2 := -0.341390900600E-02 ; -KQTL11.R3B2 := 0.110161035700E-02 ; -KQT12.L3B2 := 0.918454053400E-03 ; -KQT12.R3B2 := 0.280357642100E-02 ; -KQT13.L3B2 := -0.508018044000E-02 ; -KQT13.R3B2 := -0.632055499900E-03 ; - - !***IR7 Optics*** -KQ4.LR7 := 0.131382724100E-02 ; -KQT4.L7 := 0.331689344000E-03 ; -KQT4.R7 := 0.331689344000E-03 ; -KQ5.LR7 := -0.133553657300E-02 ; -KQT5.L7 := 0.000000000000E+00 ; -KQT5.R7 := 0.000000000000E+00 ; - - !Beam1 -KQ6.L7B1 := 0.332380383100E-02 ; -KQ6.R7B1 := -0.281821059300E-02 ; -KQTL7.L7B1 := 0.307231360100E-03 ; -KQTL7.R7B1 := 0.411775382800E-02 ; -KQTL8.L7B1 := 0.535631538200E-03 ; -KQTL8.R7B1 := 0.180061251400E-02 ; -KQTL9.L7B1 := 0.104649831600E-03 ; -KQTL9.R7B1 := 0.316515736800E-02 ; -KQTL10.L7B1 := 0.469149843300E-02 ; -KQTL10.R7B1 := 0.234006504200E-03 ; -KQTL11.L7B1 := 0.109300381500E-02 ; -KQTL11.R7B1 := -0.129517571700E-03 ; -KQT12.L7B1 := 0.203869506000E-02 ; -KQT12.R7B1 := 0.414855502900E-03 ; -KQT13.L7B1 := -0.647047560500E-03 ; -KQT13.R7B1 := 0.163470209700E-03 ; - - !Beam2 -KQ6.L7B2 := -0.278052285800E-02 ; -KQ6.R7B2 := 0.330261896100E-02 ; -KQTL7.L7B2 := 0.391109869200E-02 ; -KQTL7.R7B2 := 0.307913213400E-03 ; -KQTL8.L7B2 := 0.141328062600E-02 ; -KQTL8.R7B2 := 0.139274871000E-02 ; -KQTL9.L7B2 := 0.363516060400E-02 ; -KQTL9.R7B2 := 0.692028108000E-04 ; -KQTL10.L7B2 := 0.156243369200E-03 ; -KQTL10.R7B2 := 0.451207010600E-02 ; -KQTL11.L7B2 := 0.360602594900E-03 ; -KQTL11.R7B2 := 0.131920025500E-02 ; -KQT12.L7B2 := -0.705199531300E-03 ; -KQT12.R7B2 := -0.138620184600E-02 ; -KQT13.L7B2 := -0.606647736700E-03 ; -KQT13.R7B2 := -0.585571959400E-03 ; - - !***Arc Optics*** - !QF/QD -KQF.A81 := 0.870329953900E-02 ; -KQF.A12 := 0.870329953900E-02 ; -KQF.A45 := 0.870329953900E-02 ; -KQF.A56 := 0.870329953900E-02 ; -KQD.A81 := -0.870475552100E-02 ; -KQD.A12 := -0.870475552100E-02 ; -KQD.A45 := -0.870475552100E-02 ; -KQD.A56 := -0.870475552100E-02 ; -KQF.A78 := 0.877219370500E-02 ; -KQF.A23 := 0.874003742200E-02 ; -KQF.A34 := 0.874003742200E-02 ; -KQF.A67 := 0.877219370500E-02 ; -KQD.A78 := -0.885967069500E-02 ; -KQD.A23 := -0.855353408600E-02 ; -KQD.A34 := -0.855353408600E-02 ; -KQD.A67 := -0.885967069500E-02 ; - - !QTF/QTD BEAM1 -dQx.b1 := 0.000000000000E+00 ; -dQy.b1 := 0.000000000000E+00 ; -dQx.b1_sq := 0.000000000000E+00 ; -dQy.b1_sq := 0.000000000000E+00 ; - -KQTF.A81B1 := 0.000000000000E+00 + ( 0.346300935712E-02) * dQx.b1 + ( 0.640468539975E-03) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTF.A12B1 := 0.000000000000E+00 + ( 0.346300935712E-02) * dQx.b1 + ( 0.640468539975E-03) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTF.A45B1 := 0.000000000000E+00 + ( 0.346300935712E-02) * dQx.b1 + ( 0.640468539975E-03) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTF.A56B1 := 0.000000000000E+00 + ( 0.346300935712E-02) * dQx.b1 + ( 0.640468539975E-03) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTD.A81B1 := 0.000000000000E+00 + (-0.600269694099E-03) * dQx.b1 + (-0.321374404890E-02) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTD.A12B1 := 0.000000000000E+00 + (-0.600269694099E-03) * dQx.b1 + (-0.321374404890E-02) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTD.A45B1 := 0.000000000000E+00 + (-0.600269694099E-03) * dQx.b1 + (-0.321374404890E-02) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTD.A56B1 := 0.000000000000E+00 + (-0.600269694099E-03) * dQx.b1 + (-0.321374404890E-02) * dQy.b1 + ( 0.000000000000E+00) * dQx.b1_sq + ( 0.000000000000E+00) * dQy.b1_sq ; -KQTF.A78B1 := 0.761119694300E-03 + ( 0.346300935712E-02) * dQx.b1 + ( 0.640468539975E-03) * dQy.b1 + ( 0.724576651338E-02) * dQx.b1_sq + ( 0.132470834352E-02) * dQy.b1_sq ; -KQTF.A23B1 := -0.771991245000E-03 + ( 0.346300935712E-02) * dQx.b1 + ( 0.640468539975E-03) * dQy.b1 + ( 0.724576651338E-02) * dQx.b1_sq + ( 0.132470834352E-02) * dQy.b1_sq ; -KQTF.A34B1 := -0.771991245000E-03 + ( 0.346300935712E-02) * dQx.b1 + ( 0.640468539975E-03) * dQy.b1 + ( 0.724576651338E-02) * dQx.b1_sq + ( 0.132470834352E-02) * dQy.b1_sq ; -KQTF.A67B1 := 0.761119694300E-03 + ( 0.346300935712E-02) * dQx.b1 + ( 0.640468539975E-03) * dQy.b1 + ( 0.724576651338E-02) * dQx.b1_sq + ( 0.132470834352E-02) * dQy.b1_sq ; -KQTD.A78B1 := -0.933337382400E-03 + (-0.600269694099E-03) * dQx.b1 + (-0.321374404890E-02) * dQy.b1 + (-0.134605020684E-02) * dQx.b1_sq + (-0.720191761075E-02) * dQy.b1_sq ; -KQTD.A23B1 := 0.915761029700E-03 + (-0.600269694099E-03) * dQx.b1 + (-0.321374404890E-02) * dQy.b1 + (-0.134605020684E-02) * dQx.b1_sq + (-0.720191761075E-02) * dQy.b1_sq ; -KQTD.A34B1 := 0.915761029700E-03 + (-0.600269694099E-03) * dQx.b1 + (-0.321374404890E-02) * dQy.b1 + (-0.134605020684E-02) * dQx.b1_sq + (-0.720191761075E-02) * dQy.b1_sq ; -KQTD.A67B1 := -0.933337382400E-03 + (-0.600269694099E-03) * dQx.b1 + (-0.321374404890E-02) * dQy.b1 + (-0.134605020684E-02) * dQx.b1_sq + (-0.720191761075E-02) * dQy.b1_sq ; - - !QTF/QTD BEAM2 -dQx.b2 := 0.000000000000E+00 ; -dQy.b2 := 0.000000000000E+00 ; -dQx.b2_sq := 0.000000000000E+00 ; -dQy.b2_sq := 0.000000000000E+00 ; - -KQTF.A81B2 := 0.000000000000E+00 + ( 0.322255328767E-02) * dQx.b2 + ( 0.596979855819E-03) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTF.A12B2 := 0.000000000000E+00 + ( 0.322255328767E-02) * dQx.b2 + ( 0.596979855819E-03) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTF.A45B2 := 0.000000000000E+00 + ( 0.322255328767E-02) * dQx.b2 + ( 0.596979855819E-03) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTF.A56B2 := 0.000000000000E+00 + ( 0.322255328767E-02) * dQx.b2 + ( 0.596979855819E-03) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTD.A81B2 := 0.000000000000E+00 + (-0.600997836315E-03) * dQx.b2 + (-0.321946175415E-02) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTD.A12B2 := 0.000000000000E+00 + (-0.600997836315E-03) * dQx.b2 + (-0.321946175415E-02) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTD.A45B2 := 0.000000000000E+00 + (-0.600997836315E-03) * dQx.b2 + (-0.321946175415E-02) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTD.A56B2 := 0.000000000000E+00 + (-0.600997836315E-03) * dQx.b2 + (-0.321946175415E-02) * dQy.b2 + ( 0.000000000000E+00) * dQx.b2_sq + ( 0.000000000000E+00) * dQy.b2_sq ; -KQTF.A78B2 := -0.761119694300E-03 + ( 0.322255328767E-02) * dQx.b2 + ( 0.596979855819E-03) * dQy.b2 + ( 0.724555877649E-02) * dQx.b2_sq + ( 0.132958267416E-02) * dQy.b2_sq ; -KQTF.A23B2 := 0.771991245000E-03 + ( 0.322255328767E-02) * dQx.b2 + ( 0.596979855819E-03) * dQy.b2 + ( 0.724555877649E-02) * dQx.b2_sq + ( 0.132958267416E-02) * dQy.b2_sq ; -KQTF.A34B2 := 0.771991245000E-03 + ( 0.322255328767E-02) * dQx.b2 + ( 0.596979855819E-03) * dQy.b2 + ( 0.724555877649E-02) * dQx.b2_sq + ( 0.132958267416E-02) * dQy.b2_sq ; -KQTF.A67B2 := -0.761119694300E-03 + ( 0.322255328767E-02) * dQx.b2 + ( 0.596979855819E-03) * dQy.b2 + ( 0.724555877649E-02) * dQx.b2_sq + ( 0.132958267416E-02) * dQy.b2_sq ; -KQTD.A78B2 := 0.933337382400E-03 + (-0.600997836315E-03) * dQx.b2 + (-0.321946175415E-02) * dQy.b2 + (-0.134980561765E-02) * dQx.b2_sq + (-0.723074576787E-02) * dQy.b2_sq ; -KQTD.A23B2 := -0.915761029700E-03 + (-0.600997836315E-03) * dQx.b2 + (-0.321946175415E-02) * dQy.b2 + (-0.134980561765E-02) * dQx.b2_sq + (-0.723074576787E-02) * dQy.b2_sq ; -KQTD.A34B2 := -0.915761029700E-03 + (-0.600997836315E-03) * dQx.b2 + (-0.321946175415E-02) * dQy.b2 + (-0.134980561765E-02) * dQx.b2_sq + (-0.723074576787E-02) * dQy.b2_sq ; -KQTD.A67B2 := 0.933337382400E-03 + (-0.600997836315E-03) * dQx.b2 + (-0.321946175415E-02) * dQy.b2 + (-0.134980561765E-02) * dQx.b2_sq + (-0.723074576787E-02) * dQy.b2_sq ; - - !Sextupole BEAM1 -dQpx.b1 := 0.000000000000E+00 ; -dQpy.b1 := 0.000000000000E+00 ; -dQpx.b1_sq := 0.000000000000E+00 ; -dQpy.b1_sq := 0.000000000000E+00 ; - - !Strong sextupoles of sectors 81/12/45/56 -KSF1.A81B1 := 0.220813189225E+00 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF1.A12B1 := 0.165946770108E+00 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF1.A45B1 := 0.184166233803E+00 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF1.A56B1 := 0.169403701033E+00 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD2.A81B1 := -0.259137311393E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD2.A12B1 := -0.295796043823E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD2.A45B1 := -0.262855967180E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD2.A56B1 := -0.318667125013E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; - - !Weak sextupoles of sectors 81/12/45/56 -KSF2.A81B1 := 0.588546421584E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF2.A12B1 := 0.588546421584E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF2.A45B1 := 0.588546421584E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSF2.A56B1 := 0.588546421584E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD1.A81B1 := -0.970134663097E-01 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD1.A12B1 := -0.970134663097E-01 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD1.A45B1 := -0.970134663097E-01 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; -KSD1.A56B1 := -0.970134663097E-01 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + ( 0.000000000000E+00) * dQpx.b1_sq + ( 0.000000000000E+00) * dQpy.b1_sq ; - - !Weak sextupoles of sectors 78/23/34/67 -KSF1.A78B1 := 0.658777063913E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.119959406936E-02) * dQpx.b1_sq + ( 0.218843489011E-03) * dQpy.b1_sq ; -KSF2.A78B1 := 0.658777063913E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.119959406936E-02) * dQpx.b1_sq + ( 0.218843489011E-03) * dQpy.b1_sq ; -KSF1.A23B1 := 0.658777063913E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.119959406936E-02) * dQpx.b1_sq + ( 0.218843489011E-03) * dQpy.b1_sq ; -KSF2.A23B1 := 0.658777063913E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.119959406936E-02) * dQpx.b1_sq + ( 0.218843489011E-03) * dQpy.b1_sq ; -KSF1.A34B1 := 0.658777063913E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.119959406936E-02) * dQpx.b1_sq + ( 0.218843489011E-03) * dQpy.b1_sq ; -KSF2.A34B1 := 0.658777063913E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.119959406936E-02) * dQpx.b1_sq + ( 0.218843489011E-03) * dQpy.b1_sq ; -KSF1.A67B1 := 0.658777063913E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.119959406936E-02) * dQpx.b1_sq + ( 0.218843489011E-03) * dQpy.b1_sq ; -KSF2.A67B1 := 0.658777063913E-01 + ( 0.532723044260E-03) * dQpx.b1 + ( 0.990355426843E-04) * dQpy.b1 + ( 0.119959406936E-02) * dQpx.b1_sq + ( 0.218843489011E-03) * dQpy.b1_sq ; -KSD1.A78B1 := -0.127882822354E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + (-0.375375602208E-03) * dQpx.b1_sq + (-0.200355273443E-02) * dQpy.b1_sq ; -KSD2.A78B1 := -0.127882822354E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + (-0.375375602208E-03) * dQpx.b1_sq + (-0.200355273443E-02) * dQpy.b1_sq ; -KSD1.A23B1 := -0.127882822354E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + (-0.375375602208E-03) * dQpx.b1_sq + (-0.200355273443E-02) * dQpy.b1_sq ; -KSD2.A23B1 := -0.127882822354E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + (-0.375375602208E-03) * dQpx.b1_sq + (-0.200355273443E-02) * dQpy.b1_sq ; -KSD1.A34B1 := -0.127882822354E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + (-0.375375602208E-03) * dQpx.b1_sq + (-0.200355273443E-02) * dQpy.b1_sq ; -KSD2.A34B1 := -0.127882822354E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + (-0.375375602208E-03) * dQpx.b1_sq + (-0.200355273443E-02) * dQpy.b1_sq ; -KSD1.A67B1 := -0.127882822354E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + (-0.375375602208E-03) * dQpx.b1_sq + (-0.200355273443E-02) * dQpy.b1_sq ; -KSD2.A67B1 := -0.127882822354E+00 + (-0.166873138397E-03) * dQpx.b1 + (-0.889806319631E-03) * dQpy.b1 + (-0.375375602208E-03) * dQpx.b1_sq + (-0.200355273443E-02) * dQpy.b1_sq ; - - !Sextupole BEAM2 -dQpx.b2 := 0.000000000000E+00 ; -dQpy.b2 := 0.000000000000E+00 ; -dQpx.b2_sq := 0.000000000000E+00 ; -dQpy.b2_sq := 0.000000000000E+00 ; - - !Strong sextupoles of sectors 81/12/45/56 -KSF2.A81B2 := 0.144748921198E+00 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF2.A12B2 := 0.181264223476E+00 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF2.A45B2 := 0.161242371922E+00 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF2.A56B2 := 0.187500421965E+00 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD1.A81B2 := -0.352507055092E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD1.A12B2 := -0.272230061704E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD1.A45B2 := -0.316129449534E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD1.A56B2 := -0.262231369745E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; - - !Weak sextupoles of sectors 81/12/45/56 -KSF1.A81B2 := 0.591774798333E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF1.A12B2 := 0.591774798333E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF1.A45B2 := 0.591774798333E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSF1.A56B2 := 0.591774798333E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD2.A81B2 := -0.976453305953E-01 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD2.A12B2 := -0.976453305953E-01 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD2.A45B2 := -0.976453305953E-01 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; -KSD2.A56B2 := -0.976453305953E-01 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + ( 0.000000000000E+00) * dQpx.b2_sq + ( 0.000000000000E+00) * dQpy.b2_sq ; - - !Weak sextupoles of sectors 78/23/34/67 -KSF1.A78B2 := 0.796462081562E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.119473310138E-02) * dQpx.b2_sq + ( 0.219228039700E-03) * dQpy.b2_sq ; -KSF2.A78B2 := 0.796462081562E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.119473310138E-02) * dQpx.b2_sq + ( 0.219228039700E-03) * dQpy.b2_sq ; -KSF1.A23B2 := 0.796462081562E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.119473310138E-02) * dQpx.b2_sq + ( 0.219228039700E-03) * dQpy.b2_sq ; -KSF2.A23B2 := 0.796462081562E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.119473310138E-02) * dQpx.b2_sq + ( 0.219228039700E-03) * dQpy.b2_sq ; -KSF1.A34B2 := 0.796462081562E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.119473310138E-02) * dQpx.b2_sq + ( 0.219228039700E-03) * dQpy.b2_sq ; -KSF2.A34B2 := 0.796462081562E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.119473310138E-02) * dQpx.b2_sq + ( 0.219228039700E-03) * dQpy.b2_sq ; -KSF1.A67B2 := 0.796462081562E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.119473310138E-02) * dQpx.b2_sq + ( 0.219228039700E-03) * dQpy.b2_sq ; -KSF2.A67B2 := 0.796462081562E-01 + ( 0.532543543246E-03) * dQpx.b2 + ( 0.995646267867E-04) * dQpy.b2 + ( 0.119473310138E-02) * dQpx.b2_sq + ( 0.219228039700E-03) * dQpy.b2_sq ; -KSD1.A78B2 := -0.116474702352E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + (-0.373073879661E-03) * dQpx.b2_sq + (-0.200142893399E-02) * dQpy.b2_sq ; -KSD2.A78B2 := -0.116474702352E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + (-0.373073879661E-03) * dQpx.b2_sq + (-0.200142893399E-02) * dQpy.b2_sq ; -KSD1.A23B2 := -0.116474702352E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + (-0.373073879661E-03) * dQpx.b2_sq + (-0.200142893399E-02) * dQpy.b2_sq ; -KSD2.A23B2 := -0.116474702352E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + (-0.373073879661E-03) * dQpx.b2_sq + (-0.200142893399E-02) * dQpy.b2_sq ; -KSD1.A34B2 := -0.116474702352E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + (-0.373073879661E-03) * dQpx.b2_sq + (-0.200142893399E-02) * dQpy.b2_sq ; -KSD2.A34B2 := -0.116474702352E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + (-0.373073879661E-03) * dQpx.b2_sq + (-0.200142893399E-02) * dQpy.b2_sq ; -KSD1.A67B2 := -0.116474702352E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + (-0.373073879661E-03) * dQpx.b2_sq + (-0.200142893399E-02) * dQpy.b2_sq ; -KSD2.A67B2 := -0.116474702352E+00 + (-0.167662113489E-03) * dQpx.b2 + (-0.888149874061E-03) * dQpy.b2 + (-0.373073879661E-03) * dQpx.b2_sq + (-0.200142893399E-02) * dQpy.b2_sq ; - - !MQS BEAM1 -CMRS.b1 := 0.000000000000E+00 ; -CMIS.b1 := 0.000000000000E+00 ; -CMRS.b1_sq := 0.000000000000E+00 ; -CMIS.b1_sq := 0.000000000000E+00 ; -ona2_b1 := 0.000000000000E+00 ; - - KQS.R1B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.269378766087E-01) * CMRS.b1 + ( 0.932565743247E-03) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; - KQS.L2B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.269378766087E-01) * CMRS.b1 + ( 0.932565743247E-03) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; -KQS.A23B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.112964801534E-01) * CMRS.b1 + ( 0.123304260733E-01) * CMIS.b1 + ( 0.261719946786E-01) * CMRS.b1_sq + ( 0.187050881306E-01) * CMIS.b1_sq ; - KQS.R3B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.136900301114E-01) * CMRS.b1 + (-0.127988941361E-01) * CMIS.b1 + (-0.365294743160E-01) * CMRS.b1_sq + (-0.187466040748E-01) * CMIS.b1_sq ; - KQS.L4B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.136900301114E-01) * CMRS.b1 + (-0.127988941361E-01) * CMIS.b1 + (-0.365294743160E-01) * CMRS.b1_sq + (-0.187466040748E-01) * CMIS.b1_sq ; -KQS.A45B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.415037997400E-02) * CMRS.b1 + ( 0.123771068065E-01) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; - KQS.R5B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.751482575605E-03) * CMRS.b1 + ( 0.118102094547E-01) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; - KQS.L6B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.751482575605E-03) * CMRS.b1 + ( 0.118102094547E-01) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; -KQS.A67B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.137744809069E-01) * CMRS.b1 + ( 0.539286579460E-02) * CMIS.b1 + (-0.777589376877E-01) * CMRS.b1_sq + ( 0.145560531506E-01) * CMIS.b1_sq ; - KQS.R7B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.552570072684E-02) * CMRS.b1 + (-0.116045173620E-01) * CMIS.b1 + (-0.294734045411E-03) * CMRS.b1_sq + (-0.193431207447E-01) * CMIS.b1_sq ; - KQS.L8B1 := ( 0.000000000000E+00) * ona2_b1 + (-0.552570072684E-02) * CMRS.b1 + (-0.116045173620E-01) * CMIS.b1 + (-0.294734045411E-03) * CMRS.b1_sq + (-0.193431207447E-01) * CMIS.b1_sq ; -KQS.A81B1 := ( 0.000000000000E+00) * ona2_b1 + ( 0.242841919608E-01) * CMRS.b1 + (-0.633645754680E-03) * CMIS.b1 + ( 0.000000000000E+00) * CMRS.b1_sq + ( 0.000000000000E+00) * CMIS.b1_sq ; - - !MQS BEAM2 -CMRS.b2 := 0.000000000000E+00 ; -CMIS.b2 := 0.000000000000E+00 ; -CMRS.b2_sq := 0.000000000000E+00 ; -CMIS.b2_sq := 0.000000000000E+00 ; -ona2_b2 := 0.000000000000E+00 ; - -KQS.A12B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.114608021394E-01) * CMRS.b2 + (-0.199973288509E-01) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - KQS.R2B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.106854603067E-01) * CMRS.b2 + ( 0.431067895853E-02) * CMIS.b2 + ( 0.196812068174E-01) * CMRS.b2_sq + ( 0.817759310575E-02) * CMIS.b2_sq ; - KQS.L3B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.106854603067E-01) * CMRS.b2 + ( 0.431067895853E-02) * CMIS.b2 + ( 0.196812068174E-01) * CMRS.b2_sq + ( 0.817759310575E-02) * CMIS.b2_sq ; -KQS.A34B2 := ( 0.000000000000E+00) * ona2_b2 + (-0.163701660458E-01) * CMRS.b2 + ( 0.259521935352E-02) * CMIS.b2 + (-0.415626926704E-01) * CMRS.b2_sq + ( 0.191210586339E-01) * CMIS.b2_sq ; - KQS.R4B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.141783503142E-01) * CMRS.b2 + ( 0.219326945193E-02) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - KQS.L5B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.141783503142E-01) * CMRS.b2 + ( 0.219326945193E-02) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; -KQS.A56B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.165368744876E-01) * CMRS.b2 + (-0.862305544648E-04) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - KQS.R6B2 := ( 0.000000000000E+00) * ona2_b2 + (-0.664949678309E-02) * CMRS.b2 + ( 0.164216086259E-01) * CMIS.b2 + (-0.359449194719E-01) * CMRS.b2_sq + ( 0.606374570581E-01) * CMIS.b2_sq ; - KQS.L7B2 := ( 0.000000000000E+00) * ona2_b2 + (-0.664949678309E-02) * CMRS.b2 + ( 0.164216086259E-01) * CMIS.b2 + (-0.359449194719E-01) * CMRS.b2_sq + ( 0.606374570581E-01) * CMIS.b2_sq ; -KQS.A78B2 := ( 0.000000000000E+00) * ona2_b2 + (-0.103422602506E-01) * CMRS.b2 + (-0.475889922703E-02) * CMIS.b2 + (-0.183213483506E-01) * CMRS.b2_sq + (-0.993334551406E-02) * CMIS.b2_sq ; - KQS.R8B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.134166813974E-01) * CMRS.b2 + (-0.201386742877E-01) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - KQS.L1B2 := ( 0.000000000000E+00) * ona2_b2 + ( 0.134166813974E-01) * CMRS.b2 + (-0.201386742877E-01) * CMIS.b2 + ( 0.000000000000E+00) * CMRS.b2_sq + ( 0.000000000000E+00) * CMIS.b2_sq ; - - !MSS BEAM1 -ona3_b1 := 0.000000000000E+00 ; - -KSS.A12B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A23B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A34B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A45B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A56B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A67B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A78B1 := ( 0.000000000000E+00) * ona3_b1 ; -KSS.A81B1 := ( 0.000000000000E+00) * ona3_b1 ; - - !MSS BEAM2 -ona3_b2 := 0.000000000000E+00 ; - -KSS.A12B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A23B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A34B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A45B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A56B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A67B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A78B2 := ( 0.000000000000E+00) * ona3_b2 ; -KSS.A81B2 := ( 0.000000000000E+00) * ona3_b2 ; - - !OF/OD BEAM1 -ON_MO.b1 := 0.000000000000E+00 ; -KOF.B1 := 0.000000000000E+00 ; -KOD.B1 := 0.000000000000E+00 ; -KOF.A12B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A23B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A34B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A45B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A56B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A67B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A78B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOF.A81B1 := -0.600000000000E+01 *ON_MO.b1 + KOF.B1; -KOD.A12B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A23B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A34B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A45B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A56B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A67B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A78B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; -KOD.A81B1 := -0.600000000000E+01 *ON_MO.b1 + KOD.B1; - - !OF/OD BEAM2 -ON_MO.b2 := 0.000000000000E+00 ; -KOF.B2 := 0.000000000000E+00 ; -KOD.B2 := 0.000000000000E+00 ; -KOF.A12B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A23B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A34B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A45B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A56B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A67B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A78B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOF.A81B2 := -0.600000000000E+01 *ON_MO.b2 + KOF.B2; -KOD.A12B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A23B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A34B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A45B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A56B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A67B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A78B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; -KOD.A81B2 := -0.600000000000E+01 *ON_MO.b2 + KOD.B2; - - !! MCB-beam1 for spurious dispersion correction - - !! MCB in sector 81 and 12 -acbh14.r8b1x := 0.000000000000E+00 ; -acbh14.r8b1s := -0.000000000000E+00 ; -acbh14.r8b1 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh16.r8b1x := 0.554539716569E-07 ; -acbh16.r8b1s := -0.122099077804E-05 ; -acbh16.r8b1 := (( 0.554539716569E-07 )*on_xx1_h+( -0.122099077804E-05 )*on_ssep1_h)*ON_DISP ; -acbh14.l1b1x := -0.149323328067E-09 ; -acbh14.l1b1s := 0.295890368433E-08 ; -acbh14.l1b1 := (( -0.149323328067E-09 )*on_xx1_h+( 0.295890368433E-08 )*on_ssep1_h)*ON_DISP ; -acbh12.l1b1x := -0.555893499758E-07 ; -acbh12.l1b1s := 0.122397340059E-05 ; -acbh12.l1b1 := (( -0.555893499758E-07 )*on_xx1_h+( 0.122397340059E-05 )*on_ssep1_h)*ON_DISP ; -acbh13.r1b1x := -0.595616584588E-07 ; -acbh13.r1b1s := -0.469675318520E-06 ; -acbh13.r1b1 := (( -0.595616584588E-07 )*on_xx1_h+( -0.469675318520E-06 )*on_ssep1_h)*ON_DISP ; -acbh15.r1b1x := -0.492064350291E-11 ; -acbh15.r1b1s := 0.996996761836E-10 ; -acbh15.r1b1 := (( -0.492064350291E-11 )*on_xx1_h+( 0.996996761836E-10 )*on_ssep1_h)*ON_DISP ; -acbh15.l2b1x := 0.595603888642E-07 ; -acbh15.l2b1s := 0.469670868535E-06 ; -acbh15.l2b1 := (( 0.595603888642E-07 )*on_xx1_h+( 0.469670868535E-06 )*on_ssep1_h)*ON_DISP ; -acbh13.l2b1x := 0.000000000000E+00 ; -acbh13.l2b1s := -0.000000000000E+00 ; -acbh13.l2b1 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbv13.r8b1x := 0.000000000000E+00 ; -acbv13.r8b1s := -0.000000000000E+00 ; -acbv13.r8b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv15.r8b1x := -0.629471450966E-07 ; -acbv15.r8b1s := -0.413268769602E-06 ; -acbv15.r8b1 := (( -0.629471450966E-07 )*on_xx1_v+( -0.413268769602E-06 )*on_ssep1_v)*ON_DISP ; -acbv15.l1b1x := -0.138560247041E-09 ; -acbv15.l1b1s := -0.101704662404E-08 ; -acbv15.l1b1 := (( -0.138560247041E-09 )*on_xx1_v+( -0.101704662404E-08 )*on_ssep1_v)*ON_DISP ; -acbv13.l1b1x := 0.628767803197E-07 ; -acbv13.l1b1s := 0.412782443958E-06 ; -acbv13.l1b1 := (( 0.628767803197E-07 )*on_xx1_v+( 0.412782443958E-06 )*on_ssep1_v)*ON_DISP ; -acbv12.r1b1x := 0.709051493026E-07 ; -acbv12.r1b1s := -0.149509860567E-05 ; -acbv12.r1b1 := (( 0.709051493026E-07 )*on_xx1_v+( -0.149509860567E-05 )*on_ssep1_v)*ON_DISP ; -acbv14.r1b1x := 0.134041182597E-09 ; -acbv14.r1b1s := -0.240583731670E-08 ; -acbv14.r1b1 := (( 0.134041182597E-09 )*on_xx1_v+( -0.240583731670E-08 )*on_ssep1_v)*ON_DISP ; -acbv16.l2b1x := -0.707596668934E-07 ; -acbv16.l2b1s := 0.149187126821E-05 ; -acbv16.l2b1 := (( -0.707596668934E-07 )*on_xx1_v+( 0.149187126821E-05 )*on_ssep1_v)*ON_DISP ; -acbv14.l2b1x := 0.000000000000E+00 ; -acbv14.l2b1s := -0.000000000000E+00 ; -acbv14.l2b1 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; - - !! MCB in sector 45 and 56 -acbh14.r4b1x := 0.000000000000E+00 ; -acbh14.r4b1s := 0.000000000000E+00 ; -acbh14.r4b1 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh16.r4b1x := 0.714603366464E-07 ; -acbh16.r4b1s := 0.155830553772E-05 ; -acbh16.r4b1 := (( 0.714603366464E-07 )*on_xx5_h+( 0.155830553772E-05 )*on_ssep5_h)*ON_DISP ; -acbh14.l5b1x := -0.194923431379E-09 ; -acbh14.l5b1s := -0.384552132925E-08 ; -acbh14.l5b1 := (( -0.194923431379E-09 )*on_xx5_h+( -0.384552132925E-08 )*on_ssep5_h)*ON_DISP ; -acbh12.l5b1x := -0.716343368584E-07 ; -acbh12.l5b1s := -0.156210854807E-05 ; -acbh12.l5b1 := (( -0.716343368584E-07 )*on_xx5_h+( -0.156210854807E-05 )*on_ssep5_h)*ON_DISP ; -acbh13.r5b1x := -0.584055849734E-07 ; -acbh13.r5b1s := 0.452846521503E-06 ; -acbh13.r5b1 := (( -0.584055849734E-07 )*on_xx5_h+( 0.452846521503E-06 )*on_ssep5_h)*ON_DISP ; -acbh15.r5b1x := -0.502707961263E-11 ; -acbh15.r5b1s := -0.875976172159E-10 ; -acbh15.r5b1 := (( -0.502707961263E-11 )*on_xx5_h+( -0.875976172159E-10 )*on_ssep5_h)*ON_DISP ; -acbh15.l6b1x := 0.584042296638E-07 ; -acbh15.l6b1s := -0.452840369043E-06 ; -acbh15.l6b1 := (( 0.584042296638E-07 )*on_xx5_h+( -0.452840369043E-06 )*on_ssep5_h)*ON_DISP ; -acbh13.l6b1x := 0.000000000000E+00 ; -acbh13.l6b1s := 0.000000000000E+00 ; -acbh13.l6b1 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbv13.r4b1x := 0.000000000000E+00 ; -acbv13.r4b1s := 0.000000000000E+00 ; -acbv13.r4b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv15.r4b1x := -0.599580309550E-07 ; -acbv15.r4b1s := 0.394563294387E-06 ; -acbv15.r4b1 := (( -0.599580309550E-07 )*on_xx5_v+( 0.394563294387E-06 )*on_ssep5_v)*ON_DISP ; -acbv15.l5b1x := -0.133063174511E-09 ; -acbv15.l5b1s := 0.997116799564E-09 ; -acbv15.l5b1 := (( -0.133063174511E-09 )*on_xx5_v+( 0.997116799564E-09 )*on_ssep5_v)*ON_DISP ; -acbv13.l5b1x := 0.598905214293E-07 ; -acbv13.l5b1s := -0.394081255204E-06 ; -acbv13.l5b1 := (( 0.598905214293E-07 )*on_xx5_v+( -0.394081255204E-06 )*on_ssep5_v)*ON_DISP ; -acbv12.r5b1x := 0.639834116100E-07 ; -acbv12.r5b1s := 0.134856427160E-05 ; -acbv12.r5b1 := (( 0.639834116100E-07 )*on_xx5_v+( 0.134856427160E-05 )*on_ssep5_v)*ON_DISP ; -acbv14.r5b1x := 0.120189208949E-09 ; -acbv14.r5b1s := 0.215445760809E-08 ; -acbv14.r5b1 := (( 0.120189208949E-09 )*on_xx5_v+( 0.215445760809E-08 )*on_ssep5_v)*ON_DISP ; -acbv16.l6b1x := -0.638519863222E-07 ; -acbv16.l6b1s := -0.134565135723E-05 ; -acbv16.l6b1 := (( -0.638519863222E-07 )*on_xx5_v+( -0.134565135723E-05 )*on_ssep5_v)*ON_DISP ; -acbv14.l6b1x := 0.000000000000E+00 ; -acbv14.l6b1s := 0.000000000000E+00 ; -acbv14.l6b1 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; - - !! MCB-beam2 for spurious dispersion correction - - !! MCB in sector 81 and 12 -acbh13.r8b2x := 0.000000000000E+00 ; -acbh13.r8b2s := -0.000000000000E+00 ; -acbh13.r8b2 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbh15.r8b2x := 0.745261171437E-07 ; -acbh15.r8b2s := -0.416862707582E-06 ; -acbh15.r8b2 := (( 0.745261171437E-07 )*on_xx1_h+( -0.416862707582E-06 )*on_ssep1_h)*ON_DISP ; -acbh15.l1b2x := -0.724767138285E-11 ; -acbh15.l1b2s := -0.100528197881E-09 ; -acbh15.l1b2 := (( -0.724767138285E-11 )*on_xx1_h+( -0.100528197881E-09 )*on_ssep1_h)*ON_DISP ; -acbh13.l1b2x := -0.744524482162E-07 ; -acbh13.l1b2s := 0.416500499026E-06 ; -acbh13.l1b2 := (( -0.744524482162E-07 )*on_xx1_h+( 0.416500499026E-06 )*on_ssep1_h)*ON_DISP ; -acbh12.r1b2x := -0.717831984672E-07 ; -acbh12.r1b2s := -0.147491245466E-05 ; -acbh12.r1b2 := (( -0.717831984672E-07 )*on_xx1_h+( -0.147491245466E-05 )*on_ssep1_h)*ON_DISP ; -acbh14.r1b2x := 0.594704435687E-09 ; -acbh14.r1b2s := 0.127514156198E-07 ; -acbh14.r1b2 := (( 0.594704435687E-09 )*on_xx1_h+( 0.127514156198E-07 )*on_ssep1_h)*ON_DISP ; -acbh16.l2b2x := 0.722979457262E-07 ; -acbh16.l2b2s := 0.148562966128E-05 ; -acbh16.l2b2 := (( 0.722979457262E-07 )*on_xx1_h+( 0.148562966128E-05 )*on_ssep1_h)*ON_DISP ; -acbh14.l2b2x := 0.000000000000E+00 ; -acbh14.l2b2s := -0.000000000000E+00 ; -acbh14.l2b2 := (( 0.000000000000E+00 )*on_xx1_h+( -0.000000000000E+00 )*on_ssep1_h)*ON_DISP ; -acbv14.r8b2x := 0.000000000000E+00 ; -acbv14.r8b2s := -0.000000000000E+00 ; -acbv14.r8b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; -acbv16.r8b2x := -0.555662221751E-07 ; -acbv16.r8b2s := -0.117012352983E-05 ; -acbv16.r8b2 := (( -0.555662221751E-07 )*on_xx1_v+( -0.117012352983E-05 )*on_ssep1_v)*ON_DISP ; -acbv14.l1b2x := 0.250451503918E-09 ; -acbv14.l1b2s := 0.475961257309E-08 ; -acbv14.l1b2 := (( 0.250451503918E-09 )*on_xx1_v+( 0.475961257309E-08 )*on_ssep1_v)*ON_DISP ; -acbv12.l1b2x := 0.557786038507E-07 ; -acbv12.l1b2s := 0.117482810176E-05 ; -acbv12.l1b2 := (( 0.557786038507E-07 )*on_xx1_v+( 0.117482810176E-05 )*on_ssep1_v)*ON_DISP ; -acbv13.r1b2x := 0.578101014258E-07 ; -acbv13.r1b2s := -0.379794639598E-06 ; -acbv13.r1b2 := (( 0.578101014258E-07 )*on_xx1_v+( -0.379794639598E-06 )*on_ssep1_v)*ON_DISP ; -acbv15.r1b2x := -0.126273867450E-09 ; -acbv15.r1b2s := 0.977757855685E-09 ; -acbv15.r1b2 := (( -0.126273867450E-09 )*on_xx1_v+( 0.977757855685E-09 )*on_ssep1_v)*ON_DISP ; -acbv15.l2b2x := -0.578089223925E-07 ; -acbv15.l2b2s := 0.379841294193E-06 ; -acbv15.l2b2 := (( -0.578089223925E-07 )*on_xx1_v+( 0.379841294193E-06 )*on_ssep1_v)*ON_DISP ; -acbv13.l2b2x := 0.000000000000E+00 ; -acbv13.l2b2s := -0.000000000000E+00 ; -acbv13.l2b2 := (( 0.000000000000E+00 )*on_xx1_v+( -0.000000000000E+00 )*on_ssep1_v)*ON_DISP ; - - !! MCB in sector 45 and 56 -acbh13.r4b2x := 0.000000000000E+00 ; -acbh13.r4b2s := 0.000000000000E+00 ; -acbh13.r4b2 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbh15.r4b2x := 0.615743152931E-07 ; -acbh15.r4b2s := 0.322467904580E-06 ; -acbh15.r4b2 := (( 0.615743152931E-07 )*on_xx5_h+( 0.322467904580E-06 )*on_ssep5_h)*ON_DISP ; -acbh15.l5b2x := -0.370225613889E-11 ; -acbh15.l5b2s := 0.108434818049E-09 ; -acbh15.l5b2 := (( -0.370225613889E-11 )*on_xx5_h+( 0.108434818049E-09 )*on_ssep5_h)*ON_DISP ; -acbh13.l5b2x := -0.615126043145E-07 ; -acbh13.l5b2s := -0.322220879941E-06 ; -acbh13.l5b2 := (( -0.615126043145E-07 )*on_xx5_h+( -0.322220879941E-06 )*on_ssep5_h)*ON_DISP ; -acbh12.r5b2x := -0.681453274263E-07 ; -acbh12.r5b2s := 0.139412070631E-05 ; -acbh12.r5b2 := (( -0.681453274263E-07 )*on_xx5_h+( 0.139412070631E-05 )*on_ssep5_h)*ON_DISP ; -acbh14.r5b2x := 0.565326702719E-09 ; -acbh14.r5b2s := -0.120956719845E-07 ; -acbh14.r5b2 := (( 0.565326702719E-09 )*on_xx5_h+( -0.120956719845E-07 )*on_ssep5_h)*ON_DISP ; -acbh16.l6b2x := 0.686337352023E-07 ; -acbh16.l6b2s := -0.140427336754E-05 ; -acbh16.l6b2 := (( 0.686337352023E-07 )*on_xx5_h+( -0.140427336754E-05 )*on_ssep5_h)*ON_DISP ; -acbh14.l6b2x := 0.000000000000E+00 ; -acbh14.l6b2s := 0.000000000000E+00 ; -acbh14.l6b2 := (( 0.000000000000E+00 )*on_xx5_h+( 0.000000000000E+00 )*on_ssep5_h)*ON_DISP ; -acbv14.r4b2x := 0.000000000000E+00 ; -acbv14.r4b2s := 0.000000000000E+00 ; -acbv14.r4b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; -acbv16.r4b2x := -0.651165591965E-07 ; -acbv16.r4b2s := 0.137204726468E-05 ; -acbv16.r4b2 := (( -0.651165591965E-07 )*on_xx5_v+( 0.137204726468E-05 )*on_ssep5_v)*ON_DISP ; -acbv14.l5b2x := 0.295342880402E-09 ; -acbv14.l5b2s := -0.573642092111E-08 ; -acbv14.l5b2 := (( 0.295342880402E-09 )*on_xx5_v+( -0.573642092111E-08 )*on_ssep5_v)*ON_DISP ; -acbv12.l5b2x := 0.653648588564E-07 ; -acbv12.l5b2s := -0.137745432359E-05 ; -acbv12.l5b2 := (( 0.653648588564E-07 )*on_xx5_v+( -0.137745432359E-05 )*on_ssep5_v)*ON_DISP ; -acbv13.r5b2x := 0.615672394331E-07 ; -acbv13.r5b2s := 0.403790222391E-06 ; -acbv13.r5b2 := (( 0.615672394331E-07 )*on_xx5_v+( 0.403790222391E-06 )*on_ssep5_v)*ON_DISP ; -acbv15.r5b2x := -0.133840646572E-09 ; -acbv15.r5b2s := -0.102678084755E-08 ; -acbv15.r5b2 := (( -0.133840646572E-09 )*on_xx5_v+( -0.102678084755E-08 )*on_ssep5_v)*ON_DISP ; -acbv15.l6b2x := -0.615657675140E-07 ; -acbv15.l6b2s := -0.403832434471E-06 ; -acbv15.l6b2 := (( -0.615657675140E-07 )*on_xx5_v+( -0.403832434471E-06 )*on_ssep5_v)*ON_DISP ; -acbv13.l6b2x := 0.000000000000E+00 ; -acbv13.l6b2s := 0.000000000000E+00 ; -acbv13.l6b2 := (( 0.000000000000E+00 )*on_xx5_v+( 0.000000000000E+00 )*on_ssep5_v)*ON_DISP ; - - /* - !****OPTICS SUMMARY**** - - !Tune and Chroma -Qxb1 = 62.310000; Qyb1 = 60.320000; Qpxb1= -0.000000; Qpyb1= 0.000000; dmux15b1= 30.9428034; dmuy15b1= 29.6035062; -Qxb2 = 62.310000; Qyb2 = 60.320000; Qpxb2= -0.000000; Qpyb2= -0.000000; dmux15b2= 31.0619743; dmuy15b2= 29.7618930; - - !IR Optics summary (phase, twiss param., dispersion) -muxIP1b1= 2.6448000; muyIP1b1= 2.6450000; muxIP1b1_L= 1.1579000; muyIP1b1_L= 1.4907000; muxIP1b1_R= 1.4869000; muyIP1b1_R= 1.1543000; betxIP1b1= 0.300000; betyIP1b1= 0.300000; alfxIP1b1= 0.000000; alfyIP1b1= -0.000000; dxIP1b1= 0.000000; dpxIP1b1= -0.000000; -muxIP1b2= 2.6448000; muyIP1b2= 2.6450000; muxIP1b2_L= 1.4901000; muyIP1b2_L= 1.1587000; muxIP1b2_R= 1.1547000; muyIP1b2_R= 1.4863000; betxIP1b2= 0.300000; betyIP1b2= 0.300000; alfxIP1b2= -0.000000; alfyIP1b2= -0.000000; dxIP1b2= -0.000000; dpxIP1b2= 0.000000; -muxIP5b1= 2.6448000; muyIP5b1= 2.6450000; muxIP5b1_L= 1.1579000; muyIP5b1_L= 1.4907000; muxIP5b1_R= 1.4869000; muyIP5b1_R= 1.1543000; betxIP5b1= 0.300000; betyIP5b1= 0.300000; alfxIP5b1= -0.000000; alfyIP5b1= -0.000000; dxIP5b1= -0.000000; dpxIP5b1= 0.000000; -muxIP5b2= 2.6448000; muyIP5b2= 2.6450000; muxIP5b2_L= 1.4901000; muyIP5b2_L= 1.1587000; muxIP5b2_R= 1.1547000; muyIP5b2_R= 1.4863000; betxIP5b2= 0.300000; betyIP5b2= 0.300000; alfxIP5b2= 0.000000; alfyIP5b2= 0.000000; dxIP5b2= 0.000000; dpxIP5b2= -0.000000; -muxIP2b1= 2.9500000; muyIP2b1= 2.7450000; betxIP2b1= 10.000000; betyIP2b1= 10.000000; alfxIP2b1= -0.000000; alfyIP2b1= 0.000000; dxIP2b1= -0.000000; dpxIP2b1= -0.000000; -muxIP2b2= 2.9500000; muyIP2b2= 2.7450000; betxIP2b2= 10.000000; betyIP2b2= 10.000000; alfxIP2b2= 0.000000; alfyIP2b2= 0.000000; dxIP2b2= -0.000000; dpxIP2b2= -0.000000; -muxIP8b1= 3.0200000; muyIP8b1= 2.8000000; betxIP8b1= 2.000000; betyIP8b1= 2.000000; alfxIP8b1= -0.000000; alfyIP8b1= 0.000000; dxIP8b1= 0.000000; dpxIP8b1= -0.000000; -muxIP8b2= 3.0200000; muyIP8b2= 2.8000000; betxIP8b2= 2.000000; betyIP8b2= 2.000000; alfxIP8b2= 0.000000; alfyIP8b2= -0.000000; dxIP8b2= -0.000000; dpxIP8b2= -0.000000; -muxIP4b1= 2.1262500; muyIP4b1= 1.6750000; betxIP4b1= 239.413644; betyIP4b1= 242.774144; alfxIP4b1= 0.495763; alfyIP4b1= -0.373724; dxIP4b1= 0.000000; dpxIP4b1= -0.000000; -muxIP4b2= 2.1600000; muyIP4b2= 1.7200000; betxIP4b2= 231.105188; betyIP4b2= 303.948682; alfxIP4b2= -0.500292; alfyIP4b2= 0.498879; dxIP4b2= -0.000000; dpxIP4b2= -0.000000; -muxIP6b1= 2.1937500; muyIP6b1= 2.0250000; betxIP6b1= 188.438199; betyIP6b1= 173.703395; alfxIP6b1= -0.553539; alfyIP6b1= 0.687763; dxIP6b1= -0.223349; dpxIP6b1= 0.001563; -muxIP6b2= 2.1600000; muyIP6b2= 1.9800000; betxIP6b2= 189.334229; betyIP6b2= 175.476389; alfxIP6b2= 0.568601; alfyIP6b2= -0.645106; dxIP6b2= -0.162414; dpxIP6b2= -0.001387; -muxIP3b1= 2.2230000; muyIP3b1= 1.9650000; betxIP3b1= 121.566844; betyIP3b1= 218.585060; alfxIP3b1= 2.295731; alfyIP3b1= -2.642890; dxIP3b1= -0.537375; dpxIP3b1= -0.006869; -muxIP3b2= 2.2230000; muyIP3b2= 1.9650000; betxIP3b2= 121.567284; betyIP3b2= 218.584477; alfxIP3b2= -2.295728; alfyIP3b2= 2.642905; dxIP3b2= -0.445260; dpxIP3b2= 0.008749; -muxIP7b1= 2.4640000; muyIP7b1= 2.0000000; betxIP7b1= 120.813252; betyIP7b1= 149.430470; alfxIP7b1= 1.276977; alfyIP7b1= -1.385146; dxIP7b1= -0.169987; dpxIP7b1= -0.000000; -muxIP7b2= 2.4640000; muyIP7b2= 2.0000000; betxIP7b2= 120.813252; betyIP7b2= 149.430471; alfxIP7b2= -1.276977; alfyIP7b2= 1.385146; dxIP7b2= -0.008803; dpxIP7b2= -0.000000; - - !Xscheme summary in IR1, IR2,IR5 and IR8 -xIP1b1=-0.0005500000; yIP1b1=-0.0000000000; pxIP1b1= 0.0000000000; pyIP1b1= 0.0001600000; -xIP1b2= 0.0005500000; yIP1b2= 0.0000000000; pxIP1b2=-0.0000000000; pyIP1b2=-0.0001600000; -xIP2b1= 0.0010000000; yIP2b1= 0.0000000000; pxIP2b1= 0.0000002919; pyIP2b1= 0.0002699994; -xIP2b2=-0.0010000000; yIP2b2=-0.0000000000; pxIP2b2=-0.0000002919; pyIP2b2=-0.0002699994; -xIP5b1= 0.0000000000; yIP5b1= 0.0005500000; pxIP5b1= 0.0001600000; pyIP5b1= 0.0000000000; -xIP5b2= 0.0000000000; yIP5b2=-0.0005500000; pxIP5b2=-0.0001600000; pyIP5b2= 0.0000000000; -xIP8b1= 0.0000000000; yIP8b1=-0.0010000000; pxIP8b1=-0.0003349879; pyIP8b1=-0.0000018097; -xIP8b2= 0.0000000000; yIP8b2= 0.0010000000; pxIP8b2= 0.0003349879; pyIP8b2= 0.0000018097; - - !Arc Optics summary -muxcell81b1=0.24998197; muycell81b1=0.24998197; mux81b1= 5.2178933; muy81b1= 5.2437868; -muxcell45b1=0.24998197; muycell45b1=0.24998197; mux45b1= 5.2178933; muy45b1= 5.2437868; -muxcell12b2=0.24998197; muycell12b2=0.24998197; mux12b2= 5.2178933; muy12b2= 5.2437868; -muxcell56b2=0.24998197; muycell56b2=0.24998197; mux56b2= 5.2178933; muy56b2= 5.2437868; -muxcell12b1=0.25000000; muycell12b1=0.25000000; mux12b1= 5.2441653; muy12b1= 5.2182697; -muxcell56b1=0.25000000; muycell56b1=0.25000000; mux56b1= 5.2441653; muy56b1= 5.2182697; -muxcell81b2=0.25000000; muycell81b2=0.25000000; mux81b2= 5.2441653; muy81b2= 5.2182697; -muxcell45b2=0.25000000; muycell45b2=0.25000000; mux45b2= 5.2441653; muy45b2= 5.2182697; -muxcell23b1=0.25278573; muycell23b1=0.24296472; mux23b1= 5.2552629; muy23b1= 5.0687037; -muxcell78b2=0.25184855; muycell78b2=0.25634235; mux78b2= 5.2352463; muy78b2= 5.3488243; -muxcell34b1=0.25278573; muycell34b1=0.24296472; mux34b1= 5.2814318; muy34b1= 5.0427460; -muxcell67b2=0.25184855; muycell67b2=0.25634235; mux67b2= 5.2619207; muy67b2= 5.3222263; -muxcell67b1=0.25186692; muycell67b1=0.25636098; mux67b1= 5.2775277; muy67b1= 5.4073245; -muxcell34b2=0.25280379; muycell34b2=0.24298226; mux34b2= 5.2973354; muy34b2= 5.1243893; -muxcell78b1=0.25186692; muycell78b1=0.25636098; mux78b1= 5.3050602; muy78b1= 5.3771129; -muxcell23b2=0.25280379; muycell23b2=0.24298226; mux23b2= 5.3247802; muy23b2= 5.1004473; - */ - - - return ; diff --git a/examples/acc-models-lhc/toolkit/generate-op-chroma-knobs-ats.madx b/examples/acc-models-lhc/toolkit/generate-op-chroma-knobs-ats.madx deleted file mode 100755 index 9b9e5cae..00000000 --- a/examples/acc-models-lhc/toolkit/generate-op-chroma-knobs-ats.madx +++ /dev/null @@ -1,20 +0,0 @@ -create, table=chromaknobs_b1, column=KSD1.A12B1,KSD1.A23B1,KSD1.A34B1,KSD1.A45B1,KSD1.A56B1,KSD1.A67B1,KSD1.A78B1,KSD1.A81B1,KSD2.A12B1,KSD2.A23B1,KSD2.A34B1,KSD2.A45B1,KSD2.A56B1,KSD2.A67B1,KSD2.A78B1,KSD2.A81B1,KSF1.A12B1,KSF1.A23B1,KSF1.A34B1,KSF1.A45B1,KSF1.A56B1,KSF1.A67B1,KSF1.A78B1,KSF1.A81B1,KSF2.A12B1,KSF2.A23B1,KSF2.A34B1,KSF2.A45B1,KSF2.A56B1,KSF2.A67B1,KSF2.A78B1,KSF2.A81B1; - -fill_knob,table=chromaknobs_b1,row=1,knob=dQpx.b1_sq,scale=1; -fill_knob,table=chromaknobs_b1,row=2,knob=dQpy.b1_sq,scale=1; -setvars_knob,table=chromaknobs_b1,row=1,knob=dQpx.b1_op; -setvars_knob,table=chromaknobs_b1,row=2,knob=dQpy.b1_op; - -delete,table=chromaknobs_b1; - -create, table=chromaknobs_b2, column=KSD1.A12B2,KSD1.A23B2,KSD1.A34B2,KSD1.A45B2,KSD1.A56B2,KSD1.A67B2,KSD1.A78B2,KSD1.A81B2,KSD2.A12B2,KSD2.A23B2,KSD2.A34B2,KSD2.A45B2,KSD2.A56B2,KSD2.A67B2,KSD2.A78B2,KSD2.A81B2,KSF1.A12B2,KSF1.A23B2,KSF1.A34B2,KSF1.A45B2,KSF1.A56B2,KSF1.A67B2,KSF1.A78B2,KSF1.A81B2,KSF2.A12B2,KSF2.A23B2,KSF2.A34B2,KSF2.A45B2,KSF2.A56B2,KSF2.A67B2,KSF2.A78B2,KSF2.A81B2; - -fill_knob,table=chromaknobs_b2,row=1,knob=dQpx.b2_sq,scale=1; -fill_knob,table=chromaknobs_b2,row=2,knob=dQpy.b2_sq,scale=1; -setvars_knob,table=chromaknobs_b2,row=1,knob=dQpx.b2_op; -setvars_knob,table=chromaknobs_b2,row=2,knob=dQpy.b2_op; - -delete,table=chromaknobs_b2; - - - diff --git a/examples/acc-models-lhc/toolkit/generate-op-coupling-knobs-ats.madx b/examples/acc-models-lhc/toolkit/generate-op-coupling-knobs-ats.madx deleted file mode 100755 index 442d2833..00000000 --- a/examples/acc-models-lhc/toolkit/generate-op-coupling-knobs-ats.madx +++ /dev/null @@ -1,20 +0,0 @@ -create, table=couplingknobs_b1, column=KQS.A23B1,KQS.A45B1,KQS.A67B1,KQS.A81B1,KQS.L2B1,KQS.L4B1,KQS.L6B1,KQS.L8B1,KQS.R1B1,KQS.R3B1,KQS.R5B1,KQS.R7B1; - -fill_knob,table=couplingknobs_b1,row=1,knob=CMRS.b1_sq,scale=1; -fill_knob,table=couplingknobs_b1,row=2,knob=CMIS.b1_sq,scale=1; -setvars_knob,table=couplingknobs_b1,row=1,knob=CMRS.b1_op; -setvars_knob,table=couplingknobs_b1,row=2,knob=CMIS.b1_op; - -delete,table=couplingknobs_b1; - -create, table=couplingknobs_b2, column=KQS.A12B2,KQS.A34B2,KQS.A56B2,KQS.A78B2,KQS.L1B2,KQS.L3B2,KQS.L5B2,KQS.L7B2,KQS.R2B2,KQS.R4B2,KQS.R6B2,KQS.R8B2; - -fill_knob,table=couplingknobs_b2,row=1,knob=CMRS.b2_sq,scale=1; -fill_knob,table=couplingknobs_b2,row=2,knob=CMIS.b2_sq,scale=1; -setvars_knob,table=couplingknobs_b2,row=1,knob=CMRS.b2_op; -setvars_knob,table=couplingknobs_b2,row=2,knob=CMIS.b2_op; - -delete,table=couplingknobs_b2; - - - diff --git a/examples/acc-models-lhc/toolkit/generate-op-tune-knobs-ats.madx b/examples/acc-models-lhc/toolkit/generate-op-tune-knobs-ats.madx deleted file mode 100755 index da662744..00000000 --- a/examples/acc-models-lhc/toolkit/generate-op-tune-knobs-ats.madx +++ /dev/null @@ -1,17 +0,0 @@ -create, table=tuneknobs_b1, column=KQTF.A12B1,KQTF.A23B1,KQTF.A34B1,KQTF.A45B1,KQTF.A56B1,KQTF.A67B1,KQTF.A78B1,KQTF.A81B1,KQTD.A12B1,KQTD.A23B1,KQTD.A34B1,KQTD.A45B1,KQTD.A56B1,KQTD.A67B1,KQTD.A78B1,KQTD.A81B1; - -fill_knob,table=tuneknobs_b1,row=1,knob=dQx.b1_sq,scale=1; -fill_knob,table=tuneknobs_b1,row=2,knob=dQy.b1_sq,scale=1; -setvars_knob,table=tuneknobs_b1,row=1,knob=dQx.b1_op; -setvars_knob,table=tuneknobs_b1,row=2,knob=dQy.b1_op; - -delete,table=tuneknobs_b1; - -create, table=tuneknobs_b2, column=KQTF.A12B2,KQTF.A23B2,KQTF.A34B2,KQTF.A45B2,KQTF.A56B2,KQTF.A67B2,KQTF.A78B2,KQTF.A81B2,KQTD.A12B2,KQTD.A23B2,KQTD.A34B2,KQTD.A45B2,KQTD.A56B2,KQTD.A67B2,KQTD.A78B2,KQTD.A81B2; - -fill_knob,table=tuneknobs_b2,row=1,knob=dQx.b2_sq,scale=1; -fill_knob,table=tuneknobs_b2,row=2,knob=dQy.b2_sq,scale=1; -setvars_knob,table=tuneknobs_b2,row=1,knob=dQx.b2_op; -setvars_knob,table=tuneknobs_b2,row=2,knob=dQy.b2_op; - -delete,table=tuneknobs_b2; diff --git a/examples/acc-models-lhc/toolkit/match-lumiknobs.madx b/examples/acc-models-lhc/toolkit/match-lumiknobs.madx deleted file mode 100755 index 30bea280..00000000 --- a/examples/acc-models-lhc/toolkit/match-lumiknobs.madx +++ /dev/null @@ -1,371 +0,0 @@ -! Generate knob for on_xip1b1 -add2expr,var=acbch5.r1b1,expr=on_xip1b1_acbch5.r1b1*on_xip1b1; -add2expr,var=acbyhs4.r1b1,expr=on_xip1b1_acbyhs4.r1b1*on_xip1b1; -add2expr,var=acbch6.l1b1,expr=on_xip1b1_acbch6.l1b1*on_xip1b1; -add2expr,var=acbyh4.l1b1,expr=on_xip1b1_acbyh4.l1b1*on_xip1b1; -use, sequence=lhcb1,range=e.ds.l1.b1/s.ds.r1.b1; -on_xip1b1=1; -match, sequence=lhcb1, betx=1, bety=1; -constraint, sequence=lhcb1, range=ip1, x = 0.001; -constraint, sequence=lhcb1, range=ip1, px = 0; -constraint, sequence=lhcb1, range=s.ds.r1.b1, x = 0; -constraint, sequence=lhcb1, range=s.ds.r1.b1, px = 0; -vary, name=on_xip1b1_acbch5.r1b1,step=1.e-12; -vary, name=on_xip1b1_acbyhs4.r1b1,step=1.e-12; -vary, name=on_xip1b1_acbch6.l1b1,step=1.e-12; -vary, name=on_xip1b1_acbyh4.l1b1,step=1.e-12; -on_xip1b1_acbch5.r1b1=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_xip1b1=0; -tar_on_xip1b1=tar; -! End generate knob for on_xip1b1 -! Generate knob for on_xip1b2 -add2expr,var=acbyh4.r1b2,expr=on_xip1b2_acbyh4.r1b2*on_xip1b2; -add2expr,var=acbch6.r1b2,expr=on_xip1b2_acbch6.r1b2*on_xip1b2; -add2expr,var=acbyhs4.l1b2,expr=on_xip1b2_acbyhs4.l1b2*on_xip1b2; -add2expr,var=acbch5.l1b2,expr=on_xip1b2_acbch5.l1b2*on_xip1b2; -use, sequence=lhcb2,range=e.ds.l1.b2/s.ds.r1.b2; -on_xip1b2=1; -match, sequence=lhcb2, betx=1, bety=1; -constraint, sequence=lhcb2, range=ip1, x = 0.001; -constraint, sequence=lhcb2, range=ip1, px = 0; -constraint, sequence=lhcb2, range=s.ds.r1.b2, x = 0; -constraint, sequence=lhcb2, range=s.ds.r1.b2, px = 0; -vary, name=on_xip1b2_acbyh4.r1b2,step=1.e-12; -vary, name=on_xip1b2_acbch6.r1b2,step=1.e-12; -vary, name=on_xip1b2_acbyhs4.l1b2,step=1.e-12; -vary, name=on_xip1b2_acbch5.l1b2,step=1.e-12; -on_xip1b2_acbyh4.r1b2=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_xip1b2=0; -tar_on_xip1b2=tar; -! End generate knob for on_xip1b2 -! Generate knob for on_yip1b1 -add2expr,var=acbyvs4.l1b1,expr=on_yip1b1_acbyvs4.l1b1*on_yip1b1; -add2expr,var=acbcv5.l1b1,expr=on_yip1b1_acbcv5.l1b1*on_yip1b1; -add2expr,var=acbyv4.r1b1,expr=on_yip1b1_acbyv4.r1b1*on_yip1b1; -add2expr,var=acbcv6.r1b1,expr=on_yip1b1_acbcv6.r1b1*on_yip1b1; -use, sequence=lhcb1,range=e.ds.l1.b1/s.ds.r1.b1; -on_yip1b1=1; -match, sequence=lhcb1, betx=1, bety=1; -constraint, sequence=lhcb1, range=ip1, y = 0.001; -constraint, sequence=lhcb1, range=ip1, py = 0; -constraint, sequence=lhcb1, range=s.ds.r1.b1, y = 0; -constraint, sequence=lhcb1, range=s.ds.r1.b1, py = 0; -vary, name=on_yip1b1_acbyvs4.l1b1,step=1.e-12; -vary, name=on_yip1b1_acbcv5.l1b1,step=1.e-12; -vary, name=on_yip1b1_acbyv4.r1b1,step=1.e-12; -vary, name=on_yip1b1_acbcv6.r1b1,step=1.e-12; -on_yip1b1_acbyvs4.l1b1=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_yip1b1=0; -tar_on_yip1b1=tar; -! End generate knob for on_yip1b1 -! Generate knob for on_yip1b2 -add2expr,var=acbcv5.r1b2,expr=on_yip1b2_acbcv5.r1b2*on_yip1b2; -add2expr,var=acbyv4.l1b2,expr=on_yip1b2_acbyv4.l1b2*on_yip1b2; -add2expr,var=acbcv6.l1b2,expr=on_yip1b2_acbcv6.l1b2*on_yip1b2; -add2expr,var=acbyvs4.r1b2,expr=on_yip1b2_acbyvs4.r1b2*on_yip1b2; -use, sequence=lhcb2,range=e.ds.l1.b2/s.ds.r1.b2; -on_yip1b2=1; -match, sequence=lhcb2, betx=1, bety=1; -constraint, sequence=lhcb2, range=ip1, y = 0.001; -constraint, sequence=lhcb2, range=ip1, py = 0; -constraint, sequence=lhcb2, range=s.ds.r1.b2, y = 0; -constraint, sequence=lhcb2, range=s.ds.r1.b2, py = 0; -vary, name=on_yip1b2_acbcv5.r1b2,step=1.e-12; -vary, name=on_yip1b2_acbyv4.l1b2,step=1.e-12; -vary, name=on_yip1b2_acbcv6.l1b2,step=1.e-12; -vary, name=on_yip1b2_acbyvs4.r1b2,step=1.e-12; -on_yip1b2_acbcv5.r1b2=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_yip1b2=0; -tar_on_yip1b2=tar; -! End generate knob for on_yip1b2 -! Generate knob for on_xip2b1 -add2expr,var=acbchs5.r2b1,expr=on_xip2b1_acbchs5.r2b1*on_xip2b1; -add2expr,var=acbyhs4.l2b1,expr=on_xip2b1_acbyhs4.l2b1*on_xip2b1; -add2expr,var=acbyh5.l2b1,expr=on_xip2b1_acbyh5.l2b1*on_xip2b1; -add2expr,var=acbyh4.r2b1,expr=on_xip2b1_acbyh4.r2b1*on_xip2b1; -use, sequence=lhcb1,range=e.ds.l2.b1/s.ds.r2.b1; -on_xip2b1=1; -match, sequence=lhcb1, betx=1, bety=1; -constraint, sequence=lhcb1, range=ip2, x = 0.001; -constraint, sequence=lhcb1, range=ip2, px = 0; -constraint, sequence=lhcb1, range=s.ds.r2.b1, x = 0; -constraint, sequence=lhcb1, range=s.ds.r2.b1, px = 0; -vary, name=on_xip2b1_acbchs5.r2b1,step=1.e-12; -vary, name=on_xip2b1_acbyhs4.l2b1,step=1.e-12; -vary, name=on_xip2b1_acbyh5.l2b1,step=1.e-12; -vary, name=on_xip2b1_acbyh4.r2b1,step=1.e-12; -on_xip2b1_acbchs5.r2b1=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_xip2b1=0; -tar_on_xip2b1=tar; -! End generate knob for on_xip2b1 -! Generate knob for on_xip2b2 -add2expr,var=acbyh4.l2b2,expr=on_xip2b2_acbyh4.l2b2*on_xip2b2; -add2expr,var=acbch5.r2b2,expr=on_xip2b2_acbch5.r2b2*on_xip2b2; -add2expr,var=acbyhs4.r2b2,expr=on_xip2b2_acbyhs4.r2b2*on_xip2b2; -add2expr,var=acbyhs5.l2b2,expr=on_xip2b2_acbyhs5.l2b2*on_xip2b2; -use, sequence=lhcb2,range=e.ds.l2.b2/s.ds.r2.b2; -on_xip2b2=1; -match, sequence=lhcb2, betx=1, bety=1; -constraint, sequence=lhcb2, range=ip2, x = 0.001; -constraint, sequence=lhcb2, range=ip2, px = 0; -constraint, sequence=lhcb2, range=s.ds.r2.b2, x = 0; -constraint, sequence=lhcb2, range=s.ds.r2.b2, px = 0; -vary, name=on_xip2b2_acbyh4.l2b2,step=1.e-12; -vary, name=on_xip2b2_acbch5.r2b2,step=1.e-12; -vary, name=on_xip2b2_acbyhs4.r2b2,step=1.e-12; -vary, name=on_xip2b2_acbyhs5.l2b2,step=1.e-12; -on_xip2b2_acbyh4.l2b2=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_xip2b2=0; -tar_on_xip2b2=tar; -! End generate knob for on_xip2b2 -! Generate knob for on_yip2b1 -add2expr,var=acbcv5.r2b1,expr=on_yip2b1_acbcv5.r2b1*on_yip2b1; -add2expr,var=acbyv4.l2b1,expr=on_yip2b1_acbyv4.l2b1*on_yip2b1; -add2expr,var=acbyvs5.l2b1,expr=on_yip2b1_acbyvs5.l2b1*on_yip2b1; -add2expr,var=acbyvs4.r2b1,expr=on_yip2b1_acbyvs4.r2b1*on_yip2b1; -use, sequence=lhcb1,range=e.ds.l2.b1/s.ds.r2.b1; -on_yip2b1=1; -match, sequence=lhcb1, betx=1, bety=1; -constraint, sequence=lhcb1, range=ip2, y = 0.001; -constraint, sequence=lhcb1, range=ip2, py = 0; -constraint, sequence=lhcb1, range=s.ds.r2.b1, y = 0; -constraint, sequence=lhcb1, range=s.ds.r2.b1, py = 0; -vary, name=on_yip2b1_acbcv5.r2b1,step=1.e-12; -vary, name=on_yip2b1_acbyv4.l2b1,step=1.e-12; -vary, name=on_yip2b1_acbyvs5.l2b1,step=1.e-12; -vary, name=on_yip2b1_acbyvs4.r2b1,step=1.e-12; -on_yip2b1_acbcv5.r2b1=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_yip2b1=0; -tar_on_yip2b1=tar; -! End generate knob for on_yip2b1 -! Generate knob for on_yip2b2 -add2expr,var=acbcvs5.r2b2,expr=on_yip2b2_acbcvs5.r2b2*on_yip2b2; -add2expr,var=acbyv4.r2b2,expr=on_yip2b2_acbyv4.r2b2*on_yip2b2; -add2expr,var=acbyv5.l2b2,expr=on_yip2b2_acbyv5.l2b2*on_yip2b2; -add2expr,var=acbyvs4.l2b2,expr=on_yip2b2_acbyvs4.l2b2*on_yip2b2; -use, sequence=lhcb2,range=e.ds.l2.b2/s.ds.r2.b2; -on_yip2b2=1; -match, sequence=lhcb2, betx=1, bety=1; -constraint, sequence=lhcb2, range=ip2, y = 0.001; -constraint, sequence=lhcb2, range=ip2, py = 0; -constraint, sequence=lhcb2, range=s.ds.r2.b2, y = 0; -constraint, sequence=lhcb2, range=s.ds.r2.b2, py = 0; -vary, name=on_yip2b2_acbcvs5.r2b2,step=1.e-12; -vary, name=on_yip2b2_acbyv4.r2b2,step=1.e-12; -vary, name=on_yip2b2_acbyv5.l2b2,step=1.e-12; -vary, name=on_yip2b2_acbyvs4.l2b2,step=1.e-12; -on_yip2b2_acbcvs5.r2b2=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_yip2b2=0; -tar_on_yip2b2=tar; -! End generate knob for on_yip2b2 -! Generate knob for on_xip5b1 -add2expr,var=acbch6.l5b1,expr=on_xip5b1_acbch6.l5b1*on_xip5b1; -add2expr,var=acbyhs4.r5b1,expr=on_xip5b1_acbyhs4.r5b1*on_xip5b1; -add2expr,var=acbyh4.l5b1,expr=on_xip5b1_acbyh4.l5b1*on_xip5b1; -add2expr,var=acbch5.r5b1,expr=on_xip5b1_acbch5.r5b1*on_xip5b1; -use, sequence=lhcb1,range=e.ds.l5.b1/s.ds.r5.b1; -on_xip5b1=1; -match, sequence=lhcb1, betx=1, bety=1; -constraint, sequence=lhcb1, range=ip5, x = 0.001; -constraint, sequence=lhcb1, range=ip5, px = 0; -constraint, sequence=lhcb1, range=s.ds.r5.b1, x = 0; -constraint, sequence=lhcb1, range=s.ds.r5.b1, px = 0; -vary, name=on_xip5b1_acbch6.l5b1,step=1.e-12; -vary, name=on_xip5b1_acbyhs4.r5b1,step=1.e-12; -vary, name=on_xip5b1_acbyh4.l5b1,step=1.e-12; -vary, name=on_xip5b1_acbch5.r5b1,step=1.e-12; -on_xip5b1_acbch6.l5b1=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_xip5b1=0; -tar_on_xip5b1=tar; -! End generate knob for on_xip5b1 -! Generate knob for on_xip5b2 -add2expr,var=acbch6.r5b2,expr=on_xip5b2_acbch6.r5b2*on_xip5b2; -add2expr,var=acbyh4.r5b2,expr=on_xip5b2_acbyh4.r5b2*on_xip5b2; -add2expr,var=acbch5.l5b2,expr=on_xip5b2_acbch5.l5b2*on_xip5b2; -add2expr,var=acbyhs4.l5b2,expr=on_xip5b2_acbyhs4.l5b2*on_xip5b2; -use, sequence=lhcb2,range=e.ds.l5.b2/s.ds.r5.b2; -on_xip5b2=1; -match, sequence=lhcb2, betx=1, bety=1; -constraint, sequence=lhcb2, range=ip5, x = 0.001; -constraint, sequence=lhcb2, range=ip5, px = 0; -constraint, sequence=lhcb2, range=s.ds.r5.b2, x = 0; -constraint, sequence=lhcb2, range=s.ds.r5.b2, px = 0; -vary, name=on_xip5b2_acbch6.r5b2,step=1.e-12; -vary, name=on_xip5b2_acbyh4.r5b2,step=1.e-12; -vary, name=on_xip5b2_acbch5.l5b2,step=1.e-12; -vary, name=on_xip5b2_acbyhs4.l5b2,step=1.e-12; -on_xip5b2_acbch6.r5b2=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_xip5b2=0; -tar_on_xip5b2=tar; -! End generate knob for on_xip5b2 -! Generate knob for on_yip5b1 -add2expr,var=acbyvs4.l5b1,expr=on_yip5b1_acbyvs4.l5b1*on_yip5b1; -add2expr,var=acbcv6.r5b1,expr=on_yip5b1_acbcv6.r5b1*on_yip5b1; -add2expr,var=acbyv4.r5b1,expr=on_yip5b1_acbyv4.r5b1*on_yip5b1; -add2expr,var=acbcv5.l5b1,expr=on_yip5b1_acbcv5.l5b1*on_yip5b1; -use, sequence=lhcb1,range=e.ds.l5.b1/s.ds.r5.b1; -on_yip5b1=1; -match, sequence=lhcb1, betx=1, bety=1; -constraint, sequence=lhcb1, range=ip5, y = 0.001; -constraint, sequence=lhcb1, range=ip5, py = 0; -constraint, sequence=lhcb1, range=s.ds.r5.b1, y = 0; -constraint, sequence=lhcb1, range=s.ds.r5.b1, py = 0; -vary, name=on_yip5b1_acbyvs4.l5b1,step=1.e-12; -vary, name=on_yip5b1_acbcv6.r5b1,step=1.e-12; -vary, name=on_yip5b1_acbyv4.r5b1,step=1.e-12; -vary, name=on_yip5b1_acbcv5.l5b1,step=1.e-12; -on_yip5b1_acbyvs4.l5b1=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_yip5b1=0; -tar_on_yip5b1=tar; -! End generate knob for on_yip5b1 -! Generate knob for on_yip5b2 -add2expr,var=acbyvs4.r5b2,expr=on_yip5b2_acbyvs4.r5b2*on_yip5b2; -add2expr,var=acbcv5.r5b2,expr=on_yip5b2_acbcv5.r5b2*on_yip5b2; -add2expr,var=acbcv6.l5b2,expr=on_yip5b2_acbcv6.l5b2*on_yip5b2; -add2expr,var=acbyv4.l5b2,expr=on_yip5b2_acbyv4.l5b2*on_yip5b2; -use, sequence=lhcb2,range=e.ds.l5.b2/s.ds.r5.b2; -on_yip5b2=1; -match, sequence=lhcb2, betx=1, bety=1; -constraint, sequence=lhcb2, range=ip5, y = 0.001; -constraint, sequence=lhcb2, range=ip5, py = 0; -constraint, sequence=lhcb2, range=s.ds.r5.b2, y = 0; -constraint, sequence=lhcb2, range=s.ds.r5.b2, py = 0; -vary, name=on_yip5b2_acbyvs4.r5b2,step=1.e-12; -vary, name=on_yip5b2_acbcv5.r5b2,step=1.e-12; -vary, name=on_yip5b2_acbcv6.l5b2,step=1.e-12; -vary, name=on_yip5b2_acbyv4.l5b2,step=1.e-12; -on_yip5b2_acbyvs4.r5b2=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_yip5b2=0; -tar_on_yip5b2=tar; -! End generate knob for on_yip5b2 -! Generate knob for on_xip8b1 -add2expr,var=acbyhs4.l8b1,expr=on_xip8b1_acbyhs4.l8b1*on_xip8b1; -add2expr,var=acbch5.l8b1,expr=on_xip8b1_acbch5.l8b1*on_xip8b1; -add2expr,var=acbch6.r8b1,expr=on_xip8b1_acbch6.r8b1*on_xip8b1; -add2expr,var=acbyh4.r8b1,expr=on_xip8b1_acbyh4.r8b1*on_xip8b1; -use, sequence=lhcb1,range=e.ds.l8.b1/s.ds.r8.b1; -on_xip8b1=1; -match, sequence=lhcb1, betx=1, bety=1; -constraint, sequence=lhcb1, range=ip8, x = 0.001; -constraint, sequence=lhcb1, range=ip8, px = 0; -constraint, sequence=lhcb1, range=s.ds.r8.b1, x = 0; -constraint, sequence=lhcb1, range=s.ds.r8.b1, px = 0; -vary, name=on_xip8b1_acbyhs4.l8b1,step=1.e-12; -vary, name=on_xip8b1_acbch5.l8b1,step=1.e-12; -vary, name=on_xip8b1_acbch6.r8b1,step=1.e-12; -vary, name=on_xip8b1_acbyh4.r8b1,step=1.e-12; -on_xip8b1_acbyhs4.l8b1=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_xip8b1=0; -tar_on_xip8b1=tar; -! End generate knob for on_xip8b1 -! Generate knob for on_xip8b2 -add2expr,var=acbyh4.l8b2,expr=on_xip8b2_acbyh4.l8b2*on_xip8b2; -add2expr,var=acbyhs4.r8b2,expr=on_xip8b2_acbyhs4.r8b2*on_xip8b2; -add2expr,var=acbyh5.r8b2,expr=on_xip8b2_acbyh5.r8b2*on_xip8b2; -add2expr,var=acbchs5.l8b2,expr=on_xip8b2_acbchs5.l8b2*on_xip8b2; -use, sequence=lhcb2,range=e.ds.l8.b2/s.ds.r8.b2; -on_xip8b2=1; -match, sequence=lhcb2, betx=1, bety=1; -constraint, sequence=lhcb2, range=ip8, x = 0.001; -constraint, sequence=lhcb2, range=ip8, px = 0; -constraint, sequence=lhcb2, range=s.ds.r8.b2, x = 0; -constraint, sequence=lhcb2, range=s.ds.r8.b2, px = 0; -vary, name=on_xip8b2_acbyh4.l8b2,step=1.e-12; -vary, name=on_xip8b2_acbyhs4.r8b2,step=1.e-12; -vary, name=on_xip8b2_acbyh5.r8b2,step=1.e-12; -vary, name=on_xip8b2_acbchs5.l8b2,step=1.e-12; -on_xip8b2_acbyh4.l8b2=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_xip8b2=0; -tar_on_xip8b2=tar; -! End generate knob for on_xip8b2 -! Generate knob for on_yip8b1 -add2expr,var=acbyv4.l8b1,expr=on_yip8b1_acbyv4.l8b1*on_yip8b1; -add2expr,var=acbyvs4.r8b1,expr=on_yip8b1_acbyvs4.r8b1*on_yip8b1; -add2expr,var=acbcvs5.l8b1,expr=on_yip8b1_acbcvs5.l8b1*on_yip8b1; -add2expr,var=acbyv5.r8b1,expr=on_yip8b1_acbyv5.r8b1*on_yip8b1; -use, sequence=lhcb1,range=e.ds.l8.b1/s.ds.r8.b1; -on_yip8b1=1; -match, sequence=lhcb1, betx=1, bety=1; -constraint, sequence=lhcb1, range=ip8, y = 0.001; -constraint, sequence=lhcb1, range=ip8, py = 0; -constraint, sequence=lhcb1, range=s.ds.r8.b1, y = 0; -constraint, sequence=lhcb1, range=s.ds.r8.b1, py = 0; -vary, name=on_yip8b1_acbyv4.l8b1,step=1.e-12; -vary, name=on_yip8b1_acbyvs4.r8b1,step=1.e-12; -vary, name=on_yip8b1_acbcvs5.l8b1,step=1.e-12; -vary, name=on_yip8b1_acbyv5.r8b1,step=1.e-12; -on_yip8b1_acbyv4.l8b1=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_yip8b1=0; -tar_on_yip8b1=tar; -! End generate knob for on_yip8b1 -! Generate knob for on_yip8b2 -add2expr,var=acbyvs5.r8b2,expr=on_yip8b2_acbyvs5.r8b2*on_yip8b2; -add2expr,var=acbyvs4.l8b2,expr=on_yip8b2_acbyvs4.l8b2*on_yip8b2; -add2expr,var=acbyv4.r8b2,expr=on_yip8b2_acbyv4.r8b2*on_yip8b2; -add2expr,var=acbcv5.l8b2,expr=on_yip8b2_acbcv5.l8b2*on_yip8b2; -use, sequence=lhcb2,range=e.ds.l8.b2/s.ds.r8.b2; -on_yip8b2=1; -match, sequence=lhcb2, betx=1, bety=1; -constraint, sequence=lhcb2, range=ip8, y = 0.001; -constraint, sequence=lhcb2, range=ip8, py = 0; -constraint, sequence=lhcb2, range=s.ds.r8.b2, y = 0; -constraint, sequence=lhcb2, range=s.ds.r8.b2, py = 0; -vary, name=on_yip8b2_acbyvs5.r8b2,step=1.e-12; -vary, name=on_yip8b2_acbyvs4.l8b2,step=1.e-12; -vary, name=on_yip8b2_acbyv4.r8b2,step=1.e-12; -vary, name=on_yip8b2_acbcv5.l8b2,step=1.e-12; -on_yip8b2_acbyvs5.r8b2=1e-10; -jacobian, calls = 10, tolerance=1.e-30,bisec=5; -endmatch; -on_yip8b2=0; -tar_on_yip8b2=tar; -! End generate knob for on_yip8b2 -value,tar_on_xip1b1; -value,tar_on_xip1b2; -value,tar_on_yip1b1; -value,tar_on_yip1b2; -value,tar_on_xip2b1; -value,tar_on_xip2b2; -value,tar_on_yip2b1; -value,tar_on_yip2b2; -value,tar_on_xip5b1; -value,tar_on_xip5b2; -value,tar_on_yip5b1; -value,tar_on_yip5b2; -value,tar_on_xip8b1; -value,tar_on_xip8b2; -value,tar_on_yip8b1; -value,tar_on_yip8b2; -tar_lumiknob=tar_on_xip1b1+tar_on_xip1b2+tar_on_yip1b1+tar_on_yip1b2+tar_on_xip2b1+tar_on_xip2b2+tar_on_yip2b1+tar_on_yip2b2+tar_on_xip5b1+tar_on_xip5b2+tar_on_yip5b1+tar_on_yip5b2+tar_on_xip8b1+tar_on_xip8b2+tar_on_yip8b1+tar_on_yip8b2; -value,tar_lumiknob; -if(tar_lumiknob>1e-29){print,text="lumiknob failed";stop;}; diff --git a/examples/acc-models-lhc/toolkit/reset-bump-flags.madx b/examples/acc-models-lhc/toolkit/reset-bump-flags.madx deleted file mode 100755 index 0c795b28..00000000 --- a/examples/acc-models-lhc/toolkit/reset-bump-flags.madx +++ /dev/null @@ -1,84 +0,0 @@ -on_disp = 1; - -!crossing angles -on_x1= 0; -on_x2= 0; -on_x5= 0; -on_x8= 0; -on_x1h= 0; -on_x5v= 0; -on_s_x1h= 0; -on_s_x5v= 0; -on_x2v = 0; -on_x8h = 0; -on_xx1_v= 0; -on_xx5_h= 0; - -!parallel separation -on_sep1= 0; -on_sep2= 0; -on_sep5= 0; -on_sep8= 0; -on_sep1v= 0; -on_sep5h= 0; -on_s_sep1v= 0; -on_s_sep5h= 0; -on_sep2h = 0; -on_sep8v = 0; -on_ssep1_h= 0; -on_ssep5_v= 0; - -! Offset in the plane of the crossing angle -on_o1= 0; -on_o2= 0; -on_o5= 0; -on_o8= 0; -on_o1h = 0; -on_oh1 = 0.000 ; -on_ov1 = 0.000 ; -on_oh5 = 0.000 ; -on_ov5 = 0.000 ; -on_ov2 = 0.000 ; - - -! Angle in the same plane as the separation -on_a1= 0; -on_a2= 0; -on_a5= 0; -on_a8=0; -on_a1v = 0; - - -! ip2 special -on_oe2 = 0; - -! lumi scan -on_xip1b1 = 0; -on_yip1b1 = 0; -on_xip1b2 = 0; -on_yip1b2 = 0; - -on_xip2b1 = 0; -on_yip2b1 = 0; -on_xip2b2 = 0; -on_yip2b2 = 0; - -on_xip5b1 = 0; -on_yip5b1 = 0; -on_xip5b2 = 0; -on_yip5b2 = 0; - -on_xip8b1 = 0; -on_yip8b1 = 0; -on_xip8b2 = 0; -on_yip8b2 = 0; - -!*** Experiment state *** -nrj=450; -on_alice:=0; -on_lhcb:=0; -on_sol_atlas=0; -on_sol_alice=0; -on_sol_cms=0; - -return; diff --git a/examples/acc-models-lhc/toolkit/zero-strengths.madx b/examples/acc-models-lhc/toolkit/zero-strengths.madx deleted file mode 100755 index 2144b879..00000000 --- a/examples/acc-models-lhc/toolkit/zero-strengths.madx +++ /dev/null @@ -1,1693 +0,0 @@ -acbch10.l1b1=0; -acbch10.l2b2=0; -acbch10.l3b1=0; -acbch10.l4b2=0; -acbch10.l5b1=0; -acbch10.l6b2=0; -acbch10.l7b1=0; -acbch10.l8b2=0; -acbch10.r1b2=0; -acbch10.r2b1=0; -acbch10.r3b2=0; -acbch10.r4b1=0; -acbch10.r5b2=0; -acbch10.r6b1=0; -acbch10.r7b2=0; -acbch10.r8b1=0; -acbch5.l1b2=0; -acbch5.l5b2=0; -acbch5.l8b1=0; -acbch5.r1b1=0; -acbch5.r2b2=0; -acbch5.r5b1=0; -acbch6.l1b1=0; -acbch6.l2b2=0; -acbch6.l3b1=0; -acbch6.l5b1=0; -acbch6.l7b1=0; -acbch6.l8b2=0; -acbch6.r1b2=0; -acbch6.r2b1=0; -acbch6.r3b2=0; -acbch6.r5b2=0; -acbch6.r7b2=0; -acbch6.r8b1=0; -acbch7.l1b2=0; -acbch7.l2b1=0; -acbch7.l3b2=0; -acbch7.l4b1=0; -acbch7.l5b2=0; -acbch7.l7b2=0; -acbch7.l8b1=0; -acbch7.r1b1=0; -acbch7.r2b2=0; -acbch7.r3b1=0; -acbch7.r4b2=0; -acbch7.r5b1=0; -acbch7.r7b1=0; -acbch7.r8b2=0; -acbch8.l1b1=0; -acbch8.l2b2=0; -acbch8.l3b1=0; -acbch8.l4b2=0; -acbch8.l5b1=0; -acbch8.l6b2=0; -acbch8.l7b1=0; -acbch8.l8b2=0; -acbch8.r1b2=0; -acbch8.r2b1=0; -acbch8.r3b2=0; -acbch8.r4b1=0; -acbch8.r5b2=0; -acbch8.r6b1=0; -acbch8.r7b2=0; -acbch8.r8b1=0; -acbch9.l1b2=0; -acbch9.l2b1=0; -acbch9.l3b2=0; -acbch9.l4b1=0; -acbch9.l5b2=0; -acbch9.l6b1=0; -acbch9.l7b2=0; -acbch9.l8b1=0; -acbch9.r1b1=0; -acbch9.r2b2=0; -acbch9.r3b1=0; -acbch9.r4b2=0; -acbch9.r5b1=0; -acbch9.r6b2=0; -acbch9.r7b1=0; -acbch9.r8b2=0; -acbchs5.l8b1=0; -acbchs5.l8b2=0; -acbchs5.r2b1=0; -acbchs5.r2b2=0; -acbcv10.l1b2=0; -acbcv10.l2b1=0; -acbcv10.l3b2=0; -acbcv10.l4b1=0; -acbcv10.l5b2=0; -acbcv10.l6b1=0; -acbcv10.l7b2=0; -acbcv10.l8b1=0; -acbcv10.r1b1=0; -acbcv10.r2b2=0; -acbcv10.r3b1=0; -acbcv10.r4b2=0; -acbcv10.r5b1=0; -acbcv10.r6b2=0; -acbcv10.r7b1=0; -acbcv10.r8b2=0; -acbcv5.l1b1=0; -acbcv5.l5b1=0; -acbcv5.l8b2=0; -acbcv5.r1b2=0; -acbcv5.r2b1=0; -acbcv5.r5b2=0; -acbcv6.l1b2=0; -acbcv6.l2b1=0; -acbcv6.l3b2=0; -acbcv6.l5b2=0; -acbcv6.l7b2=0; -acbcv6.l8b1=0; -acbcv6.r1b1=0; -acbcv6.r2b2=0; -acbcv6.r3b1=0; -acbcv6.r5b1=0; -acbcv6.r7b1=0; -acbcv6.r8b2=0; -acbcv7.l1b1=0; -acbcv7.l2b2=0; -acbcv7.l3b1=0; -acbcv7.l4b2=0; -acbcv7.l5b1=0; -acbcv7.l7b1=0; -acbcv7.l8b2=0; -acbcv7.r1b2=0; -acbcv7.r2b1=0; -acbcv7.r3b2=0; -acbcv7.r4b1=0; -acbcv7.r5b2=0; -acbcv7.r7b2=0; -acbcv7.r8b1=0; -acbcv8.l1b2=0; -acbcv8.l2b1=0; -acbcv8.l3b2=0; -acbcv8.l4b1=0; -acbcv8.l5b2=0; -acbcv8.l6b1=0; -acbcv8.l7b2=0; -acbcv8.l8b1=0; -acbcv8.r1b1=0; -acbcv8.r2b2=0; -acbcv8.r3b1=0; -acbcv8.r4b2=0; -acbcv8.r5b1=0; -acbcv8.r6b2=0; -acbcv8.r7b1=0; -acbcv8.r8b2=0; -acbcv9.l1b1=0; -acbcv9.l2b2=0; -acbcv9.l3b1=0; -acbcv9.l4b2=0; -acbcv9.l5b1=0; -acbcv9.l6b2=0; -acbcv9.l7b1=0; -acbcv9.l8b2=0; -acbcv9.r1b2=0; -acbcv9.r2b1=0; -acbcv9.r3b2=0; -acbcv9.r4b1=0; -acbcv9.r5b2=0; -acbcv9.r6b1=0; -acbcv9.r7b2=0; -acbcv9.r8b1=0; -acbcvs5.l8b1=0; -acbcvs5.l8b2=0; -acbcvs5.r2b1=0; -acbcvs5.r2b2=0; -acbh11.l1b2=0; -acbh11.l2b1=0; -acbh11.l3b2=0; -acbh11.l4b1=0; -acbh11.l5b2=0; -acbh11.l6b1=0; -acbh11.l7b2=0; -acbh11.l8b1=0; -acbh11.r1b1=0; -acbh11.r2b2=0; -acbh11.r3b1=0; -acbh11.r4b2=0; -acbh11.r5b1=0; -acbh11.r6b2=0; -acbh11.r7b1=0; -acbh11.r8b2=0; -acbh12.l1b1=0; -acbh12.l2b2=0; -acbh12.l3b1=0; -acbh12.l4b2=0; -acbh12.l5b1=0; -acbh12.l6b2=0; -acbh12.l7b1=0; -acbh12.l8b2=0; -acbh12.r1b2=0; -acbh12.r2b1=0; -acbh12.r3b2=0; -acbh12.r4b1=0; -acbh12.r5b2=0; -acbh12.r6b1=0; -acbh12.r7b2=0; -acbh12.r8b1=0; -acbh13.l1b2=0; -acbh13.l2b1=0; -acbh13.l3b2=0; -acbh13.l4b1=0; -acbh13.l5b2=0; -acbh13.l6b1=0; -acbh13.l7b2=0; -acbh13.l8b1=0; -acbh13.r1b1=0; -acbh13.r2b2=0; -acbh13.r3b1=0; -acbh13.r4b2=0; -acbh13.r5b1=0; -acbh13.r6b2=0; -acbh13.r7b1=0; -acbh13.r8b2=0; -acbh14.l1b1=0; -acbh14.l2b2=0; -acbh14.l3b1=0; -acbh14.l4b2=0; -acbh14.l5b1=0; -acbh14.l6b2=0; -acbh14.l7b1=0; -acbh14.l8b2=0; -acbh14.r1b2=0; -acbh14.r2b1=0; -acbh14.r3b2=0; -acbh14.r4b1=0; -acbh14.r5b2=0; -acbh14.r6b1=0; -acbh14.r7b2=0; -acbh14.r8b1=0; -acbh15.l1b2=0; -acbh15.l2b1=0; -acbh15.l3b2=0; -acbh15.l4b1=0; -acbh15.l5b2=0; -acbh15.l6b1=0; -acbh15.l7b2=0; -acbh15.l8b1=0; -acbh15.r1b1=0; -acbh15.r2b2=0; -acbh15.r3b1=0; -acbh15.r4b2=0; -acbh15.r5b1=0; -acbh15.r6b2=0; -acbh15.r7b1=0; -acbh15.r8b2=0; -acbh16.l1b1=0; -acbh16.l2b2=0; -acbh16.l3b1=0; -acbh16.l4b2=0; -acbh16.l5b1=0; -acbh16.l6b2=0; -acbh16.l7b1=0; -acbh16.l8b2=0; -acbh16.r1b2=0; -acbh16.r2b1=0; -acbh16.r3b2=0; -acbh16.r4b1=0; -acbh16.r5b2=0; -acbh16.r6b1=0; -acbh16.r7b2=0; -acbh16.r8b1=0; -acbh17.l1b2=0; -acbh17.l2b1=0; -acbh17.l3b2=0; -acbh17.l4b1=0; -acbh17.l5b2=0; -acbh17.l6b1=0; -acbh17.l7b2=0; -acbh17.l8b1=0; -acbh17.r1b1=0; -acbh17.r2b2=0; -acbh17.r3b1=0; -acbh17.r4b2=0; -acbh17.r5b1=0; -acbh17.r6b2=0; -acbh17.r7b1=0; -acbh17.r8b2=0; -acbh18.l1b1=0; -acbh18.l2b2=0; -acbh18.l3b1=0; -acbh18.l4b2=0; -acbh18.l5b1=0; -acbh18.l6b2=0; -acbh18.l7b1=0; -acbh18.l8b2=0; -acbh18.r1b2=0; -acbh18.r2b1=0; -acbh18.r3b2=0; -acbh18.r4b1=0; -acbh18.r5b2=0; -acbh18.r6b1=0; -acbh18.r7b2=0; -acbh18.r8b1=0; -acbh19.l1b2=0; -acbh19.l2b1=0; -acbh19.l3b2=0; -acbh19.l4b1=0; -acbh19.l5b2=0; -acbh19.l6b1=0; -acbh19.l7b2=0; -acbh19.l8b1=0; -acbh19.r1b1=0; -acbh19.r2b2=0; -acbh19.r3b1=0; -acbh19.r4b2=0; -acbh19.r5b1=0; -acbh19.r6b2=0; -acbh19.r7b1=0; -acbh19.r8b2=0; -acbh20.l1b1=0; -acbh20.l2b2=0; -acbh20.l3b1=0; -acbh20.l4b2=0; -acbh20.l5b1=0; -acbh20.l6b2=0; -acbh20.l7b1=0; -acbh20.l8b2=0; -acbh20.r1b2=0; -acbh20.r2b1=0; -acbh20.r3b2=0; -acbh20.r4b1=0; -acbh20.r5b2=0; -acbh20.r6b1=0; -acbh20.r7b2=0; -acbh20.r8b1=0; -acbh21.l1b2=0; -acbh21.l2b1=0; -acbh21.l3b2=0; -acbh21.l4b1=0; -acbh21.l5b2=0; -acbh21.l6b1=0; -acbh21.l7b2=0; -acbh21.l8b1=0; -acbh21.r1b1=0; -acbh21.r2b2=0; -acbh21.r3b1=0; -acbh21.r4b2=0; -acbh21.r5b1=0; -acbh21.r6b2=0; -acbh21.r7b1=0; -acbh21.r8b2=0; -acbh22.l1b1=0; -acbh22.l2b2=0; -acbh22.l3b1=0; -acbh22.l4b2=0; -acbh22.l5b1=0; -acbh22.l6b2=0; -acbh22.l7b1=0; -acbh22.l8b2=0; -acbh22.r1b2=0; -acbh22.r2b1=0; -acbh22.r3b2=0; -acbh22.r4b1=0; -acbh22.r5b2=0; -acbh22.r6b1=0; -acbh22.r7b2=0; -acbh22.r8b1=0; -acbh23.l1b2=0; -acbh23.l2b1=0; -acbh23.l3b2=0; -acbh23.l4b1=0; -acbh23.l5b2=0; -acbh23.l6b1=0; -acbh23.l7b2=0; -acbh23.l8b1=0; -acbh23.r1b1=0; -acbh23.r2b2=0; -acbh23.r3b1=0; -acbh23.r4b2=0; -acbh23.r5b1=0; -acbh23.r6b2=0; -acbh23.r7b1=0; -acbh23.r8b2=0; -acbh24.l1b1=0; -acbh24.l2b2=0; -acbh24.l3b1=0; -acbh24.l4b2=0; -acbh24.l5b1=0; -acbh24.l6b2=0; -acbh24.l7b1=0; -acbh24.l8b2=0; -acbh24.r1b2=0; -acbh24.r2b1=0; -acbh24.r3b2=0; -acbh24.r4b1=0; -acbh24.r5b2=0; -acbh24.r6b1=0; -acbh24.r7b2=0; -acbh24.r8b1=0; -acbh25.l1b2=0; -acbh25.l2b1=0; -acbh25.l3b2=0; -acbh25.l4b1=0; -acbh25.l5b2=0; -acbh25.l6b1=0; -acbh25.l7b2=0; -acbh25.l8b1=0; -acbh25.r1b1=0; -acbh25.r2b2=0; -acbh25.r3b1=0; -acbh25.r4b2=0; -acbh25.r5b1=0; -acbh25.r6b2=0; -acbh25.r7b1=0; -acbh25.r8b2=0; -acbh26.l1b1=0; -acbh26.l2b2=0; -acbh26.l3b1=0; -acbh26.l4b2=0; -acbh26.l5b1=0; -acbh26.l6b2=0; -acbh26.l7b1=0; -acbh26.l8b2=0; -acbh26.r1b2=0; -acbh26.r2b1=0; -acbh26.r3b2=0; -acbh26.r4b1=0; -acbh26.r5b2=0; -acbh26.r6b1=0; -acbh26.r7b2=0; -acbh26.r8b1=0; -acbh27.l1b2=0; -acbh27.l2b1=0; -acbh27.l3b2=0; -acbh27.l4b1=0; -acbh27.l5b2=0; -acbh27.l6b1=0; -acbh27.l7b2=0; -acbh27.l8b1=0; -acbh27.r1b1=0; -acbh27.r2b2=0; -acbh27.r3b1=0; -acbh27.r4b2=0; -acbh27.r5b1=0; -acbh27.r6b2=0; -acbh27.r7b1=0; -acbh27.r8b2=0; -acbh28.l1b1=0; -acbh28.l2b2=0; -acbh28.l3b1=0; -acbh28.l4b2=0; -acbh28.l5b1=0; -acbh28.l6b2=0; -acbh28.l7b1=0; -acbh28.l8b2=0; -acbh28.r1b2=0; -acbh28.r2b1=0; -acbh28.r3b2=0; -acbh28.r4b1=0; -acbh28.r5b2=0; -acbh28.r6b1=0; -acbh28.r7b2=0; -acbh28.r8b1=0; -acbh29.l1b2=0; -acbh29.l2b1=0; -acbh29.l3b2=0; -acbh29.l4b1=0; -acbh29.l5b2=0; -acbh29.l6b1=0; -acbh29.l7b2=0; -acbh29.l8b1=0; -acbh29.r1b1=0; -acbh29.r2b2=0; -acbh29.r3b1=0; -acbh29.r4b2=0; -acbh29.r5b1=0; -acbh29.r6b2=0; -acbh29.r7b1=0; -acbh29.r8b2=0; -acbh30.l1b1=0; -acbh30.l2b2=0; -acbh30.l3b1=0; -acbh30.l4b2=0; -acbh30.l5b1=0; -acbh30.l6b2=0; -acbh30.l7b1=0; -acbh30.l8b2=0; -acbh30.r1b2=0; -acbh30.r2b1=0; -acbh30.r3b2=0; -acbh30.r4b1=0; -acbh30.r5b2=0; -acbh30.r6b1=0; -acbh30.r7b2=0; -acbh30.r8b1=0; -acbh31.l1b2=0; -acbh31.l2b1=0; -acbh31.l3b2=0; -acbh31.l4b1=0; -acbh31.l5b2=0; -acbh31.l6b1=0; -acbh31.l7b2=0; -acbh31.l8b1=0; -acbh31.r1b1=0; -acbh31.r2b2=0; -acbh31.r3b1=0; -acbh31.r4b2=0; -acbh31.r5b1=0; -acbh31.r6b2=0; -acbh31.r8b2=0; -acbh32.l1b1=0; -acbh32.l2b2=0; -acbh32.l3b1=0; -acbh32.l4b2=0; -acbh32.l5b1=0; -acbh32.l6b2=0; -acbh32.l7b1=0; -acbh32.l8b2=0; -acbh32.r1b2=0; -acbh32.r2b1=0; -acbh32.r3b2=0; -acbh32.r4b1=0; -acbh32.r5b2=0; -acbh32.r6b1=0; -acbh32.r7b2=0; -acbh32.r8b1=0; -acbh33.l1b2=0; -acbh33.l2b1=0; -acbh33.l3b2=0; -acbh33.l4b1=0; -acbh33.l5b2=0; -acbh33.l6b1=0; -acbh33.l7b2=0; -acbh33.l8b1=0; -acbh33.r1b1=0; -acbh33.r2b2=0; -acbh33.r3b1=0; -acbh33.r4b2=0; -acbh33.r5b1=0; -acbh33.r6b2=0; -acbh33.r7b1=0; -acbh33.r8b2=0; -acbh34.l1b1=0; -acbh34.l2b2=0; -acbh34.l3b1=0; -acbh34.l4b2=0; -acbh34.l5b1=0; -acbh34.l6b2=0; -acbh34.l7b1=0; -acbh34.l8b2=0; -acbv11.l1b1=0; -acbv11.l2b2=0; -acbv11.l3b1=0; -acbv11.l4b2=0; -acbv11.l5b1=0; -acbv11.l6b2=0; -acbv11.l7b1=0; -acbv11.l8b2=0; -acbv11.r1b2=0; -acbv11.r2b1=0; -acbv11.r3b2=0; -acbv11.r4b1=0; -acbv11.r5b2=0; -acbv11.r6b1=0; -acbv11.r7b2=0; -acbv11.r8b1=0; -acbv12.l1b2=0; -acbv12.l2b1=0; -acbv12.l3b2=0; -acbv12.l4b1=0; -acbv12.l5b2=0; -acbv12.l6b1=0; -acbv12.l7b2=0; -acbv12.l8b1=0; -acbv12.r1b1=0; -acbv12.r2b2=0; -acbv12.r3b1=0; -acbv12.r4b2=0; -acbv12.r5b1=0; -acbv12.r6b2=0; -acbv12.r7b1=0; -acbv12.r8b2=0; -acbv13.l1b1=0; -acbv13.l2b2=0; -acbv13.l3b1=0; -acbv13.l4b2=0; -acbv13.l5b1=0; -acbv13.l6b2=0; -acbv13.l7b1=0; -acbv13.l8b2=0; -acbv13.r1b2=0; -acbv13.r2b1=0; -acbv13.r3b2=0; -acbv13.r4b1=0; -acbv13.r5b2=0; -acbv13.r6b1=0; -acbv13.r7b2=0; -acbv13.r8b1=0; -acbv14.l1b2=0; -acbv14.l2b1=0; -acbv14.l3b2=0; -acbv14.l4b1=0; -acbv14.l5b2=0; -acbv14.l6b1=0; -acbv14.l7b2=0; -acbv14.l8b1=0; -acbv14.r1b1=0; -acbv14.r2b2=0; -acbv14.r3b1=0; -acbv14.r4b2=0; -acbv14.r5b1=0; -acbv14.r6b2=0; -acbv14.r7b1=0; -acbv14.r8b2=0; -acbv15.l1b1=0; -acbv15.l2b2=0; -acbv15.l3b1=0; -acbv15.l4b2=0; -acbv15.l5b1=0; -acbv15.l6b2=0; -acbv15.l7b1=0; -acbv15.l8b2=0; -acbv15.r1b2=0; -acbv15.r2b1=0; -acbv15.r3b2=0; -acbv15.r4b1=0; -acbv15.r5b2=0; -acbv15.r6b1=0; -acbv15.r7b2=0; -acbv15.r8b1=0; -acbv16.l1b2=0; -acbv16.l2b1=0; -acbv16.l3b2=0; -acbv16.l4b1=0; -acbv16.l5b2=0; -acbv16.l6b1=0; -acbv16.l7b2=0; -acbv16.l8b1=0; -acbv16.r1b1=0; -acbv16.r2b2=0; -acbv16.r3b1=0; -acbv16.r4b2=0; -acbv16.r5b1=0; -acbv16.r6b2=0; -acbv16.r7b1=0; -acbv16.r8b2=0; -acbv17.l1b1=0; -acbv17.l2b2=0; -acbv17.l3b1=0; -acbv17.l4b2=0; -acbv17.l5b1=0; -acbv17.l6b2=0; -acbv17.l7b1=0; -acbv17.l8b2=0; -acbv17.r1b2=0; -acbv17.r2b1=0; -acbv17.r3b2=0; -acbv17.r4b1=0; -acbv17.r5b2=0; -acbv17.r6b1=0; -acbv17.r7b2=0; -acbv17.r8b1=0; -acbv18.l1b2=0; -acbv18.l2b1=0; -acbv18.l3b2=0; -acbv18.l4b1=0; -acbv18.l5b2=0; -acbv18.l6b1=0; -acbv18.l7b2=0; -acbv18.l8b1=0; -acbv18.r1b1=0; -acbv18.r2b2=0; -acbv18.r3b1=0; -acbv18.r4b2=0; -acbv18.r5b1=0; -acbv18.r6b2=0; -acbv18.r7b1=0; -acbv18.r8b2=0; -acbv19.l1b1=0; -acbv19.l2b2=0; -acbv19.l3b1=0; -acbv19.l4b2=0; -acbv19.l5b1=0; -acbv19.l6b2=0; -acbv19.l7b1=0; -acbv19.l8b2=0; -acbv19.r1b2=0; -acbv19.r2b1=0; -acbv19.r3b2=0; -acbv19.r4b1=0; -acbv19.r5b2=0; -acbv19.r6b1=0; -acbv19.r7b2=0; -acbv19.r8b1=0; -acbv20.l1b2=0; -acbv20.l2b1=0; -acbv20.l3b2=0; -acbv20.l4b1=0; -acbv20.l5b2=0; -acbv20.l6b1=0; -acbv20.l7b2=0; -acbv20.l8b1=0; -acbv20.r1b1=0; -acbv20.r2b2=0; -acbv20.r3b1=0; -acbv20.r4b2=0; -acbv20.r5b1=0; -acbv20.r6b2=0; -acbv20.r7b1=0; -acbv20.r8b2=0; -acbv21.l1b1=0; -acbv21.l2b2=0; -acbv21.l3b1=0; -acbv21.l4b2=0; -acbv21.l5b1=0; -acbv21.l6b2=0; -acbv21.l7b1=0; -acbv21.l8b2=0; -acbv21.r1b2=0; -acbv21.r2b1=0; -acbv21.r3b2=0; -acbv21.r4b1=0; -acbv21.r5b2=0; -acbv21.r6b1=0; -acbv21.r7b2=0; -acbv21.r8b1=0; -acbv22.l1b2=0; -acbv22.l2b1=0; -acbv22.l3b2=0; -acbv22.l4b1=0; -acbv22.l5b2=0; -acbv22.l6b1=0; -acbv22.l7b2=0; -acbv22.l8b1=0; -acbv22.r1b1=0; -acbv22.r2b2=0; -acbv22.r3b1=0; -acbv22.r4b2=0; -acbv22.r5b1=0; -acbv22.r6b2=0; -acbv22.r7b1=0; -acbv22.r8b2=0; -acbv23.l1b1=0; -acbv23.l2b2=0; -acbv23.l3b1=0; -acbv23.l4b2=0; -acbv23.l5b1=0; -acbv23.l6b2=0; -acbv23.l7b1=0; -acbv23.l8b2=0; -acbv23.r1b2=0; -acbv23.r2b1=0; -acbv23.r3b2=0; -acbv23.r4b1=0; -acbv23.r5b2=0; -acbv23.r6b1=0; -acbv23.r7b2=0; -acbv23.r8b1=0; -acbv24.l1b2=0; -acbv24.l2b1=0; -acbv24.l3b2=0; -acbv24.l4b1=0; -acbv24.l5b2=0; -acbv24.l6b1=0; -acbv24.l7b2=0; -acbv24.l8b1=0; -acbv24.r1b1=0; -acbv24.r2b2=0; -acbv24.r3b1=0; -acbv24.r4b2=0; -acbv24.r5b1=0; -acbv24.r6b2=0; -acbv24.r7b1=0; -acbv24.r8b2=0; -acbv25.l1b1=0; -acbv25.l2b2=0; -acbv25.l3b1=0; -acbv25.l4b2=0; -acbv25.l5b1=0; -acbv25.l6b2=0; -acbv25.l7b1=0; -acbv25.l8b2=0; -acbv25.r1b2=0; -acbv25.r2b1=0; -acbv25.r3b2=0; -acbv25.r4b1=0; -acbv25.r5b2=0; -acbv25.r6b1=0; -acbv25.r7b2=0; -acbv25.r8b1=0; -acbv26.l1b2=0; -acbv26.l2b1=0; -acbv26.l3b2=0; -acbv26.l4b1=0; -acbv26.l5b2=0; -acbv26.l6b1=0; -acbv26.l7b2=0; -acbv26.l8b1=0; -acbv26.r1b1=0; -acbv26.r2b2=0; -acbv26.r3b1=0; -acbv26.r4b2=0; -acbv26.r6b2=0; -acbv26.r7b1=0; -acbv26.r8b2=0; -acbv27.l1b1=0; -acbv27.l2b2=0; -acbv27.l3b1=0; -acbv27.l4b2=0; -acbv27.l5b1=0; -acbv27.l6b2=0; -acbv27.l7b1=0; -acbv27.l8b2=0; -acbv27.r1b2=0; -acbv27.r2b1=0; -acbv27.r3b2=0; -acbv27.r4b1=0; -acbv27.r5b2=0; -acbv27.r6b1=0; -acbv27.r7b2=0; -acbv27.r8b1=0; -acbv28.l1b2=0; -acbv28.l2b1=0; -acbv28.l3b2=0; -acbv28.l4b1=0; -acbv28.l5b2=0; -acbv28.l6b1=0; -acbv28.l7b2=0; -acbv28.l8b1=0; -acbv28.r1b1=0; -acbv28.r2b2=0; -acbv28.r3b1=0; -acbv28.r4b2=0; -acbv28.r5b1=0; -acbv28.r6b2=0; -acbv28.r7b1=0; -acbv28.r8b2=0; -acbv29.l1b1=0; -acbv29.l2b2=0; -acbv29.l3b1=0; -acbv29.l4b2=0; -acbv29.l5b1=0; -acbv29.l6b2=0; -acbv29.l7b1=0; -acbv29.l8b2=0; -acbv29.r1b2=0; -acbv29.r2b1=0; -acbv29.r3b2=0; -acbv29.r4b1=0; -acbv29.r5b2=0; -acbv29.r6b1=0; -acbv29.r7b2=0; -acbv29.r8b1=0; -acbv30.l1b2=0; -acbv30.l2b1=0; -acbv30.l3b2=0; -acbv30.l4b1=0; -acbv30.l5b2=0; -acbv30.l6b1=0; -acbv30.l7b2=0; -acbv30.l8b1=0; -acbv30.r1b1=0; -acbv30.r2b2=0; -acbv30.r3b1=0; -acbv30.r4b2=0; -acbv30.r5b1=0; -acbv30.r6b2=0; -acbv30.r7b1=0; -acbv30.r8b2=0; -acbv31.l1b1=0; -acbv31.l2b2=0; -acbv31.l3b1=0; -acbv31.l4b2=0; -acbv31.l5b1=0; -acbv31.l6b2=0; -acbv31.l7b1=0; -acbv31.l8b2=0; -acbv31.r1b2=0; -acbv31.r2b1=0; -acbv31.r3b2=0; -acbv31.r4b1=0; -acbv31.r5b2=0; -acbv31.r6b1=0; -acbv31.r7b2=0; -acbv31.r8b1=0; -acbv32.l1b2=0; -acbv32.l2b1=0; -acbv32.l3b2=0; -acbv32.l4b1=0; -acbv32.l5b2=0; -acbv32.l6b1=0; -acbv32.l7b2=0; -acbv32.l8b1=0; -acbv32.r1b1=0; -acbv32.r2b2=0; -acbv32.r3b1=0; -acbv32.r4b2=0; -acbv32.r5b1=0; -acbv32.r6b2=0; -acbv32.r7b1=0; -acbv32.r8b2=0; -acbv33.l1b1=0; -acbv33.l2b2=0; -acbv33.l3b1=0; -acbv33.l4b2=0; -acbv33.l5b1=0; -acbv33.l6b2=0; -acbv33.l7b1=0; -acbv33.l8b2=0; -acbv33.r1b2=0; -acbv33.r2b1=0; -acbv33.r3b2=0; -acbv33.r4b1=0; -acbv33.r5b2=0; -acbv33.r6b1=0; -acbv33.r7b2=0; -acbv33.r8b1=0; -acbv34.l1b2=0; -acbv34.l2b1=0; -acbv34.l3b2=0; -acbv34.l4b1=0; -acbv34.l5b2=0; -acbv34.l6b1=0; -acbv34.l7b2=0; -acbv34.l8b1=0; -acbwh4.l3b1=0; -acbwh4.l7b1=0; -acbwh4.r3b2=0; -acbwh4.r7b2=0; -acbwh5.l3b2=0; -acbwh5.l7b2=0; -acbwh5.r3b1=0; -acbwh5.r7b1=0; -acbwv4.l3b2=0; -acbwv4.l7b2=0; -acbwv4.r3b1=0; -acbwv4.r7b1=0; -acbwv5.l3b1=0; -acbwv5.l7b1=0; -acbwv5.r3b2=0; -acbwv5.r7b2=0; -acbxh1.l1=0; -acbxh1.l2=0; -acbxh1.l5=0; -acbxh1.l8=0; -acbxh1.r1=0; -acbxh1.r2=0; -acbxh1.r5=0; -acbxh1.r8=0; -acbxh2.l1=0; -acbxh2.l2=0; -acbxh2.l5=0; -acbxh2.l8=0; -acbxh2.r1=0; -acbxh2.r2=0; -acbxh2.r5=0; -acbxh2.r8=0; -acbxh3.l1=0; -acbxh3.l2=0; -acbxh3.l5=0; -acbxh3.l8=0; -acbxh3.r1=0; -acbxh3.r2=0; -acbxh3.r5=0; -acbxh3.r8=0; -acbxv1.l1=0; -acbxv1.l2=0; -acbxv1.l5=0; -acbxv1.l8=0; -acbxv1.r1=0; -acbxv1.r2=0; -acbxv1.r5=0; -acbxv1.r8=0; -acbxv2.l1=0; -acbxv2.l2=0; -acbxv2.l5=0; -acbxv2.l8=0; -acbxv2.r1=0; -acbxv2.r2=0; -acbxv2.r5=0; -acbxv2.r8=0; -acbxv3.l1=0; -acbxv3.l2=0; -acbxv3.l5=0; -acbxv3.l8=0; -acbxv3.r1=0; -acbxv3.r2=0; -acbxv3.r5=0; -acbxv3.r8=0; -acbyh4.l1b1=0; -acbyh4.l2b2=0; -acbyh4.l5b1=0; -acbyh4.l6b2=0; -acbyh4.l8b2=0; -acbyh4.r1b2=0; -acbyh4.r2b1=0; -acbyh4.r5b2=0; -acbyh4.r6b1=0; -acbyh4.r8b1=0; -acbyh5.l2b1=0; -acbyh5.l4b1=0; -acbyh5.l6b1=0; -acbyh5.r4b2=0; -acbyh5.r6b2=0; -acbyh5.r8b2=0; -acbyh6.l4b2=0; -acbyh6.r4b1=0; -acbyhs4.l1b1=0; -acbyhs4.l1b2=0; -acbyhs4.l2b1=0; -acbyhs4.l2b2=0; -acbyhs4.l5b1=0; -acbyhs4.l5b2=0; -acbyhs4.l8b1=0; -acbyhs4.l8b2=0; -acbyhs4.r1b1=0; -acbyhs4.r1b2=0; -acbyhs4.r2b1=0; -acbyhs4.r2b2=0; -acbyhs4.r5b1=0; -acbyhs4.r5b2=0; -acbyhs4.r8b1=0; -acbyhs4.r8b2=0; -acbyhs5.l2b1=0; -acbyhs5.l2b2=0; -acbyhs5.r8b1=0; -acbyhs5.r8b2=0; -acbyv4.l1b2=0; -acbyv4.l2b1=0; -acbyv4.l5b2=0; -acbyv4.l6b1=0; -acbyv4.l8b1=0; -acbyv4.r1b1=0; -acbyv4.r2b2=0; -acbyv4.r5b1=0; -acbyv4.r6b2=0; -acbyv4.r8b2=0; -acbyv5.l2b2=0; -acbyv5.l4b2=0; -acbyv5.l6b2=0; -acbyv5.r4b1=0; -acbyv5.r6b1=0; -acbyv5.r8b1=0; -acbyv6.l4b1=0; -acbyv6.r4b2=0; -acbyvs4.l1b1=0; -acbyvs4.l1b2=0; -acbyvs4.l2b1=0; -acbyvs4.l2b2=0; -acbyvs4.l5b1=0; -acbyvs4.l5b2=0; -acbyvs4.l8b1=0; -acbyvs4.l8b2=0; -acbyvs4.r1b1=0; -acbyvs4.r1b2=0; -acbyvs4.r2b1=0; -acbyvs4.r2b2=0; -acbyvs4.r5b1=0; -acbyvs4.r5b2=0; -acbyvs4.r8b1=0; -acbyvs4.r8b2=0; -acbyvs5.l2b1=0; -acbyvs5.l2b2=0; -acbyvs5.r8b1=0; -acbyvs5.r8b2=0; -kb.a12=0; -kb.a23=0; -kb.a34=0; -kb.a45=0; -kb.a56=0; -kb.a67=0; -kb.a78=0; -kb.a81=0; -kcd.a12b1=0; -kcd.a12b2=0; -kcd.a23b1=0; -kcd.a23b2=0; -kcd.a34b1=0; -kcd.a34b2=0; -kcd.a45b1=0; -kcd.a45b2=0; -kcd.a56b1=0; -kcd.a56b2=0; -kcd.a67b1=0; -kcd.a67b2=0; -kcd.a78b1=0; -kcd.a78b2=0; -kcd.a81b1=0; -kcd.a81b2=0; -kco.a12b1=0; -kco.a12b2=0; -kco.a23b1=0; -kco.a23b2=0; -kco.a34b1=0; -kco.a34b2=0; -kco.a45b1=0; -kco.a45b2=0; -kco.a56b1=0; -kco.a56b2=0; -kco.a67b1=0; -kco.a67b2=0; -kco.a78b1=0; -kco.a81b1=0; -kco.a81b2=0; -kcosx3.l5=0; -kcosx3.l8=0; -kcosx3.r1=0; -kcosx3.r2=0; -kcosx3.r5=0; -kcosx3.r8=0; -kcox3.l1=0; -kcox3.l5=0; -kcox3.l8=0; -kcox3.r1=0; -kcox3.r2=0; -kcox3.r5=0; -kcox3.r8=0; -kcs.a12b1=0; -kcs.a12b2=0; -kcs.a23b1=0; -kcs.a23b2=0; -kcs.a34b1=0; -kcs.a34b2=0; -kcs.a45b1=0; -kcs.a45b2=0; -kcs.a56b1=0; -kcs.a56b2=0; -kcs.a67b1=0; -kcs.a67b2=0; -kcs.a78b1=0; -kcs.a81b1=0; -kcs.a81b2=0; -kcssx3.l1=0; -kcssx3.l5=0; -kcssx3.l8=0; -kcssx3.r1=0; -kcssx3.r2=0; -kcssx3.r5=0; -kcssx3.r8=0; -kcsx3.l1=0; -kcsx3.l2=0; -kcsx3.l5=0; -kcsx3.l8=0; -kcsx3.r1=0; -kcsx3.r2=0; -kcsx3.r5=0; -kcsx3.r8=0; -kctx3.l1=0; -kctx3.l2=0; -kctx3.l5=0; -kctx3.l8=0; -kctx3.r1=0; -kctx3.r2=0; -kctx3.r5=0; -kctx3.r8=0; -kd1.l2=0; -kd1.l8=0; -kd1.lr1=0; -kd1.lr5=0; -kd1.r2=0; -kd1.r8=0; -kd2.l1=0; -kd2.l2=0; -kd2.l5=0; -kd2.l8=0; -kd2.r1=0; -kd2.r2=0; -kd2.r5=0; -kd2.r8=0; -kd3.l4=0; -kd3.r4=0; -kd34.lr3=0; -kd34.lr7=0; -kd4.l4=0; -kd4.r4=0; -kgmwh.l4b1=0; -kgmwh.r4b2=0; -kgmwv.l4b1=0; -kgmwv.r4b2=0; -kmsd.lr6b1=0; -kmsd.lr6b2=0; -kod.a12b1=0; -kod.a12b2=0; -kod.a23b1=0; -kod.a23b2=0; -kod.a34b1=0; -kod.a34b2=0; -kod.a45b1=0; -kod.a45b2=0; -kod.a56b1=0; -kod.a56b2=0; -kod.a67b1=0; -kod.a67b2=0; -kod.a78b1=0; -kod.a78b2=0; -kod.a81b1=0; -kod.a81b2=0; -kof.a12b1=0; -kof.a12b2=0; -kof.a23b1=0; -kof.a23b2=0; -kof.a34b1=0; -kof.a34b2=0; -kof.a45b1=0; -kof.a45b2=0; -kof.a56b1=0; -kof.a56b2=0; -kof.a67b1=0; -kof.a67b2=0; -kof.a78b1=0; -kof.a78b2=0; -kof.a81b1=0; -kof.a81b2=0; -kq10.l1b1=0; -kq10.l1b2=0; -kq10.l2b1=0; -kq10.l2b2=0; -kq10.l4b1=0; -kq10.l4b2=0; -kq10.l5b1=0; -kq10.l5b2=0; -kq10.l6b1=0; -kq10.l6b2=0; -kq10.l8b1=0; -kq10.l8b2=0; -kq10.r1b1=0; -kq10.r1b2=0; -kq10.r2b1=0; -kq10.r2b2=0; -kq10.r4b1=0; -kq10.r4b2=0; -kq10.r5b1=0; -kq10.r5b2=0; -kq10.r6b1=0; -kq10.r6b2=0; -kq10.r8b1=0; -kq10.r8b2=0; -kq4.l1b1=0; -kq4.l1b2=0; -kq4.l2b1=0; -kq4.l2b2=0; -kq4.l5b1=0; -kq4.l5b2=0; -kq4.l6b1=0; -kq4.l6b2=0; -kq4.l8b1=0; -kq4.l8b2=0; -kq4.lr3=0; -kq4.lr7=0; -kq4.r1b1=0; -kq4.r1b2=0; -kq4.r2b1=0; -kq4.r2b2=0; -kq4.r5b1=0; -kq4.r5b2=0; -kq4.r6b1=0; -kq4.r6b2=0; -kq4.r8b1=0; -kq4.r8b2=0; -kq5.l1b1=0; -kq5.l1b2=0; -kq5.l2b1=0; -kq5.l2b2=0; -kq5.l4b1=0; -kq5.l4b2=0; -kq5.l5b1=0; -kq5.l5b2=0; -kq5.l6b1=0; -kq5.l6b2=0; -kq5.l8b1=0; -kq5.l8b2=0; -kq5.lr3=0; -kq5.lr7=0; -kq5.r1b1=0; -kq5.r1b2=0; -kq5.r2b1=0; -kq5.r2b2=0; -kq5.r4b1=0; -kq5.r4b2=0; -kq5.r5b1=0; -kq5.r5b2=0; -kq5.r6b1=0; -kq5.r6b2=0; -kq5.r8b1=0; -kq5.r8b2=0; -kq6.l1b1=0; -kq6.l1b2=0; -kq6.l2b1=0; -kq6.l2b2=0; -kq6.l3b1=0; -kq6.l3b2=0; -kq6.l4b1=0; -kq6.l4b2=0; -kq6.l5b1=0; -kq6.l5b2=0; -kq6.l7b1=0; -kq6.l7b2=0; -kq6.l8b1=0; -kq6.l8b2=0; -kq6.r1b1=0; -kq6.r1b2=0; -kq6.r2b1=0; -kq6.r2b2=0; -kq6.r3b1=0; -kq6.r3b2=0; -kq6.r4b1=0; -kq6.r4b2=0; -kq6.r5b1=0; -kq6.r5b2=0; -kq6.r7b1=0; -kq6.r7b2=0; -kq6.r8b1=0; -kq6.r8b2=0; -kq7.l1b1=0; -kq7.l1b2=0; -kq7.l2b1=0; -kq7.l2b2=0; -kq7.l4b1=0; -kq7.l4b2=0; -kq7.l5b1=0; -kq7.l5b2=0; -kq7.l8b1=0; -kq7.l8b2=0; -kq7.r1b1=0; -kq7.r1b2=0; -kq7.r2b1=0; -kq7.r2b2=0; -kq7.r4b1=0; -kq7.r4b2=0; -kq7.r5b1=0; -kq7.r5b2=0; -kq7.r8b1=0; -kq7.r8b2=0; -kq8.l1b1=0; -kq8.l1b2=0; -kq8.l2b1=0; -kq8.l2b2=0; -kq8.l4b1=0; -kq8.l4b2=0; -kq8.l5b1=0; -kq8.l5b2=0; -kq8.l6b1=0; -kq8.l6b2=0; -kq8.l8b1=0; -kq8.l8b2=0; -kq8.r1b1=0; -kq8.r1b2=0; -kq8.r2b1=0; -kq8.r2b2=0; -kq8.r4b1=0; -kq8.r4b2=0; -kq8.r5b1=0; -kq8.r5b2=0; -kq8.r6b1=0; -kq8.r6b2=0; -kq8.r8b1=0; -kq8.r8b2=0; -kq9.l1b1=0; -kq9.l1b2=0; -kq9.l2b1=0; -kq9.l2b2=0; -kq9.l4b1=0; -kq9.l4b2=0; -kq9.l5b1=0; -kq9.l5b2=0; -kq9.l6b1=0; -kq9.l6b2=0; -kq9.l8b1=0; -kq9.l8b2=0; -kq9.r1b1=0; -kq9.r1b2=0; -kq9.r2b1=0; -kq9.r2b2=0; -kq9.r4b1=0; -kq9.r4b2=0; -kq9.r5b1=0; -kq9.r5b2=0; -kq9.r6b1=0; -kq9.r6b2=0; -kq9.r8b1=0; -kq9.r8b2=0; -kqd.a12=0; -kqd.a23=0; -kqd.a34=0; -kqd.a45=0; -kqd.a56=0; -kqd.a67=0; -kqd.a78=0; -kqd.a81=0; -kqf.a12=0; -kqf.a23=0; -kqf.a34=0; -kqf.a45=0; -kqf.a56=0; -kqf.a67=0; -kqf.a78=0; -kqf.a81=0; -kqs.a12b2=0; -kqs.a23b1=0; -kqs.a34b2=0; -kqs.a45b1=0; -kqs.a56b2=0; -kqs.a67b1=0; -kqs.a78b2=0; -kqs.a81b1=0; -kqs.l1b2=0; -kqs.l2b1=0; -kqs.l3b2=0; -kqs.l4b1=0; -kqs.l5b2=0; -kqs.l6b1=0; -kqs.l7b2=0; -kqs.l8b1=0; -kqs.r1b1=0; -kqs.r2b2=0; -kqs.r3b1=0; -kqs.r4b2=0; -kqs.r5b1=0; -kqs.r6b2=0; -kqs.r7b1=0; -kqs.r8b2=0; -kqsx3.l1=0; -kqsx3.l2=0; -kqsx3.l5=0; -kqsx3.l8=0; -kqsx3.r1=0; -kqsx3.r2=0; -kqsx3.r5=0; -kqsx3.r8=0; -kqt12.l1b1=0; -kqt12.l1b2=0; -kqt12.l2b1=0; -kqt12.l2b2=0; -kqt12.l3b1=0; -kqt12.l3b2=0; -kqt12.l4b1=0; -kqt12.l4b2=0; -kqt12.l5b1=0; -kqt12.l5b2=0; -kqt12.l6b1=0; -kqt12.l6b2=0; -kqt12.l7b1=0; -kqt12.l7b2=0; -kqt12.l8b1=0; -kqt12.l8b2=0; -kqt12.r1b1=0; -kqt12.r1b2=0; -kqt12.r2b1=0; -kqt12.r2b2=0; -kqt12.r3b1=0; -kqt12.r3b2=0; -kqt12.r4b1=0; -kqt12.r4b2=0; -kqt12.r5b1=0; -kqt12.r5b2=0; -kqt12.r6b1=0; -kqt12.r6b2=0; -kqt12.r7b1=0; -kqt12.r7b2=0; -kqt12.r8b1=0; -kqt12.r8b2=0; -kqt13.l1b1=0; -kqt13.l1b2=0; -kqt13.l2b1=0; -kqt13.l2b2=0; -kqt13.l3b1=0; -kqt13.l3b2=0; -kqt13.l4b1=0; -kqt13.l4b2=0; -kqt13.l5b1=0; -kqt13.l5b2=0; -kqt13.l6b1=0; -kqt13.l6b2=0; -kqt13.l7b1=0; -kqt13.l7b2=0; -kqt13.l8b1=0; -kqt13.l8b2=0; -kqt13.r1b1=0; -kqt13.r1b2=0; -kqt13.r2b1=0; -kqt13.r2b2=0; -kqt13.r3b1=0; -kqt13.r3b2=0; -kqt13.r4b1=0; -kqt13.r4b2=0; -kqt13.r5b1=0; -kqt13.r5b2=0; -kqt13.r6b1=0; -kqt13.r6b2=0; -kqt13.r7b1=0; -kqt13.r7b2=0; -kqt13.r8b1=0; -kqt13.r8b2=0; -kqt4.l3=0; -kqt4.l7=0; -kqt4.r3=0; -kqt4.r7=0; -kqt5.l3=0; -kqt5.l7=0; -kqt5.r3=0; -kqt5.r7=0; -kqtd.a12b1=0; -kqtd.a12b2=0; -kqtd.a23b1=0; -kqtd.a23b2=0; -kqtd.a34b1=0; -kqtd.a34b2=0; -kqtd.a45b1=0; -kqtd.a45b2=0; -kqtd.a56b1=0; -kqtd.a56b2=0; -kqtd.a67b1=0; -kqtd.a67b2=0; -kqtd.a78b1=0; -kqtd.a78b2=0; -kqtd.a81b1=0; -kqtd.a81b2=0; -kqtf.a12b1=0; -kqtf.a12b2=0; -kqtf.a23b1=0; -kqtf.a23b2=0; -kqtf.a34b1=0; -kqtf.a34b2=0; -kqtf.a45b1=0; -kqtf.a45b2=0; -kqtf.a56b1=0; -kqtf.a56b2=0; -kqtf.a67b1=0; -kqtf.a67b2=0; -kqtf.a78b1=0; -kqtf.a78b2=0; -kqtf.a81b1=0; -kqtf.a81b2=0; -kqtl10.l3b1=0; -kqtl10.l3b2=0; -kqtl10.l7b1=0; -kqtl10.l7b2=0; -kqtl10.r3b1=0; -kqtl10.r3b2=0; -kqtl10.r7b1=0; -kqtl10.r7b2=0; -kqtl11.l1b1=0; -kqtl11.l1b2=0; -kqtl11.l2b1=0; -kqtl11.l2b2=0; -kqtl11.l3b1=0; -kqtl11.l3b2=0; -kqtl11.l4b1=0; -kqtl11.l4b2=0; -kqtl11.l5b1=0; -kqtl11.l5b2=0; -kqtl11.l6b1=0; -kqtl11.l6b2=0; -kqtl11.l7b1=0; -kqtl11.l7b2=0; -kqtl11.l8b1=0; -kqtl11.l8b2=0; -kqtl11.r1b1=0; -kqtl11.r1b2=0; -kqtl11.r2b1=0; -kqtl11.r2b2=0; -kqtl11.r3b1=0; -kqtl11.r3b2=0; -kqtl11.r4b1=0; -kqtl11.r4b2=0; -kqtl11.r5b1=0; -kqtl11.r5b2=0; -kqtl11.r6b1=0; -kqtl11.r6b2=0; -kqtl11.r7b1=0; -kqtl11.r7b2=0; -kqtl11.r8b1=0; -kqtl11.r8b2=0; -kqtl7.l3b1=0; -kqtl7.l3b2=0; -kqtl7.l7b1=0; -kqtl7.l7b2=0; -kqtl7.r3b1=0; -kqtl7.r3b2=0; -kqtl7.r7b1=0; -kqtl7.r7b2=0; -kqtl8.l3b1=0; -kqtl8.l3b2=0; -kqtl8.l7b1=0; -kqtl8.l7b2=0; -kqtl8.r3b1=0; -kqtl8.r3b2=0; -kqtl8.r7b1=0; -kqtl8.r7b2=0; -kqtl9.l3b1=0; -kqtl9.l3b2=0; -kqtl9.l7b1=0; -kqtl9.l7b2=0; -kqtl9.r3b1=0; -kqtl9.r3b2=0; -kqtl9.r7b1=0; -kqtl9.r7b2=0; -kqx.l1=0; -kqx.l2=0; -kqx.l5=0; -kqx.l8=0; -kqx.r1=0; -kqx.r2=0; -kqx.r5=0; -kqx.r8=0; -ksd1.a12b1=0; -ksd1.a12b2=0; -ksd1.a23b1=0; -ksd1.a23b2=0; -ksd1.a34b1=0; -ksd1.a34b2=0; -ksd1.a45b1=0; -ksd1.a45b2=0; -ksd1.a56b1=0; -ksd1.a56b2=0; -ksd1.a67b1=0; -ksd1.a67b2=0; -ksd1.a78b1=0; -ksd1.a78b2=0; -ksd1.a81b1=0; -ksd1.a81b2=0; -ksd2.a12b1=0; -ksd2.a12b2=0; -ksd2.a23b1=0; -ksd2.a23b2=0; -ksd2.a34b1=0; -ksd2.a34b2=0; -ksd2.a45b1=0; -ksd2.a45b2=0; -ksd2.a56b1=0; -ksd2.a56b2=0; -ksd2.a67b1=0; -ksd2.a67b2=0; -ksd2.a78b1=0; -ksd2.a78b2=0; -ksd2.a81b1=0; -ksd2.a81b2=0; -ksf1.a12b1=0; -ksf1.a12b2=0; -ksf1.a23b1=0; -ksf1.a23b2=0; -ksf1.a34b1=0; -ksf1.a34b2=0; -ksf1.a45b1=0; -ksf1.a45b2=0; -ksf1.a56b1=0; -ksf1.a56b2=0; -ksf1.a67b1=0; -ksf1.a67b2=0; -ksf1.a78b1=0; -ksf1.a78b2=0; -ksf1.a81b1=0; -ksf1.a81b2=0; -ksf2.a12b1=0; -ksf2.a12b2=0; -ksf2.a23b1=0; -ksf2.a23b2=0; -ksf2.a34b1=0; -ksf2.a34b2=0; -ksf2.a45b1=0; -ksf2.a45b2=0; -ksf2.a56b1=0; -ksf2.a56b2=0; -ksf2.a67b1=0; -ksf2.a67b2=0; -ksf2.a78b1=0; -ksf2.a78b2=0; -ksf2.a81b1=0; -ksf2.a81b2=0; -kss.a12b1=0; -kss.a12b2=0; -kss.a23b1=0; -kss.a23b2=0; -kss.a34b2=0; -kss.a45b1=0; -kss.a45b2=0; -kss.a56b1=0; -kss.a56b2=0; -kss.a67b1=0; -kss.a67b2=0; -kss.a78b1=0; -kss.a78b2=0; -kss.a81b1=0; -kss.a81b2=0; -ktqx1.l1=0; -ktqx1.l2=0; -ktqx1.l5=0; -ktqx1.l8=0; -ktqx1.r1=0; -ktqx1.r2=0; -ktqx1.r5=0; -ktqx1.r8=0; -ktqx2.l1=0; -ktqx2.l2=0; -ktqx2.l5=0; -ktqx2.l8=0; -ktqx2.r1=0; -ktqx2.r2=0; -ktqx2.r5=0; -ktqx2.r8=0; diff --git a/examples/demo_acd_tracking_spectra.py b/examples/demo_acd_tracking_spectra.py index 6dda639c..f724deba 100755 --- a/examples/demo_acd_tracking_spectra.py +++ b/examples/demo_acd_tracking_spectra.py @@ -18,6 +18,17 @@ with the difference that there is special care to take to install the AC Dipole element. It is recommended to read that tutorial first as this one will focus on the specificities of the AC Dipole setup. + +.. important:: + This example requires the `acc-models-lhc` repository to be cloned locally. One + can get it by running the following command: + + .. code-block:: bash + + git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1 + + Here I set the 2022 branch for stability and reproducibility of the documentation + builds, but you can use any branch you want. """ import matplotlib.pyplot as plt import numpy as np @@ -33,19 +44,20 @@ plt.rcParams.update(_SPHINX_GALLERY_PARAMS) # for readability of this tutorial ############################################################################### -# Let's start by setting up the LHC in ``MAD-X``, in this case at top energy: - -madx = Madx(stdout=False) -madx.call("lhc/lhc_as-built.seq") -madx.call("lhc/opticsfile.22") # collision optics +# Let's start by setting up the LHC in ``MAD-X``, in this case at top energy. +# To understand the function below have a look at the :ref:`lhc setup example +# `. -lhc.re_cycle_sequence(madx, sequence="lhcb1", start="MSIA.EXIT.B1") -lhc.make_lhc_beams(madx) -madx.command.use(sequence="lhcb1") +madx: Madx = lhc.prepare_lhc_run3( + opticsfile="acc-models-lhc/operation/optics/R2022a_A30cmC30cmA10mL200cm.madx", + stdout=False +) matching.match_tunes_and_chromaticities(madx, "lhc", "lhcb1", 62.31, 60.32, 2.0, 2.0) ############################################################################### # Slicing is necessary in ``MAD-X`` in order to perform tracking, so let's do so. +# We could have asked for the slicing directly in the `~.lhc.prepare_lhc_run3` +# function call too! lhc.make_lhc_thin(madx, sequence="lhcb1", slicefactor=4) madx.use(sequence="lhcb1") @@ -128,8 +140,8 @@ # # .. code-block:: python # -# >>> qxd = spectrum.tunes[spectrum.horizontal == spectrum.horizontal.max()].to_numpy()[0] -# >>> qyd = spectrum.tunes[spectrum.vertical == spectrum.vertical.max()].to_numpy()[0] +# qxd = spectrum.tunes[spectrum.horizontal == spectrum.horizontal.max()].to_numpy()[0] +# qyd = spectrum.tunes[spectrum.vertical == spectrum.vertical.max()].to_numpy()[0] # # One can now plot the spectra, and here we will add two stem lines at the position of the # determined driven tunes to highlight them. @@ -164,6 +176,6 @@ # The use of the following functions, methods, classes and modules is shown # in this example: # -# - `~.cpymadtools.lhc`: `~.lhc._setup.make_lhc_beams`, `~.lhc._setup.re_cycle_sequence`, `~.lhc._setup.make_lhc_thin`, `~.lhc._elements.install_ac_dipole_as_kicker` +# - `~.cpymadtools.lhc`: `~.lhc._setup.prepare_lhc_run3`, `~.lhc._elements.install_ac_dipole_as_kicker` # - `~.cpymadtools.matching`: `~.matching.match_tunes_and_chromaticities` # - `~.cpymadtools.track`: `~.track.track_single_particle` diff --git a/examples/demo_aperture.py b/examples/demo_aperture.py index 1cdd2b49..1a17a501 100755 --- a/examples/demo_aperture.py +++ b/examples/demo_aperture.py @@ -6,8 +6,20 @@ Accelerator Aperture ==================== -This example shows how to use the `~.plotting.aperture.plot_aperture` function -to visualise the available aperture in your machine, with the LHC for example. +This example shows how to use the `~.plotting.aperture.plot_aperture` and +`~.plotting.aperture.plot_physical_apertures` functions to visualise the +available aperture in your machine, with the LHC used for this example. + +.. important:: + This example requires the `acc-models-lhc` repository to be cloned locally. One + can get it by running the following command: + + .. code-block:: bash + + git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1 + + Here I set the 2022 branch for stability and reproducibility of the documentation + builds, but you can use any branch you want. """ import matplotlib.pyplot as plt @@ -23,16 +35,15 @@ plt.rcParams.update(_SPHINX_GALLERY_PARAMS) # for readability of this tutorial ############################################################################### -# Setup a simple LHC simulation in ``MAD-X``, at injection energy (450 GeV) - -madx = Madx(stdout=False) -madx.option(echo=False, warn=False) - -madx.call("lhc/lhc_as-built.seq") -madx.call("lhc/opticsfile.1") # injection optics - -lhc.make_lhc_beams(madx, energy=450) -madx.command.use(sequence="lhcb1") +# Let's start by setting up the LHC in ``MAD-X``, in this case at injection +# optics and energy. To understand the function below have a look at the +# :ref:`lhc setup example `. + +madx: Madx = lhc.prepare_lhc_run3( + opticsfile="acc-models-lhc/operation/optics/R2022a_A11mC11mA10mL10m.madx", + energy=450, # given in GeV + stdout=False +) ############################################################################### # We now call the aperture definitions and tolerances, then task ``MAD-X`` with @@ -45,6 +56,7 @@ madx.command.aperture(cor=0.002, dp=8.6e-4, halo="{6,6,6,6}", bbeat=1.05, dparx=0.14, dpary=0.14) ############################################################################### +# The details for the ``MAD-X`` ``aperture`` command can be found in the manual. # We can now determine the exact position of the IP5 point and plot the LHC # injection aperture: @@ -52,7 +64,9 @@ ip5s = twiss_df.s[twiss_df.name.str.contains("ip5")].to_numpy()[0] ############################################################################### -# And now we can plot the aperture: +# And now we can plot the aperture around IP5 with the `~.plotting.aperture.plot_aperture` +# function. This uses the values in the ``APERTURE`` table of ``MAD-X``, which +# gives aperture information in terms of beam sigma. plt.figure(figsize=(20, 13)) plot_aperture( @@ -80,6 +94,7 @@ plot_physical_apertures(madx, plane="x") plt.setp(plt.gca(), xlabel="S [m]", ylabel="X [m]") plt.ylim(-0.035, 0.035) +plt.show() ############################################################################### # We can give a ``scale`` argument to change the scale of the Y-axis. Let's make @@ -90,6 +105,7 @@ plt.setp(plt.gca(), xlabel="S [m]", ylabel="Y [cm]") plt.ylim(-4, 4) plt.xlim(9000, 11_000) +plt.show() ############################################################################### # Let's not forget to close the rpc connection to ``MAD-X``: @@ -103,5 +119,5 @@ # The use of the following functions, methods, classes and modules is shown # in this example: # -# - `~.cpymadtools.lhc`: `~.lhc._setup.make_lhc_beams` -# - `~.plotting.aperture`: `~.plotting.aperture.plot_aperture` +# - `~.cpymadtools.lhc`: `~.lhc._setup.prepare_lhc_run3` +# - `~.plotting.aperture`: `~.plotting.aperture.plot_aperture`, `~.plotting.aperture.plot_physical_apertures` diff --git a/examples/demo_beam_enveloppe.py b/examples/demo_beam_enveloppe.py index 81b24d88..08f4e1fe 100755 --- a/examples/demo_beam_enveloppe.py +++ b/examples/demo_beam_enveloppe.py @@ -68,7 +68,7 @@ ! Define bending magnet as multipole, we have 4 bending magnets per cell !mb:multipole, knl={{2.0*pi/(4*n_cells)}}; -mb: sbend, l=ldip, angle=2.0*pi/(4*n_cells), apertype=ellipse, aperture= {{{h_gap_dipole}, {v_gap_dipole}}}; +mb: sbend, l=ldip, angle=2.0*pi/(4*n_cells), apertype=ellipse, aperture={{{h_gap_dipole}, {v_gap_dipole}}}; f = {f_m}; ! Define quadrupoles as multipoles @@ -78,7 +78,7 @@ qd: quadrupole, l=lq, K1:=-1/f/lq + qtrim_d/lq, apertype=ellipse, aperture={{{r_quadrupole}, {r_quadrupole}}}; ! Define the sextupoles as multipole -!ATTENTION: must use knl:= and NOT knl= to match later! +! ATTENTION: must use knl:= and NOT knl= to match later! lsex = 0.00001; ! dummy length, only used in the sequence msf: multipole, knl:={{0,0,ksf}}; msd: multipole, knl:={{0,0,ksd}}; diff --git a/examples/demo_ir_errors.py b/examples/demo_ir_errors.py index 3c73f6ba..08d6d630 100755 --- a/examples/demo_ir_errors.py +++ b/examples/demo_ir_errors.py @@ -12,6 +12,17 @@ .. warning:: The implementation of this function makes it valid only for LHC IP IRs, which are 1, 2, 5 and 8. Other IRs have different layouts that are incompatible. + +.. important:: + This example requires the `acc-models-lhc` repository to be cloned locally. One + can get it by running the following command: + + .. code-block:: bash + + git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1 + + Here I set the 2022 branch for stability and reproducibility of the documentation + builds, but you can use any branch you want. """ # sphinx_gallery_thumbnail_number = 1 import matplotlib.pyplot as plt @@ -27,13 +38,15 @@ plt.rcParams.update(_SPHINX_GALLERY_PARAMS) # for readability of this tutorial ############################################################################### -# Setup a simple LHC simulation in ``MAD-X``, at injection energy (450 GeV) - -madx = Madx(stdout=False) -madx.option(echo=False, warn=False) - -madx.call("lhc/lhc_as-built.seq") -madx.call("lhc/opticsfile.22") # collision optics +# Let's start by setting up the LHC in ``MAD-X``, in this case at injection +# optics and energy. To understand the function below have a look at the +# :ref:`lhc setup example `. + +madx: Madx = lhc.prepare_lhc_run3( + opticsfile="acc-models-lhc/operation/optics/R2022a_A11mC11mA10mL10m.madx", + energy=450, # given in GeV + stdout=False +) ############################################################################### # Importantly in ``MAD-X``, when dealing with RNG one should set a generator and @@ -42,12 +55,6 @@ madx.option(rand="best", randid=np.random.randint(1, 11)) # random number generator madx.eoption(seed=np.random.randint(1, 999999999)) # not using default seed -############################################################################### -# Let's define beams and use the **lhcb1** sequence. - -lhc.make_lhc_beams(madx, energy=7000) -madx.command.use(sequence="lhcb1") - ############################################################################### # We can now install errors in the IR quadrupoles. Note that this function accepts # keyword arguments for the error definition, and any *kwarg* will be passed to the @@ -139,5 +146,5 @@ # The use of the following functions, methods, classes and modules is shown # in this example: # -# - `~.cpymadtools.lhc`: `~.lhc._setup.make_lhc_beams`, `~.lhc._errors.misalign_lhc_ir_quadrupoles` +# - `~.cpymadtools.lhc`: `~.lhc._setup.prepare_lhc_run3`, `~.lhc._errors.misalign_lhc_ir_quadrupoles` # - `~.cpymadtools.matching`: `~.matching.match_tunes_and_chromaticities` diff --git a/examples/demo_lattice.py b/examples/demo_lattice.py index 5047c3da..d9c0d843 100755 --- a/examples/demo_lattice.py +++ b/examples/demo_lattice.py @@ -64,27 +64,27 @@ ############################################################################### # One can customise the plot more to their liking or needs thanks to the other # function parameters. Let's showcase this with the LHC lattice, that we set up -# below: - -lhc_madx = Madx(stdout=False) -lhc_madx.option(echo=False, warn=False) -lhc_madx.call("lhc/lhc_as-built.seq") -lhc_madx.call("lhc/opticsfile.22") # collisions optics - -############################################################################### -# Let's re-cycle the sequences to avoid having IR1 split at beginning and end of -# lattice, as is the default in the LHC sequence, and setup a flat orbit. - -lhc.re_cycle_sequence(lhc_madx, sequence="lhcb1", start="IP3") -lhc.re_cycle_sequence(lhc_madx, sequence="lhcb2", start="IP3") -orbit_scheme = lhc.setup_lhc_orbit(lhc_madx, scheme="flat") +# below. +# +# .. important:: +# This example requires the `acc-models-lhc` repository to be cloned locally. One +# can get it by running the following command: +# +# .. code-block:: bash +# +# git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1 +# +# Here I set the 2022 branch for stability and reproducibility of the documentation +# builds, but you can use any branch you want. -lhc.make_lhc_beams(lhc_madx, energy=7000) -lhc_madx.command.use(sequence="lhcb1") +lhc_madx: Madx = lhc.prepare_lhc_run3( + opticsfile="acc-models-lhc/operation/optics/R2022a_A30cmC30cmA10mL200cm.madx", + stdout=False +) ############################################################################### -# The `~.plotting.lattice.plot_latwiss` function gives the possibility to zoom on a -# region by providing the *xlimits* parameter. Let's first determine the position +# The `~.plotting.lattice.plot_latwiss` function gives the possibility to zoom on +# a region by providing the *xlimits* parameter. Let's first determine the position # of points of interest through the ``TWISS`` table: lhc_madx.command.twiss() @@ -101,13 +101,13 @@ # However, when providing the *xlimits* parameter, `~.plotting.lattice.plot_latwiss` makes a sub-selection # of the ``TWISS`` table before doing any plotting. This is provides a nice speedup to the plotting # process, as only elements within the limits are rendered on the layout axis, instead of all elements -# (which can be a lot, and lengthy for big machines such as the LHC). It is therefore the recommended +# (which can be a lot, and quite lengthy for big machines such as the LHC). It is therefore the recommended # way to zoom on a region. plt.figure(figsize=(18, 11)) plot_latwiss( lhc_madx, - title="Interaction Region 1, Flat LHCB1 Setup", + title="Interaction Region 1", disp_ylim=(-0.5, 2.5), xlimits=(ip1s - 457, ip1s + 457), k0l_lim=(-1.3e-2, 1.3e-2), @@ -127,7 +127,7 @@ plt.figure(figsize=(18, 11)) plot_latwiss( lhc_madx, - title="IP1 Surroundings, Flat LHCB1 Setup", + title="IP1 Surroundings", disp_ylim=(-3e-2, 3e-2), xoffset=ip1s, xlimits=(-85, 85), @@ -151,7 +151,7 @@ plt.figure(figsize=(18, 11)) plot_latwiss( lhc_madx, - title="LHC Arc Cell, Flat LHCB1 Setup", + title="LHC Arc Cell", plot_bpms=True, disp_ylim=(-0.5, 20), beta_ylim=(0, 200), @@ -176,7 +176,7 @@ # The use of the following functions, methods, classes and modules is shown # in this example: # -# - `~.cpymadtools.lhc`: `~.lhc._setup.make_lhc_beams`, `~.lhc._setup.re_cycle_sequence`, `~.lhc._setup.setup_lhc_orbit` +# - `~.cpymadtools.lhc`: `~.lhc._setup.prepare_lhc_run3`, `~.lhc._setup.setup_lhc_orbit` # - `~.cpymadtools.generators`: `~.generators.LatticeGenerator` # - `~.cpymadtools.matching`: `~.matching.match_tunes_and_chromaticities` # - `~.plotting.lattice`: `~.plotting.lattice.plot_latwiss` diff --git a/examples/demo_lhc_crossing_schemes.py b/examples/demo_lhc_crossing_schemes.py index a3e47820..006c1f56 100755 --- a/examples/demo_lhc_crossing_schemes.py +++ b/examples/demo_lhc_crossing_schemes.py @@ -10,7 +10,7 @@ function to visualise the crossing schemes setup at the LHC IRs. .. note:: - This is very LHC-specific and will most likely not work with other machines. + This is very LHC-specific and will not work with other machines. """ import matplotlib.pyplot as plt @@ -26,7 +26,7 @@ ############################################################################### -# Setup a simple LHC simulation in ``MAD-X``, with collision optics (at 7 TeV): +# Setup a simple LHC simulation in ``MAD-X``, with collision optics (at 6.8 TeV): madx = Madx(stdout=False) madx.option(echo=False, warn=False) @@ -34,27 +34,31 @@ madx.call("lhc/opticsfile.22") # collisions optics ############################################################################### -# Let's re-cycle the sequences to avoid having IR1 split at beginning and end of lattice, -# as is the default in the LHC sequence. Note that it is important to re-cycle both -# sequences from the same points for the plots later on. +# Let's explicitely re-cycle both sequences to avoid having IR1 split at beginning +# and end of lattice. Note that it is important to re-cycle both sequences from +# the same points for the plots later on. lhc.re_cycle_sequence(madx, sequence="lhcb1", start="IP3") lhc.re_cycle_sequence(madx, sequence="lhcb2", start="IP3") -lhc.make_lhc_beams(madx, energy=7000) +lhc.make_lhc_beams(madx, energy=6800) # necessary after re-cycling sequences madx.command.use(sequence="lhcb1") ############################################################################### # Now we plot the crossing schemes, here for IP1 and IP5. -plt.figure(figsize=(18, 11)) +fig1 = plt.figure(figsize=(18, 11)) plot_two_lhc_ips_crossings(madx, first_ip=1, second_ip=5) +fig1.align_ylabels([fig1.axes[0], fig1.axes[1]]) +plt.show() ############################################################################### # We can have a look at, say, IP2 and IP8 by simply changing the parameters, and # for instance also remove the highlighting of MQX and MBX elements: -plt.figure(figsize=(18, 11)) +fig2 = plt.figure(figsize=(18, 11)) plot_two_lhc_ips_crossings(madx, first_ip=2, second_ip=8, highlight_mqx_and_mbx=False) +fig2.align_ylabels([fig2.axes[0], fig2.axes[1]]) +plt.show() ############################################################################### # Let's not forget to close the rpc connection to ``MAD-X``: diff --git a/examples/demo_lhc_rigid_waist_shift.py b/examples/demo_lhc_rigid_waist_shift.py index 3d114be0..216bab1e 100755 --- a/examples/demo_lhc_rigid_waist_shift.py +++ b/examples/demo_lhc_rigid_waist_shift.py @@ -9,26 +9,47 @@ This example shows how to use the `~.lhc.apply_lhc_rigidity_waist_shift_knob` function to force a waist shift at a given IP and break the symmetry of the :math:`\\beta`-functions in the Interaction Region. This is done by -over-powering one triplet and under-powering the other, by the same powering -delta. +over-powering one triplet knob and under-powering the other, by the same +powering delta. + +In :cite:t:`PRAB:Soubelet:Rigid_Waist_Shift_Method_Local_Coupling_Correction_LHC_IR` +(2023) one can find out about studies and achievements at the LHC done with the Rigid +Waist Shift. We will do a comparison of the interaction region situation before and after applying a rigid waist shift, and look in more details at the waist shift itself. .. note:: - This is very specific to the LHC machine and the implementation would not - work on other accelerators. + This is very specific to the LHC machine and the implementation in these + functions would not work on other accelerators. + +.. important:: + This example requires the `acc-models-lhc` repository to be cloned locally. One + can get it by running the following command: + + .. code-block:: bash + + git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1 + + Here I set the 2022 branch for stability and reproducibility of the documentation + builds, but you can use any branch you want. """ # sphinx_gallery_thumbnail_number = 3 +from collections import namedtuple +from multiprocessing import cpu_count + import matplotlib.pyplot as plt import numpy as np +import tfs from cpymad.madx import Madx +from joblib import Parallel, delayed -from pyhdtoolkit.cpymadtools import lhc, matching +from pyhdtoolkit.cpymadtools import lhc, matching, twiss from pyhdtoolkit.plotting.lattice import plot_latwiss from pyhdtoolkit.plotting.styles import _SPHINX_GALLERY_PARAMS +from pyhdtoolkit.plotting.utils import draw_ip_locations, get_lhc_ips_positions from pyhdtoolkit.utils import logging logging.config_logger(level="error") @@ -37,29 +58,23 @@ ############################################################################### # Showcasing the Waist Shift # -------------------------- -# Let's start by setting up the LHC in ``MAD-X``, in this case at top energy: - -madx = Madx(stdout=False) -madx.call("lhc/lhc_as-built.seq") -madx.call("lhc/opticsfile.22") # collision optics - -############################################################################### -# Let's re-cycle the sequences to avoid having IR1 split at beginning and end of lattice, -# as is the default in the LHC sequence: +# Let's start by setting up the LHC in ``MAD-X``, in this case at top energy. +# To understand the function below have a look at the :ref:`lhc setup example +# `. -lhc.re_cycle_sequence(madx, sequence="lhcb1", start="IP3") -lhc.make_lhc_beams(madx, energy=7000) -madx.command.use(sequence="lhcb1") +madx: Madx = lhc.prepare_lhc_run3( + opticsfile="acc-models-lhc/operation/optics/R2022a_A30cmC30cmA10mL200cm.madx", + stdout=False, +) ############################################################################### # We will use the `~.plotting.lattice.plot_latwiss` function to have a zoomed-in look # at the Interaction Region 1 by providing the *xlimits* parameter. Let's first -# determine the position of points of interest through the ``TWISS`` table: +# get the IP postitions with `~.plotting.utils.get_lhc_ips_positions`: -madx.command.twiss() -twiss_df = madx.table.twiss.dframe() -twiss_df.name = twiss_df.name.apply(lambda x: x[:-2]) -ip1s = twiss_df.s["ip1"] +nominal_df = twiss.get_twiss_tfs(madx) +ips = get_lhc_ips_positions(nominal_df) +ip1s = ips["IP1"] ############################################################################### # Let's now have a look at the IR in normal conditions. @@ -68,11 +83,11 @@ plot_latwiss( madx, title="LHCB1 IR1 - No Rigid Waist Shift", - disp_ylim=(-1.5, 3), + disp_ylim=(-0.4, 1.9), xoffset=ip1s, xlimits=(-200, 200), - k0l_lim=(-2e-3, 2e-3), - k1l_lim=(-6.1e-2, 6.1e-2), + k0l_lim=2.25e-3, + k1l_lim=6.1e-2, lw=1.5, ) plt.gcf().axes[-2].set_xlabel(r"$\mathrm{Distance\ to\ IP1\ [m]}$") @@ -81,7 +96,7 @@ plt.show() ############################################################################### -# Notice the (anti)symmetry of the :math:`\beta_{x,y}` functions and triplet +# Notice the (anti-)symmetry of the :math:`\beta_{x,y}` functions and triplet # quadrupoles powering on the right and left-hand side of the IP. Let's now apply # a rigid waist shift - meaning all four betatron waists moving simultaneously - by # changing the triplets powering. This is handled by the convenient function @@ -99,25 +114,21 @@ lhc.apply_lhc_rigidity_waist_shift_knob(madx, rigidty_waist_shift_value=1.5, ir=1) matching.match_tunes_and_chromaticities(madx, "lhc", "lhcb1", 62.31, 60.32, 2.0, 2.0) +waist_df = twiss.get_twiss_tfs(madx) ############################################################################### # Let's again retrieve the ``TWISS`` table, then plot the new conditions in the # Interaction Region. -twiss_df_waist = madx.table.twiss.dframe() -twiss_df_waist.name = twiss_df.name.apply(lambda x: x[:-2]) -ip1s = twiss_df_waist.s["ip1"] - - plt.figure(figsize=(18, 11)) plot_latwiss( madx, title="LHCB1 IR1 - With Rigid Waist Shift", - disp_ylim=(-1.5, 3), + disp_ylim=(-0.4, 1.9), xoffset=ip1s, xlimits=(-200, 200), - k0l_lim=(-2e-3, 2e-3), - k1l_lim=(-6.1e-2, 6.1e-2), + k0l_lim=2.25e-3, + k1l_lim=6.1e-2, lw=1.5, ) plt.gcf().axes[-2].set_xlabel(r"$\mathrm{Distance\ to\ IP1\ [m]}$") @@ -127,28 +138,35 @@ ############################################################################### # Comparing to the previous plot, one can notice two things: -# - The triplet quadrupoles powering has changed and is not (anti-)symmetric anymore. +# - The triplet quadrupoles powering has changed. # - The :math:`\beta_{x,y}` functions symmetry has been broken. # # One can compare the :math:`\beta_{x,y}` functions before and after the rigid # waist shift with a simple plot: -plt.figure(figsize=(16, 10)) -plt.plot(twiss_df.s - ip1s, twiss_df.betx * 1e-3, "b-", label=r"$\beta_{x}^{n}$") -plt.plot(twiss_df_waist.s - ip1s, twiss_df_waist.betx * 1e-3, "b--", label=r"$\beta_{x}^{w}$") +fig, ax = plt.subplots(figsize=(16, 10)) +ax.plot(nominal_df.S - ip1s, 1e-3 * nominal_df.BETX, "b-", label=r"$\beta_x^n$") +ax.plot(waist_df.S - ip1s, 1e-3 * waist_df.BETX, "b--", label=r"$\beta_x^w$") + +ax.plot(nominal_df.S - ip1s, 1e-3 * nominal_df.BETY, "r-", label=r"$\beta_y^n$") +ax.plot(waist_df.S - ip1s, 1e-3 * waist_df.BETY, "r--", label=r"$\beta_y^w$") + +ax.set_xlabel(r"$\mathrm{Distance\ to\ IP1\ [m]}$") +ax.set_ylabel(r"$\beta_{x,y}\ \mathrm{[km]}$") +ax.set_xlim(-215, 215) +ax.set_ylim(-0.7, 9.3) -plt.plot(twiss_df.s - ip1s, twiss_df.bety * 1e-3, "r-", label=r"$\beta_{y}^{n}$") -plt.plot(twiss_df_waist.s - ip1s, twiss_df_waist.bety * 1e-3, "r--", label=r"$\beta_{y}^{w}$") +ax.xaxis.set_major_locator(plt.MaxNLocator(5)) +ax.yaxis.set_major_locator(plt.MaxNLocator(5)) +draw_ip_locations({"IP1": 0}, location="inside") +ax.legend(loc="lower center", bbox_to_anchor=(0.5, 1), ncols=4) -plt.xlabel(r"$\mathrm{Distance\ to\ IP1\ [m]}$") -plt.ylabel(r"$\beta_{x,y}\ \mathrm{[km]}$") -plt.xlim(-200, 200) -plt.ylim(-5e-1, 9) -plt.legend() +plt.tight_layout() plt.show() ############################################################################### -# Here the subscript **n** stands for nominal, and **w** for the waist shift. +# Here the subscript **n** stands for the nominal scenario, and **w** for the +# rigid waist shift scenario. # # .. tip:: # The differences observed will vary depending on the strength of the knob, @@ -162,7 +180,7 @@ # Determining the Waist Shift # --------------------------- # Let's now determine the value of the waist, aka the amount by which we have -# shifted the waist compared to the IP point location. To do so, we will use +# shifted the waist compared to the IP point location. To this end, we will use # both an analytical approach and a more brute force one through simulations. # # Let's set up a rigid waist shift, with the addition of many *marker* elements @@ -197,7 +215,7 @@ matching.match_tunes_and_chromaticities(madx, "lhc", "lhcb1", 62.31, 60.32, 2.0, 2.0) madx.command.twiss() - twiss_df = madx.table.twiss.dframe() + nominal_df = madx.table.twiss.dframe() ############################################################################### # We will use all our added markers to determine the location of the waist, @@ -205,20 +223,20 @@ # functions. initial_twiss.name = initial_twiss.name.apply(lambda x: x[:-2]) -twiss_df.name = twiss_df.name.apply(lambda x: x[:-2]) -ip_s = twiss_df.s["ip1"] +nominal_df.name = nominal_df.name.apply(lambda x: x[:-2]) +ip_s = nominal_df.s["ip1"] slimits = (ip_s - 10, ip_s + 10) -around_ip = twiss_df[twiss_df.s.between(*slimits)] +around_ip = nominal_df[nominal_df.s.between(*slimits)] initial_twiss = initial_twiss[initial_twiss.s.between(*slimits)] waist_location = around_ip.s[around_ip.betx == around_ip.betx.min()][0] ############################################################################### # We can also plot the :math:`\beta_{x,y}` functions before and after the # application of the rigid waist shift. Here one can clearly see the shift of -# the waist between the two configurations +# the waist between the two configurations. -fig, axis = plt.subplots(figsize=(15, 10)) +fig, axis = plt.subplots(figsize=(16, 10)) axis.plot( around_ip.s - ip_s, @@ -226,7 +244,7 @@ ls="-", color="blue", marker=".", - label=r"$\beta_x^{\mathrm{waist}}$", + label=r"$\beta_x^w$", ) axis.plot( around_ip.s - ip_s, @@ -234,11 +252,11 @@ ls="-", color="orange", marker=".", - label=r"$\beta_y^{\mathrm{waist}}$", + label=r"$\beta_y^w$", ) -axis.axvline(0, color="purple", ls="--", lw=1.5, label=r"$\mathrm{IP1}$") -axis.axvline(waist_location - ip_s, color="green", ls="--", lw=1.5, label=r"$\mathrm{Waist}$") +axis.axvline(0, color="purple", ls="--", lw=1.5, label="IP1") +axis.axvline(waist_location - ip_s, color="green", ls="--", lw=1.5, label="Waist") axis.axvspan(waist_location - ip_s, 0, color="red", alpha=0.1) axis.plot( @@ -247,7 +265,7 @@ ls="-.", color="blue", alpha=0.5, - label=r"$\beta_x^{\mathrm{nominal}}$", + label=r"$\beta_x^n$", ) axis.plot( initial_twiss.s - ip_s, @@ -255,7 +273,7 @@ ls="-.", color="orange", alpha=0.5, - label=r"$\beta_y^{\mathrm{nominal}}$", + label=r"$\beta_y^n$", ) plt.xlabel(r"$\mathrm{Distance \ to \ IP1 \ [m]}$") @@ -277,20 +295,20 @@ # # where :math:`\beta_0` is the :math:`\beta` function at the end of the # quadrupole (Q1, end closest to IP); :math:`\beta_w`` is the :math:`\beta` -# function at the waist itself (found as min of :math:`\beta` function in the -# region); :math:`L^{*}` is the distance from close end of quadrupole (Q1) to -# the IP point itself; and :math:`w` is the waist displacement we are looking +# function at the waist itself (found as the minimum of the :math:`\beta`-function +# in the region); :math:`L^{*}` is the distance from close end of quadrupole (Q1) +# to the IP point itself; and :math:`w` is the waist displacement we are looking # to figure out. # # Manipulating the equation to determine the waist yields: # :math:`w = L^{*} - \sqrt{\beta_0 \beta_w - \beta_w^2}` -q1_right_s = twiss_df[twiss_df.name.str.contains("mqxa.1r1")].s[0] # to calculate from the right Q1 -q1_left_s = twiss_df[twiss_df.name.str.contains("mqxa.1l1")].s[-1] # to calculate from the left Q1 +q1_right_s = nominal_df[nominal_df.name.str.contains("mqxa.1r1")].s[0] # to calculate from the right Q1 +q1_left_s = nominal_df[nominal_df.name.str.contains("mqxa.1l1")].s[-1] # to calculate from the left Q1 L_star = ip_s - q1_left_s # we calculate from left Q1 -# beta0 = twiss_df[twiss_df.name.str.contains(f"mqxa.1r1")].betx[0] # to calculate from the right -beta0 = twiss_df[twiss_df.name.str.contains("mqxa.1l1")].betx[-1] # to calculate from the left +# beta0 = nominal_df[nominal_df.name.str.contains(f"mqxa.1r1")].betx[0] # to calculate from the right +beta0 = nominal_df[nominal_df.name.str.contains("mqxa.1l1")].betx[-1] # to calculate from the left betaw = around_ip.betx.min() ############################################################################### @@ -301,6 +319,104 @@ print(f"Analytical: {waist}") print(f"Markers: {shift}") +############################################################################### +# Seeing the effect through values of the knob +# -------------------------------------------- +# We can use the above to determine these values for different knob settings. +# First, let's define some structures and functions. + +Waist = namedtuple("Waist", ["x", "y"]) +BetasIP = namedtuple("Betas", ["x", "y"]) +Result = namedtuple("Result", ["waists", "betas"]) + + +def find_waists(current_twiss: tfs.TfsDataFrame, initial_twiss: tfs.TfsDataFrame) -> Waist: + initial = initial_twiss.copy() + ip_s = current_twiss.S[f"IP1"] + slimits = (ip_s - 10, ip_s + 10) + + around_ip = current_twiss[current_twiss.S.between(*slimits)] + initial = initial[initial.S.between(*slimits)].copy() + hor_waist_location = around_ip.S[around_ip.BETX == around_ip.BETX.min()][0] + ver_waist_location = around_ip.S[around_ip.BETY == around_ip.BETY.min()][0] + initial = initial_twiss.copy() + ip_s = current_twiss.S[f"IP1"] + slimits = (ip_s - 10, ip_s + 10) + + around_ip = current_twiss[current_twiss.S.between(*slimits)] + initial = initial[initial.S.between(*slimits)].copy() + hor_waist_location = around_ip.S[around_ip.BETX == around_ip.BETX.min()][0] + ver_waist_location = around_ip.S[around_ip.BETY == around_ip.BETY.min()][0] + return Waist(ip_s - hor_waist_location, ip_s - ver_waist_location) + + +def find_betashifts( + current_twiss: tfs.TfsDataFrame, initial_twiss: tfs.TfsDataFrame +) -> BetasIP: + delta_betx = current_twiss.BETX["IP1"] - initial_twiss.BETX["IP1"] + delta_bety = current_twiss.BETY["IP1"] - initial_twiss.BETY["IP1"] + return BetasIP(delta_betx, delta_bety) + + +def simulation(knob_value: float) -> Result: + with lhc.LHCSetup( + run=3, opticsfile="R2022a_A30cmC30cmA10mL200cm.madx", slicefactor=4, stdout=False + ) as madx: + lhc.add_markers_around_lhc_ip( + madx, sequence=f"lhcb1", ip=1, n_markers=1000, interval=0.001 + ) + ref_twiss = twiss.get_twiss_tfs(madx) + lhc.apply_lhc_rigidity_waist_shift_knob(madx, knob_value, ir=1) + new_twiss = twiss.get_twiss_tfs(madx) + reswaists = find_waists(new_twiss, ref_twiss) + resbetas = find_betashifts(new_twiss, ref_twiss) + return Result(reswaists, resbetas) + + +############################################################################# +# Let's now run the simulation for different knob values: + +parameter_space = np.linspace(-1, 1, 50) +results: list[Result] = Parallel(n_jobs=cpu_count(), backend="threading", verbose=0)( + delayed(simulation)(knob_value=knobval) for knobval in parameter_space +) + +waist_x = np.array([res.waists.x for res in results]) +waist_y = np.array([res.waists.y for res in results]) + +deltabetx = np.array([res.betas.x for res in results]) +deltabety = np.array([res.betas.y for res in results]) + +############################################################################# +# We can now plot the results: + +fig, axis = plt.subplots(figsize=(16, 10)) + +axis.plot(parameter_space, 1e2 * waist_x, "C0", marker="s", markersize=4) +axis.tick_params(axis="y", colors="C0") +axis.yaxis.label.set_color("C0") +axis.xaxis.set_major_locator(plt.MaxNLocator(5)) + +axis2 = axis.twinx() +axis2.yaxis.set_label_position("right") +axis2.yaxis.label.set_color("C1") +axis2.yaxis.tick_right() +axis2.tick_params(axis="y", colors="C1") +axis2.plot(parameter_space, 1e2 * deltabetx, "C1", marker="o", ls="-", markersize=4, label="Horizontal") +axis2.plot(parameter_space, 1e2 * deltabety, "C2", marker="o", ls="--", markersize=4, label="Vertical") +axis2.legend(loc="lower center", bbox_to_anchor=(0.5, 1), ncols=2) + +axis.set_xlabel("Knob Setting") +axis.set_ylabel(r"$\mathrm{Waist_{X,Y}}$ Shift [cm]") +axis2.set_ylabel(r"$\Delta \beta^{\ast}$ [cm]") + +plt.show() + +############################################################################# +# Let's not forget to close the rpc connection to ``MAD-X``: + +madx.exit() + ############################################################################# # # .. admonition:: References @@ -308,6 +424,8 @@ # The use of the following functions, methods, classes and modules is shown # in this example: # -# - `~.cpymadtools.lhc`: `~.lhc._setup.make_lhc_beams`, `~.lhc._setup.re_cycle_sequence`, `~.lhc._powering.apply_lhc_rigidity_waist_shift_knob`, `~.lhc._elements.add_markers_around_lhc_ip` +# - `~.cpymadtools.lhc`: `~.lhc._setup.prepare_lhc_run3`, `~.lhc._setup.make_lhc_beams`, `~.lhc._setup.re_cycle_sequence`, `~.lhc._powering.apply_lhc_rigidity_waist_shift_knob`, `~.lhc._setup.make_lhc_thin`, `~.lhc._elements.add_markers_around_lhc_ip` # - `~.cpymadtools.matching`: `~.matching.match_tunes`, `~.matching.match_chromaticities`, `~.matching.match_tunes_and_chromaticities` +# - `~.cpymadtools.twiss`: `~.twiss.get_twiss_tfs` # - `~.plotting.lattice`: `~.plotting.lattice.plot_latwiss` +# - `~.plotting.utils`: `~.plotting.utils.draw_ip_locations`, `~.plotting.utils.get_lhc_ips_positions` diff --git a/examples/demo_lhc_setup.py b/examples/demo_lhc_setup.py index e8d4aaa3..04234ba5 100644 --- a/examples/demo_lhc_setup.py +++ b/examples/demo_lhc_setup.py @@ -12,10 +12,23 @@ .. note:: This is obviously very specific to the LHC machine. + +.. important:: + This example requires the `acc-models-lhc` repository to be cloned locally. One + can get it by running the following command: + + .. code-block:: bash + + git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1 + + Here I set the 2022 branch for stability and reproducibility of the documentation + builds, but you can use any branch you want. """ -# sphinx_gallery_thumbnail_number = 3 +# sphinx_gallery_thumbnail_number = 4 import matplotlib.pyplot as plt +from cpymad.madx import Madx + from pyhdtoolkit.cpymadtools import coupling, lhc, twiss from pyhdtoolkit.plotting.aperture import plot_physical_apertures from pyhdtoolkit.plotting.envelope import plot_beam_envelope @@ -26,22 +39,46 @@ logging.config_logger(level="error") # keep the output clean plt.rcParams.update(_SPHINX_GALLERY_PARAMS) # for readability of this tutorial +############################################################################### +# One might have different ways that the LHC examples in other pages of this +# gallery are set up, for instance in the :ref:`LHC crossing schemes example +# ` or the :ref:`AC Dipole tracking example +# `. Setting up the LHC usually involves the same +# steps every time: calling the sequence, defining beams, calling the optics +# file, potentially slicing the sequence, calling ``use`` on the proper beam +# sequence, etc. See below for a typical B1 example: + +madx = Madx(stdout=False) +madx.call("acc-models-lhc/lhc.seq") +lhc.make_lhc_beams(madx, energy=6800) +lhc.make_lhc_thin(madx, sequence="lhcb1", slicefactor=4) +lhc.make_lhc_beams(madx, energy=6800) +lhc.re_cycle_sequence(madx, sequence="lhcb1", start="MSIA.EXIT.B1") +madx.call("acc-models-lhc/operation/optics/R2022a_A30cmC30cmA10mL200cm.madx") +madx.command.use(sequence="lhcb1") +madx.exit() + +############################################################################### +# As this is quite repetitive and involves quite a few places in which to write +# "hard-coded" elements (e.g. lhcb1, the re-cycling start point etc) convenience +# functions are provided. + ############################################################################### # Preparing the LHC setups # ------------------------ -# Two functions in `pyhdtoolkit.cpymadtools.lhc._setup` provide functionality to -# set up the LHC simulations quickly and effortlessly: +# Two functions in `pyhdtoolkit.cpymadtools.lhc._setup` provide functionality +# to set up the LHC simulations quickly and effortlessly: # `~.cpymadtools.lhc._setup.setup_lhc.prepare_lhc_run2` and -# `~.cpymadtools.lhc._setup.setup_lhc.prepare_lhc_run3`.` -# They return a `cpyamad.Madx` instance with the LHC sequence and optics loaded, -# both beams defined. -# -# .. important:: -# As this is a Run 3 setup, it is assumed that the ``acc-models-lhc`` repo -# is available in the root space, which is needed by the different files in -# ``acc-models-lhc``. - -# We need to give an opticsfile at the very least, other arguments are optional +# `~.cpymadtools.lhc._setup.setup_lhc.prepare_lhc_run3`. +# +# They both return a `cpyamad.Madx` instance with the desired LHC sequence and +# optics loaded, beams defined for both ``lhcb1`` and ``lhcb2`` sequences, +# potentially sliced lattices etc. The very minimum required at function call +# is to provide an opticsfile, other arguments are optional. Keyword arguments +# are passed to the `~cpymad.madx.Madx` creation call. For instance: + +# One could give the optics name only and it will be found automatically assuming the +# `acc-models-lhc` repo structure. See lower down for examples. madx = lhc.prepare_lhc_run3( opticsfile="acc-models-lhc/operation/optics/R2022a_A30cmC30cmA10mL200cm.madx", stdout=False, @@ -54,7 +91,7 @@ ax.plot(df.S, df.BETX / 1e3, label=r"$\beta_x$") ax.plot(df.S, df.BETY / 1e3, label=r"$\beta_y$") draw_ip_locations(ips) - ax.set_xlabel("S [m]") + ax.set_xlabel("Longitudinal location [m]") ax.set_ylabel(r"$\beta_{x,y}$ [km]") ax.legend() plt.show() @@ -70,14 +107,31 @@ # In order to not have to close the ``MAD-X`` instance everytime, we can use the # context manager options from `cpymad`. To apply this to an LHC setup, there is # `pyhdtoolkit.cpymadtools.lhc._setup.LHCSetup` to be used as a context manager. -# It calls the functions seen above internally and works on the same logic: +# It calls the functions seen above internally and works on the same logic. The +# above becomes: + +with lhc.LHCSetup(run=3, opticsfile="R2022a_A30cmC30cmA10mL200cm.madx", stdout=False) as madx: + df = twiss.get_twiss_tfs(madx) + ips = get_lhc_ips_positions(df) + + with plt.rc_context(_SPHINX_GALLERY_PARAMS): + fig, ax = plt.subplots(figsize=(18, 10)) + ax.plot(df.S, df.BETX / 1e3, label=r"$\beta_x$") + ax.plot(df.S, df.BETY / 1e3, label=r"$\beta_y$") + draw_ip_locations(ips) + ax.set_xlabel("Longitudinal location [m]") + ax.set_ylabel(r"$\beta_{x,y}$ [km]") + ax.legend() + plt.show() + +############################################################################### +# Notice we don't need to call ``madx.exit()`` as the context manager takes care +# of that. # # These quick setups, with context manager option, allow to do quick "one-shot" -# simulations with the LHC. For example, one can very quickly compare apertures -# around say IP5 for two optics files as below: +# simulations. For example, one can very quickly compare beam sizes around say +# IP5 for two different optics. Here below for the 2022 proton injection optics: -# One can just give the name of the optics file and it will be found automatically -# assuming the ``acc-models-lhc`` repo structure. Defaults assume Run 3. with lhc.LHCSetup(run=3, opticsfile="R2022a_A11mC11mA10mL10m.madx", stdout=False) as madx: df = twiss.get_twiss_tfs(madx) ips = get_lhc_ips_positions(df) @@ -95,7 +149,7 @@ plot_beam_envelope(madx, "lhcb1", "y", 3, scale=1e3, xlimits=limits, ax=axes[1]) plot_beam_envelope(madx, "lhcb1", "y", 5, scale=1e3, xlimits=limits, ax=axes[1]) axes[1].set_ylabel("Y [mm]") - axes[1].set_xlabel("S [m]") + axes[1].set_xlabel("Longitudinal location [m]") for axis in axes: axis.legend() @@ -109,9 +163,9 @@ plt.show() ############################################################################### -# Notice we don't need to call ``madx.exit()`` as the context manager takes care -# of that. Now, the same with betastar = 30cm optics. We can also easily add the -# element apertures on top of the plot: +# Now, the same with betastar = 30cm optics. We can also easily add the +# element apertures on top of the plot (notice how we get this result with only +# 28 lines of code!): with lhc.LHCSetup(opticsfile="R2022a_A30cmC30cmA10mL200cm.madx", stdout=False) as madx: # We'll need to call these to have aperture limitations @@ -136,7 +190,7 @@ plot_beam_envelope(madx, "lhcb1", "y", 6, scale=1e3, xlimits=limits, ax=axes[1]) plot_beam_envelope(madx, "lhcb1", "y", 11, scale=1e3, xlimits=limits, ax=axes[1]) axes[1].set_ylabel("Y [mm]") - axes[1].set_xlabel("S [m]") + axes[1].set_xlabel("Longitudinal location [m]") for axis in axes: axis.legend() @@ -153,13 +207,12 @@ ############################################################################### # If one wants to have a look at, say, coupling RDTs throughout the machine, for # both beams when applying the coupling knob: + with lhc.LHCSetup(opticsfile="R2022a_A30cmC30cmA10mL200cm.madx", stdout=False) as madx: - lhc.apply_lhc_colinearity_knob(madx, colinearity_knob_value=3, ir=5) lhc.apply_lhc_coupling_knob(madx, coupling_knob=5e-3) rdtsb1 = coupling.get_coupling_rdts(madx) with lhc.LHCSetup(opticsfile="R2022a_A30cmC30cmA10mL200cm.madx", beam=2, stdout=False) as madx: - lhc.apply_lhc_colinearity_knob(madx, colinearity_knob_value=3, ir=5) lhc.apply_lhc_coupling_knob(madx, coupling_knob=5e-3, beam=2) rdtsb2 = coupling.get_coupling_rdts(madx) @@ -177,14 +230,15 @@ b2.plot(rdtsb2.S, rdtsb2.F1010.abs(), label=r"$f_{1010}$") draw_ip_locations(ipsb2, location="inside", ax=b2) b2.set_title("Beam 2") - b2.set_xlabel("S [m]") + b2.set_xlabel("Longitudinal location [m]") for axis in (b1, b2): axis.set_ylabel("|RDT|") axis.legend() plt.show() -############################################################################# +############################################################################### +# That's it, happy simulations! # # .. admonition:: References # @@ -192,7 +246,7 @@ # in this example: # # - `~.cpymadtools.coupling`: `~.coupling.get_coupling_rdts` -# - `~.cpymadtools.lhc`: `~.lhc.apply_lhc_colinearity_knob`, `~.lhc.apply_lhc_coupling_knob`, `~.lhc._setup.LHCSetup`, `~.lhc._setup.prepare_lhc_run3` +# - `~.cpymadtools.lhc`: `~.lhc.apply_lhc_coupling_knob`, `~.lhc._setup.LHCSetup`, `~.lhc._setup.prepare_lhc_run3`, `~.lhc._setup.prepare_lhc_run2` # - `~.plotting.aperture`: `~.plotting.aperture.plot_physical_apertures` # - `~.plotting.envelope`: `~.plotting.envelope.plot_beam_envelope` # - `~.plotting.utils`: `~.plotting.utils.draw_ip_locations`, `~.plotting.utils.get_lhc_ips_positions` diff --git a/examples/demo_phase_space.py b/examples/demo_phase_space.py index aa31ec22..8c083dfc 100755 --- a/examples/demo_phase_space.py +++ b/examples/demo_phase_space.py @@ -8,10 +8,11 @@ This example shows how to use the `~.plotting.phasespace.plot_courant_snyder_phase_space` and `~.plotting.phasespace.plot_courant_snyder_phase_space_colored` functions to visualise -the particles' trajectories in phase space for your machine. +the particles' normalized coordinates' phase space for your machine. -In this example we will generate a dummy lattice, set its working point and track particles -to plot their phase space coordinates. +In this example we will generate a dummy lattice, set its working point and track particles. +The transformation to normalized, or Courant-Snyder, coordinates is handled by the plotting +functions. """ # sphinx_gallery_thumbnail_number = 2 import matplotlib.pyplot as plt @@ -38,7 +39,7 @@ base_lattice: str = LatticeGenerator.generate_base_cas_lattice() n_particles: int = 150 -n_turns: int = 1000 # just enough to do a full revolution in phase space +n_turns: int = 1000 # will be just enough to do a full revolution in phase space initial_x_coordinates = np.linspace(1e-4, 0.05, n_particles) x_coords, px_coords, y_coords, py_coords = [], [], [], [] @@ -64,7 +65,9 @@ # a particle's coordinates for each turn. for starting_x in initial_x_coordinates: - tracks_df = track_single_particle(madx, initial_coordinates=(starting_x, 0, 0, 0, 0, 0), nturns=n_turns) + tracks_df = track_single_particle( + madx, initial_coordinates=(starting_x, 0, 0, 0, 0, 0), nturns=n_turns + ) x_coords.append(tracks_df["observation_point_1"].x.to_numpy()) y_coords.append(tracks_df["observation_point_1"].y.to_numpy()) px_coords.append(tracks_df["observation_point_1"].px.to_numpy()) @@ -76,9 +79,13 @@ # plots these. fig, ax = plt.subplots(figsize=(10, 10)) -plot_courant_snyder_phase_space(madx, x_coords, px_coords, plane="Horizontal") -ax.set_xlim(-20e-3, 18e-3) -ax.set_ylim(-18e-3, 22e-3) +plot_courant_snyder_phase_space( + madx, 1e3 * np.array(x_coords), 1e3 * np.array(px_coords), plane="Horizontal" +) +ax.set_xlabel(r"$\hat{x}$ [$10^{3}$]") +ax.set_ylabel(r"$\hat{p}_x$ [$10^{3}$]") +ax.set_xlim(-20, 18) +ax.set_ylim(-18, 22) plt.show() ############################################################################### @@ -86,21 +93,29 @@ # one gets a plot in which each color corresponds to a given particle's trajectory: fig, ax = plt.subplots(figsize=(10, 10)) -plot_courant_snyder_phase_space_colored(madx, x_coords, px_coords, plane="Horizontal") -ax.set_xlim(-20e-3, 18e-3) -ax.set_ylim(-18e-3, 22e-3) +plot_courant_snyder_phase_space_colored( + madx, 1e3 * np.array(x_coords), 1e3 * np.array(px_coords), plane="Horizontal" +) +ax.set_xlabel(r"$\hat{x}$ [$10^{3}$]") +ax.set_ylabel(r"$\hat{p}_x$ [$10^{3}$]") +ax.set_xlim(-20, 18) +ax.set_ylim(-18, 22) plt.show() ############################################################################### -# We can see the phase space evolve as the machine's working conditions change. -# In our case, this dummy lattice is meant for classes and is very robust, so if -# one wants significant change, a solution is to excite a resonance! +# Let's close the rpc connection to ``MAD-X``: +madx.exit() + +############################################################################### +# We can see the evolvution of particles through the normalized phase space during +# tracking: each point in a given line correspond to a given turn. In our case, +# this dummy lattice was created for lectures and is very robust. If one wants +# significant change, a good solution is to excite a resonance! # # To do so, we will use a similar lattice equipped with a sextupole, which we will -# use to excite the resonance. +# use to excite a third order resonance. perturbed_lattice = LatticeGenerator.generate_onesext_cas_lattice() -madx.exit() # close the previous rpc connection madx = Madx(stdout=False) madx.input(perturbed_lattice) @@ -132,9 +147,13 @@ # Plotting the new phase space, we can clearly see the resonance's islands! fig, ax = plt.subplots(figsize=(10, 10)) -plot_courant_snyder_phase_space_colored(madx, x_coords_sext, px_coords_sext, plane="Horizontal") -ax.set_xlim(-15e-3, 15e-3) -ax.set_ylim(-15e-3, 15e-3) +plot_courant_snyder_phase_space_colored( + madx, 1e3 * np.array(x_coords_sext), 1e3 * np.array(px_coords_sext), plane="Horizontal" +) +ax.set_xlabel(r"$\hat{x}$ [$10^{3}$]") +ax.set_ylabel(r"$\hat{p}_x$ [$10^{3}$]") +ax.set_xlim(-15, 15) +ax.set_ylim(-15, 15) plt.show() ############################################################################### diff --git a/examples/demo_sbs_plotting.py b/examples/demo_sbs_plotting.py index aaefbb50..d4f37985 100644 --- a/examples/demo_sbs_plotting.py +++ b/examples/demo_sbs_plotting.py @@ -19,10 +19,9 @@ logging.config_logger(level="error") plt.rcParams.update(_SPHINX_GALLERY_PARAMS) # for readability of this tutorial -plt.rcParams.update({"text.usetex": True, "legend.fontsize": 16}) # for these specific plots ############################################################################### -# The functions in `~pyhdtoolkit.plotting.sbs` modules usually need to be provided +# The functions in `.pyhdtoolkit.plotting.sbs` modules usually need to be provided # different dataframes corresponding to specific components of segment-by-segment # results, which can be obtained by directly loading the output **TFS** files. # Let's load below the coupling results of a segment-by-segment run and related @@ -36,7 +35,7 @@ ############################################################################### # One can now easily plot these results in a few lines with functions from the -# `~.plotting.sbs.coupling` module. Here we will plot a single component of a +# `.plotting.sbs.coupling` module. Here we will plot a single component of a # given coupling RDT through the segment. # # .. tip:: @@ -78,11 +77,11 @@ b1_model_tfs, b2_model_tfs, ip=1, - figsize=(20, 10), + figsize=(20, 11), abs_ylimits=(5e-3, 6.5e-2), real_ylimits=(-1e-1, 1e-1), imag_ylimits=(-1e-1, 1e-1), - bbox_to_anchor=(0.535, 0.945), + bbox_to_anchor=(0.535, 0.935), ) plt.show() @@ -104,7 +103,6 @@ ) plt.show() - ############################################################################### # Similarly to the coupling example, one can plot the results for both beams in # a single call with the `~.plotting.sbs.phase.plot_phase_segment_both_beams` @@ -118,8 +116,8 @@ b1_model=b2_model_tfs, b2_model=b2_model_tfs, ip=5, - figsize=(20, 10), - bbox_to_anchor=(0.535, 0.94), + figsize=(20, 11), + bbox_to_anchor=(0.535, 0.935), ) plt.show() diff --git a/examples/demo_stats_fitting.py b/examples/demo_stats_fitting.py index e9dfa89d..5b1dd82d 100755 --- a/examples/demo_stats_fitting.py +++ b/examples/demo_stats_fitting.py @@ -103,7 +103,7 @@ def chi_dist(num: int, meas_used: int) -> np.ndarray: # # .. math:: # -# \sigma_{0} = \sqrt{\frac{index\_at\_peak}{(N - 3)}} +# \sigma_{0} = \sqrt{\frac{\mathrm{index\_at\_peak}}{(N - 3)}} # # Enough talk, see below an example with :math:`N = 5` measurements. @@ -155,8 +155,8 @@ def chi_dist(num: int, meas_used: int) -> np.ndarray: ############################################################################### # That's nice. We can already see that only the chi-squared distrubtion seems to # be a good fit. Let's do a new plot with only the best fit's probability density -# function (which we get with `~.maths.stats_fitting.make_pdf` function) added onto -# the data, and determine its mode: +# function (which we get with the `~.maths.stats_fitting.make_pdf` function) added +# onto the data, and determine its mode: # Let's get the PDF of the best fit pdf: pd.Series = fitting.make_pdf(best_fit_func, best_fit_params) diff --git a/examples/demo_track_spectra.py b/examples/demo_track_spectra.py index a2df4166..f078ef92 100755 --- a/examples/demo_track_spectra.py +++ b/examples/demo_track_spectra.py @@ -11,6 +11,17 @@ In this example we will use the LHC lattice to illustrate the tracking workflow when using `~.cpymadtools`. + +.. important:: + This example requires the `acc-models-lhc` repository to be cloned locally. One + can get it by running the following command: + + .. code-block:: bash + + git clone -b 2022 https://gitlab.cern.ch/acc-models/acc-models-lhc.git --depth 1 + + Here I set the 2022 branch for stability and reproducibility of the documentation + builds, but you can use any branch you want. """ # sphinx_gallery_thumbnail_number = -1 import matplotlib.pyplot as plt @@ -26,22 +37,13 @@ plt.rcParams.update(_SPHINX_GALLERY_PARAMS) # for readability of this tutorial ############################################################################### -# Let's start by setting up the LHC in ``MAD-X``, in this case at top energy: - -madx = Madx(stdout=False) -madx.call("lhc/lhc_as-built.seq") -madx.call("lhc/opticsfile.22") # collision optics - -lhc.make_lhc_beams(madx) -lhc.re_cycle_sequence(madx, sequence="lhcb1", start="MSIA.EXIT.B1") # as done in OMC - -madx.command.use(sequence="lhcb1") - -############################################################################### -# Slicing is necessary in ``MAD-X`` in order to perform tracking, so let's do so. +# Let's start by setting up the LHC in ``MAD-X``, in this case at collision +# optics and energy and with a sliced lattice. To understand the function below +# have a look at the :ref:`lhc setup example `. -lhc.make_lhc_thin(madx, sequence="lhcb1", slicefactor=4) -madx.use(sequence="lhcb1") +madx = lhc.prepare_lhc_run3( + opticsfile="R2022a_A30cmC30cmA10mL200cm.madx", slicefactor=4, stdout=False +) ############################################################################### # Now we can track a particle. By default, the "start of machine" as ``MAD-X`` sees it @@ -105,7 +107,7 @@ ############################################################################### # .. tip:: -# To get the tunes of the particle, one can find the peak of the spectra. +# To get the fractional tunes of the particle, one can find the peak of the spectra. # # .. code-block:: python # @@ -123,7 +125,7 @@ ylabel="Spectrum [a.u]", figsize=(18, 10), ) - +plt.show() ############################################################################### # In case the user provided ``ONETABLE=True`` to the tracking function, then all @@ -156,5 +158,5 @@ # The use of the following functions, methods, classes and modules is shown # in this example: # -# - `~.cpymadtools.lhc`: `~.lhc._setup.make_lhc_beams`, `~.lhc._setup.re_cycle_sequence` +# - `~.cpymadtools.lhc`: `~.lhc._setup.prepare_lhc_run3` # - `~.cpymadtools.track`: `~.track.track_single_particle` diff --git a/pyhdtoolkit/cpymadtools/coupling.py b/pyhdtoolkit/cpymadtools/coupling.py index 1e34df49..af95a217 100644 --- a/pyhdtoolkit/cpymadtools/coupling.py +++ b/pyhdtoolkit/cpymadtools/coupling.py @@ -76,15 +76,15 @@ def get_closest_tune_approach( Example: .. code-block:: python - >>> # Say we have set the LHC coupling knobs to 1e-3 - >>> dqmin = get_closest_tune_approach( - ... madx, - ... "lhc", # will find the knobs automatically - ... sequence="lhcb1", - ... telescopic_squeeze=True, # influences the knobs definition - ... run3=True, # influences the knobs definition (LHC Run 3) - ... ) - 0.001 + # Say we have set the LHC coupling knobs to 1e-3 + dqmin = get_closest_tune_approach( + madx, + "lhc", # will find the knobs automatically + sequence="lhcb1", + telescopic_squeeze=True, # influences the knobs definition + run3=True, # influences the knobs definition (LHC Run 3) + ) + # returns 0.001 """ if accelerator and not varied_knobs: logger.trace(f"Getting knobs from default {accelerator.upper()} values") @@ -192,14 +192,14 @@ def get_cminus_from_coupling_rdts( .. code-block:: python - >>> complex_cminus = get_cminus_from_coupling_rdts(madx) + complex_cminus = get_cminus_from_coupling_rdts(madx) To simulate the calculation from a measurement, with RDTs computed at BPMs only: .. code-block:: python - >>> complex_cminus = get_cminus_from_coupling_rdts(madx, patterns=["^BPM.*B[12]$"]) + complex_cminus = get_cminus_from_coupling_rdts(madx, patterns=["^BPM.*B[12]$"]) """ logger.debug("Getting coupling RDTs at selected elements thoughout the machine") twiss_with_rdts = get_pattern_twiss(madx, patterns=patterns, columns=MONITOR_TWISS_COLUMNS) @@ -250,9 +250,9 @@ def match_no_coupling_through_ripkens( Example: .. code-block:: python - >>> match_no_coupling_through_ripkens( - ... madx, sequence="lhcb1", location="IP5", vary_knobs=["kqsx.3l5", "kqsx.3r5"] - ... ) + match_no_coupling_through_ripkens( + madx, sequence="lhcb1", location="IP5", vary_knobs=["kqsx.3l5", "kqsx.3r5"] + ) """ logger.debug(f"Matching Ripken parameters for no coupling at location {location}") logger.debug("Creating macro to update Ripkens") @@ -287,7 +287,7 @@ def get_coupling_rdts(madx: Madx, /, **kwargs) -> tfs.TfsDataFrame: Example: .. code-block:: python - >>> twiss_rdts = get_coupling_rdts(madx) + twiss_rdts = get_coupling_rdts(madx) """ twiss_tfs = get_twiss_tfs(madx, **kwargs) twiss_tfs[["F1001", "F1010"]] = coupling_via_cmatrix(twiss_tfs, output=["rdts"]) @@ -310,8 +310,8 @@ def _fractional_tune(tune: float) -> float: Example: .. code-block:: python - >>> _fractional_tune(62.31) - 0.31 + _fractional_tune(62.31) + ## returns 0.31 """ return tune - int(tune) # ok since int truncates to lower integer diff --git a/pyhdtoolkit/cpymadtools/lhc/_coupling.py b/pyhdtoolkit/cpymadtools/lhc/_coupling.py index b3c49f16..b74b6dea 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_coupling.py +++ b/pyhdtoolkit/cpymadtools/lhc/_coupling.py @@ -42,7 +42,7 @@ def correct_lhc_global_coupling( Example: .. code-block:: python - >>> correct_lhc_global_coupling(madx, sequence="lhcb1", telescopic_squeeze=True) + correct_lhc_global_coupling(madx, sequence="lhcb1", telescopic_squeeze=True) """ suffix = "_sq" if telescopic_squeeze else "" sequence = f"lhcb{beam:d}" @@ -76,7 +76,7 @@ def get_lhc_bpms_twiss_and_rdts(madx: Madx, /) -> tfs.TfsDataFrame: Example: .. code-block:: python - >>> twiss_with_rdts = get_lhc_bpms_twiss_and_rdts(madx) + twiss_with_rdts = get_lhc_bpms_twiss_and_rdts(madx) """ twiss_tfs = twiss.get_pattern_twiss(madx, patterns=["^BPM.*B[12]$"], columns=MONITOR_TWISS_COLUMNS) twiss_tfs.columns = twiss_tfs.columns.str.upper() # optics_functions needs capitalized names diff --git a/pyhdtoolkit/cpymadtools/lhc/_elements.py b/pyhdtoolkit/cpymadtools/lhc/_elements.py index 16e59a25..103dcbab 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_elements.py +++ b/pyhdtoolkit/cpymadtools/lhc/_elements.py @@ -41,9 +41,9 @@ def install_ac_dipole_as_kicker( :ref:`AC Dipole Tracking ` example gallery. .. warning:: - Installing the AC Dipole modifies the sequence, which will then be - ``USE``d at the end of this function. This will remove any errors - that were installed in the sequence. + Installing the AC Dipole modifies the sequence, and the ``USE`` + command will be called again at the end of this function. This + will remove any errors that were installed in the sequence. As the errors impact the optics functions which are used during the installation of the AC Dipole, it would not be correct to implement @@ -78,17 +78,17 @@ def install_ac_dipole_as_kicker( Example: .. code-block:: python - >>> install_ac_dipole_as_kicker( - ... madx, - ... deltaqx=-0.01, # driven horizontal tune to Qxd = 62.31 - 0.01 = 62.30 - ... deltaqy=0.012, # driven vertical tune to Qyd = 60.32 + 0.012 = 60.332 - ... sigma_x=2, # bunch amplitude kick in the horizontal plane - ... sigma_y=2, # bunch amplitude kick in the vertical plane - ... beam=1, # beam for which to install and kick - ... start_turn=100, # when to turn on the AC Dipole - ... ramp_turns=2000, # how many turns to ramp up/down the AC Dipole - ... top_turns=6600, # how many turns to keep the AC Dipole at full kick - ... ) + install_ac_dipole_as_kicker( + madx, + deltaqx=-0.01, # driven horizontal tune to Qxd = 62.31 - 0.01 = 62.30 + deltaqy=0.012, # driven vertical tune to Qyd = 60.32 + 0.012 = 60.332 + sigma_x=2, # bunch amplitude kick in the horizontal plane + sigma_y=2, # bunch amplitude kick in the vertical plane + beam=1, # beam for which to install and kick + start_turn=100, # when to turn on the AC Dipole + ramp_turns=2000, # how many turns to ramp up/down the AC Dipole + top_turns=6600, # how many turns to keep the AC Dipole at full kick + ) """ logger.warning("This AC Dipole is implemented as a kicker and will not affect TWISS functions!") logger.debug("This routine should be done after 'match', 'twiss' and 'makethin' for the appropriate beam") @@ -164,9 +164,9 @@ def install_ac_dipole_as_matrix(madx: Madx, /, deltaqx: float, deltaqy: float, b affect tracking. .. warning:: - Installing the AC Dipole modifies the sequence, which will then be - ``USE``d at the end of this function. This will remove any errors - that were installed in the sequence. + Installing the AC Dipole modifies the sequence, and the ``USE`` + command will be called again at the end of this function. This + will remove any errors that were installed in the sequence. As the errors impact the optics functions which are used during the installation of the AC Dipole, it would not be correct to implement @@ -189,7 +189,7 @@ def install_ac_dipole_as_matrix(madx: Madx, /, deltaqx: float, deltaqy: float, b Example: .. code-block:: python - >>> install_ac_dipole_as_matrix(madx, deltaqx=-0.01, deltaqy=0.012, beam=1) + install_ac_dipole_as_matrix(madx, deltaqx=-0.01, deltaqy=0.012, beam=1) """ logger.warning("This AC Dipole is implemented as a matrix and will not affect particle tracking!") logger.debug("This routine should be done after 'match', 'twiss' and 'makethin' for the appropriate beam.") @@ -264,9 +264,9 @@ def add_markers_around_lhc_ip(madx: Madx, /, sequence: str, ip: int, n_markers: Example: .. code-block:: python - >>> add_markers_around_lhc_ip( - ... madx, sequence=f"lhcb1", ip=1, n_markers=1000, interval=0.001 - ... ) + add_markers_around_lhc_ip( + madx, sequence=f"lhcb1", ip=1, n_markers=1000, interval=0.001 + ) """ logger.debug(f"Adding {n_markers:d} markers on each side of IP{ip:d}") madx.command.seqedit(sequence=sequence) diff --git a/pyhdtoolkit/cpymadtools/lhc/_errors.py b/pyhdtoolkit/cpymadtools/lhc/_errors.py index 4615db3a..e589723d 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_errors.py +++ b/pyhdtoolkit/cpymadtools/lhc/_errors.py @@ -51,13 +51,13 @@ def misalign_lhc_triplets( .. code-block:: python - >>> misalign_lhc_triplets(madx, ip=1, sides="RL", dx="1E-5 * TGAUSS(2.5)") + misalign_lhc_triplets(madx, ip=1, sides="RL", dx="1E-5 * TGAUSS(2.5)") A random, gaussian truncated ``DPSI`` misalignment: .. code-block:: python - >>> misalign_lhc_triplets(madx, ip=5, sides="RL", dpsi="0.001 * TGAUSS(2.5)") + misalign_lhc_triplets(madx, ip=5, sides="RL", dpsi="0.001 * TGAUSS(2.5)") """ misalign_lhc_ir_quadrupoles(madx, ips=[ip], beam=None, quadrupoles=(1, 2, 3), sides=sides, table=table, **kwargs) @@ -111,35 +111,35 @@ def misalign_lhc_ir_quadrupoles( .. code-block:: python - >>> misalign_lhc_ir_quadrupoles( - ... madx, ips=[1], quadrupoles=[1, 2, 3, 4, 5, 6], beam=1, sides="RL", dx="1E-5" - ... ) + misalign_lhc_ir_quadrupoles( + madx, ips=[1], quadrupoles=[1, 2, 3, 4, 5, 6], beam=1, sides="RL", dx="1E-5" + ) For a tilt distribution centered on 1mrad: .. code-block:: python - >>> misalign_lhc_ir_quadrupoles( - ... madx, ips=[5], - ... quadrupoles=[7, 8, 9, 10], - ... beam=1, - ... sides="RL", - ... dpsi="1E-3 + 8E-4 * TGAUSS(2.5)", - ... ) + misalign_lhc_ir_quadrupoles( + madx, ips=[5], + quadrupoles=[7, 8, 9, 10], + beam=1, + sides="RL", + dpsi="1E-3 + 8E-4 * TGAUSS(2.5)", + ) For several error types on the elements, here ``DY`` and ``DPSI``: .. code-block:: python - >>> misalign_lhc_ir_quadrupoles( - ... madx, - ... ips=[1, 5], - ... quadrupoles=list(range(1, 11)), - ... beam=1, - ... sides="RL", - ... dy=1e-5, # ok too as cpymad converts this to a string first - ... dpsi="1E-3 + 8E-4 * TGAUSS(2.5)" - ... ) + misalign_lhc_ir_quadrupoles( + madx, + ips=[1, 5], + quadrupoles=list(range(1, 11)), + beam=1, + sides="RL", + dy=1e-5, # ok too as cpymad converts this to a string first + dpsi="1E-3 + 8E-4 * TGAUSS(2.5)" + ) """ if any(ip not in (1, 2, 5, 8) for ip in ips): logger.error("The IP number provided is invalid, not applying any error.") diff --git a/pyhdtoolkit/cpymadtools/lhc/_misc.py b/pyhdtoolkit/cpymadtools/lhc/_misc.py index f22f8a83..171fda17 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_misc.py +++ b/pyhdtoolkit/cpymadtools/lhc/_misc.py @@ -36,7 +36,7 @@ def make_sixtrack_output(madx: Madx, /, energy: int) -> None: Example: .. code-block:: python - >>> make_sixtrack_output(madx, energy=6800) + make_sixtrack_output(madx, energy=6800) """ logger.debug("Preparing outputs for SixTrack") @@ -62,7 +62,7 @@ def reset_lhc_bump_flags(madx: Madx, /) -> None: Example: .. code-block:: python - >>> reset_lhc_bump_flags(madx) + reset_lhc_bump_flags(madx) """ logger.debug("Resetting all LHC IP bump flags") ALL_BUMPS = ( @@ -101,18 +101,18 @@ def get_lhc_tune_and_chroma_knobs( Examples: .. code-block:: python - >>> get_lhc_tune_and_chroma_knobs("LHC", beam=1, telescopic_squeeze=False) - ('dQx.b1', 'dQy.b1', 'dQpx.b1', 'dQpy.b1') + get_lhc_tune_and_chroma_knobs("LHC", beam=1, telescopic_squeeze=False) + # gives ('dQx.b1', 'dQy.b1', 'dQpx.b1', 'dQpy.b1') .. code-block:: python - >>> get_lhc_tune_and_chroma_knobs("LHC", beam=2, run3=True) - ('dQx.b2_op', 'dQx.b2_op', 'dQpx.b2_op', 'dQpx.b2_op') + get_lhc_tune_and_chroma_knobs("LHC", beam=2, run3=True) + # gives ('dQx.b2_op', 'dQx.b2_op', 'dQpx.b2_op', 'dQpx.b2_op') .. code-block:: python - >>> get_lhc_tune_and_chroma_knobs("HLLHC", beam=2) - ('kqtf.b2_sq', 'kqtd.b2_sq', 'ksf.b2_sq', 'ksd.b2_sq') + get_lhc_tune_and_chroma_knobs("HLLHC", beam=2) + # gives ('kqtf.b2_sq', 'kqtd.b2_sq', 'ksf.b2_sq', 'ksd.b2_sq') """ beam = 2 if beam == 4 else beam if run3: @@ -162,7 +162,7 @@ def get_lhc_bpms_list(madx: Madx, /) -> List[str]: Example: .. code-block:: python - >>> observation_bpms = get_lhc_bpms_list(madx) + observation_bpms = get_lhc_bpms_list(madx) """ twiss_df = twiss.get_twiss_tfs(madx).reset_index() bpms_df = twiss_df[twiss_df.NAME.str.contains("^bpm.*B[12]$", case=False, regex=True)] @@ -193,7 +193,7 @@ def get_sizes_at_ip( Example: .. code-block:: python - >>> ip5_x, ip5_y = get_size_at_ip(madx, ip=5) + ip5_x, ip5_y = get_size_at_ip(madx, ip=5) """ logger.debug(f"Getting horizontal and vertical sizes at IP{ip:d} through Ripken parameters") geom_emit_x = geom_emit_x or madx.globals["geometric_emit_x"] diff --git a/pyhdtoolkit/cpymadtools/lhc/_powering.py b/pyhdtoolkit/cpymadtools/lhc/_powering.py index 78d6b3a9..2eab10e8 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_powering.py +++ b/pyhdtoolkit/cpymadtools/lhc/_powering.py @@ -36,7 +36,7 @@ def apply_lhc_colinearity_knob(madx: Madx, /, colinearity_knob_value: float = 0, Example: .. code-block:: python - >>> apply_lhc_colinearity_knob(madx, colinearity_knob_value=5, ir=1) + apply_lhc_colinearity_knob(madx, colinearity_knob_value=5, ir=1) """ logger.debug(f"Applying Colinearity knob with a unit setting of {colinearity_knob_value}") logger.warning("You should re-match tunes & chromaticities after this colinearity knob is applied") @@ -69,7 +69,7 @@ def apply_lhc_colinearity_knob_delta(madx: Madx, /, colinearity_knob_delta: floa Example: .. code-block:: python - >>> apply_lhc_colinearity_knob_delta(madx, colinearity_knob_delta=3.5, ir=1) + apply_lhc_colinearity_knob_delta(madx, colinearity_knob_delta=3.5, ir=1) """ logger.debug(f"Applying Colinearity knob delta of {colinearity_knob_delta}") logger.warning("You should re-match tunes & chromaticities after this delta is applied") @@ -121,10 +121,10 @@ def apply_lhc_rigidity_waist_shift_knob( Example: .. code-block:: python - >>> # It is recommended to re-match tunes after this routine - >>> matching.match_tunes(madx, "lhc", "lhcb1", 62.27, 60.36) - >>> apply_lhc_rigidity_waist_shift_knob(madx, rigidty_waist_shift_value=1.5, ir=5) - >>> matching.match_tunes(madx, "lhc", "lhcb1", 62.31, 60.32) + # It is recommended to re-match tunes after this routine + matching.match_tunes(madx, "lhc", "lhcb1", 62.27, 60.36) + apply_lhc_rigidity_waist_shift_knob(madx, rigidty_waist_shift_value=1.5, ir=5) + matching.match_tunes(madx, "lhc", "lhcb1", 62.31, 60.32) """ logger.debug(f"Applying Rigidity Waist Shift knob with a unit setting of {rigidty_waist_shift_value}") logger.warning("You should re-match tunes & chromaticities after this rigid waist shift knob is applied") @@ -166,7 +166,7 @@ def apply_lhc_coupling_knob( Example: .. code-block:: python - >>> apply_lhc_coupling_knob(madx, coupling_knob=5e-4, beam=1) + apply_lhc_coupling_knob(madx, coupling_knob=5e-4, beam=1) """ # NOTE: for maintainers, no `_op` suffix on ATS coupling knobs, only `_sq` even in Run 3 logger.debug("Applying coupling knob") @@ -199,7 +199,7 @@ def carry_colinearity_knob_over(madx: Madx, /, ir: int, to_left: bool = True) -> Example: .. code-block:: python - >>> carry_colinearity_knob_over(madx, ir=5, to_left=True) + carry_colinearity_knob_over(madx, ir=5, to_left=True) """ side = "left" if to_left else "right" logger.debug(f"Carrying colinearity knob powering around IP{ir:d} over to the {side} side") @@ -231,7 +231,7 @@ def power_landau_octupoles(madx: Madx, /, beam: int, mo_current: float, defectiv Example: .. code-block:: python - >>> power_landau_octupoles(madx, beam=1, mo_current=350, defect_arc=True) + power_landau_octupoles(madx, beam=1, mo_current=350, defect_arc=True) """ try: brho = madx.globals.nrj * 1e9 / madx.globals.clight # clight is MAD-X constant @@ -266,7 +266,7 @@ def deactivate_lhc_arc_sextupoles(madx: Madx, /, beam: int) -> None: Example: .. code-block:: python - >>> deactivate_lhc_arc_sextupoles(madx, beam=1) + deactivate_lhc_arc_sextupoles(madx, beam=1) """ # KSF1 and KSD2 - Strong sextupoles of sectors 81/12/45/56 # KSF2 and KSD1 - Weak sextupoles of sectors 81/12/45/56 @@ -307,9 +307,9 @@ def vary_independent_ir_quadrupoles( Example: .. code-block:: python - >>> vary_independent_ir_quadrupoles( - ... madx, quad_numbers=[10, 11, 12, 13], ip=1, sides=("r", "l") - ... ) + vary_independent_ir_quadrupoles( + madx, quad_numbers=[10, 11, 12, 13], ip=1, sides=("r", "l") + ) """ if ( ip not in (1, 2, 5, 8) @@ -367,17 +367,17 @@ def switch_magnetic_errors(madx: Madx, /, **kwargs) -> None: .. code-block:: python - >>> random_kwargs = {} - >>> for order in range(1, 16): - ... for ab in "AB": - ... random_kwargs[f"{ab}{order:d}"] = random.randint(0, 20) - >>> switch_magnetic_errors(madx, **random_kwargs) + random_kwargs = {} + for order in range(1, 16): + for ab in "AB": + random_kwargs[f"{ab}{order:d}"] = random.randint(0, 20) + switch_magnetic_errors(madx, **random_kwargs) - Set a given value for ``B6`` order magnetic errors: + Set a given value for ``B6`` order magnetic errors only: .. code-block:: python - >>> switch_magnetic_errors(madx, "B6"=1e-4) + switch_magnetic_errors(madx, {"B6": 1e-4}) """ logger.debug("Setting magnetic errors") global_default = kwargs.get("default", False) diff --git a/pyhdtoolkit/cpymadtools/lhc/_queries.py b/pyhdtoolkit/cpymadtools/lhc/_queries.py index 9f3e5930..f26b7e02 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_queries.py +++ b/pyhdtoolkit/cpymadtools/lhc/_queries.py @@ -80,7 +80,7 @@ def get_magnets_powering( Example: .. code-block:: python - >>> sextupoles_powering = get_magnets_powering(madx, patterns=[r"^ms\."]) + sextupoles_powering = get_magnets_powering(madx, patterns=[r"^ms\."]) """ logger.debug("Computing magnets field and powering limits proportions") NEW_COLNAMES = ["name", "keyword", "ampere", "imax", "percent", "kn", "kmax", "integrated_field", "L"] @@ -106,7 +106,7 @@ def query_arc_correctors_powering(madx: Madx, /) -> Dict[str, float]: Example: .. code-block:: python - >>> arc_knobs = query_arc_correctors_powering(madx) + arc_knobs = query_arc_correctors_powering(madx) """ logger.debug("Querying triplets correctors powering") result: Dict[str, float] = {} @@ -162,7 +162,7 @@ def query_triplet_correctors_powering(madx: Madx, /) -> Dict[str, float]: Example: .. code-block:: python - >>> triplet_knobs = query_triplet_correctors_powering(madx) + triplet_knobs = query_triplet_correctors_powering(madx) """ logger.debug("Querying triplets correctors powering") result: Dict[str, float] = {} @@ -209,7 +209,7 @@ def get_current_orbit_setup(madx: Madx, /) -> Dict[str, float]: Example: .. code-block:: python - >>> orbit_setup = get_current_orbit_setup(madx) + orbit_setup = get_current_orbit_setup(madx) """ logger.debug("Extracting orbit variables from global table") variables, specials = lhc_orbit_variables() @@ -281,8 +281,7 @@ def _knob_value(madx: Madx, /, knob: str) -> float: Example: .. code-block:: python - >>> _knob_value(madx, knob="underfined_for_sure") - 0 + _knob_value(madx, knob="underfined_for_sure") # returns 0 """ try: return madx.globals[knob] diff --git a/pyhdtoolkit/cpymadtools/lhc/_routines.py b/pyhdtoolkit/cpymadtools/lhc/_routines.py index 018e764a..3828c9e7 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_routines.py +++ b/pyhdtoolkit/cpymadtools/lhc/_routines.py @@ -53,7 +53,7 @@ def do_kmodulation( .. code-block:: python - >>> tune_results = do_kmodulation(madx, ir=1, side="right", steps=100, stepsize=3e-8) + tune_results = do_kmodulation(madx, ir=1, side="right", steps=100, stepsize=3e-8) """ element = f"MQXA.1R{ir:d}" if side.lower() == "right" else f"MQXA.1L{ir:d}" powering_variable = f"KTQX1.R{ir:d}" if side.lower() == "right" else f"KTQX1.L{ir:d}" @@ -121,7 +121,7 @@ def correct_lhc_global_coupling( Example: .. code-block:: python - >>> correct_lhc_global_coupling(madx, sequence="lhcb1", telescopic_squeeze=True) + correct_lhc_global_coupling(madx, sequence="lhcb1", telescopic_squeeze=True) """ suffix = "_sq" if telescopic_squeeze else "" sequence = f"lhcb{beam:d}" @@ -169,7 +169,7 @@ def correct_lhc_orbit( Example: .. code-block:: python - >>> correct_lhc_orbit(madx, sequence="lhcb1", plane="y") + correct_lhc_orbit(madx, sequence="lhcb1", plane="y") """ logger.debug("Starting orbit correction") for default_kicker in ("kicker", "hkicker", "vkicker", "virtualcorrector"): diff --git a/pyhdtoolkit/cpymadtools/lhc/_setup.py b/pyhdtoolkit/cpymadtools/lhc/_setup.py index acfc4f77..0016fa6b 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_setup.py +++ b/pyhdtoolkit/cpymadtools/lhc/_setup.py @@ -56,9 +56,9 @@ def prepare_lhc_run2( Example: .. code-block:: python - >>> madx = prepare_lhc_run2( - ... "/afs/cern.ch/eng/lhc/optics/runII/2018/PROTON/opticsfile.22", beam=2, stdout=True - ... ) + madx = prepare_lhc_run2( + "/afs/cern.ch/eng/lhc/optics/runII/2018/PROTON/opticsfile.22", beam=2, stdout=True + ) """ if use_b4 and beam != 2: logger.error("Cannot use beam 4 sequence file for beam 1") @@ -132,9 +132,9 @@ def prepare_lhc_run3( Example: .. code-block:: python - >>> madx = prepare_lhc_run3( - ... "R2022a_A30cmC30cmA10mL200cm.madx", slicefactor=4, stdout=True - ... ) + madx = prepare_lhc_run3( + "R2022a_A30cmC30cmA10mL200cm.madx", slicefactor=4, stdout=True + ) """ if use_b4 and beam != 2: logger.error("Cannot use beam 4 sequence file for beam 1") @@ -215,15 +215,15 @@ class LHCSetup: .. code-block:: python - >>> with LHCSetup(run=2, opticsfile="2018/PROTON/opticsfile.22", beam=2) as madx: - ... # do some stuff + with LHCSetup(run=2, opticsfile="2018/PROTON/opticsfile.22", beam=2) as madx: + pass # do some stuff Get a Run 3 setup for beam 1, with a sliced sequence and muted output: .. code-block:: python - >>> with LHCSetup(run=3, opticsfile="R2022a_A30cmC30cmA10mL200cm.madx", slicefactor=4, stdout=False) as madx: - ... # do some stuff + with LHCSetup(run=3, opticsfile="R2022a_A30cmC30cmA10mL200cm.madx", slicefactor=4, stdout=False) as madx: + pass # do some stuff """ def __init__( @@ -291,14 +291,14 @@ def make_lhc_beams( .. code-block:: python - >>> make_lhc_beams(madx, energy=6800, emittance_x=2.5e-6, emittance_y=3e-6) + make_lhc_beams(madx, energy=6800, emittance_x=2.5e-6, emittance_y=3e-6) Setting up in a way compatible for tracking of beam 2 (needs to call ``lhcb4`` and set ``bv`` to 1): .. code-block:: python - >>> make_lhc_beams(madx, energy=6800, emittance_x=2.5e-6, emittance_y=3e-6, b4=True) + make_lhc_beams(madx, energy=6800, emittance_x=2.5e-6, emittance_y=3e-6, b4=True) """ logger.debug("Making default beams for 'lhcb1' and 'lhbc2' sequences") madx.globals["NRJ"] = energy @@ -345,7 +345,7 @@ def make_lhc_thin(madx: Madx, /, sequence: str, slicefactor: int = 1, **kwargs) Example: .. code-block:: python - >>> make_lhc_thin(madx, sequence="lhcb1", slicefactor=4) + make_lhc_thin(madx, sequence="lhcb1", slicefactor=4) """ logger.debug(f"Slicing sequence '{sequence}'") madx.select(flag="makethin", clear=True) @@ -401,7 +401,7 @@ def re_cycle_sequence(madx: Madx, /, sequence: str = "lhcb1", start: str = "IP3" Example: .. code-block:: python - >>> re_cycle_sequence(madx, sequence="lhcb1", start="MSIA.EXIT.B1") + re_cycle_sequence(madx, sequence="lhcb1", start="MSIA.EXIT.B1") """ logger.debug(f"Re-cycling sequence '{sequence}' from {start}") madx.command.seqedit(sequence=sequence) @@ -424,7 +424,7 @@ def lhc_orbit_variables() -> Tuple[List[str], Dict[str, str]]: Example: .. code-block:: python - >>> variables, specials = lhc_orbit_variables() + variables, specials = lhc_orbit_variables() """ logger.trace("Returning (HL)LHC orbit variables") on_variables = ( @@ -493,7 +493,7 @@ def setup_lhc_orbit(madx: Madx, /, scheme: str = "flat", **kwargs) -> Dict[str, Example: .. code-block:: python - >>> orbit_setup = setup_lhc_orbit(madx, scheme="lhc_top") + orbit_setup = setup_lhc_orbit(madx, scheme="lhc_top") """ if scheme not in LHC_CROSSING_SCHEMES.keys(): logger.error(f"Invalid scheme parameter, should be one of {LHC_CROSSING_SCHEMES.keys()}") diff --git a/pyhdtoolkit/cpymadtools/lhc/_twiss.py b/pyhdtoolkit/cpymadtools/lhc/_twiss.py index 88cf8384..672b333f 100644 --- a/pyhdtoolkit/cpymadtools/lhc/_twiss.py +++ b/pyhdtoolkit/cpymadtools/lhc/_twiss.py @@ -35,7 +35,7 @@ def get_ips_twiss(madx: Madx, /, columns: Sequence[str] = DEFAULT_TWISS_COLUMNS, Example: .. code-block:: python - >>> ips_df = get_ips_twiss(madx, chrom=True, ripken=True) + ips_df = get_ips_twiss(madx, chrom=True, ripken=True) """ logger.debug("Getting Twiss at IPs") return twiss.get_pattern_twiss(madx, columns=columns, patterns=["IP"], **kwargs) @@ -62,7 +62,7 @@ def get_ir_twiss(madx: Madx, /, ir: int, columns: Sequence[str] = DEFAULT_TWISS_ Example: .. code-block:: python - >>> ir_df = get_ir_twiss(madx, chrom=True, ripken=True) + ir_df = get_ir_twiss(madx, chrom=True, ripken=True) """ logger.debug(f"Getting Twiss for IR{ir:d}") return twiss.get_pattern_twiss( diff --git a/pyhdtoolkit/cpymadtools/matching.py b/pyhdtoolkit/cpymadtools/matching.py index db9a8ab0..3730af82 100644 --- a/pyhdtoolkit/cpymadtools/matching.py +++ b/pyhdtoolkit/cpymadtools/matching.py @@ -99,16 +99,16 @@ def match_tunes_and_chromaticities( .. code-block:: python - >>> matching.match_tunes_and_chromaticities( - ... madx, - ... None, # this is not LHC or HLLHC - ... sequence="CAS3", - ... q1_target=6.335, - ... q2_target=6.29, - ... dq1_target=100, - ... dq2_target=100, - ... varied_knobs=["kqf", "kqd", "ksf", "ksd"], - ... ) + matching.match_tunes_and_chromaticities( + madx, + None, # this is not LHC or HLLHC + sequence="CAS3", + q1_target=6.335, + q2_target=6.29, + dq1_target=100, + dq2_target=100, + varied_knobs=["kqf", "kqd", "ksf", "ksd"], + ) Note that since the ``accelerator`` and ``sequence`` arguments default to `None`, they can be omitted. In this case the sequence currently in use will be used for @@ -116,29 +116,29 @@ def match_tunes_and_chromaticities( .. code-block:: python - >>> matching.match_tunes_and_chromaticities( - ... madx, - ... q1_target=6.335, - ... q2_target=6.29, - ... dq1_target=100, - ... dq2_target=100, - ... varied_knobs=["kqf", "kqd", "ksf", "ksd"], - ... ) + matching.match_tunes_and_chromaticities( + madx, + q1_target=6.335, + q2_target=6.29, + dq1_target=100, + dq2_target=100, + varied_knobs=["kqf", "kqd", "ksf", "ksd"], + ) Matching the ``lhcb1`` sequence of the ``LHC`` lattice: .. code-block:: python - >>> matching.match_tunes_and_chromaticities( - ... madx, - ... "lhc", # will find the knobs automatically - ... sequence="lhcb1", - ... q1_target=62.31, - ... q2_target=60.32, - ... dq1_target=2.0, - ... dq2_target=2.0, - ... run3=True, # influences the knobs definition - ... ) + matching.match_tunes_and_chromaticities( + madx, + "lhc", # will find the knobs automatically + sequence="lhcb1", + q1_target=62.31, + q2_target=60.32, + dq1_target=2.0, + dq2_target=2.0, + run3=True, # influences the knobs definition + ) """ if accelerator and not varied_knobs: logger.trace(f"Getting knobs from default {accelerator.upper()} values") @@ -240,14 +240,14 @@ def match_tunes( .. code-block:: python - >>> matching.match_tunes( - ... madx, - ... None, # this is not LHC or HLLHC - ... sequence="CAS3", - ... q1_target=6.335, - ... q2_target=6.29, - ... varied_knobs=["kqf", "kqd"], # only tune knobs - ... ) + matching.match_tunes( + madx, + None, # this is not LHC or HLLHC + sequence="CAS3", + q1_target=6.335, + q2_target=6.29, + varied_knobs=["kqf", "kqd"], # only tune knobs + ) Note that since the ``accelerator`` and ``sequence`` arguments default to `None`, they can be omitted. In this case the sequence currently in use will be used for @@ -255,24 +255,24 @@ def match_tunes( .. code-block:: python - >>> matching.match_tunes_and_chromaticities( - ... madx, - ... q1_target=6.335, - ... q2_target=6.29, - ... varied_knobs=["kqf", "kqd"], # only tune knobs - ... ) + matching.match_tunes_and_chromaticities( + madx, + q1_target=6.335, + q2_target=6.29, + varied_knobs=["kqf", "kqd"], # only tune knobs + ) Matching the LHC lattice: .. code-block:: python - >>> matching.match_tunes( - ... madx, - ... "lhc", # will find the knobs automatically - ... sequence="lhcb1", - ... q1_target=62.31, - ... q2_target=60.32, - ... ) + matching.match_tunes( + madx, + "lhc", # will find the knobs automatically + sequence="lhcb1", + q1_target=62.31, + q2_target=60.32, + ) """ match_tunes_and_chromaticities( madx, @@ -342,14 +342,14 @@ def match_chromaticities( .. code-block:: python - >>> matching.match_chromaticities( - ... madx, - ... None, # this is not LHC or HLLHC - ... sequence="CAS3", - ... dq1_target=100, - ... dq2_target=100, - ... varied_knobs=["ksf", "ksd"], # only chroma knobs - ... ) + matching.match_chromaticities( + madx, + None, # this is not LHC or HLLHC + sequence="CAS3", + dq1_target=100, + dq2_target=100, + varied_knobs=["ksf", "ksd"], # only chroma knobs + ) Note that since the ``accelerator`` and ``sequence`` arguments default to `None`, they can be omitted. In this case the sequence currently in use will be used for @@ -357,24 +357,24 @@ def match_chromaticities( .. code-block:: python - >>> matching.match_tunes_and_chromaticities( - ... madx, - ... dq1_target=100, - ... dq2_target=100, - ... varied_knobs=["ksf", "ksd"], # only chroma knobs - ... ) + matching.match_tunes_and_chromaticities( + madx, + dq1_target=100, + dq2_target=100, + varied_knobs=["ksf", "ksd"], # only chroma knobs + ) Matching the LHC lattice: .. code-block:: python - >>> matching.match_chromaticities( - ... madx, - ... "lhc", # will find the knobs automatically - ... sequence="lhcb1", - ... dq1_target=2.0, - ... dq2_target=2.0, - ... ) + matching.match_chromaticities( + madx, + "lhc", # will find the knobs automatically + sequence="lhcb1", + dq1_target=2.0, + dq2_target=2.0, + ) """ match_tunes_and_chromaticities( madx, diff --git a/pyhdtoolkit/cpymadtools/parameters.py b/pyhdtoolkit/cpymadtools/parameters.py index 077566bb..3181a6f5 100644 --- a/pyhdtoolkit/cpymadtools/parameters.py +++ b/pyhdtoolkit/cpymadtools/parameters.py @@ -34,7 +34,7 @@ def query_beam_attributes(madx: Madx, /) -> MADXBeam: Example: .. code-block:: python - >>> beam_parameters = query_beam_attributes(madx) + beam_parameters = query_beam_attributes(madx) """ logger.debug("Retrieving BEAM attributes from the MAD-X process") return MADXBeam(**dict(madx.beam)) diff --git a/pyhdtoolkit/cpymadtools/ptc.py b/pyhdtoolkit/cpymadtools/ptc.py index 65dcb379..afc4fa44 100644 --- a/pyhdtoolkit/cpymadtools/ptc.py +++ b/pyhdtoolkit/cpymadtools/ptc.py @@ -66,16 +66,16 @@ def get_amplitude_detuning( Example: .. code-block:: python - >>> ampdet_coeffs = get_amplitude_detuning(madx, order=2, closedorbit=True) + ampdet_coeffs = get_amplitude_detuning(madx, order=2, closedorbit=True) One can also specify parameters for the ``PTC`` universe and the ``PTC_NORMAL`` command: .. code-block:: python - >>> tracks_dict = get_amplitude_detuning( - ... madx, order=3, model=3, exact=True, icase=5, no=6 - ... ) + tracks_dict = get_amplitude_detuning( + madx, order=3, model=3, exact=True, icase=5, no=6 + ) """ if order >= 3: logger.error(f"Maximum amplitude detuning order in PTC is 2, but {order:d} was requested") @@ -191,16 +191,16 @@ def get_rdts( Example: .. code-block:: python - >>> rdts_df = get_rdts(madx, order=3, fringe=True) + rdts_df = get_rdts(madx, order=3, fringe=True) One can also specify parameters for the ``PTC`` universe and the ``PTC_TWISS`` command: .. code-block:: python - >>> tracks_dict = get_rdts( - ... madx, order=3, model=3, method=6, nst=3, exact=True, icase=5 - ... ) + tracks_dict = get_rdts( + madx, order=3, model=3, method=6, nst=3, exact=True, icase=5 + ) """ logger.debug("Looking for PTC universe parameters in keyword arguments") model = kwargs.pop("model", 3) @@ -294,16 +294,16 @@ def ptc_twiss( Example: .. code-block:: python - >>> twiss_ptc_df = ptc_twiss(madx, order=3) + twiss_ptc_df = ptc_twiss(madx, order=3) One can also specify parameters for the ``PTC`` universe and the ``PTC_TWISS`` command: .. code-block:: python - >>> tracks_dict = ptc_twiss( - ... madx, order=3, model=3, method=6, nst=3, exact=True, icase=5 - ... ) + tracks_dict = ptc_twiss( + madx, order=3, model=3, method=6, nst=3, exact=True, icase=5 + ) """ logger.debug("Looking for PTC universe parameters in keyword arguments") model = kwargs.pop("model", 3) @@ -417,18 +417,18 @@ def ptc_track_particle( Example: .. code-block:: python - >>> tracks_dict = ptc_track_particle( - ... madx, nturns=1023, initial_coordinates=(2e-4, 0, 1e-4, 0, 0, 0) - ... ) + tracks_dict = ptc_track_particle( + madx, nturns=1023, initial_coordinates=(2e-4, 0, 1e-4, 0, 0, 0) + ) One can also specify parameters for the ``PTC`` universe: .. code-block:: python - >>> tracks_dict = ptc_track_particle( - ... madx, nturns=10, initial_coordinates=(2e-4, 0, 1e-4, 0, 0, 0), - ... model=3, method=6, nst=3, exact=True - ... ) + tracks_dict = ptc_track_particle( + madx, nturns=10, initial_coordinates=(2e-4, 0, 1e-4, 0, 0, 0), + model=3, method=6, nst=3, exact=True + ) """ logger.debug("Performing single particle PTC (thick) tracking") start = initial_coordinates if initial_coordinates else [0, 0, 0, 0, 0, 0] diff --git a/pyhdtoolkit/cpymadtools/track.py b/pyhdtoolkit/cpymadtools/track.py index 846df18a..aeca5769 100644 --- a/pyhdtoolkit/cpymadtools/track.py +++ b/pyhdtoolkit/cpymadtools/track.py @@ -67,9 +67,9 @@ def track_single_particle( Example: .. code-block:: python - >>> tracks_dict = track_single_particle( - ... madx, nturns=1023, initial_coordinates=(2e-4, 0, 1e-4, 0, 0, 0) - ... ) + tracks_dict = track_single_particle( + madx, nturns=1023, initial_coordinates=(2e-4, 0, 1e-4, 0, 0, 0) + ) """ logger.debug("Performing single particle MAD-X (thin) tracking") onetable = kwargs.get("onetable", False) if "onetable" in kwargs else kwargs.get("ONETABLE", False) diff --git a/pyhdtoolkit/cpymadtools/tune.py b/pyhdtoolkit/cpymadtools/tune.py index fd0af11a..018052d0 100644 --- a/pyhdtoolkit/cpymadtools/tune.py +++ b/pyhdtoolkit/cpymadtools/tune.py @@ -52,7 +52,7 @@ def make_footprint_table( Example: .. code-block:: python - >>> dynap_dframe = make_footprint_table(madx) + dynap_dframe = make_footprint_table(madx) """ logger.debug(f"Initiating particules up to {sigma:d} bunch sigma to create a tune footprint table") small, big = 0.05, math.sqrt(1 - 0.05**2) @@ -140,9 +140,9 @@ def get_footprint_lines(dynap_dframe: tfs.TfsDataFrame) -> Tuple[np.ndarray, np. Example: .. code-block:: python - >>> dynap_tfs = make_footprint_table(madx) - >>> qxs, qys = get_footprint_lines(dynap_tfs) - >>> plt.plot(qxs, qys, "o--", label="Tune Footprint from DYNAP Table") + dynap_tfs = make_footprint_table(madx) + qxs, qys = get_footprint_lines(dynap_tfs) + plt.plot(qxs, qys, "o--", label="Tune Footprint from DYNAP Table") """ logger.debug("Determining footprint plottable") logger.debug("Retrieving AMPLITUDE, ANGLE and DSIGMA data from TfsDataFrame headers") @@ -182,10 +182,10 @@ def get_footprint_patches(dynap_dframe: tfs.TfsDataFrame) -> matplotlib.collecti Example: .. code-block:: python - >>> fig, axis = plt.subplots() - >>> dynap_tfs = make_footprint_table(madx) - >>> footprint_polygons = get_footprint_patches(dynap_tfs) - >>> axis.add_collection(footprint_polygons) + fig, axis = plt.subplots() + dynap_tfs = make_footprint_table(madx) + footprint_polygons = get_footprint_patches(dynap_tfs) + axis.add_collection(footprint_polygons) """ logger.debug("Determining footprint polygons") angle = dynap_dframe.headers["ANGLE"] diff --git a/pyhdtoolkit/cpymadtools/twiss.py b/pyhdtoolkit/cpymadtools/twiss.py index 90685af8..17754428 100644 --- a/pyhdtoolkit/cpymadtools/twiss.py +++ b/pyhdtoolkit/cpymadtools/twiss.py @@ -61,20 +61,20 @@ def get_pattern_twiss( .. code-block:: python - >>> ips_df = get_pattern_twiss(madx=madx, patterns=["IP"]) + ips_df = get_pattern_twiss(madx=madx, patterns=["IP"]) To get (HL)LHC IR1 triplets: .. code-block:: python - >>> triplets_df = get_pattern_twiss( - ... madx=madx, - ... patterns=[ - ... r"MQXA.[12345][RL]1", # Q1 and Q3 LHC - ... r"MQXB.[AB][12345][RL]1", # Q2A and Q2B LHC - ... r"MQXF[AB].[AB][12345][RL]1", # Q1 to Q3 A and B HL-LHC - ... ], - ... ) + triplets_df = get_pattern_twiss( + madx=madx, + patterns=[ + r"MQXA.[12345][RL]1", # Q1 and Q3 LHC + r"MQXB.[AB][12345][RL]1", # Q2A and Q2B LHC + r"MQXF[AB].[AB][12345][RL]1", # Q1 to Q3 A and B HL-LHC + ], + ) """ columns = columns or DEFAULT_TWISS_COLUMNS logger.trace("Clearing 'TWISS' flag") @@ -117,7 +117,7 @@ def get_twiss_tfs(madx: Madx, /, **kwargs) -> tfs.TfsDataFrame: Example: .. code-block:: python - >>> twiss_df = get_twiss_tfs(madx, chrom=True, ripken=True) + twiss_df = get_twiss_tfs(madx, chrom=True, ripken=True) """ logger.trace("Clearing 'TWISS' flag") madx.select(flag="twiss", clear=True) diff --git a/pyhdtoolkit/cpymadtools/utils.py b/pyhdtoolkit/cpymadtools/utils.py index 690230f5..98198518 100644 --- a/pyhdtoolkit/cpymadtools/utils.py +++ b/pyhdtoolkit/cpymadtools/utils.py @@ -50,8 +50,8 @@ def export_madx_table( Example: .. code-block:: python - >>> madx.command.twiss() - >>> export_madx_table(madx, table_name="TWISS", file_name="twiss.tfs") + madx.command.twiss() + export_madx_table(madx, table_name="TWISS", file_name="twiss.tfs") """ file_path = Path(file_name) logger.debug(f"Exporting table {table_name} into '{file_path.absolute()}'") @@ -88,7 +88,7 @@ def get_table_tfs(madx: Madx, /, table_name: str, headers_table: str = "SUMM") - Examples: .. code-block:: python - >>> twiss_tfs = get_table_tfs(madx, table_name="TWISS") + twiss_tfs = get_table_tfs(madx, table_name="TWISS") """ logger.debug(f"Extracting table {table_name} into a TfsDataFrame") # Converting to dict and then DataFrame because the madx.table.name.dframe() diff --git a/pyhdtoolkit/maths/nonconvex_phase_sync.py b/pyhdtoolkit/maths/nonconvex_phase_sync.py index 37038cf9..0930d8fe 100644 --- a/pyhdtoolkit/maths/nonconvex_phase_sync.py +++ b/pyhdtoolkit/maths/nonconvex_phase_sync.py @@ -76,17 +76,17 @@ class PhaseReconstructor: Example: .. code-block:: python - >>> real_noised_measurements = np.ndarray(...) - >>> C_herm = np.exp(1j * np.deg2rad(RealNoisedMeas)) - >>> pr = PhaseReconstructor(C_herm) - >>> complex_eigenvector_method_result = pr.get_eigenvector_estimator( - ... pr.leading_eigenvector - ... ) - >>> reconstructed = np.abs( - ... pr.convert_complex_result_to_phase_values( - ... complex_eigenvector_method_result, deg=True - ... ) - ... ).reshape(n_observation_points) + real_noised_measurements = np.ndarray(...) + C_herm = np.exp(1j * np.deg2rad(RealNoisedMeas)) + pr = PhaseReconstructor(C_herm) + complex_eigenvector_method_result = pr.get_eigenvector_estimator( + pr.leading_eigenvector + ) + reconstructed = np.abs( + pr.convert_complex_result_to_phase_values( + complex_eigenvector_method_result, deg=True + ) + ).reshape(n_observation_points) """ __slots__ = { diff --git a/pyhdtoolkit/maths/stats_fitting.py b/pyhdtoolkit/maths/stats_fitting.py index 6f68c3cd..6d909378 100644 --- a/pyhdtoolkit/maths/stats_fitting.py +++ b/pyhdtoolkit/maths/stats_fitting.py @@ -48,9 +48,9 @@ def set_distributions_dict(dist_dict: Dict[st.rv_continuous, str]) -> None: Example: .. code-block:: python - >>> import scipy.stats as st - >>> tested_dists = {st.chi: "Chi", st.expon: "Exponential", st.laplace: "Laplace"} - >>> set_distributions_dict(tested_dists) + import scipy.stats as st + tested_dists = {st.chi: "Chi", st.expon: "Exponential", st.laplace: "Laplace"} + set_distributions_dict(tested_dists) """ # pylint: disable=global-statement logger.debug("Setting tested distributions") @@ -82,7 +82,7 @@ def best_fit_distribution( Example: .. code-block:: python - >>> best_fit_func, best_fit_params = best_fit_distribution(data, 200, axis) + best_fit_func, best_fit_params = best_fit_distribution(data, 200, axis) """ # pylint: disable=too-many-locals logger.debug(f"Getting histogram of original data, in {bins} bins") @@ -146,8 +146,8 @@ def make_pdf(distribution: st.rv_continuous, params: Tuple[float, ...], size: in Example: .. code-block:: python - >>> best_fit_func, best_fit_params = best_fit_distribution(data, 200, axis) - >>> pdf = fitting.make_pdf(best_fit_func, best_fit_params) + best_fit_func, best_fit_params = best_fit_distribution(data, 200, axis) + pdf = fitting.make_pdf(best_fit_func, best_fit_params) """ # Separate parts of parameters *args, loc, scale = params diff --git a/pyhdtoolkit/maths/utils.py b/pyhdtoolkit/maths/utils.py index 58d5f99c..b3cb9841 100644 --- a/pyhdtoolkit/maths/utils.py +++ b/pyhdtoolkit/maths/utils.py @@ -33,18 +33,18 @@ def get_magnitude(value: float) -> int: Examples: .. code-block:: python - >>> get_magnitude(10) - 1 + get_magnitude(10) + # returns 1 .. code-block:: python - >>> get_magnitude(0.0311) - -2 + get_magnitude(0.0311) + # returns -2 .. code-block:: python - >>> get_magnitude(1e-7) - -7 + get_magnitude(1e-7) + # returns -7 """ return int(np.floor(np.log10(np.abs(value)))) @@ -70,10 +70,10 @@ def get_scaled_values_and_magnitude_string( Example: .. code-block:: python - >>> import numpy as np - >>> q = np.array([-330, 230, 430, -720, 750, -110, 410, -340, -950, -630]) - >>> get_scaled_values_and_magnitude_string(q) - (array([-3.3, 2.3, 4.3, -7.2, 7.5, -1.1, 4.1, -3.4, -9.5, -6.3]), '{-2}') + import numpy as np + q = np.array([-330, 230, 430, -720, 750, -110, 410, -340, -950, -630]) + get_scaled_values_and_magnitude_string(q) + # returns (array([-3.3, 2.3, 4.3, -7.2, 7.5, -1.1, 4.1, -3.4, -9.5, -6.3]), '{-2}') """ magnitude = get_magnitude(max(values_array)) if force_magnitude is None else force_magnitude applied_magnitude = -magnitude diff --git a/pyhdtoolkit/optics/beam.py b/pyhdtoolkit/optics/beam.py index 94577361..cb789a11 100644 --- a/pyhdtoolkit/optics/beam.py +++ b/pyhdtoolkit/optics/beam.py @@ -33,20 +33,20 @@ def compute_beam_parameters(pc_gev: float, en_x_m: float, en_y_m: float, deltap_ Example: .. code-block:: python - >>> params = compute_beam_parameters(1.9, 5e-6, 5e-6, 2e-3) - >>> print(params) - Beam Parameters for particle of charge 1 - Beam momentum = 1.900 GeV/c - Normalized x-emittance = 5.000 mm mrad - Normalized y-emittance = 5.000 mm mrad - Momentum deviation deltap/p = 0.002 - -> Beam total energy = 2.119 GeV - -> Beam kinetic energy = 1.181 GeV - -> Beam rigidity = 6.333 Tm - -> Relativistic beta = 0.89663 - -> Relativistic gamma = 2.258 - -> Geometrical x emittance = 2.469 mm mrad - -> Geometrical y emittance = 2.469 mm mrad + params = compute_beam_parameters(1.9, 5e-6, 5e-6, 2e-3) + print(params) + # Beam Parameters for particle of charge 1 + # Beam momentum = 1.900 GeV/c + # Normalized x-emittance = 5.000 mm mrad + # Normalized y-emittance = 5.000 mm mrad + # Momentum deviation deltap/p = 0.002 + # -> Beam total energy = 2.119 GeV + # -> Beam kinetic energy = 1.181 GeV + # -> Beam rigidity = 6.333 Tm + # -> Relativistic beta = 0.89663 + # -> Relativistic gamma = 2.258 + # -> Geometrical x emittance = 2.469 mm mrad + # -> Geometrical y emittance = 2.469 mm mrad """ e0_gev = 0.9382720813 e_tot_gev = np.sqrt(pc_gev**2 + e0_gev**2) diff --git a/pyhdtoolkit/optics/ripken.py b/pyhdtoolkit/optics/ripken.py index 2ac15f05..2384cd58 100644 --- a/pyhdtoolkit/optics/ripken.py +++ b/pyhdtoolkit/optics/ripken.py @@ -43,15 +43,15 @@ def lebedev_beam_size( Example: .. code-block:: python - >>> geom_emit_x = madx.globals["geometric_emit_x"] - >>> geom_emit_y = madx.globals["geometric_emit_y"] - >>> twiss_tfs = madx.twiss(ripken=True).dframe() - >>> horizontal_size = lebedev_beam_size( - twiss_tfs.beta11, twiss_tfs.beta21, geom_emit_x, geom_emit_y - ) - >>> vertical_size = lebedev_beam_size( - twiss_tfs.beta12, twiss_tfs.beta22, geom_emit_x, geom_emit_y - ) + geom_emit_x = madx.globals["geometric_emit_x"] + geom_emit_y = madx.globals["geometric_emit_y"] + twiss_tfs = madx.twiss(ripken=True).dframe() + horizontal_size = lebedev_beam_size( + twiss_tfs.beta11, twiss_tfs.beta21, geom_emit_x, geom_emit_y + ) + vertical_size = lebedev_beam_size( + twiss_tfs.beta12, twiss_tfs.beta22, geom_emit_x, geom_emit_y + ) """ logger.trace("Computing beam size according to Lebedev formula: sqrt(epsx * b1_^2 + epsy * b2_^2)") return np.sqrt(geom_emit_x * beta1_ + geom_emit_y * beta2_) diff --git a/pyhdtoolkit/optics/twiss.py b/pyhdtoolkit/optics/twiss.py index 6418d6fe..59b7c473 100644 --- a/pyhdtoolkit/optics/twiss.py +++ b/pyhdtoolkit/optics/twiss.py @@ -37,10 +37,10 @@ def courant_snyder_transform(u_vector: np.ndarray, alpha: float, beta: float) -> Example: .. code-block:: python - >>> alfx = madx.table.twiss.alfx[0] - >>> betx = madx.table.twiss.betx[0] - >>> u = np.array([x_coords, px_coord]) - >>> u_bar = courant_snyder_transform(u, alfx, betx) + alfx = madx.table.twiss.alfx[0] + betx = madx.table.twiss.betx[0] + u = np.array([x_coords, px_coord]) + u_bar = courant_snyder_transform(u, alfx, betx) """ p_matrix = np.array([[1 / np.sqrt(beta), 0], [alpha / np.sqrt(beta), np.sqrt(beta)]]) return p_matrix @ u_vector diff --git a/pyhdtoolkit/plotting/aperture.py b/pyhdtoolkit/plotting/aperture.py index fcc85875..ff94253d 100644 --- a/pyhdtoolkit/plotting/aperture.py +++ b/pyhdtoolkit/plotting/aperture.py @@ -124,14 +124,14 @@ def plot_aperture( Example: .. code-block:: python - >>> plt.figure(figsize=(16, 11)) - >>> plot_aperture( - ... madx, plot_bpms=True, - ... aperture_ylim=(0, 20), - ... k0l_lim=(-4e-4, 4e-4), - ... k1l_lim=(-0.08, 0.08), - ... color="darkslateblue", - ... ) + plt.figure(figsize=(16, 11)) + plot_aperture( + madx, plot_bpms=True, + aperture_ylim=(0, 20), + k0l_lim=(-4e-4, 4e-4), + k1l_lim=(-0.08, 0.08), + color="darkslateblue", + ) """ # pylint: disable=too-many-arguments logger.debug("Plotting aperture limits and machine layout") @@ -239,18 +239,18 @@ def plot_physical_apertures( Examples: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(10, 9)) - >>> plot_physical_apertures(madx, "x") - >>> plt.show() + fig, ax = plt.subplots(figsize=(10, 9)) + plot_physical_apertures(madx, "x") + plt.show() In order to do the same plot but have all values in millimeters: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(10, 9)) - >>> plot_physical_apertures(madx, "x", scale=1e3) - >>> plt.setp(ax, xlabel="S [m]", ylabel="X [mm]") - >>> plt.show() + fig, ax = plt.subplots(figsize=(10, 9)) + plot_physical_apertures(madx, "x", scale=1e3) + plt.setp(ax, xlabel="S [m]", ylabel="X [mm]") + plt.show() """ # pylint: disable=too-many-arguments if plane.lower() not in ("x", "y", "horizontal", "vertical"): diff --git a/pyhdtoolkit/plotting/crossing.py b/pyhdtoolkit/plotting/crossing.py index e55d1ed6..ff7c3305 100644 --- a/pyhdtoolkit/plotting/crossing.py +++ b/pyhdtoolkit/plotting/crossing.py @@ -57,13 +57,13 @@ def plot_two_lhc_ips_crossings( Examples: .. code-block:: python - >>> plt.figure(figsize=(18, 12)) - >>> plot_two_lhc_ips_crossings(madx, first_ip=1, second_ip=5) + plt.figure(figsize=(18, 12)) + plot_two_lhc_ips_crossings(madx, first_ip=1, second_ip=5) .. code-block:: python - >>> plt.figure(figsize=(16, 11)) - >>> plot_two_lhc_ips_crossings(madx, first_ip=2, second_ip=8, highlight_mqx_and_mbx=False) + plt.figure(figsize=(16, 11)) + plot_two_lhc_ips_crossings(madx, first_ip=2, second_ip=8, highlight_mqx_and_mbx=False) """ logger.warning("You should re-call the 'USE' command on your wanted sequence after this plot!") # ----- Getting Twiss table dframe for each beam ----- # @@ -170,9 +170,9 @@ def plot_single_ir_crossing( Example: .. code-block:: python - >>> plot_single_ir_crossing( - ... plt.gca(), b1_df, b2_df, plot_column="x", scaling=1e3, ylabel="Orbit X $[mm]$" - ... ) + plot_single_ir_crossing( + plt.gca(), b1_df, b2_df, plot_column="x", scaling=1e3, ylabel="Orbit X $[mm]$" + ) """ logger.trace(f"Plotting orbit '{plot_column}'") axis.plot(plot_df_b1.s, plot_df_b1[plot_column] * scaling, "bo", ls="-", mfc="none", alpha=0.8, label="Beam 1") diff --git a/pyhdtoolkit/plotting/envelope.py b/pyhdtoolkit/plotting/envelope.py index d94b8982..227afbf0 100644 --- a/pyhdtoolkit/plotting/envelope.py +++ b/pyhdtoolkit/plotting/envelope.py @@ -45,7 +45,7 @@ def plot_beam_envelope( `horizontal`, `y` or `vertical`, and is case-insensitive. nsigma (float): the standard deviation to use for the beam enveloppe calculation. A value of 3 will draw the 3 sigma beam enveloppe. - Defaults to 1. + Defaults to 1. scale (float): a scaling factor to apply to the beam orbit and beam enveloppe, for the user to adjust to their wanted scale. Defaults to 1 (values in [m]). @@ -69,18 +69,18 @@ def plot_beam_envelope( Examples: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(10, 9)) - >>> plot_beam_envelope(madx, "lhcb1", "x", nsigma=3) - >>> plt.show() + fig, ax = plt.subplots(figsize=(10, 9)) + plot_beam_envelope(madx, "lhcb1", "x", nsigma=3) + plt.show() In order to do the same plot but have all values in millimeters: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(10, 9)) - >>> plot_beam_envelope(madx, "lhcb1", "x", nsigma=3, scale=1e3) - >>> plt.setp(ax, xlabel="S [m]", ylabel="X [mm]") - >>> plt.show() + fig, ax = plt.subplots(figsize=(10, 9)) + plot_beam_envelope(madx, "lhcb1", "x", nsigma=3, scale=1e3) + plt.setp(ax, xlabel="S [m]", ylabel="X [mm]") + plt.show() """ # pylint: disable=too-many-arguments if plane.lower() not in ("x", "y", "horizontal", "vertical"): diff --git a/pyhdtoolkit/plotting/lattice.py b/pyhdtoolkit/plotting/lattice.py index ae80977c..adde3544 100644 --- a/pyhdtoolkit/plotting/lattice.py +++ b/pyhdtoolkit/plotting/lattice.py @@ -113,31 +113,31 @@ def plot_latwiss( Example: .. code-block:: python - >>> title = "Machine Layout" - >>> plt.figure(figsize=(16, 11)) - >>> plot_latwiss( - ... madx, - ... title=title, - ... k0l_lim=(-0.15, 0.15), - ... k1l_lim=(-0.08, 0.08), - ... disp_ylim=(-10, 125), - ... lw=3, - ... ) + title = "Machine Layout" + plt.figure(figsize=(16, 11)) + plot_latwiss( + madx, + title=title, + k0l_lim=(-0.15, 0.15), + k1l_lim=(-0.08, 0.08), + disp_ylim=(-10, 125), + lw=3, + ) One can provide ylimits for the machine layout patches as single values: .. code-block:: python - >>> title = "Machine Layout" - >>> plt.figure(figsize=(16, 11)) - >>> plot_latwiss( - ... madx, - ... title=title, - ... k0l_lim=0.15, # identical to k0l_lim=(-0.15, 0.15) - ... k1l_lim=0.08, # identical to k1l_lim=(-0.08, 0.08) - ... disp_ylim=(-10, 125), - ... lw=3, - ... ) + title = "Machine Layout" + plt.figure(figsize=(16, 11)) + plot_latwiss( + madx, + title=title, + k0l_lim=0.15, # identical to k0l_lim=(-0.15, 0.15) + k1l_lim=0.08, # identical to k1l_lim=(-0.08, 0.08) + disp_ylim=(-10, 125), + lw=3, + ) """ # pylint: disable=too-many-arguments # Restrict the span of twiss_df to avoid plotting all elements then cropping when xlimits is given @@ -231,10 +231,10 @@ def plot_machine_survey( Example: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(6, 6)) - >>> plot_machine_survey( - ... madx, title="Machine Survey", show_elements=True, high_orders=True - ... ) + fig, ax = plt.subplots(figsize=(6, 6)) + plot_machine_survey( + madx, title="Machine Survey", show_elements=True, high_orders=True + ) """ logger.debug("Plotting machine survey") logger.trace("Getting machine survey from cpymad") diff --git a/pyhdtoolkit/plotting/layout.py b/pyhdtoolkit/plotting/layout.py index aa036658..376a3239 100644 --- a/pyhdtoolkit/plotting/layout.py +++ b/pyhdtoolkit/plotting/layout.py @@ -76,9 +76,9 @@ def plot_machine_layout( Defaults to `None`. xoffset (float): An offset applied to the ``S`` coordinate before plotting. This is useful if you want to center a plot around a - specific point or element, which would then become located - at :math:`s = 0`. Beware this offset is applied before applying - the *xlimits*. Defaults to 0. + specific point or element, which would then become located at + the :math:`s = 0` position. Beware this offset is applied before + applying the *xlimits*. Defaults to 0. xlimits (Tuple[float, float]): will implement xlim (for the ``s`` coordinate) if this is not ``None``, using the tuple passed. plot_dipoles (bool): if `True`, dipole patches will be plotted on @@ -131,8 +131,8 @@ def plot_machine_layout( Example: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(6, 2)) - >>> plot_machine_layout(madx, title="Machine Elements", lw=3) + fig, ax = plt.subplots(figsize=(6, 2)) + plot_machine_layout(madx, title="Machine Elements", lw=3) """ # pylint: disable=too-many-arguments axis, kwargs = maybe_get_ax(**kwargs) @@ -342,9 +342,9 @@ def scale_patches(scale: float, ylabel: str, **kwargs) -> None: Example: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(6, 2)) - >>> plot_machine_layout(madx, title="Machine Elements", lw=3) - >>> scale_patches(ax=fig.axes[0], scale=100, ylabel=r"$K_{1}L$ $[10^{-2} m^{-1}]$") + fig, ax = plt.subplots(figsize=(6, 2)) + plot_machine_layout(madx, title="Machine Elements", lw=3) + scale_patches(ax=fig.axes[0], scale=100, ylabel=r"$K_{1}L$ $[10^{-2} m^{-1}]$") """ axis, kwargs = maybe_get_ax(**kwargs) axis.set_ylabel(ylabel) diff --git a/pyhdtoolkit/plotting/phasespace.py b/pyhdtoolkit/plotting/phasespace.py index 6f47634e..e387b046 100644 --- a/pyhdtoolkit/plotting/phasespace.py +++ b/pyhdtoolkit/plotting/phasespace.py @@ -57,8 +57,8 @@ def plot_courant_snyder_phase_space( Example: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(10, 9)) - >>> plot_courant_snyder_phase_space(madx, x_coords, px_coords, plane="Horizontal") + fig, ax = plt.subplots(figsize=(10, 9)) + plot_courant_snyder_phase_space(madx, x_coords, px_coords, plane="Horizontal") """ if plane.lower() not in ("horizontal", "vertical"): logger.error(f"Plane should be either Horizontal or Vertical but '{plane}' was given") @@ -127,8 +127,8 @@ def plot_courant_snyder_phase_space_colored( Example: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(10, 9)) - >>> plot_courant_snyder_phase_space_colored(madx, x_coords, px_coords, plane="Horizontal") + fig, ax = plt.subplots(figsize=(10, 9)) + plot_courant_snyder_phase_space_colored(madx, x_coords, px_coords, plane="Horizontal") """ if plane.upper() not in ("HORIZONTAL", "VERTICAL"): logger.error(f"Plane should be either horizontal or vertical but '{plane}' was given") diff --git a/pyhdtoolkit/plotting/sbs/coupling.py b/pyhdtoolkit/plotting/sbs/coupling.py index bd11d771..01d1ea72 100644 --- a/pyhdtoolkit/plotting/sbs/coupling.py +++ b/pyhdtoolkit/plotting/sbs/coupling.py @@ -60,16 +60,16 @@ def plot_rdt_component( Example: .. code-block:: python - >>> fig = plot_rdt_component( - ... b1_segment_df=tfs.read("B1/sbscouple_IP1.out"), - ... b2_segment_df=tfs.read("B2/sbscouple_IP1.out"), - ... b1_model=b1_model_tfs, - ... b2_model=b2_model_tfs, - ... ip=1, - ... figsize=(8, 8), - ... b1_ylabel=r"$\mathrm{Beam\ 1}$ $|f_{1001}|$", - ... b2_ylabel=r"$\mathrm{Beam\ 2}$ $|f_{1001}|$", - ... ) + fig = plot_rdt_component( + b1_segment_df=tfs.read("B1/sbscouple_IP1.out"), + b2_segment_df=tfs.read("B2/sbscouple_IP1.out"), + b1_model=b1_model_tfs, + b2_model=b2_model_tfs, + ip=1, + figsize=(8, 8), + b1_ylabel=r"$\mathrm{Beam\ 1}$ $|f_{1001}|$", + b2_ylabel=r"$\mathrm{Beam\ 2}$ $|f_{1001}|$", + ) """ logger.debug(f"Plotting the {component.upper()} component of {rdt.upper()} for both beams over the segment.") b1_ylabel = kwargs.pop("b1_ylabel", None) @@ -142,17 +142,17 @@ def plot_full_ip_rdt( Example: .. code-block:: python - >>> fig = plot_full_ip_rdt( - ... couple_b1_tfs, - ... couple_b2_tfs, - ... b1_model_tfs, - ... b2_model_tfs, - ... ip=1, - ... figsize=(18, 9), - ... abs_ylimits=(5e-3, 6.5e-2), - ... real_ylimits=(-1e-1, 1e-1), - ... imag_ylimits=(-1e-1, 1e-1), - ... ) + fig = plot_full_ip_rdt( + couple_b1_tfs, + couple_b2_tfs, + b1_model_tfs, + b2_model_tfs, + ip=1, + figsize=(18, 9), + abs_ylimits=(5e-3, 6.5e-2), + real_ylimits=(-1e-1, 1e-1), + imag_ylimits=(-1e-1, 1e-1), + ) """ legend_bbox_to_anchor = kwargs.pop("bbox_to_anchor", (0.52, 0.93)) fig, ((abs_b1, abs_b2), (real_b1, real_b2), (imag_b1, imag_b2)) = plt.subplots( diff --git a/pyhdtoolkit/plotting/sbs/phase.py b/pyhdtoolkit/plotting/sbs/phase.py index 50b74726..44ce8e6d 100644 --- a/pyhdtoolkit/plotting/sbs/phase.py +++ b/pyhdtoolkit/plotting/sbs/phase.py @@ -48,9 +48,9 @@ def plot_phase_segment_one_beam( Example: .. code-block:: python - >>> fig = plot_phase_segment_one_beam( - ... sbs_phasex, sbs_phasey, model=b2_model_tfs, ip=5, figsize=(8, 8) - ... ) + fig = plot_phase_segment_one_beam( + sbs_phasex, sbs_phasey, model=b2_model_tfs, ip=5, figsize=(8, 8) + ) """ logger.debug("Plotting the phase for both planes over the segment.") # legend_bbox_to_anchor = kwargs.pop("bbox_to_anchor", (0.535, 0.97)) @@ -106,17 +106,17 @@ def plot_phase_segment_both_beams( Example: .. code-block:: python - >>> fig = plot_phase_segment_both_beams( - ... phasex_b1_tfs, - ... phasey_b1_tfs, - ... phasex_b2_tfs, - ... phasey_b2_tfs, - ... b1_model_tfs, - ... b2_model_tfs, - ... ip=1, - ... figsize=(18, 9), - ... bbox_to_anchor=(0.535, 0.94), - ... ) + fig = plot_phase_segment_both_beams( + phasex_b1_tfs, + phasey_b1_tfs, + phasex_b2_tfs, + phasey_b2_tfs, + b1_model_tfs, + b2_model_tfs, + ip=1, + figsize=(18, 9), + bbox_to_anchor=(0.535, 0.94), + ) """ logger.debug("Plotting the phase for both planes over the segment.") legend_bbox_to_anchor = kwargs.pop("bbox_to_anchor", (0.535, 0.97)) @@ -179,7 +179,7 @@ def plot_phase_segment( Example: .. code-block:: python - >>> plot_phase_segment(ax, segment_df b1_model_tfs, plane="x", ip=1) + plot_phase_segment(ax, segment_df, b1_model_tfs, plane="x", ip=1) """ if plane.upper() not in ("X", "Y"): logger.error("The provided plane is invalid, should be either 'x' or 'y', case-insensitively.") diff --git a/pyhdtoolkit/plotting/tune.py b/pyhdtoolkit/plotting/tune.py index ce6f7a4f..169b5555 100644 --- a/pyhdtoolkit/plotting/tune.py +++ b/pyhdtoolkit/plotting/tune.py @@ -109,8 +109,8 @@ def plot_tune_diagram( Example: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(6, 6)) - >>> plot_tune_diagram(ax=ax, max_order=4, differentiate_orders=True) + fig, ax = plt.subplots(figsize=(6, 6)) + plot_tune_diagram(ax=ax, max_order=4, differentiate_orders=True) """ if max_order > 6 or max_order < 1: logger.error("Plotting is not supported outside of 1st-6th order (and not recommended)") @@ -156,8 +156,8 @@ def plot_resonance_lines_for_order(order: int, axis: matplotlib.axes.Axes, **kwa Example: .. code-block:: python - >>> fig, ax = plt.subplots(figsize=(6, 6)) - >>> plot_resonance_lines_for_order(order=3, axis=ax, color="blue") + fig, ax = plt.subplots(figsize=(6, 6)) + plot_resonance_lines_for_order(order=3, axis=ax, color="blue") """ order_label = ORDER_TO_LABEL[order] logger.debug(f"Plotting {order_label} resonance lines") diff --git a/pyhdtoolkit/plotting/utils.py b/pyhdtoolkit/plotting/utils.py index 4d194cfd..30242d1f 100644 --- a/pyhdtoolkit/plotting/utils.py +++ b/pyhdtoolkit/plotting/utils.py @@ -46,11 +46,10 @@ def maybe_get_ax(**kwargs): .. code-block:: python - >>> def my_plotting_function(*args, **kwargs): - ... ax, kwargs = maybe_get_ax(**kwargs) - ... # do stuff with ax - ... ax.plot(*args, **kwargs) - ... ) + def my_plotting_function(*args, **kwargs): + ax, kwargs = maybe_get_ax(**kwargs) + # do stuff with ax + ax.plot(*args, **kwargs) """ logger.debug("Looking for axis object to plot on") if "ax" in kwargs: @@ -82,9 +81,9 @@ def find_ip_s_from_segment_start(segment_df: tfs.TfsDataFrame, model_df: tfs.Tfs Example: .. code-block:: python - >>> ip_offset_in_segment = find_ip_s_from_segment_start( - ... segment_df=sbsphaseext_IP1, model_df=twiss_elements, ip=1 - ... ) + ip_offset_in_segment = find_ip_s_from_segment_start( + segment_df=sbsphaseext_IP1, model_df=twiss_elements, ip=1 + ) """ logger.debug(f"Determining location of IP{ip:d} from the start of segment.") first_element: str = segment_df.NAME.to_numpy()[0] @@ -123,8 +122,8 @@ def get_lhc_ips_positions(dataframe: pd.DataFrame) -> dict[str, float]: Example: .. code-block:: python - >>> twiss_df = tfs.read("twiss_output.tfs", index="NAME") - >>> ips = get_lhc_ips_positions(twiss_df) + twiss_df = tfs.read("twiss_output.tfs", index="NAME") + ips = get_lhc_ips_positions(twiss_df) """ logger.debug("Extracting IP positions from dataframe") try: @@ -161,7 +160,7 @@ def make_elements_groups( Example: .. code-block:: python - >>> element_dfs = make_elements_groups(madx) + element_dfs = make_elements_groups(madx) """ twiss_df = _get_twiss_table_with_offsets_and_limits(madx, xoffset, xlimits) @@ -196,7 +195,7 @@ def make_survey_groups(madx: Madx, /) -> dict[str, pd.DataFrame]: Example: .. code-block:: python - >>> survey_dfs = make_survey_groups(madx) + survey_dfs = make_survey_groups(madx) """ element_dfs = make_elements_groups(madx) quadrupoles_focusing_df = element_dfs["quadrupoles"].query("k1l > 0") @@ -242,10 +241,10 @@ def draw_ip_locations( Example: .. code-block:: python - >>> twiss_df = tfs.read("twiss_output.tfs", index="NAME") - >>> twiss_df.plot(x="S", y=["BETX", "BETY"]) - >>> ips = get_lhc_ips_positions(twiss_df) - >>> draw_ip_locations(ip_positions=ips) + twiss_df = tfs.read("twiss_output.tfs", index="NAME") + twiss_df.plot(x="S", y=["BETX", "BETY"]) + ips = get_lhc_ips_positions(twiss_df) + draw_ip_locations(ip_positions=ips) """ axis, kwargs = maybe_get_ax(**kwargs) xlimits = axis.get_xlim() @@ -309,14 +308,14 @@ def set_arrow_label( Example: .. code-block:: python - >>> set_arrow_label( - ... label="Your label", - ... arrow_position=(1, 2), - ... label_position=(1.1 * some_value, 0.75 * another_value), - ... color="indianred", - ... arrow_arc_rad=0.3, - ... fontsize=25, - ... ) + set_arrow_label( + label="Your label", + arrow_position=(1, 2), + label_position=(1.1 * some_value, 0.75 * another_value), + color="indianred", + arrow_arc_rad=0.3, + fontsize=25, + ) """ axis, kwargs = maybe_get_ax(**kwargs) return axis.annotate( @@ -361,10 +360,10 @@ def draw_confidence_ellipse(x: ArrayLike, y: ArrayLike, n_std: float = 3.0, face Example: .. code-block:: python - >>> x = np.random.normal(size=1000) - >>> y = np.random.normal(size=1000) - >>> plt.plot(x, y, ".", markersize=0.8) - >>> draw_confidence_ellipse(x, y, n_std=2.5, edgecolor="red") + x = np.random.normal(size=1000) + y = np.random.normal(size=1000) + plt.plot(x, y, ".", markersize=0.8) + draw_confidence_ellipse(x, y, n_std=2.5, edgecolor="red") """ axis, kwargs = maybe_get_ax(**kwargs) x = np.array(x) @@ -449,7 +448,7 @@ def _determine_default_sbs_coupling_ylabel(rdt: str, component: str) -> str: Example: .. code-block:: python - >>> coupling_label = _determine_default_sbs_coupling_ylabel(rdt="f1001", component="RE") + coupling_label = _determine_default_sbs_coupling_ylabel(rdt="f1001", component="RE") """ logger.debug(f"Determining a default label for the {component.upper()} component of coupling {rdt.upper()}.") assert rdt.upper() in ("F1001", "F1010") @@ -481,7 +480,7 @@ def _determine_default_sbs_phase_ylabel(plane: str) -> str: Example: .. code-block:: python - >>> phase_label = _determine_default_sbs_phase_ylabel(plane="X") + phase_label = _determine_default_sbs_phase_ylabel(plane="X") """ logger.debug(f"Determining a default label for the {plane.upper()} phase plane.") assert plane.upper() in ("X", "Y") diff --git a/pyhdtoolkit/utils/_misc.py b/pyhdtoolkit/utils/_misc.py index 1ff5d1dd..1c7ba668 100644 --- a/pyhdtoolkit/utils/_misc.py +++ b/pyhdtoolkit/utils/_misc.py @@ -42,8 +42,8 @@ def log_runtime_versions() -> None: Example: .. code-block:: python - >>> log_runtime_versions() - 2022-10-05 15:06:26 | CRITICAL | pyhdtoolkit.utils._misc:39 - Using: pyhdtoolkit 1.0.0rc0 | cpymad 1.10.0 | MAD-X 5.08.01 (2022.02.25) + log_runtime_versions() + # 2022-10-05 15:06:26 | CRITICAL | pyhdtoolkit.utils._misc:39 - Using: pyhdtoolkit 1.0.0rc0 | cpymad 1.10.0 | MAD-X 5.08.01 (2022.02.25) """ with Madx(stdout=False) as mad: logger.critical(f"Using: pyhdtoolkit {__version__} | cpymad {cpymad.__version__} | {mad.version}") @@ -70,7 +70,7 @@ def split_complex_columns(df: pd.DataFrame, drop: bool = False) -> pd.DataFrame: Exemple: .. code-block:: python - >>> df = split_complex_columns(df, drop=True) + df = split_complex_columns(df, drop=True) """ res = df.copy() complex_columns = res.select_dtypes(include="complex").columns @@ -106,7 +106,7 @@ def add_noise_to_ir_bpms(df: pd.DataFrame, max_index: int, stdev: float, columns Example: .. code-block:: python - >>> df = add_noise_to_ir_bpms(df, max_index=5, stdev=1e-6, columns=["DPSI"]) + df = add_noise_to_ir_bpms(df, max_index=5, stdev=1e-6, columns=["DPSI"]) """ result = df.copy() selected_bpms = LHC_IR_BPM_REGEX.format(max_index=max_index) @@ -152,7 +152,7 @@ def add_noise_to_arc_bpms( Example: .. code-block:: python - >>> df = add_noise_to_arc_bpms(df, min_index=8, stdev=1e-6, columns=["DPSI"]) + df = add_noise_to_arc_bpms(df, min_index=8, stdev=1e-6, columns=["DPSI"]) """ result = df.copy() ir_bpms = LHC_IR_BPM_REGEX.format(max_index=min(1, min_index - 1)) # so that provided min_index is included @@ -187,7 +187,7 @@ def apply_colin_corrs_balance(madx: Madx) -> None: Example: .. code-block:: python - >>> apply_colin_corrs_balance(madx) + apply_colin_corrs_balance(madx) """ # ----- Let's balance IR1 ----- # lhc.misalign_lhc_ir_quadrupoles(madx, ips=[1], beam=1, quadrupoles=[3], sides="L", DPSI=-1.61e-3) @@ -242,10 +242,10 @@ def get_betastar_from_opticsfile(opticsfile: Union[Path, str]) -> float: Example: .. code-block:: python - >>> get_betastar_from_opticsfile( - ... "acc-models-lhc/strengths/ATS_Nominal/2022/squeeze/ats_30cm.madx" - ... ) - 0.3 + get_betastar_from_opticsfile( + "acc-models-lhc/strengths/ATS_Nominal/2022/squeeze/ats_30cm.madx" + ) + # returns 0.3 """ file_lines = Path(opticsfile).read_text().split("\n") ip1_x_line, ip1_y_line, ip5_x_line, ip5_y_line = [line for line in file_lines if line.startswith("bet")] diff --git a/pyhdtoolkit/utils/cmdline.py b/pyhdtoolkit/utils/cmdline.py index bfbd3e90..c3d3ea94 100644 --- a/pyhdtoolkit/utils/cmdline.py +++ b/pyhdtoolkit/utils/cmdline.py @@ -42,7 +42,7 @@ def check_pid_exists(pid: int) -> bool: Example: .. code-block:: python - >>> CommandLine.check_pid_exists(os.getpid()) + CommandLine.check_pid_exists(os.getpid()) True """ if pid == 0: @@ -104,16 +104,16 @@ def run( Examples: .. code-block:: python - >>> CommandLine.run("echo hello") - (0, b"hello\\r\\n") + CommandLine.run("echo hello") + # returns (0, b"hello\\r\\n") .. code-block:: python - >>> import os - >>> modified_env = os.environ.copy() - >>> modified_env["ENV_VAR"] = "new_value" - >>> CommandLine.run("echo $ENV_VAR", env=modified_env) - (0, b"new_value") + import os + modified_env = os.environ.copy() + modified_env["ENV_VAR"] = "new_value" + CommandLine.run("echo $ENV_VAR", env=modified_env) + # returns (0, b"new_value") """ with timeit(lambda spanned: logger.info(f"Ran command '{command}' in a subprocess, in: {spanned:.4f} seconds")): process = subprocess.Popen(command, shell=shell, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, env=env) @@ -141,8 +141,8 @@ def terminate(pid: int) -> bool: Example: .. code-block:: python - >>> CommandLine.terminate(500_000) # max PID is 32768 (99999) on linux (macOS). - False + CommandLine.terminate(500_000) # max PID is 32768 (99999) on linux (macOS). + # returns False """ if CommandLine.check_pid_exists(pid): os.kill(pid, signal.SIGTERM) diff --git a/pyhdtoolkit/utils/contexts.py b/pyhdtoolkit/utils/contexts.py index 0d63bc29..ef1dc299 100644 --- a/pyhdtoolkit/utils/contexts.py +++ b/pyhdtoolkit/utils/contexts.py @@ -30,9 +30,9 @@ def timeit(function: Callable) -> Iterator[None]: Example: .. code-block:: python - >>> with timeit(lambda spanned: logger.debug(f"Did some stuff in {spanned} seconds")): - ... some_stuff() - ... some_other_stuff() + with timeit(lambda spanned: logger.debug(f"Did some stuff in {spanned} seconds")): + some_stuff() + some_other_stuff() """ start_time = time.time() try: diff --git a/pyhdtoolkit/utils/executors.py b/pyhdtoolkit/utils/executors.py index 9d713de4..bba51b9b 100644 --- a/pyhdtoolkit/utils/executors.py +++ b/pyhdtoolkit/utils/executors.py @@ -40,12 +40,12 @@ class MultiProcessor: Example: .. code-block:: python - >>> Processor = MultiProcessor() - >>> results_one_tuple_per_run = Processor.execute_function( - ... func=your_cpu_heavy_function, - ... func_args=list_of_args_for_each_call, - ... n_processes=some_int_up_to_you, - ... ) + Processor = MultiProcessor() + results_one_tuple_per_run = Processor.execute_function( + func=your_cpu_heavy_function, + func_args=list_of_args_for_each_call, + n_processes=some_int_up_to_you, + ) """ @staticmethod @@ -74,10 +74,10 @@ def execute_function(func: Callable, func_args: list, n_processes: int) -> List[ Example: .. code-block:: python - >>> MultiProcessor.execute_function( - ... func=np.square, func_args=list(range(6)), n_processes=2) - ... ) - [0, 1, 4, 9, 16, 25] + MultiProcessor.execute_function( + func=np.square, func_args=list(range(6)), n_processes=2 + ) + # returns [0, 1, 4, 9, 16, 25] """ logger.debug(f"Starting multiprocessing with {n_processes} processes") with futures.ProcessPoolExecutor(n_processes) as ex: @@ -98,12 +98,12 @@ class MultiThreader: Example: .. code-block:: python - >>> Threader = MultiThreader() - >>> results_one_tuple_per_run = Threader.execute_function( - ... func=your_io_heavy_function, - ... func_args=list_of_args_for_each_call, - ... n_processes=some_int_up_to_you, - ... ) + Threader = MultiThreader() + results_one_tuple_per_run = Threader.execute_function( + func=your_io_heavy_function, + func_args=list_of_args_for_each_call, + n_processes=some_int_up_to_you, + ) """ @staticmethod @@ -137,10 +137,10 @@ def execute_function(func: Callable, func_args: list, n_threads: int) -> List[tu Example: .. code-block:: python - >>> MultiThreader.execute_function( - ... func=np.square, func_args=list(range(6)), n_processes=2) - ... ) - [0, 1, 4, 9, 16, 25] + MultiThreader.execute_function( + func=np.square, func_args=list(range(6)), n_processes=2 + ) + # returns [0, 1, 4, 9, 16, 25] """ logger.debug(f"Starting multithreading with {n_threads} threads") with futures.ThreadPoolExecutor(n_threads) as ex: diff --git a/pyhdtoolkit/utils/htc_monitor.py b/pyhdtoolkit/utils/htc_monitor.py index f66fd3c1..72155498 100644 --- a/pyhdtoolkit/utils/htc_monitor.py +++ b/pyhdtoolkit/utils/htc_monitor.py @@ -94,8 +94,8 @@ def read_condor_q(report: str) -> Tuple[List[HTCTaskSummary], ClusterSummary]: Example: .. code-block:: python - >>> condor_q_output = get_the_string_as_you_wish(...) - >>> tasks, cluster = read_condor_q(condor_q_output) + condor_q_output = get_the_string_as_you_wish(...) + tasks, cluster = read_condor_q(condor_q_output) """ tasks: List[HTCTaskSummary] = [] next_line_is_task_report = False diff --git a/pyhdtoolkit/utils/logging.py b/pyhdtoolkit/utils/logging.py index e0d9d428..82b20f6e 100644 --- a/pyhdtoolkit/utils/logging.py +++ b/pyhdtoolkit/utils/logging.py @@ -58,14 +58,14 @@ def config_logger(level: Union[str, int] = "INFO", format: str = FORMAT1, **kwar .. code-block:: python - >>> config_logger(level="DEBUG") + config_logger(level="DEBUG") Specifying a custom format and setting the logging level: .. code-block:: python - >>> from pyhdtoolkit.utils.logging import config_logger, SIMPLE_FORMAT - >>> config_logger(level="DEBUG", format=SIMPLE_FORMAT) + from pyhdtoolkit.utils.logging import config_logger, SIMPLE_FORMAT + config_logger(level="DEBUG", format=SIMPLE_FORMAT) """ logger.remove() level = level.upper() if isinstance(level, str) else level diff --git a/pyhdtoolkit/utils/operations.py b/pyhdtoolkit/utils/operations.py index d74e8bfb..72b83747 100644 --- a/pyhdtoolkit/utils/operations.py +++ b/pyhdtoolkit/utils/operations.py @@ -44,8 +44,8 @@ def all_unique(sequence: Sequence) -> bool: Example: .. code-block:: python - >>> ListOperations.all_unique([1, 2, 3, 5, 12, 0]) - True + ListOperations.all_unique([1, 2, 3, 5, 12, 0]) + # returns True """ return len(sequence) == len(set(sequence)) @@ -68,10 +68,10 @@ def average_by(sequence: Sequence, function: Callable = lambda x: x) -> float: Example: .. code-block:: python - >>> ListOperations.average_by( - ... [{'n': 4}, {'n': 2}, {'n': 8}, {'n': 6}], lambda x: x['n'] - ... ) - 5.0 + ListOperations.average_by( + [{'n': 4}, {'n': 2}, {'n': 8}, {'n': 6}], lambda x: x['n'] + ) + # returns 5.0 """ return float(sum(map(function, sequence), 0.0) / len(sequence)) @@ -95,8 +95,8 @@ def bifurcate(sequence: Sequence, filters: List[bool]) -> Sequence: Example: .. code-block:: python - >>> ListOperations.bifurcate(['beep', 'boop', 'foo', 'bar'], [True, True, False, True]) - [['beep', 'boop', 'bar'], ['foo']] + ListOperations.bifurcate(['beep', 'boop', 'foo', 'bar'], [True, True, False, True]) + # returns [['beep', 'boop', 'bar'], ['foo']] """ return [ [x for i, x in enumerate(sequence) if filters[i]], @@ -125,8 +125,8 @@ def bifurcate_by(sequence: Sequence, function: Callable) -> list: Example: .. code-block:: python - >>> ListOperations.bifurcate_by(list(range(5)), lambda x: x % 2 == 0) - [[0, 2, 4], [1, 3]] + ListOperations.bifurcate_by(list(range(5)), lambda x: x % 2 == 0) + # returns [[0, 2, 4], [1, 3]] """ return [[x for x in sequence if function(x)], [x for x in sequence if not function(x)]] @@ -151,8 +151,8 @@ def chunk_list(sequence: Sequence, size: int) -> Sequence: Example: .. code-block:: python - >>> ListOperations.chunk_list(list(range(10)), 3) - [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]] + ListOperations.chunk_list(list(range(10)), 3) + # returns [[0, 1, 2], [3, 4, 5], [6, 7, 8], [9]] """ if size > len(sequence): return sequence @@ -174,8 +174,8 @@ def deep_flatten(sequence: Sequence) -> list: Example: .. code-block:: python - >>> ListOperations.deep_flatten([["a", "b"], [1, 2], None, [True, False]]) - ["a", "b", 1, 2, None True, False] + ListOperations.deep_flatten([["a", "b"], [1, 2], None, [True, False]]) + # returns ["a", "b", 1, 2, None True, False] """ return ( [elem for sublist in sequence for elem in ListOperations.deep_flatten(sublist)] @@ -204,13 +204,13 @@ def eval_none(sequence: Sequence, function: Callable = lambda x: not not x) -> b Examples: .. code-block:: python - >>> ListOperations.eval_none([0, 0, 1, 0], lambda x: x >= 2) - True + ListOperations.eval_none([0, 0, 1, 0], lambda x: x >= 2) + # returns True .. code-block:: python - >>> ListOperations.eval_none([0, 1, 2, 0], lambda x: x >= 2) - False + ListOperations.eval_none([0, 1, 2, 0], lambda x: x >= 2) + # returns False """ return not any(map(function, sequence)) @@ -234,13 +234,13 @@ def eval_some(sequence: Sequence, function: Callable = lambda x: not not x) -> b Examples: .. code-block:: python - >>> ListOperations.eval_some([0, 1, 2, 0], lambda x: x >= 2) - True + ListOperations.eval_some([0, 1, 2, 0], lambda x: x >= 2) + # returns True .. code-block:: python - >>> ListOperations.eval_some([0, 0, 1, 0], lambda x: x >= 2) - False + ListOperations.eval_some([0, 0, 1, 0], lambda x: x >= 2) + # returns False """ return any(map(function, sequence)) @@ -264,8 +264,8 @@ def get_indices(element, sequence: Sequence) -> List[int]: Example: .. code-block:: python - >>> ListOperations.get_indices(0, [0, 1, 3, 5, 7, 3, 9, 0, 0, 5, 3, 2]) - [0, 7, 8] + ListOperations.get_indices(0, [0, 1, 3, 5, 7, 3, 9, 0, 0, 5, 3, 2]) + # returns [0, 7, 8] """ return [i for (y, i) in zip(sequence, range(len(sequence))) if element == y] @@ -290,8 +290,8 @@ def group_by(sequence: Sequence, function: Callable) -> Dict[str, list]: Example: .. code-block:: python - >>> ListOperations.group_by(list(range(5)), lambda x: x % 2 == 0) - {True: [0, 2, 4], False: [1, 3]} + ListOperations.group_by(list(range(5)), lambda x: x % 2 == 0) + # returns {True: [0, 2, 4], False: [1, 3]} """ groups = {} for key in list(map(function, sequence)): @@ -316,8 +316,8 @@ def has_duplicates(sequence: Sequence) -> bool: Example: .. code-block:: python - >>> ListOperations.has_duplicates([1, 2, 1]) - True + ListOperations.has_duplicates([1, 2, 1]) + # returns True """ return len(sequence) != len(set(sequence)) @@ -338,8 +338,8 @@ def sample(sequence: Sequence) -> list: Examples: .. code-block:: python - >>> ListOperations.sample(["a", "b", 1, 2, False]) - 2 + ListOperations.sample(["a", "b", 1, 2, False]) + # returns 2 """ return sequence[random.randint(0, len(sequence) - 1)] @@ -360,8 +360,8 @@ def sanitize_list(sequence: Sequence) -> list: Example: .. code-block:: python - >>> ListOperations.sanitize_list([1, False, "a", 2, "", None, 6, 0]) - [1, "a", 2, 6] + ListOperations.sanitize_list([1, False, "a", 2, "", None, 6, 0]) + # returns [1, "a", 2, 6] """ return list(filter(bool, sequence)) @@ -384,8 +384,8 @@ def shuffle(sequence: Sequence) -> Sequence: Examples: .. code-block:: python - >>> ListOperations.shuffle(["a", "b", 1, 2, False]) - ['b', 1, False, 2, 'a'] + ListOperations.shuffle(["a", "b", 1, 2, False]) + # returns ['b', 1, False, 2, 'a'] """ temp_list = copy.deepcopy(sequence) amount_to_shuffle = len(temp_list) @@ -420,8 +420,8 @@ def spread(sequence: Sequence) -> list: Example: .. code-block:: python - >>> ListOperations.spread([list(range(5)), list(range(5))]) - [0, 1, 2, 3, 4, 0, 1, 2, 3, 4] + ListOperations.spread([list(range(5)), list(range(5))]) + # returns [0, 1, 2, 3, 4, 0, 1, 2, 3, 4] """ return list(itertools.chain.from_iterable(sequence)) @@ -447,13 +447,13 @@ def symmetric_difference_by(seq_1: Sequence, seq_2: Sequence, function: Callable Examples: .. code-block:: python - >>> ListOperations.symmetric_difference_by([2.1, 1.2], [2.3, 3.4], math.floor) - [1.2, 3.4] + ListOperations.symmetric_difference_by([2.1, 1.2], [2.3, 3.4], math.floor) + # returns [1.2, 3.4] .. code-block:: python - >>> ListOperations.symmetric_difference_by([2.1, 1.2], [0.5, 1.2], lambda x: x >= 2) - [2.1] + ListOperations.symmetric_difference_by([2.1, 1.2], [0.5, 1.2], lambda x: x >= 2) + # returns [2.1] """ _lst_1, _lst_2 = set(map(function, seq_1)), set(map(function, seq_2)) @@ -491,8 +491,8 @@ def union_by(seq_1: Sequence, seq_2: Sequence, function: Callable) -> list: Example: .. code-block:: python - >>> ListOperations.union_by([2.1], [1.2, 2.3], math.floor) - [1.2, 2.1] + ListOperations.union_by([2.1], [1.2, 2.3], math.floor) + # returns [1.2, 2.1] """ _lst_1 = set(map(function, seq_1)) return sorted(list(set(seq_1 + [item for item in seq_2 if function(item) not in _lst_1]))) @@ -522,8 +522,8 @@ def zipper(*args, fillvalue=None) -> list: Example: .. code-block:: python - >>> ListOperations.zipper([1, 2, 3], [2, 5, 3, 7], ["a", "b", "c"]) - [[1, 2, 'a'], [2, 5, 'b'], [3, 3, 'c'], [None, 7, None]] + ListOperations.zipper([1, 2, 3], [2, 5, 3, 7], ["a", "b", "c"]) + # returns [[1, 2, 'a'], [2, 5, 'b'], [3, 3, 'c'], [None, 7, None]] """ max_length = max(len(lst) for lst in args) return [[args[k][i] if i < len(args[k]) else fillvalue for k in range(len(args))] for i in range(max_length)] @@ -554,10 +554,10 @@ def longest_item(*args): Example: .. code-block:: python - >>> MiscellaneousOperations.longest_item( - ... list(range(5)), list(range(100)), list(range(50)) - ... ) - list(range(100)) + MiscellaneousOperations.longest_item( + list(range(5)), list(range(100)), list(range(50)) + ) + # returns list(range(100)) """ return max(args, key=len) @@ -581,11 +581,11 @@ def map_values(obj: dict, function: Callable) -> dict: Example: .. code-block:: python - >>> MiscellaneousOperations.map_values( - ... {"a": list(range(5)), "b": list(range(10)), "c": list(range(15))}, - ... lambda x: len(x) - ... ) - {"a": 5, "b": 10, "c": 15} + MiscellaneousOperations.map_values( + {"a": list(range(5)), "b": list(range(10)), "c": list(range(15))}, + lambda x: len(x) + ) + # returns {"a": 5, "b": 10, "c": 15} """ ret = {} for key in obj: @@ -620,13 +620,13 @@ def clamp_number(num: Union[int, float], a_val: Union[int, float], b_val: Union[ Examples: .. code-block:: python - >>> NumberOperations.clamp_number(17, 4, 5) - 5 + NumberOperations.clamp_number(17, 4, 5) + # returns 5 .. code-block:: python - >>> NumberOperations.clamp_number(23, 20, 30) - 23 + NumberOperations.clamp_number(23, 20, 30) + # returns 23 """ return max(min(num, max(a_val, b_val)), min(a_val, b_val)) @@ -650,13 +650,13 @@ def degrees_to_radians( Examples: .. code-block:: python - >>> NumberOperations.degrees_to_radians(160) - 2.792526803190927 + NumberOperations.degrees_to_radians(160) + # returns 2.792526803190927 .. code-block:: python - >>> NumberOperations.degrees_to_radians(360, decompose=True) - (2, "pi", "rad") + NumberOperations.degrees_to_radians(360, decompose=True) + # returns (2, "pi", "rad") """ if decompose: return deg_value / 180, "pi", "rad" @@ -680,13 +680,13 @@ def greatest_common_divisor(sequence: Sequence) -> Union[int, float]: Examples: .. code-block:: python - >>> NumberOperations.greatest_common_divisor([54, 24]) - 6 + NumberOperations.greatest_common_divisor([54, 24]) + # returns 6 .. code-block:: python - >>> NumberOperations.greatest_common_divisor([30, 132, 378, 582, 738]) - 6 + NumberOperations.greatest_common_divisor([30, 132, 378, 582, 738]) + # returns 6 """ return reduce(math.gcd, sequence) @@ -708,8 +708,8 @@ def is_divisible_by(dividend: Union[int, float], divisor: Union[int, float]) -> Examples: .. code-block:: python - >>> NumberOperations.is_divisible_by(35, 15) - False + NumberOperations.is_divisible_by(35, 15) + # returns False """ return dividend % divisor == 0 @@ -732,13 +732,13 @@ def least_common_multiple(*args) -> int: Examples: .. code-block:: python - >>> NumberOperations.least_common_multiple(4, 5) - 20 + NumberOperations.least_common_multiple(4, 5) + # returns 20 .. code-block:: python - >>> NumberOperations.least_common_multiple(2, 5, 17, 632) - 53720 + NumberOperations.least_common_multiple(2, 5, 17, 632) + # returns 53720 """ numbers = list(ListOperations.spread(list(args))) @@ -765,13 +765,13 @@ def radians_to_degrees(rad_value: Union[int, float]) -> Union[int, float]: Examples: .. code-block:: python - >>> NumberOperations.radians_to_degrees(2* math.pi) - 360 + NumberOperations.radians_to_degrees(2* math.pi) + # returns 360 .. code-block:: python - >>> NumberOperations.radians_to_degrees(2.710) - 155.2715624804531 + NumberOperations.radians_to_degrees(2.710) + # returns 155.2715624804531 """ return (rad_value * 180.0) / math.pi @@ -800,13 +800,13 @@ def camel_case(text: str) -> str: Examples: .. code-block:: python - >>> StringOperations.camel_case("a_snake_case_name") - "aSnakeCaseName" + StringOperations.camel_case("a_snake_case_name") + # returns "aSnakeCaseName" .. code-block:: python - >>> StringOperations.camel_case("A Title Case Name") - "aTitleCaseName" + StringOperations.camel_case("A Title Case Name") + # returns "aTitleCaseName" """ text = re.sub(r"(\s|_|-)+", " ", text).title().replace(" ", "") return text[0].lower() + text[1:] @@ -830,13 +830,13 @@ def capitalize(text: str, lower_rest: bool = False) -> str: Examples: .. code-block:: python - >>> StringOperations.capitalize("astringtocapitalize") - "Astringtocapitalize" + StringOperations.capitalize("astringtocapitalize") + # returns "Astringtocapitalize" .. code-block:: python - >>> StringOperations.capitalize("astRIngTocApItalizE", lower_rest=True) - "Astringtocapitalize" + StringOperations.capitalize("astRIngTocApItalizE", lower_rest=True) + # returns "Astringtocapitalize" """ return text[:1].upper() + (text[1:].lower() if lower_rest else text[1:]) @@ -861,13 +861,13 @@ def is_anagram(str_1: str, str_2: str) -> bool: Examples: .. code-block:: python - >>> StringOperations.is_anagram("Tom Marvolo Riddle", "I am Lord Voldemort") - True + StringOperations.is_anagram("Tom Marvolo Riddle", "I am Lord Voldemort") + # returns True .. code-block:: python - >>> StringOperations.is_anagram("A first string", "Definitely not an anagram") - False + StringOperations.is_anagram("A first string", "Definitely not an anagram") + # returns False """ _str1, _str2 = ( str_1.replace(" ", "").replace("'", ""), @@ -893,13 +893,13 @@ def is_palindrome(text: str) -> bool: Examples: .. code-block:: python - >>> StringOperations.is_palindrome("racecar") - True + StringOperations.is_palindrome("racecar") + # returns True .. code-block:: python - >>> StringOperations.is_palindrome("definitelynot") - False + StringOperations.is_palindrome("definitelynot") + # returns False """ s_reverse = re.sub(r"[\W_]", "", text.lower()) return s_reverse == s_reverse[::-1] @@ -921,13 +921,13 @@ def kebab_case(text: str) -> str: Examples: .. code-block:: python - >>> StringOperations.kebab_case("camel Case") - "camel-case" + StringOperations.kebab_case("camel Case") + # returns "camel-case" .. code-block:: python - >>> StringOperations.kebab_case("snake_case") - "snake-case" + StringOperations.kebab_case("snake_case") + # returns "snake-case" """ return re.sub( r"(\s|_|-)+", @@ -956,13 +956,13 @@ def snake_case(text: str) -> str: Examples: .. code-block:: python - >>> StringOperations.snake_case("A bunch of words") - "a_bunch_of_words" + StringOperations.snake_case("A bunch of words") + # returns "a_bunch_of_words" .. code-block:: python - >>> StringOperations.snake_case("camelCase") - "camelcase" + StringOperations.snake_case("camelCase") + # returns "camelcase" """ return re.sub( r"(\s|_|-)+", diff --git a/pyproject.toml b/pyproject.toml index 0e23ec2d..6c6afdad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,6 +83,7 @@ dev = [ "ruff >= 0.0.250", ] docs = [ + "joblib", "Sphinx >= 4.4", "sphinx-rtd-theme >= 1.0", "sphinx-issues >= 3.0",