On Thu, Jun 04, 2015 at 06:33:28PM +0100, Guillaume M-M wrote:
> 
> 1) the explosion in size mentioned above. This affects both stable and
> master. (This is also responsible for a regression wrt 2.1.3 because of
> zooming triggers preview as already discussed.)

Using vim I duplicated your document 26 times, thus creating a document
with a total of 676 different macros (attached). When generating the
previews, a 12Mb file was created, so the issue is real, at least for those
using hundreds of macros in a document, not the vast majority, I bet ;)

The attached patch against stable reduced the size of the tex file to
a perfectly manageable size of about 60Kb.

Richard, I think that this is pretty safe for stable. It simply omits
the macro definition if it is not used in the math inset. At worst,
it is added unnecessarily if for example \beta appears in the inset
and the macro name is \b, \be, or \bet.

As regards master, we have still to solve the other problem mentioned
in this thread before we can proceed.

-- 
Enrico
diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp
index d4bdf87..61393d9 100644
--- a/src/mathed/InsetMathHull.cpp
+++ b/src/mathed/InsetMathHull.cpp
@@ -632,6 +632,9 @@ void InsetMathHull::preparePreview(DocIterator const & pos,
 
        Buffer const * buffer = pos.buffer();
 
+       // translate the inset to latex
+       docstring const latex_string = latexString(*this);
+
        // collect macros at this position
        MacroNameSet macros;
        buffer->listMacroNames(macros);
@@ -639,10 +642,14 @@ void InsetMathHull::preparePreview(DocIterator const & 
pos,
        MacroNameSet::iterator end = macros.end();
        odocstringstream macro_preamble;
        for (; it != end; ++it) {
-               MacroData const * data = buffer->getMacro(*it, pos, true);
-               if (data) {
-                       data->write(macro_preamble, true);
-                       macro_preamble << endl;
+               // add the macro only if it is used in this inset
+               docstring const macro_name = from_ascii("\\") + *it;
+               if (support::contains(latex_string, macro_name)) {
+                       MacroData const * data = buffer->getMacro(*it, pos, 
true);
+                       if (data) {
+                               data->write(macro_preamble, true);
+                               macro_preamble << endl;
+                       }
                }
        }
 
@@ -667,8 +674,7 @@ void InsetMathHull::preparePreview(DocIterator const & pos,
                                          '{' + convert<docstring>(num) + '}';
                }
        }
-       docstring const snippet = macro_preamble.str() +
-           setcnt + latexString(*this);
+       docstring const snippet = macro_preamble.str() + setcnt + latex_string;
        LYXERR(Debug::MACROS, "Preview snippet: " << snippet);
        preview_->addPreview(snippet, *buffer, forexport);
 }
#LyX 2.1 created this file. For more info see http://www.lyx.org/
\lyxformat 474
\begin_document
\begin_header
\textclass article
\begin_preamble
% Added by lyx2lyx
\@ifundefined{rangeHsb}{\usepackage{xcolor}}
\end_preamble
\use_default_options true
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman default
\font_sans default
\font_typewriter default
\font_math auto
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\use_hyperref false
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification true
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Aa}{\textit{this is the macro Aa}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ba}{\textit{this is the macro Ba}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ca}{\textit{this is the macro Ca}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Da}{\textit{this is the macro Da}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ea}{\textit{this is the macro Ea}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fa}{\textit{this is the macro Fa}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ga}{\textit{this is the macro Ga}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ha}{\textit{this is the macro Ha}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ia}{\textit{this is the macro Ia}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ja}{\textit{this is the macro Ja}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ka}{\textit{this is the macro Ka}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\La}{\textit{this is the macro La}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ma}{\textit{this is the macro Ma}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Na}{\textit{this is the macro Na}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oa}{\textit{this is the macro Oa}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pa}{\textit{this is the macro Pa}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qa}{\textit{this is the macro Qa}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ra}{\textit{this is the macro Ra}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sa}{\textit{this is the macro Sa}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ta}{\textit{this is the macro Ta}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ua}{\textit{this is the macro Ua}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Va}{\textit{this is the macro Va}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wa}{\textit{this is the macro Wa}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xa}{\textit{this is the macro Xa}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ya}{\textit{this is the macro Ya}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Za}{\textit{this is the macro Za}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Aa$
\end_inset

 
\begin_inset Formula $\Ba$
\end_inset

 
\begin_inset Formula $\Ca$
\end_inset

 
\begin_inset Formula $\Da$
\end_inset

 
\begin_inset Formula $\Ea$
\end_inset

 
\begin_inset Formula $\Fa$
\end_inset

 
\begin_inset Formula $\Ga$
\end_inset

 
\begin_inset Formula $\Ha$
\end_inset

 
\begin_inset Formula $\Ia$
\end_inset

 
\begin_inset Formula $\Ja$
\end_inset

 
\begin_inset Formula $\Ka$
\end_inset

 
\begin_inset Formula $\La$
\end_inset

 
\begin_inset Formula $\Ma$
\end_inset

 
\begin_inset Formula $\Na$
\end_inset

 
\begin_inset Formula $\Oa$
\end_inset

 
\begin_inset Formula $\Pa$
\end_inset

 
\begin_inset Formula $\Qa$
\end_inset

 
\begin_inset Formula $\Ra$
\end_inset

 
\begin_inset Formula $\Sa$
\end_inset

 
\begin_inset Formula $\Ta$
\end_inset

 
\begin_inset Formula $\Ua$
\end_inset

 
\begin_inset Formula $\Va$
\end_inset

 
\begin_inset Formula $\Wa$
\end_inset

 
\begin_inset Formula $\Xa$
\end_inset

 
\begin_inset Formula $\Ya$
\end_inset

 
\begin_inset Formula $\Za$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ab}{\textit{this is the macro Ab}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bb}{\textit{this is the macro Bb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cb}{\textit{this is the macro Cb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Db}{\textit{this is the macro Db}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Eb}{\textit{this is the macro Eb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fb}{\textit{this is the macro Fb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gb}{\textit{this is the macro Gb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hb}{\textit{this is the macro Hb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ib}{\textit{this is the macro Ib}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jb}{\textit{this is the macro Jb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kb}{\textit{this is the macro Kb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lb}{\textit{this is the macro Lb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mb}{\textit{this is the macro Mb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nb}{\textit{this is the macro Nb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ob}{\textit{this is the macro Ob}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pb}{\textit{this is the macro Pb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qb}{\textit{this is the macro Qb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rb}{\textit{this is the macro Rb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sb}{\textit{this is the macro Sb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tb}{\textit{this is the macro Tb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ub}{\textit{this is the macro Ub}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vb}{\textit{this is the macro Vb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wb}{\textit{this is the macro Wb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xb}{\textit{this is the macro Xb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yb}{\textit{this is the macro Yb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zb}{\textit{this is the macro Zb}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ab$
\end_inset

 
\begin_inset Formula $\Bb$
\end_inset

 
\begin_inset Formula $\Cb$
\end_inset

 
\begin_inset Formula $\Db$
\end_inset

 
\begin_inset Formula $\Eb$
\end_inset

 
\begin_inset Formula $\Fb$
\end_inset

 
\begin_inset Formula $\Gb$
\end_inset

 
\begin_inset Formula $\Hb$
\end_inset

 
\begin_inset Formula $\Ib$
\end_inset

 
\begin_inset Formula $\Jb$
\end_inset

 
\begin_inset Formula $\Kb$
\end_inset

 
\begin_inset Formula $\Lb$
\end_inset

 
\begin_inset Formula $\Mb$
\end_inset

 
\begin_inset Formula $\Nb$
\end_inset

 
\begin_inset Formula $\Ob$
\end_inset

 
\begin_inset Formula $\Pb$
\end_inset

 
\begin_inset Formula $\Qb$
\end_inset

 
\begin_inset Formula $\Rb$
\end_inset

 
\begin_inset Formula $\Sb$
\end_inset

 
\begin_inset Formula $\Tb$
\end_inset

 
\begin_inset Formula $\Ub$
\end_inset

 
\begin_inset Formula $\Vb$
\end_inset

 
\begin_inset Formula $\Wb$
\end_inset

 
\begin_inset Formula $\Xb$
\end_inset

 
\begin_inset Formula $\Yb$
\end_inset

 
\begin_inset Formula $\Zb$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ac}{\textit{this is the macro Ac}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bc}{\textit{this is the macro Bc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cc}{\textit{this is the macro Cc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dc}{\textit{this is the macro Dc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ec}{\textit{this is the macro Ec}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fc}{\textit{this is the macro Fc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gc}{\textit{this is the macro Gc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hc}{\textit{this is the macro Hc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ic}{\textit{this is the macro Ic}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jc}{\textit{this is the macro Jc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kc}{\textit{this is the macro Kc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lc}{\textit{this is the macro Lc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mc}{\textit{this is the macro Mc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nc}{\textit{this is the macro Nc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oc}{\textit{this is the macro Oc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pc}{\textit{this is the macro Pc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qc}{\textit{this is the macro Qc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rc}{\textit{this is the macro Rc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sc}{\textit{this is the macro Sc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tc}{\textit{this is the macro Tc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uc}{\textit{this is the macro Uc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vc}{\textit{this is the macro Vc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wc}{\textit{this is the macro Wc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xc}{\textit{this is the macro Xc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yc}{\textit{this is the macro Yc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zc}{\textit{this is the macro Zc}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ac$
\end_inset

 
\begin_inset Formula $\Bc$
\end_inset

 
\begin_inset Formula $\Cc$
\end_inset

 
\begin_inset Formula $\Dc$
\end_inset

 
\begin_inset Formula $\Ec$
\end_inset

 
\begin_inset Formula $\Fc$
\end_inset

 
\begin_inset Formula $\Gc$
\end_inset

 
\begin_inset Formula $\Hc$
\end_inset

 
\begin_inset Formula $\Ic$
\end_inset

 
\begin_inset Formula $\Jc$
\end_inset

 
\begin_inset Formula $\Kc$
\end_inset

 
\begin_inset Formula $\Lc$
\end_inset

 
\begin_inset Formula $\Mc$
\end_inset

 
\begin_inset Formula $\Nc$
\end_inset

 
\begin_inset Formula $\Oc$
\end_inset

 
\begin_inset Formula $\Pc$
\end_inset

 
\begin_inset Formula $\Qc$
\end_inset

 
\begin_inset Formula $\Rc$
\end_inset

 
\begin_inset Formula $\Sc$
\end_inset

 
\begin_inset Formula $\Tc$
\end_inset

 
\begin_inset Formula $\Uc$
\end_inset

 
\begin_inset Formula $\Vc$
\end_inset

 
\begin_inset Formula $\Wc$
\end_inset

 
\begin_inset Formula $\Xc$
\end_inset

 
\begin_inset Formula $\Yc$
\end_inset

 
\begin_inset Formula $\Zc$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ad}{\textit{this is the macro Ad}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bd}{\textit{this is the macro Bd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cd}{\textit{this is the macro Cd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dd}{\textit{this is the macro Dd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ed}{\textit{this is the macro Ed}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fd}{\textit{this is the macro Fd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gd}{\textit{this is the macro Gd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hd}{\textit{this is the macro Hd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Id}{\textit{this is the macro Id}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jd}{\textit{this is the macro Jd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kd}{\textit{this is the macro Kd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ld}{\textit{this is the macro Ld}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Md}{\textit{this is the macro Md}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nd}{\textit{this is the macro Nd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Od}{\textit{this is the macro Od}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pd}{\textit{this is the macro Pd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qd}{\textit{this is the macro Qd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rd}{\textit{this is the macro Rd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sd}{\textit{this is the macro Sd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Td}{\textit{this is the macro Td}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ud}{\textit{this is the macro Ud}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vd}{\textit{this is the macro Vd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wd}{\textit{this is the macro Wd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xd}{\textit{this is the macro Xd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yd}{\textit{this is the macro Yd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zd}{\textit{this is the macro Zd}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ad$
\end_inset

 
\begin_inset Formula $\Bd$
\end_inset

 
\begin_inset Formula $\Cd$
\end_inset

 
\begin_inset Formula $\Dd$
\end_inset

 
\begin_inset Formula $\Ed$
\end_inset

 
\begin_inset Formula $\Fd$
\end_inset

 
\begin_inset Formula $\Gd$
\end_inset

 
\begin_inset Formula $\Hd$
\end_inset

 
\begin_inset Formula $\Id$
\end_inset

 
\begin_inset Formula $\Jd$
\end_inset

 
\begin_inset Formula $\Kd$
\end_inset

 
\begin_inset Formula $\Ld$
\end_inset

 
\begin_inset Formula $\Md$
\end_inset

 
\begin_inset Formula $\Nd$
\end_inset

 
\begin_inset Formula $\Od$
\end_inset

 
\begin_inset Formula $\Pd$
\end_inset

 
\begin_inset Formula $\Qd$
\end_inset

 
\begin_inset Formula $\Rd$
\end_inset

 
\begin_inset Formula $\Sd$
\end_inset

 
\begin_inset Formula $\Td$
\end_inset

 
\begin_inset Formula $\Ud$
\end_inset

 
\begin_inset Formula $\Vd$
\end_inset

 
\begin_inset Formula $\Wd$
\end_inset

 
\begin_inset Formula $\Xd$
\end_inset

 
\begin_inset Formula $\Yd$
\end_inset

 
\begin_inset Formula $\Zd$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ae}{\textit{this is the macro Ae}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Be}{\textit{this is the macro Be}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ce}{\textit{this is the macro Ce}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\De}{\textit{this is the macro De}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ee}{\textit{this is the macro Ee}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fe}{\textit{this is the macro Fe}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ge}{\textit{this is the macro Ge}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\He}{\textit{this is the macro He}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ie}{\textit{this is the macro Ie}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Je}{\textit{this is the macro Je}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ke}{\textit{this is the macro Ke}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Le}{\textit{this is the macro Le}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Me}{\textit{this is the macro Me}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ne}{\textit{this is the macro Ne}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oe}{\textit{this is the macro Oe}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pe}{\textit{this is the macro Pe}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qe}{\textit{this is the macro Qe}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Re}{\textit{this is the macro Re}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Se}{\textit{this is the macro Se}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Te}{\textit{this is the macro Te}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ue}{\textit{this is the macro Ue}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ve}{\textit{this is the macro Ve}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\We}{\textit{this is the macro We}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xe}{\textit{this is the macro Xe}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ye}{\textit{this is the macro Ye}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ze}{\textit{this is the macro Ze}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ae$
\end_inset

 
\begin_inset Formula $\Be$
\end_inset

 
\begin_inset Formula $\Ce$
\end_inset

 
\begin_inset Formula $\De$
\end_inset

 
\begin_inset Formula $\Ee$
\end_inset

 
\begin_inset Formula $\Fe$
\end_inset

 
\begin_inset Formula $\Ge$
\end_inset

 
\begin_inset Formula $\He$
\end_inset

 
\begin_inset Formula $\Ie$
\end_inset

 
\begin_inset Formula $\Je$
\end_inset

 
\begin_inset Formula $\Ke$
\end_inset

 
\begin_inset Formula $\Le$
\end_inset

 
\begin_inset Formula $\Me$
\end_inset

 
\begin_inset Formula $\Ne$
\end_inset

 
\begin_inset Formula $\Oe$
\end_inset

 
\begin_inset Formula $\Pe$
\end_inset

 
\begin_inset Formula $\Qe$
\end_inset

 
\begin_inset Formula $\Re$
\end_inset

 
\begin_inset Formula $\Se$
\end_inset

 
\begin_inset Formula $\Te$
\end_inset

 
\begin_inset Formula $\Ue$
\end_inset

 
\begin_inset Formula $\Ve$
\end_inset

 
\begin_inset Formula $\We$
\end_inset

 
\begin_inset Formula $\Xe$
\end_inset

 
\begin_inset Formula $\Ye$
\end_inset

 
\begin_inset Formula $\Ze$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Af}{\textit{this is the macro Af}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bf}{\textit{this is the macro Bf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cf}{\textit{this is the macro Cf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Df}{\textit{this is the macro Df}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ef}{\textit{this is the macro Ef}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ff}{\textit{this is the macro Ff}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gf}{\textit{this is the macro Gf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hf}{\textit{this is the macro Hf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\If}{\textit{this is the macro If}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jf}{\textit{this is the macro Jf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kf}{\textit{this is the macro Kf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lf}{\textit{this is the macro Lf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mf}{\textit{this is the macro Mf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nf}{\textit{this is the macro Nf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Of}{\textit{this is the macro Of}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pf}{\textit{this is the macro Pf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qf}{\textit{this is the macro Qf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rf}{\textit{this is the macro Rf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sf}{\textit{this is the macro Sf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tf}{\textit{this is the macro Tf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uf}{\textit{this is the macro Uf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vf}{\textit{this is the macro Vf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wf}{\textit{this is the macro Wf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xf}{\textit{this is the macro Xf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yf}{\textit{this is the macro Yf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zf}{\textit{this is the macro Zf}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Af$
\end_inset

 
\begin_inset Formula $\Bf$
\end_inset

 
\begin_inset Formula $\Cf$
\end_inset

 
\begin_inset Formula $\Df$
\end_inset

 
\begin_inset Formula $\Ef$
\end_inset

 
\begin_inset Formula $\Ff$
\end_inset

 
\begin_inset Formula $\Gf$
\end_inset

 
\begin_inset Formula $\Hf$
\end_inset

 
\begin_inset Formula $\If$
\end_inset

 
\begin_inset Formula $\Jf$
\end_inset

 
\begin_inset Formula $\Kf$
\end_inset

 
\begin_inset Formula $\Lf$
\end_inset

 
\begin_inset Formula $\Mf$
\end_inset

 
\begin_inset Formula $\Nf$
\end_inset

 
\begin_inset Formula $\Of$
\end_inset

 
\begin_inset Formula $\Pf$
\end_inset

 
\begin_inset Formula $\Qf$
\end_inset

 
\begin_inset Formula $\Rf$
\end_inset

 
\begin_inset Formula $\Sf$
\end_inset

 
\begin_inset Formula $\Tf$
\end_inset

 
\begin_inset Formula $\Uf$
\end_inset

 
\begin_inset Formula $\Vf$
\end_inset

 
\begin_inset Formula $\Wf$
\end_inset

 
\begin_inset Formula $\Xf$
\end_inset

 
\begin_inset Formula $\Yf$
\end_inset

 
\begin_inset Formula $\Zf$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ag}{\textit{this is the macro Ag}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bg}{\textit{this is the macro Bg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cg}{\textit{this is the macro Cg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dg}{\textit{this is the macro Dg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Eg}{\textit{this is the macro Eg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fg}{\textit{this is the macro Fg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gg}{\textit{this is the macro Gg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hg}{\textit{this is the macro Hg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ig}{\textit{this is the macro Ig}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jg}{\textit{this is the macro Jg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kg}{\textit{this is the macro Kg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lg}{\textit{this is the macro Lg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mg}{\textit{this is the macro Mg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ng}{\textit{this is the macro Ng}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Og}{\textit{this is the macro Og}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pg}{\textit{this is the macro Pg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qg}{\textit{this is the macro Qg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rg}{\textit{this is the macro Rg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sg}{\textit{this is the macro Sg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tg}{\textit{this is the macro Tg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ug}{\textit{this is the macro Ug}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vg}{\textit{this is the macro Vg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wg}{\textit{this is the macro Wg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xg}{\textit{this is the macro Xg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yg}{\textit{this is the macro Yg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zg}{\textit{this is the macro Zg}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ag$
\end_inset

 
\begin_inset Formula $\Bg$
\end_inset

 
\begin_inset Formula $\Cg$
\end_inset

 
\begin_inset Formula $\Dg$
\end_inset

 
\begin_inset Formula $\Eg$
\end_inset

 
\begin_inset Formula $\Fg$
\end_inset

 
\begin_inset Formula $\Gg$
\end_inset

 
\begin_inset Formula $\Hg$
\end_inset

 
\begin_inset Formula $\Ig$
\end_inset

 
\begin_inset Formula $\Jg$
\end_inset

 
\begin_inset Formula $\Kg$
\end_inset

 
\begin_inset Formula $\Lg$
\end_inset

 
\begin_inset Formula $\Mg$
\end_inset

 
\begin_inset Formula $\Ng$
\end_inset

 
\begin_inset Formula $\Og$
\end_inset

 
\begin_inset Formula $\Pg$
\end_inset

 
\begin_inset Formula $\Qg$
\end_inset

 
\begin_inset Formula $\Rg$
\end_inset

 
\begin_inset Formula $\Sg$
\end_inset

 
\begin_inset Formula $\Tg$
\end_inset

 
\begin_inset Formula $\Ug$
\end_inset

 
\begin_inset Formula $\Vg$
\end_inset

 
\begin_inset Formula $\Wg$
\end_inset

 
\begin_inset Formula $\Xg$
\end_inset

 
\begin_inset Formula $\Yg$
\end_inset

 
\begin_inset Formula $\Zg$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ah}{\textit{this is the macro Ah}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bh}{\textit{this is the macro Bh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ch}{\textit{this is the macro Ch}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dh}{\textit{this is the macro Dh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Eh}{\textit{this is the macro Eh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fh}{\textit{this is the macro Fh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gh}{\textit{this is the macro Gh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hh}{\textit{this is the macro Hh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ih}{\textit{this is the macro Ih}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jh}{\textit{this is the macro Jh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kh}{\textit{this is the macro Kh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lh}{\textit{this is the macro Lh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mh}{\textit{this is the macro Mh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nh}{\textit{this is the macro Nh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oh}{\textit{this is the macro Oh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ph}{\textit{this is the macro Ph}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qh}{\textit{this is the macro Qh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rh}{\textit{this is the macro Rh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sh}{\textit{this is the macro Sh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Th}{\textit{this is the macro Th}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uh}{\textit{this is the macro Uh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vh}{\textit{this is the macro Vh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wh}{\textit{this is the macro Wh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xh}{\textit{this is the macro Xh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yh}{\textit{this is the macro Yh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zh}{\textit{this is the macro Zh}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ah$
\end_inset

 
\begin_inset Formula $\Bh$
\end_inset

 
\begin_inset Formula $\Ch$
\end_inset

 
\begin_inset Formula $\Dh$
\end_inset

 
\begin_inset Formula $\Eh$
\end_inset

 
\begin_inset Formula $\Fh$
\end_inset

 
\begin_inset Formula $\Gh$
\end_inset

 
\begin_inset Formula $\Hh$
\end_inset

 
\begin_inset Formula $\Ih$
\end_inset

 
\begin_inset Formula $\Jh$
\end_inset

 
\begin_inset Formula $\Kh$
\end_inset

 
\begin_inset Formula $\Lh$
\end_inset

 
\begin_inset Formula $\Mh$
\end_inset

 
\begin_inset Formula $\Nh$
\end_inset

 
\begin_inset Formula $\Oh$
\end_inset

 
\begin_inset Formula $\Ph$
\end_inset

 
\begin_inset Formula $\Qh$
\end_inset

 
\begin_inset Formula $\Rh$
\end_inset

 
\begin_inset Formula $\Sh$
\end_inset

 
\begin_inset Formula $\Th$
\end_inset

 
\begin_inset Formula $\Uh$
\end_inset

 
\begin_inset Formula $\Vh$
\end_inset

 
\begin_inset Formula $\Wh$
\end_inset

 
\begin_inset Formula $\Xh$
\end_inset

 
\begin_inset Formula $\Yh$
\end_inset

 
\begin_inset Formula $\Zh$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ai}{\textit{this is the macro Ai}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bi}{\textit{this is the macro Bi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ci}{\textit{this is the macro Ci}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Di}{\textit{this is the macro Di}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ei}{\textit{this is the macro Ei}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fi}{\textit{this is the macro Fi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gi}{\textit{this is the macro Gi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hi}{\textit{this is the macro Hi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ii}{\textit{this is the macro Ii}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ji}{\textit{this is the macro Ji}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ki}{\textit{this is the macro Ki}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Li}{\textit{this is the macro Li}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mi}{\textit{this is the macro Mi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ni}{\textit{this is the macro Ni}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oi}{\textit{this is the macro Oi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pi}{\textit{this is the macro Pi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qi}{\textit{this is the macro Qi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ri}{\textit{this is the macro Ri}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Si}{\textit{this is the macro Si}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ti}{\textit{this is the macro Ti}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ui}{\textit{this is the macro Ui}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vi}{\textit{this is the macro Vi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wi}{\textit{this is the macro Wi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xi}{\textit{this is the macro Xi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yi}{\textit{this is the macro Yi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zi}{\textit{this is the macro Zi}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ai$
\end_inset

 
\begin_inset Formula $\Bi$
\end_inset

 
\begin_inset Formula $\Ci$
\end_inset

 
\begin_inset Formula $\Di$
\end_inset

 
\begin_inset Formula $\Ei$
\end_inset

 
\begin_inset Formula $\Fi$
\end_inset

 
\begin_inset Formula $\Gi$
\end_inset

 
\begin_inset Formula $\Hi$
\end_inset

 
\begin_inset Formula $\Ii$
\end_inset

 
\begin_inset Formula $\Ji$
\end_inset

 
\begin_inset Formula $\Ki$
\end_inset

 
\begin_inset Formula $\Li$
\end_inset

 
\begin_inset Formula $\Mi$
\end_inset

 
\begin_inset Formula $\Ni$
\end_inset

 
\begin_inset Formula $\Oi$
\end_inset

 
\begin_inset Formula $\Pi$
\end_inset

 
\begin_inset Formula $\Qi$
\end_inset

 
\begin_inset Formula $\Ri$
\end_inset

 
\begin_inset Formula $\Si$
\end_inset

 
\begin_inset Formula $\Ti$
\end_inset

 
\begin_inset Formula $\Ui$
\end_inset

 
\begin_inset Formula $\Vi$
\end_inset

 
\begin_inset Formula $\Wi$
\end_inset

 
\begin_inset Formula $\Xi$
\end_inset

 
\begin_inset Formula $\Yi$
\end_inset

 
\begin_inset Formula $\Zi$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Aj}{\textit{this is the macro Aj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bj}{\textit{this is the macro Bj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cj}{\textit{this is the macro Cj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dj}{\textit{this is the macro Dj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ej}{\textit{this is the macro Ej}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fj}{\textit{this is the macro Fj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gj}{\textit{this is the macro Gj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hj}{\textit{this is the macro Hj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ij}{\textit{this is the macro Ij}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jj}{\textit{this is the macro Jj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kj}{\textit{this is the macro Kj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lj}{\textit{this is the macro Lj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mj}{\textit{this is the macro Mj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nj}{\textit{this is the macro Nj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oj}{\textit{this is the macro Oj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pj}{\textit{this is the macro Pj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qj}{\textit{this is the macro Qj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rj}{\textit{this is the macro Rj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sj}{\textit{this is the macro Sj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tj}{\textit{this is the macro Tj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uj}{\textit{this is the macro Uj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vj}{\textit{this is the macro Vj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wj}{\textit{this is the macro Wj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xj}{\textit{this is the macro Xj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yj}{\textit{this is the macro Yj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zj}{\textit{this is the macro Zj}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Aj$
\end_inset

 
\begin_inset Formula $\Bj$
\end_inset

 
\begin_inset Formula $\Cj$
\end_inset

 
\begin_inset Formula $\Dj$
\end_inset

 
\begin_inset Formula $\Ej$
\end_inset

 
\begin_inset Formula $\Fj$
\end_inset

 
\begin_inset Formula $\Gj$
\end_inset

 
\begin_inset Formula $\Hj$
\end_inset

 
\begin_inset Formula $\Ij$
\end_inset

 
\begin_inset Formula $\Jj$
\end_inset

 
\begin_inset Formula $\Kj$
\end_inset

 
\begin_inset Formula $\Lj$
\end_inset

 
\begin_inset Formula $\Mj$
\end_inset

 
\begin_inset Formula $\Nj$
\end_inset

 
\begin_inset Formula $\Oj$
\end_inset

 
\begin_inset Formula $\Pj$
\end_inset

 
\begin_inset Formula $\Qj$
\end_inset

 
\begin_inset Formula $\Rj$
\end_inset

 
\begin_inset Formula $\Sj$
\end_inset

 
\begin_inset Formula $\Tj$
\end_inset

 
\begin_inset Formula $\Uj$
\end_inset

 
\begin_inset Formula $\Vj$
\end_inset

 
\begin_inset Formula $\Wj$
\end_inset

 
\begin_inset Formula $\Xj$
\end_inset

 
\begin_inset Formula $\Yj$
\end_inset

 
\begin_inset Formula $\Zj$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ak}{\textit{this is the macro Ak}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bk}{\textit{this is the macro Bk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ck}{\textit{this is the macro Ck}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dk}{\textit{this is the macro Dk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ek}{\textit{this is the macro Ek}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fk}{\textit{this is the macro Fk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gk}{\textit{this is the macro Gk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hk}{\textit{this is the macro Hk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ik}{\textit{this is the macro Ik}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jk}{\textit{this is the macro Jk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kk}{\textit{this is the macro Kk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lk}{\textit{this is the macro Lk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mk}{\textit{this is the macro Mk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nk}{\textit{this is the macro Nk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ok}{\textit{this is the macro Ok}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pk}{\textit{this is the macro Pk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qk}{\textit{this is the macro Qk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rk}{\textit{this is the macro Rk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sk}{\textit{this is the macro Sk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tk}{\textit{this is the macro Tk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uk}{\textit{this is the macro Uk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vk}{\textit{this is the macro Vk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wk}{\textit{this is the macro Wk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xk}{\textit{this is the macro Xk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yk}{\textit{this is the macro Yk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zk}{\textit{this is the macro Zk}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ak$
\end_inset

 
\begin_inset Formula $\Bk$
\end_inset

 
\begin_inset Formula $\Ck$
\end_inset

 
\begin_inset Formula $\Dk$
\end_inset

 
\begin_inset Formula $\Ek$
\end_inset

 
\begin_inset Formula $\Fk$
\end_inset

 
\begin_inset Formula $\Gk$
\end_inset

 
\begin_inset Formula $\Hk$
\end_inset

 
\begin_inset Formula $\Ik$
\end_inset

 
\begin_inset Formula $\Jk$
\end_inset

 
\begin_inset Formula $\Kk$
\end_inset

 
\begin_inset Formula $\Lk$
\end_inset

 
\begin_inset Formula $\Mk$
\end_inset

 
\begin_inset Formula $\Nk$
\end_inset

 
\begin_inset Formula $\Ok$
\end_inset

 
\begin_inset Formula $\Pk$
\end_inset

 
\begin_inset Formula $\Qk$
\end_inset

 
\begin_inset Formula $\Rk$
\end_inset

 
\begin_inset Formula $\Sk$
\end_inset

 
\begin_inset Formula $\Tk$
\end_inset

 
\begin_inset Formula $\Uk$
\end_inset

 
\begin_inset Formula $\Vk$
\end_inset

 
\begin_inset Formula $\Wk$
\end_inset

 
\begin_inset Formula $\Xk$
\end_inset

 
\begin_inset Formula $\Yk$
\end_inset

 
\begin_inset Formula $\Zk$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Al}{\textit{this is the macro Al}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bl}{\textit{this is the macro Bl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cl}{\textit{this is the macro Cl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dl}{\textit{this is the macro Dl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\El}{\textit{this is the macro El}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fl}{\textit{this is the macro Fl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gl}{\textit{this is the macro Gl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hl}{\textit{this is the macro Hl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Il}{\textit{this is the macro Il}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jl}{\textit{this is the macro Jl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kl}{\textit{this is the macro Kl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ll}{\textit{this is the macro Ll}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ml}{\textit{this is the macro Ml}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nl}{\textit{this is the macro Nl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ol}{\textit{this is the macro Ol}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pl}{\textit{this is the macro Pl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ql}{\textit{this is the macro Ql}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rl}{\textit{this is the macro Rl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sl}{\textit{this is the macro Sl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tl}{\textit{this is the macro Tl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ul}{\textit{this is the macro Ul}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vl}{\textit{this is the macro Vl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wl}{\textit{this is the macro Wl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xl}{\textit{this is the macro Xl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yl}{\textit{this is the macro Yl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zl}{\textit{this is the macro Zl}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Al$
\end_inset

 
\begin_inset Formula $\Bl$
\end_inset

 
\begin_inset Formula $\Cl$
\end_inset

 
\begin_inset Formula $\Dl$
\end_inset

 
\begin_inset Formula $\El$
\end_inset

 
\begin_inset Formula $\Fl$
\end_inset

 
\begin_inset Formula $\Gl$
\end_inset

 
\begin_inset Formula $\Hl$
\end_inset

 
\begin_inset Formula $\Il$
\end_inset

 
\begin_inset Formula $\Jl$
\end_inset

 
\begin_inset Formula $\Kl$
\end_inset

 
\begin_inset Formula $\Ll$
\end_inset

 
\begin_inset Formula $\Ml$
\end_inset

 
\begin_inset Formula $\Nl$
\end_inset

 
\begin_inset Formula $\Ol$
\end_inset

 
\begin_inset Formula $\Pl$
\end_inset

 
\begin_inset Formula $\Ql$
\end_inset

 
\begin_inset Formula $\Rl$
\end_inset

 
\begin_inset Formula $\Sl$
\end_inset

 
\begin_inset Formula $\Tl$
\end_inset

 
\begin_inset Formula $\Ul$
\end_inset

 
\begin_inset Formula $\Vl$
\end_inset

 
\begin_inset Formula $\Wl$
\end_inset

 
\begin_inset Formula $\Xl$
\end_inset

 
\begin_inset Formula $\Yl$
\end_inset

 
\begin_inset Formula $\Zl$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Am}{\textit{this is the macro Am}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bm}{\textit{this is the macro Bm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cm}{\textit{this is the macro Cm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dm}{\textit{this is the macro Dm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Em}{\textit{this is the macro Em}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fm}{\textit{this is the macro Fm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gm}{\textit{this is the macro Gm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hm}{\textit{this is the macro Hm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Im}{\textit{this is the macro Im}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jm}{\textit{this is the macro Jm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Km}{\textit{this is the macro Km}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lm}{\textit{this is the macro Lm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mm}{\textit{this is the macro Mm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nm}{\textit{this is the macro Nm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Om}{\textit{this is the macro Om}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pm}{\textit{this is the macro Pm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qm}{\textit{this is the macro Qm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rm}{\textit{this is the macro Rm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sm}{\textit{this is the macro Sm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tm}{\textit{this is the macro Tm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Um}{\textit{this is the macro Um}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vm}{\textit{this is the macro Vm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wm}{\textit{this is the macro Wm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xm}{\textit{this is the macro Xm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ym}{\textit{this is the macro Ym}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zm}{\textit{this is the macro Zm}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Am$
\end_inset

 
\begin_inset Formula $\Bm$
\end_inset

 
\begin_inset Formula $\Cm$
\end_inset

 
\begin_inset Formula $\Dm$
\end_inset

 
\begin_inset Formula $\Em$
\end_inset

 
\begin_inset Formula $\Fm$
\end_inset

 
\begin_inset Formula $\Gm$
\end_inset

 
\begin_inset Formula $\Hm$
\end_inset

 
\begin_inset Formula $\Im$
\end_inset

 
\begin_inset Formula $\Jm$
\end_inset

 
\begin_inset Formula $\Km$
\end_inset

 
\begin_inset Formula $\Lm$
\end_inset

 
\begin_inset Formula $\Mm$
\end_inset

 
\begin_inset Formula $\Nm$
\end_inset

 
\begin_inset Formula $\Om$
\end_inset

 
\begin_inset Formula $\Pm$
\end_inset

 
\begin_inset Formula $\Qm$
\end_inset

 
\begin_inset Formula $\Rm$
\end_inset

 
\begin_inset Formula $\Sm$
\end_inset

 
\begin_inset Formula $\Tm$
\end_inset

 
\begin_inset Formula $\Um$
\end_inset

 
\begin_inset Formula $\Vm$
\end_inset

 
\begin_inset Formula $\Wm$
\end_inset

 
\begin_inset Formula $\Xm$
\end_inset

 
\begin_inset Formula $\Ym$
\end_inset

 
\begin_inset Formula $\Zm$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\An}{\textit{this is the macro An}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bn}{\textit{this is the macro Bn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cn}{\textit{this is the macro Cn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dn}{\textit{this is the macro Dn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\En}{\textit{this is the macro En}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fn}{\textit{this is the macro Fn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gn}{\textit{this is the macro Gn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hn}{\textit{this is the macro Hn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\In}{\textit{this is the macro In}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jn}{\textit{this is the macro Jn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kn}{\textit{this is the macro Kn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ln}{\textit{this is the macro Ln}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mn}{\textit{this is the macro Mn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nn}{\textit{this is the macro Nn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\On}{\textit{this is the macro On}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pn}{\textit{this is the macro Pn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qn}{\textit{this is the macro Qn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rn}{\textit{this is the macro Rn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sn}{\textit{this is the macro Sn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tn}{\textit{this is the macro Tn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Un}{\textit{this is the macro Un}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vn}{\textit{this is the macro Vn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wn}{\textit{this is the macro Wn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xn}{\textit{this is the macro Xn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yn}{\textit{this is the macro Yn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zn}{\textit{this is the macro Zn}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\An$
\end_inset

 
\begin_inset Formula $\Bn$
\end_inset

 
\begin_inset Formula $\Cn$
\end_inset

 
\begin_inset Formula $\Dn$
\end_inset

 
\begin_inset Formula $\En$
\end_inset

 
\begin_inset Formula $\Fn$
\end_inset

 
\begin_inset Formula $\Gn$
\end_inset

 
\begin_inset Formula $\Hn$
\end_inset

 
\begin_inset Formula $\In$
\end_inset

 
\begin_inset Formula $\Jn$
\end_inset

 
\begin_inset Formula $\Kn$
\end_inset

 
\begin_inset Formula $\Ln$
\end_inset

 
\begin_inset Formula $\Mn$
\end_inset

 
\begin_inset Formula $\Nn$
\end_inset

 
\begin_inset Formula $\On$
\end_inset

 
\begin_inset Formula $\Pn$
\end_inset

 
\begin_inset Formula $\Qn$
\end_inset

 
\begin_inset Formula $\Rn$
\end_inset

 
\begin_inset Formula $\Sn$
\end_inset

 
\begin_inset Formula $\Tn$
\end_inset

 
\begin_inset Formula $\Un$
\end_inset

 
\begin_inset Formula $\Vn$
\end_inset

 
\begin_inset Formula $\Wn$
\end_inset

 
\begin_inset Formula $\Xn$
\end_inset

 
\begin_inset Formula $\Yn$
\end_inset

 
\begin_inset Formula $\Zn$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ao}{\textit{this is the macro Ao}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bo}{\textit{this is the macro Bo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Co}{\textit{this is the macro Co}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Do}{\textit{this is the macro Do}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Eo}{\textit{this is the macro Eo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fo}{\textit{this is the macro Fo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Go}{\textit{this is the macro Go}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ho}{\textit{this is the macro Ho}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Io}{\textit{this is the macro Io}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jo}{\textit{this is the macro Jo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ko}{\textit{this is the macro Ko}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lo}{\textit{this is the macro Lo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mo}{\textit{this is the macro Mo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\No}{\textit{this is the macro No}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oo}{\textit{this is the macro Oo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Po}{\textit{this is the macro Po}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qo}{\textit{this is the macro Qo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ro}{\textit{this is the macro Ro}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\So}{\textit{this is the macro So}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\To}{\textit{this is the macro To}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uo}{\textit{this is the macro Uo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vo}{\textit{this is the macro Vo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wo}{\textit{this is the macro Wo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xo}{\textit{this is the macro Xo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yo}{\textit{this is the macro Yo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zo}{\textit{this is the macro Zo}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ao$
\end_inset

 
\begin_inset Formula $\Bo$
\end_inset

 
\begin_inset Formula $\Co$
\end_inset

 
\begin_inset Formula $\Do$
\end_inset

 
\begin_inset Formula $\Eo$
\end_inset

 
\begin_inset Formula $\Fo$
\end_inset

 
\begin_inset Formula $\Go$
\end_inset

 
\begin_inset Formula $\Ho$
\end_inset

 
\begin_inset Formula $\Io$
\end_inset

 
\begin_inset Formula $\Jo$
\end_inset

 
\begin_inset Formula $\Ko$
\end_inset

 
\begin_inset Formula $\Lo$
\end_inset

 
\begin_inset Formula $\Mo$
\end_inset

 
\begin_inset Formula $\No$
\end_inset

 
\begin_inset Formula $\Oo$
\end_inset

 
\begin_inset Formula $\Po$
\end_inset

 
\begin_inset Formula $\Qo$
\end_inset

 
\begin_inset Formula $\Ro$
\end_inset

 
\begin_inset Formula $\So$
\end_inset

 
\begin_inset Formula $\To$
\end_inset

 
\begin_inset Formula $\Uo$
\end_inset

 
\begin_inset Formula $\Vo$
\end_inset

 
\begin_inset Formula $\Wo$
\end_inset

 
\begin_inset Formula $\Xo$
\end_inset

 
\begin_inset Formula $\Yo$
\end_inset

 
\begin_inset Formula $\Zo$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ap}{\textit{this is the macro Ap}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bp}{\textit{this is the macro Bp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cp}{\textit{this is the macro Cp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dp}{\textit{this is the macro Dp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ep}{\textit{this is the macro Ep}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fp}{\textit{this is the macro Fp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gp}{\textit{this is the macro Gp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hp}{\textit{this is the macro Hp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ip}{\textit{this is the macro Ip}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jp}{\textit{this is the macro Jp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kp}{\textit{this is the macro Kp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lp}{\textit{this is the macro Lp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mp}{\textit{this is the macro Mp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Np}{\textit{this is the macro Np}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Op}{\textit{this is the macro Op}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pp}{\textit{this is the macro Pp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qp}{\textit{this is the macro Qp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rp}{\textit{this is the macro Rp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sp}{\textit{this is the macro Sp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tp}{\textit{this is the macro Tp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Up}{\textit{this is the macro Up}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vp}{\textit{this is the macro Vp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wp}{\textit{this is the macro Wp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xp}{\textit{this is the macro Xp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yp}{\textit{this is the macro Yp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zp}{\textit{this is the macro Zp}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ap$
\end_inset

 
\begin_inset Formula $\Bp$
\end_inset

 
\begin_inset Formula $\Cp$
\end_inset

 
\begin_inset Formula $\Dp$
\end_inset

 
\begin_inset Formula $\Ep$
\end_inset

 
\begin_inset Formula $\Fp$
\end_inset

 
\begin_inset Formula $\Gp$
\end_inset

 
\begin_inset Formula $\Hp$
\end_inset

 
\begin_inset Formula $\Ip$
\end_inset

 
\begin_inset Formula $\Jp$
\end_inset

 
\begin_inset Formula $\Kp$
\end_inset

 
\begin_inset Formula $\Lp$
\end_inset

 
\begin_inset Formula $\Mp$
\end_inset

 
\begin_inset Formula $\Np$
\end_inset

 
\begin_inset Formula $\Op$
\end_inset

 
\begin_inset Formula $\Pp$
\end_inset

 
\begin_inset Formula $\Qp$
\end_inset

 
\begin_inset Formula $\Rp$
\end_inset

 
\begin_inset Formula $\Sp$
\end_inset

 
\begin_inset Formula $\Tp$
\end_inset

 
\begin_inset Formula $\Up$
\end_inset

 
\begin_inset Formula $\Vp$
\end_inset

 
\begin_inset Formula $\Wp$
\end_inset

 
\begin_inset Formula $\Xp$
\end_inset

 
\begin_inset Formula $\Yp$
\end_inset

 
\begin_inset Formula $\Zp$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Aq}{\textit{this is the macro Aq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bq}{\textit{this is the macro Bq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cq}{\textit{this is the macro Cq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dq}{\textit{this is the macro Dq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Eq}{\textit{this is the macro Eq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fq}{\textit{this is the macro Fq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gq}{\textit{this is the macro Gq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hq}{\textit{this is the macro Hq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Iq}{\textit{this is the macro Iq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jq}{\textit{this is the macro Jq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kq}{\textit{this is the macro Kq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lq}{\textit{this is the macro Lq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mq}{\textit{this is the macro Mq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nq}{\textit{this is the macro Nq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oq}{\textit{this is the macro Oq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pq}{\textit{this is the macro Pq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qq}{\textit{this is the macro Qq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rq}{\textit{this is the macro Rq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sq}{\textit{this is the macro Sq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tq}{\textit{this is the macro Tq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uq}{\textit{this is the macro Uq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vq}{\textit{this is the macro Vq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wq}{\textit{this is the macro Wq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xq}{\textit{this is the macro Xq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yq}{\textit{this is the macro Yq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zq}{\textit{this is the macro Zq}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Aq$
\end_inset

 
\begin_inset Formula $\Bq$
\end_inset

 
\begin_inset Formula $\Cq$
\end_inset

 
\begin_inset Formula $\Dq$
\end_inset

 
\begin_inset Formula $\Eq$
\end_inset

 
\begin_inset Formula $\Fq$
\end_inset

 
\begin_inset Formula $\Gq$
\end_inset

 
\begin_inset Formula $\Hq$
\end_inset

 
\begin_inset Formula $\Iq$
\end_inset

 
\begin_inset Formula $\Jq$
\end_inset

 
\begin_inset Formula $\Kq$
\end_inset

 
\begin_inset Formula $\Lq$
\end_inset

 
\begin_inset Formula $\Mq$
\end_inset

 
\begin_inset Formula $\Nq$
\end_inset

 
\begin_inset Formula $\Oq$
\end_inset

 
\begin_inset Formula $\Pq$
\end_inset

 
\begin_inset Formula $\Qq$
\end_inset

 
\begin_inset Formula $\Rq$
\end_inset

 
\begin_inset Formula $\Sq$
\end_inset

 
\begin_inset Formula $\Tq$
\end_inset

 
\begin_inset Formula $\Uq$
\end_inset

 
\begin_inset Formula $\Vq$
\end_inset

 
\begin_inset Formula $\Wq$
\end_inset

 
\begin_inset Formula $\Xq$
\end_inset

 
\begin_inset Formula $\Yq$
\end_inset

 
\begin_inset Formula $\Zq$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ar}{\textit{this is the macro Ar}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Br}{\textit{this is the macro Br}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cr}{\textit{this is the macro Cr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dr}{\textit{this is the macro Dr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Er}{\textit{this is the macro Er}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fr}{\textit{this is the macro Fr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gr}{\textit{this is the macro Gr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hr}{\textit{this is the macro Hr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ir}{\textit{this is the macro Ir}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jr}{\textit{this is the macro Jr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kr}{\textit{this is the macro Kr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lr}{\textit{this is the macro Lr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mr}{\textit{this is the macro Mr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nr}{\textit{this is the macro Nr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Or}{\textit{this is the macro Or}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pr}{\textit{this is the macro Pr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qr}{\textit{this is the macro Qr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rr}{\textit{this is the macro Rr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sr}{\textit{this is the macro Sr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tr}{\textit{this is the macro Tr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ur}{\textit{this is the macro Ur}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vr}{\textit{this is the macro Vr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wr}{\textit{this is the macro Wr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xr}{\textit{this is the macro Xr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yr}{\textit{this is the macro Yr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zr}{\textit{this is the macro Zr}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ar$
\end_inset

 
\begin_inset Formula $\Br$
\end_inset

 
\begin_inset Formula $\Cr$
\end_inset

 
\begin_inset Formula $\Dr$
\end_inset

 
\begin_inset Formula $\Er$
\end_inset

 
\begin_inset Formula $\Fr$
\end_inset

 
\begin_inset Formula $\Gr$
\end_inset

 
\begin_inset Formula $\Hr$
\end_inset

 
\begin_inset Formula $\Ir$
\end_inset

 
\begin_inset Formula $\Jr$
\end_inset

 
\begin_inset Formula $\Kr$
\end_inset

 
\begin_inset Formula $\Lr$
\end_inset

 
\begin_inset Formula $\Mr$
\end_inset

 
\begin_inset Formula $\Nr$
\end_inset

 
\begin_inset Formula $\Or$
\end_inset

 
\begin_inset Formula $\Pr$
\end_inset

 
\begin_inset Formula $\Qr$
\end_inset

 
\begin_inset Formula $\Rr$
\end_inset

 
\begin_inset Formula $\Sr$
\end_inset

 
\begin_inset Formula $\Tr$
\end_inset

 
\begin_inset Formula $\Ur$
\end_inset

 
\begin_inset Formula $\Vr$
\end_inset

 
\begin_inset Formula $\Wr$
\end_inset

 
\begin_inset Formula $\Xr$
\end_inset

 
\begin_inset Formula $\Yr$
\end_inset

 
\begin_inset Formula $\Zr$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\As}{\textit{this is the macro As}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bs}{\textit{this is the macro Bs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cs}{\textit{this is the macro Cs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ds}{\textit{this is the macro Ds}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Es}{\textit{this is the macro Es}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fs}{\textit{this is the macro Fs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gs}{\textit{this is the macro Gs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hs}{\textit{this is the macro Hs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Is}{\textit{this is the macro Is}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Js}{\textit{this is the macro Js}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ks}{\textit{this is the macro Ks}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ls}{\textit{this is the macro Ls}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ms}{\textit{this is the macro Ms}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ns}{\textit{this is the macro Ns}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Os}{\textit{this is the macro Os}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ps}{\textit{this is the macro Ps}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qs}{\textit{this is the macro Qs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rs}{\textit{this is the macro Rs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ss}{\textit{this is the macro Ss}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ts}{\textit{this is the macro Ts}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Us}{\textit{this is the macro Us}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vs}{\textit{this is the macro Vs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ws}{\textit{this is the macro Ws}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xs}{\textit{this is the macro Xs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ys}{\textit{this is the macro Ys}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zs}{\textit{this is the macro Zs}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\As$
\end_inset

 
\begin_inset Formula $\Bs$
\end_inset

 
\begin_inset Formula $\Cs$
\end_inset

 
\begin_inset Formula $\Ds$
\end_inset

 
\begin_inset Formula $\Es$
\end_inset

 
\begin_inset Formula $\Fs$
\end_inset

 
\begin_inset Formula $\Gs$
\end_inset

 
\begin_inset Formula $\Hs$
\end_inset

 
\begin_inset Formula $\Is$
\end_inset

 
\begin_inset Formula $\Js$
\end_inset

 
\begin_inset Formula $\Ks$
\end_inset

 
\begin_inset Formula $\Ls$
\end_inset

 
\begin_inset Formula $\Ms$
\end_inset

 
\begin_inset Formula $\Ns$
\end_inset

 
\begin_inset Formula $\Os$
\end_inset

 
\begin_inset Formula $\Ps$
\end_inset

 
\begin_inset Formula $\Qs$
\end_inset

 
\begin_inset Formula $\Rs$
\end_inset

 
\begin_inset Formula $\Ss$
\end_inset

 
\begin_inset Formula $\Ts$
\end_inset

 
\begin_inset Formula $\Us$
\end_inset

 
\begin_inset Formula $\Vs$
\end_inset

 
\begin_inset Formula $\Ws$
\end_inset

 
\begin_inset Formula $\Xs$
\end_inset

 
\begin_inset Formula $\Ys$
\end_inset

 
\begin_inset Formula $\Zs$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\At}{\textit{this is the macro At}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bt}{\textit{this is the macro Bt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ct}{\textit{this is the macro Ct}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dt}{\textit{this is the macro Dt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Et}{\textit{this is the macro Et}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ft}{\textit{this is the macro Ft}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gt}{\textit{this is the macro Gt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ht}{\textit{this is the macro Ht}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\It}{\textit{this is the macro It}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jt}{\textit{this is the macro Jt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kt}{\textit{this is the macro Kt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lt}{\textit{this is the macro Lt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mt}{\textit{this is the macro Mt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nt}{\textit{this is the macro Nt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ot}{\textit{this is the macro Ot}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pt}{\textit{this is the macro Pt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qt}{\textit{this is the macro Qt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rt}{\textit{this is the macro Rt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\St}{\textit{this is the macro St}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tt}{\textit{this is the macro Tt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ut}{\textit{this is the macro Ut}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vt}{\textit{this is the macro Vt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wt}{\textit{this is the macro Wt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xt}{\textit{this is the macro Xt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yt}{\textit{this is the macro Yt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zt}{\textit{this is the macro Zt}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\At$
\end_inset

 
\begin_inset Formula $\Bt$
\end_inset

 
\begin_inset Formula $\Ct$
\end_inset

 
\begin_inset Formula $\Dt$
\end_inset

 
\begin_inset Formula $\Et$
\end_inset

 
\begin_inset Formula $\Ft$
\end_inset

 
\begin_inset Formula $\Gt$
\end_inset

 
\begin_inset Formula $\Ht$
\end_inset

 
\begin_inset Formula $\It$
\end_inset

 
\begin_inset Formula $\Jt$
\end_inset

 
\begin_inset Formula $\Kt$
\end_inset

 
\begin_inset Formula $\Lt$
\end_inset

 
\begin_inset Formula $\Mt$
\end_inset

 
\begin_inset Formula $\Nt$
\end_inset

 
\begin_inset Formula $\Ot$
\end_inset

 
\begin_inset Formula $\Pt$
\end_inset

 
\begin_inset Formula $\Qt$
\end_inset

 
\begin_inset Formula $\Rt$
\end_inset

 
\begin_inset Formula $\St$
\end_inset

 
\begin_inset Formula $\Tt$
\end_inset

 
\begin_inset Formula $\Ut$
\end_inset

 
\begin_inset Formula $\Vt$
\end_inset

 
\begin_inset Formula $\Wt$
\end_inset

 
\begin_inset Formula $\Xt$
\end_inset

 
\begin_inset Formula $\Yt$
\end_inset

 
\begin_inset Formula $\Zt$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Au}{\textit{this is the macro Au}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bu}{\textit{this is the macro Bu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cu}{\textit{this is the macro Cu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Du}{\textit{this is the macro Du}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Eu}{\textit{this is the macro Eu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fu}{\textit{this is the macro Fu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gu}{\textit{this is the macro Gu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hu}{\textit{this is the macro Hu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Iu}{\textit{this is the macro Iu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ju}{\textit{this is the macro Ju}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ku}{\textit{this is the macro Ku}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lu}{\textit{this is the macro Lu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mu}{\textit{this is the macro Mu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nu}{\textit{this is the macro Nu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ou}{\textit{this is the macro Ou}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pu}{\textit{this is the macro Pu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qu}{\textit{this is the macro Qu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ru}{\textit{this is the macro Ru}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Su}{\textit{this is the macro Su}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tu}{\textit{this is the macro Tu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uu}{\textit{this is the macro Uu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vu}{\textit{this is the macro Vu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wu}{\textit{this is the macro Wu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xu}{\textit{this is the macro Xu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yu}{\textit{this is the macro Yu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zu}{\textit{this is the macro Zu}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Au$
\end_inset

 
\begin_inset Formula $\Bu$
\end_inset

 
\begin_inset Formula $\Cu$
\end_inset

 
\begin_inset Formula $\Du$
\end_inset

 
\begin_inset Formula $\Eu$
\end_inset

 
\begin_inset Formula $\Fu$
\end_inset

 
\begin_inset Formula $\Gu$
\end_inset

 
\begin_inset Formula $\Hu$
\end_inset

 
\begin_inset Formula $\Iu$
\end_inset

 
\begin_inset Formula $\Ju$
\end_inset

 
\begin_inset Formula $\Ku$
\end_inset

 
\begin_inset Formula $\Lu$
\end_inset

 
\begin_inset Formula $\Mu$
\end_inset

 
\begin_inset Formula $\Nu$
\end_inset

 
\begin_inset Formula $\Ou$
\end_inset

 
\begin_inset Formula $\Pu$
\end_inset

 
\begin_inset Formula $\Qu$
\end_inset

 
\begin_inset Formula $\Ru$
\end_inset

 
\begin_inset Formula $\Su$
\end_inset

 
\begin_inset Formula $\Tu$
\end_inset

 
\begin_inset Formula $\Uu$
\end_inset

 
\begin_inset Formula $\Vu$
\end_inset

 
\begin_inset Formula $\Wu$
\end_inset

 
\begin_inset Formula $\Xu$
\end_inset

 
\begin_inset Formula $\Yu$
\end_inset

 
\begin_inset Formula $\Zu$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Av}{\textit{this is the macro Av}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bv}{\textit{this is the macro Bv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cv}{\textit{this is the macro Cv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dv}{\textit{this is the macro Dv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ev}{\textit{this is the macro Ev}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fv}{\textit{this is the macro Fv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gv}{\textit{this is the macro Gv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hv}{\textit{this is the macro Hv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Iv}{\textit{this is the macro Iv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jv}{\textit{this is the macro Jv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kv}{\textit{this is the macro Kv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lv}{\textit{this is the macro Lv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mv}{\textit{this is the macro Mv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nv}{\textit{this is the macro Nv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ov}{\textit{this is the macro Ov}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pv}{\textit{this is the macro Pv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qv}{\textit{this is the macro Qv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rv}{\textit{this is the macro Rv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sv}{\textit{this is the macro Sv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tv}{\textit{this is the macro Tv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uv}{\textit{this is the macro Uv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vv}{\textit{this is the macro Vv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wv}{\textit{this is the macro Wv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xv}{\textit{this is the macro Xv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yv}{\textit{this is the macro Yv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zv}{\textit{this is the macro Zv}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Av$
\end_inset

 
\begin_inset Formula $\Bv$
\end_inset

 
\begin_inset Formula $\Cv$
\end_inset

 
\begin_inset Formula $\Dv$
\end_inset

 
\begin_inset Formula $\Ev$
\end_inset

 
\begin_inset Formula $\Fv$
\end_inset

 
\begin_inset Formula $\Gv$
\end_inset

 
\begin_inset Formula $\Hv$
\end_inset

 
\begin_inset Formula $\Iv$
\end_inset

 
\begin_inset Formula $\Jv$
\end_inset

 
\begin_inset Formula $\Kv$
\end_inset

 
\begin_inset Formula $\Lv$
\end_inset

 
\begin_inset Formula $\Mv$
\end_inset

 
\begin_inset Formula $\Nv$
\end_inset

 
\begin_inset Formula $\Ov$
\end_inset

 
\begin_inset Formula $\Pv$
\end_inset

 
\begin_inset Formula $\Qv$
\end_inset

 
\begin_inset Formula $\Rv$
\end_inset

 
\begin_inset Formula $\Sv$
\end_inset

 
\begin_inset Formula $\Tv$
\end_inset

 
\begin_inset Formula $\Uv$
\end_inset

 
\begin_inset Formula $\Vv$
\end_inset

 
\begin_inset Formula $\Wv$
\end_inset

 
\begin_inset Formula $\Xv$
\end_inset

 
\begin_inset Formula $\Yv$
\end_inset

 
\begin_inset Formula $\Zv$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Aw}{\textit{this is the macro Aw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bw}{\textit{this is the macro Bw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cw}{\textit{this is the macro Cw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dw}{\textit{this is the macro Dw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ew}{\textit{this is the macro Ew}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fw}{\textit{this is the macro Fw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gw}{\textit{this is the macro Gw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hw}{\textit{this is the macro Hw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Iw}{\textit{this is the macro Iw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jw}{\textit{this is the macro Jw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kw}{\textit{this is the macro Kw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lw}{\textit{this is the macro Lw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mw}{\textit{this is the macro Mw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nw}{\textit{this is the macro Nw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ow}{\textit{this is the macro Ow}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pw}{\textit{this is the macro Pw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qw}{\textit{this is the macro Qw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rw}{\textit{this is the macro Rw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sw}{\textit{this is the macro Sw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tw}{\textit{this is the macro Tw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uw}{\textit{this is the macro Uw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vw}{\textit{this is the macro Vw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ww}{\textit{this is the macro Ww}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xw}{\textit{this is the macro Xw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yw}{\textit{this is the macro Yw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zw}{\textit{this is the macro Zw}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Aw$
\end_inset

 
\begin_inset Formula $\Bw$
\end_inset

 
\begin_inset Formula $\Cw$
\end_inset

 
\begin_inset Formula $\Dw$
\end_inset

 
\begin_inset Formula $\Ew$
\end_inset

 
\begin_inset Formula $\Fw$
\end_inset

 
\begin_inset Formula $\Gw$
\end_inset

 
\begin_inset Formula $\Hw$
\end_inset

 
\begin_inset Formula $\Iw$
\end_inset

 
\begin_inset Formula $\Jw$
\end_inset

 
\begin_inset Formula $\Kw$
\end_inset

 
\begin_inset Formula $\Lw$
\end_inset

 
\begin_inset Formula $\Mw$
\end_inset

 
\begin_inset Formula $\Nw$
\end_inset

 
\begin_inset Formula $\Ow$
\end_inset

 
\begin_inset Formula $\Pw$
\end_inset

 
\begin_inset Formula $\Qw$
\end_inset

 
\begin_inset Formula $\Rw$
\end_inset

 
\begin_inset Formula $\Sw$
\end_inset

 
\begin_inset Formula $\Tw$
\end_inset

 
\begin_inset Formula $\Uw$
\end_inset

 
\begin_inset Formula $\Vw$
\end_inset

 
\begin_inset Formula $\Ww$
\end_inset

 
\begin_inset Formula $\Xw$
\end_inset

 
\begin_inset Formula $\Yw$
\end_inset

 
\begin_inset Formula $\Zw$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ax}{\textit{this is the macro Ax}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bx}{\textit{this is the macro Bx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cx}{\textit{this is the macro Cx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dx}{\textit{this is the macro Dx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ex}{\textit{this is the macro Ex}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fx}{\textit{this is the macro Fx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gx}{\textit{this is the macro Gx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hx}{\textit{this is the macro Hx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ix}{\textit{this is the macro Ix}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jx}{\textit{this is the macro Jx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kx}{\textit{this is the macro Kx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lx}{\textit{this is the macro Lx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mx}{\textit{this is the macro Mx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nx}{\textit{this is the macro Nx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ox}{\textit{this is the macro Ox}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Px}{\textit{this is the macro Px}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qx}{\textit{this is the macro Qx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rx}{\textit{this is the macro Rx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sx}{\textit{this is the macro Sx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tx}{\textit{this is the macro Tx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ux}{\textit{this is the macro Ux}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vx}{\textit{this is the macro Vx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wx}{\textit{this is the macro Wx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xx}{\textit{this is the macro Xx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yx}{\textit{this is the macro Yx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zx}{\textit{this is the macro Zx}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ax$
\end_inset

 
\begin_inset Formula $\Bx$
\end_inset

 
\begin_inset Formula $\Cx$
\end_inset

 
\begin_inset Formula $\Dx$
\end_inset

 
\begin_inset Formula $\Ex$
\end_inset

 
\begin_inset Formula $\Fx$
\end_inset

 
\begin_inset Formula $\Gx$
\end_inset

 
\begin_inset Formula $\Hx$
\end_inset

 
\begin_inset Formula $\Ix$
\end_inset

 
\begin_inset Formula $\Jx$
\end_inset

 
\begin_inset Formula $\Kx$
\end_inset

 
\begin_inset Formula $\Lx$
\end_inset

 
\begin_inset Formula $\Mx$
\end_inset

 
\begin_inset Formula $\Nx$
\end_inset

 
\begin_inset Formula $\Ox$
\end_inset

 
\begin_inset Formula $\Px$
\end_inset

 
\begin_inset Formula $\Qx$
\end_inset

 
\begin_inset Formula $\Rx$
\end_inset

 
\begin_inset Formula $\Sx$
\end_inset

 
\begin_inset Formula $\Tx$
\end_inset

 
\begin_inset Formula $\Ux$
\end_inset

 
\begin_inset Formula $\Vx$
\end_inset

 
\begin_inset Formula $\Wx$
\end_inset

 
\begin_inset Formula $\Xx$
\end_inset

 
\begin_inset Formula $\Yx$
\end_inset

 
\begin_inset Formula $\Zx$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ay}{\textit{this is the macro Ay}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\By}{\textit{this is the macro By}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cy}{\textit{this is the macro Cy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dy}{\textit{this is the macro Dy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ey}{\textit{this is the macro Ey}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fy}{\textit{this is the macro Fy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gy}{\textit{this is the macro Gy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hy}{\textit{this is the macro Hy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Iy}{\textit{this is the macro Iy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jy}{\textit{this is the macro Jy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ky}{\textit{this is the macro Ky}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ly}{\textit{this is the macro Ly}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\My}{\textit{this is the macro My}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ny}{\textit{this is the macro Ny}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oy}{\textit{this is the macro Oy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Py}{\textit{this is the macro Py}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qy}{\textit{this is the macro Qy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ry}{\textit{this is the macro Ry}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sy}{\textit{this is the macro Sy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ty}{\textit{this is the macro Ty}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uy}{\textit{this is the macro Uy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vy}{\textit{this is the macro Vy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wy}{\textit{this is the macro Wy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xy}{\textit{this is the macro Xy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yy}{\textit{this is the macro Yy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zy}{\textit{this is the macro Zy}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Ay$
\end_inset

 
\begin_inset Formula $\By$
\end_inset

 
\begin_inset Formula $\Cy$
\end_inset

 
\begin_inset Formula $\Dy$
\end_inset

 
\begin_inset Formula $\Ey$
\end_inset

 
\begin_inset Formula $\Fy$
\end_inset

 
\begin_inset Formula $\Gy$
\end_inset

 
\begin_inset Formula $\Hy$
\end_inset

 
\begin_inset Formula $\Iy$
\end_inset

 
\begin_inset Formula $\Jy$
\end_inset

 
\begin_inset Formula $\Ky$
\end_inset

 
\begin_inset Formula $\Ly$
\end_inset

 
\begin_inset Formula $\My$
\end_inset

 
\begin_inset Formula $\Ny$
\end_inset

 
\begin_inset Formula $\Oy$
\end_inset

 
\begin_inset Formula $\Py$
\end_inset

 
\begin_inset Formula $\Qy$
\end_inset

 
\begin_inset Formula $\Ry$
\end_inset

 
\begin_inset Formula $\Sy$
\end_inset

 
\begin_inset Formula $\Ty$
\end_inset

 
\begin_inset Formula $\Uy$
\end_inset

 
\begin_inset Formula $\Vy$
\end_inset

 
\begin_inset Formula $\Wy$
\end_inset

 
\begin_inset Formula $\Xy$
\end_inset

 
\begin_inset Formula $\Yy$
\end_inset

 
\begin_inset Formula $\Zy$
\end_inset

 
\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Az}{\textit{this is the macro Az}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Bz}{\textit{this is the macro Bz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Cz}{\textit{this is the macro Cz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Dz}{\textit{this is the macro Dz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Ez}{\textit{this is the macro Ez}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Fz}{\textit{this is the macro Fz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Gz}{\textit{this is the macro Gz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Hz}{\textit{this is the macro Hz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Iz}{\textit{this is the macro Iz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Jz}{\textit{this is the macro Jz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Kz}{\textit{this is the macro Kz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Lz}{\textit{this is the macro Lz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Mz}{\textit{this is the macro Mz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Nz}{\textit{this is the macro Nz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Oz}{\textit{this is the macro Oz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Pz}{\textit{this is the macro Pz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Qz}{\textit{this is the macro Qz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Rz}{\textit{this is the macro Rz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Sz}{\textit{this is the macro Sz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Tz}{\textit{this is the macro Tz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Uz}{\textit{this is the macro Uz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Vz}{\textit{this is the macro Vz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Wz}{\textit{this is the macro Wz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Xz}{\textit{this is the macro Xz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Yz}{\textit{this is the macro Yz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset FormulaMacro
\newcommand{\Zz}{\textit{this is the macro Zz}}
\end_inset


\end_layout

\begin_layout Standard
\begin_inset Formula $\Az$
\end_inset

 
\begin_inset Formula $\Bz$
\end_inset

 
\begin_inset Formula $\Cz$
\end_inset

 
\begin_inset Formula $\Dz$
\end_inset

 
\begin_inset Formula $\Ez$
\end_inset

 
\begin_inset Formula $\Fz$
\end_inset

 
\begin_inset Formula $\Gz$
\end_inset

 
\begin_inset Formula $\Hz$
\end_inset

 
\begin_inset Formula $\Iz$
\end_inset

 
\begin_inset Formula $\Jz$
\end_inset

 
\begin_inset Formula $\Kz$
\end_inset

 
\begin_inset Formula $\Lz$
\end_inset

 
\begin_inset Formula $\Mz$
\end_inset

 
\begin_inset Formula $\Nz$
\end_inset

 
\begin_inset Formula $\Oz$
\end_inset

 
\begin_inset Formula $\Pz$
\end_inset

 
\begin_inset Formula $\Qz$
\end_inset

 
\begin_inset Formula $\Rz$
\end_inset

 
\begin_inset Formula $\Sz$
\end_inset

 
\begin_inset Formula $\Tz$
\end_inset

 
\begin_inset Formula $\Uz$
\end_inset

 
\begin_inset Formula $\Vz$
\end_inset

 
\begin_inset Formula $\Wz$
\end_inset

 
\begin_inset Formula $\Xz$
\end_inset

 
\begin_inset Formula $\Yz$
\end_inset

 
\begin_inset Formula $\Zz$
\end_inset

 
\end_layout

\end_body
\end_document

Reply via email to