Index: doc/proposals/concurrency/thePlan.md
===================================================================
--- doc/proposals/concurrency/thePlan.md	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
+++ doc/proposals/concurrency/thePlan.md	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,24 @@
+_Phase 1_ : Prototype
+Threads and Processors.
+Main needs to call process
+
+_Phase 2_ : Minimum Viable Product
+Main thread is a cfa thread
+Basic monitors for synchronisation and minimal lock support.
+No internal/external scheduling.
+Synchronisation points in thread destructors.
+
+_Phase 3_ : Kernel features
+Threads features ex: detach
+Internal scheduling
+Clusters
+
+_Phase 4_ : Monitor features
+Multi monitors calls,
+External scheduling
+
+_Phase 5_ : Performance
+Proper scheduler
+...
+
+
Index: doc/proposals/ctordtor/Makefile
===================================================================
--- doc/proposals/ctordtor/Makefile	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
+++ doc/proposals/ctordtor/Makefile	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,81 @@
+## Define the appropriate configuration variables.
+
+MACROS = ../../LaTeXmacros
+BIB = ../../bibliography
+
+TeXLIB = .:$(MACROS):$(MACROS)/listings:$(MACROS)/enumitem:$(BIB)/:
+LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error
+BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
+
+## Define the text source files.
+
+SOURCES = ${addsuffix .tex, \
+ctor \
+}
+
+FIGURES = ${addsuffix .tex, \
+}
+
+PICTURES = ${addsuffix .pstex, \
+}
+
+PROGRAMS = ${addsuffix .tex, \
+}
+
+GRAPHS = ${addsuffix .tex, \
+}
+
+## Define the documents that need to be made.
+
+DOCUMENT = ctor.pdf
+
+# Directives #
+
+all : ${DOCUMENT}
+
+clean :
+	rm -f *.bbl *.aux *.dvi *.idx *.ilg *.ind *.brf *.out *.log *.toc *.blg *.pstex_t *.cf \
+		${FIGURES} ${PICTURES} ${PROGRAMS} ${GRAPHS} ${basename ${DOCUMENT}}.ps ${DOCUMENT}
+
+# File Dependencies #
+
+${DOCUMENT} : ${basename ${DOCUMENT}}.ps
+	ps2pdf $<
+
+${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi
+	dvips $< -o $@
+
+${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \
+		$(MACROS)/common.tex $(MACROS)/indexstyle $(BIB)/cfa.bib
+	# Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
+	if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi
+	# Must have *.aux file containing citations for bibtex
+	if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
+	-${BibTeX} ${basename $@}
+	# Some citations reference others so run steps again to resolve these citations
+	${LaTeX} ${basename $@}.tex
+	-${BibTeX} ${basename $@}
+	# Make index from *.aux entries and input index at end of document
+	makeindex -s $(MACROS)/indexstyle ${basename $@}.idx
+	${LaTeX} ${basename $@}.tex
+	# Run again to get index title into table of contents
+	${LaTeX} ${basename $@}.tex
+
+predefined :
+	sed -f predefined.sed ${basename ${DOCUMENT}}.tex > ${basename $@}.cf
+
+## Define the default recipes.
+
+%.tex : %.fig
+	fig2dev -L eepic $< > $@
+
+%.ps : %.fig
+	fig2dev -L ps $< > $@
+
+%.pstex : %.fig
+	fig2dev -L pstex $< > $@
+	fig2dev -L pstex_t -p $@ $< > $@_t
+
+# Local Variables: #
+# compile-command: "make" #
+# End: #
Index: doc/proposals/ctordtor/ctor.tex
===================================================================
--- doc/proposals/ctordtor/ctor.tex	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
+++ doc/proposals/ctordtor/ctor.tex	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,330 @@
+% inline code ©...© (copyright symbol) emacs: C-q M-)
+% red highlighting ®...® (registered trademark symbol) emacs: C-q M-.
+% blue highlighting ß...ß (sharp s symbol) emacs: C-q M-_
+% green highlighting ¢...¢ (cent symbol) emacs: C-q M-"
+% LaTex escape §...§ (section symbol) emacs: C-q M-'
+% keyword escape ¶...¶ (pilcrow symbol) emacs: C-q M-^
+% math escape $...$ (dollar symbol)
+
+\documentclass[twoside,11pt]{article}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Latex packages used in the document (copied from CFA user manual).
+\usepackage[T1]{fontenc}                                % allow Latin1 (extended ASCII) characters
+\usepackage{textcomp}
+\usepackage[latin1]{inputenc}
+\usepackage{fullpage,times,comment}
+\usepackage{epic,eepic}
+\usepackage{upquote}									% switch curled `'" to straight
+\usepackage{calc}
+\usepackage{xspace}
+\usepackage{graphicx}
+\usepackage{varioref}									% extended references
+\usepackage{listings}									% format program code
+\usepackage[flushmargin]{footmisc}						% support label/reference in footnote
+\usepackage{latexsym}                                   % \Box glyph
+\usepackage{mathptmx}                                   % better math font with "times"
+\usepackage[usenames]{color}
+\usepackage[pagewise]{lineno}
+\renewcommand{\linenumberfont}{\scriptsize\sffamily}
+\input{common}                                          % bespoke macros used in the document
+\usepackage[dvips,plainpages=false,pdfpagelabels,pdfpagemode=UseNone,colorlinks=true,pagebackref=true,linkcolor=blue,citecolor=blue,urlcolor=blue,pagebackref=true,breaklinks=true]{hyperref}
+\usepackage{breakurl}
+\renewcommand{\UrlFont}{\small\sf}
+
+\setlength{\topmargin}{-0.45in}							% move running title into header
+\setlength{\headsep}{0.25in}
+
+\usepackage{caption}
+\usepackage{subcaption}
+\usepackage{bigfoot}
+\usepackage{amsmath}
+
+\interfootnotelinepenalty=10000
+
+\title{
+\Huge \vspace*{1in} Constructors and Destructors in \CFA \\
+\vspace*{1in}
+}
+
+\author{
+\huge Rob Schluntz \\
+\Large \vspace*{0.1in} \texttt{rschlunt@uwaterloo.ca} \\
+\Large Cheriton School of Computer Science \\
+\Large University of Waterloo
+}
+
+\date{
+\today
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\newcommand{\bigO}[1]{O\!\left( #1 \right)}
+
+\begin{document}
+\pagestyle{headings}
+% changed after setting pagestyle
+\renewcommand{\sectionmark}[1]{\markboth{\thesection\quad #1}{\thesection\quad #1}}
+\renewcommand{\subsectionmark}[1]{\markboth{\thesubsection\quad #1}{\thesubsection\quad #1}}
+\pagenumbering{roman}
+% \linenumbers                                            % comment out to turn off line numbering
+
+\maketitle
+\thispagestyle{empty}
+
+\clearpage
+\thispagestyle{plain}
+\pdfbookmark[1]{Contents}{section}
+\tableofcontents
+
+\clearpage
+\thispagestyle{plain}
+\pagenumbering{arabic}
+
+
+
+\section{Introduction}
+Unguided manual resource management is difficult.
+Part of the difficulty results from not having any guarantees about the current state of an object.
+Objects can be internally composed of pointers which may reference resources that may or may not need to be manually released, and keeping track of that state for each object can be difficult for the end user.
+
+Constructors and destructors provide a mechanism which bookend the lifetime of an object, allowing the designer of an object to establish invariants for objects of a specific type.
+Constructors guarantee that object initialization code is run before the object can be used, while destructors provide a mechanism that is guaranteed to be run immediately before an object's lifetime ends.
+Constructors and destructors can help to simplify resource management when used in a disciplined way.
+In particular, when all resources are acquired in a constructor, and all resources are released in a destructor, no resource leaks are possible.
+This pattern is a popular idiom in several languages, such as \CC, known as RAII (Resource Acquisition Is Initialization).
+
+
+\section{Design}
+\label{s:Design}
+In designing constructors and destructors for \CFA, the primary goals were ease of use and maintaining backwards compatibility.
+
+In C, when a variable is defined, its value is initially undefined unless it is explicitly initialized or allocated in the static area.
+\begin{lstlisting}
+int main() {
+  int x;
+  int y = 5;
+  x = y;
+}
+\end{lstlisting}
+In the example above, ©x© is defined and left uninitialized, while ©y© is defined and initialized to 5.
+In the last line, ©x© is assigned the value of ©y©.
+The key difference between assignment and initialization being that assignment occurs on a live object (i.e. an object that contains data).
+It is important to note that this means ©x© could have been used uninitialized prior to being assigned, while ©y© could not be used uninitialized.
+Use of uninitialized variables commonly yields undefined behaviour, which is a common source of bugs in C programs. % TODO: *citation*
+
+A constructor is a special function which provides a way of ensuring that some form of object initialization is performed.
+This goal is achieved through a guarantee that a constructor will be called implicitly on every object that is allocated, immediately after the object's definition.
+Since a constructor is called on every object, it is impossible to forget to initialize a single object, as long as all constructors perform some sensible form of initialization.
+
+In \CFA, a constructor is a function with the name ©?{}©.
+Every constructor must have a return type of ©void© and at least one parameter, the first of which is colloquially referred to as the \emph{this} parameter, as in many object-oriented programming languages.
+The ©this© parameter must have a pointer type, whose base type is the type of object that the function constructs.
+There is currently a proposal to add reference types to \CFA.
+Once this proposal has been implemented, the ©this© parameter should instead be a reference type with the same restrictions.
+
+% \begin{lstlisting}
+% void ?{}(int * i) {
+%   *i = 0;
+% }
+% int x, y = 1, z;
+% \end{lstlisting}
+% In this example, a constructor is defined which initializes variables of type ©int© to 0.
+
+Consider the definition of a simple type which encapsulates a dynamic array of ©int©s.
+
+\begin{lstlisting}
+struct Array {
+  int * data;
+  int len;
+}
+\end{lstlisting}
+
+In C, if the user creates an ©Array© object, the fields ©data© and ©len© will be uninitialized by default.
+It is the user's responsibility to remember to initialize both of the fields to sensible values.
+In \CFA, the user can define a constructor to handle initialization of ©Array© objects.
+
+\begin{lstlisting}
+void ?{}(Array * arr){
+  arr->len = 10;
+  arr->data = malloc(sizeof(int)*len);
+  for (int i = 0; i < arr->len; ++i) {
+    arr->data[i] = 0;
+  }
+}
+Array x;
+\end{lstlisting}
+
+This constructor will initialize ©x© so that its ©length© field has the value 10, and its ©data© field holds a pointer to a block of memory large enough to hold 10 ©int©s, and sets the value of each element of the array to 0.
+This particular form of constructor is called the \emph{default constructor}, because it is called an object defined without an initializer.
+A default constructor is a constructor which takes a single argument, the ©this© parameter.
+
+In \CFA, a destructor is a function much like a constructor, except that its name is ©^?{}©.
+A destructor for the ©Array© type can be defined as such.
+\begin{lstlisting}
+void ^?{}(Array * arr) {
+  free(arr->data);
+}
+\end{lstlisting}
+Since the destructor is automatically called for all objects of type ©Array©, the memory associated with an ©Array© will automatically be freed when the object's lifetime ends.
+% The exact guarantees made by \CFA with respect to the calling of destructors will be discussed in detail [later].
+
+As discussed previously, the distinction between initialization and assignment is important.
+Consider the following example.
+\begin{lstlisting}
+Array x;
+Array y;
+Array z = x;
+y = x;
+\end{lstlisting}
+By the previous definition of the default constructor for ©Array©, ©x© and ©y© are initialized to valid arrays of length 10 after their respective definitions.
+On line 3, ©z© is initialized with the value of ©x©, while on line ©4©, ©y© is assigned the value of ©x©.
+The key distinction between initialization and assignment is that a value about to be initialized does not hold any meaningful values, whereas an object about to be assigned might.
+In particular, these cases cannot be handled the same way because in the former case ©z© does not currently own an array, while ©y© does.
+
+\begin{lstlisting}
+void ?{}(Array * arr, Array other) {
+  arr->len = other.len;
+  arr->data = malloc(sizeof(int)*arr->len)
+  for (int i = 0; i < arr->len; ++i) {
+    arr->data[i] = other.data[i];
+  }
+}
+Array ?=?(Array * arr, Array other) {
+  ^?{}(arr);
+  ?{}(arr, other);
+  return *arr;
+}
+\end{lstlisting}
+The two functions above handle these cases.
+The first function is called a \emph{copy constructor}, because it constructs its argument from a single value of the same type.
+The second function is the standard copy assignment operator.
+These four functions are special in that they control the state of most objects.
+
+% TODO: start new section here? this is where the definition of the rules begins to become more formal, whereas everything leading up to this was mostly exposition by example
+\subsection{Function Generation Details}
+By default, every type is defined to have the core set of functions described previously.
+To mimic the behaviour of plain C, the default constructor and destructor for all of the basic types are defined to do nothing, while the copy constructor and assignment operator perform a bitwise copy of the source parameter.
+
+There are several options for user-defined types: structures, unions, and enumerations.
+To aid in ease of use, the standard set of four functions is automatically generated for a user-defined type after its definition is completed.
+
+The generated functions for enumerations are the simplest.
+Since enumerations in C are essentially just another integral type, the generated functions behave in the same way that the builtin functions for the basic types work.
+
+For structures, the situation is more complicated.
+For a structure ©S© with members ©M$_0$©, ©M$_1$©, ... ©M$_{N-1}$©, each function ©f© in the standard set will call ©f(s->M$_i$, ...)© for each ©$i$©.
+That is, a default constructor for ©S© will default construct the members of ©S©, the copy constructor with copy construct them, and so on.
+ % TODO: description VERY weak. Flesh out details
+For example given the struct definition
+\begin{lstlisting}
+struct A {
+  B b;
+  C c;
+}
+\end{lstlisting}
+The following functions are implicitly generated.
+\begin{lstlisting}
+void ?{}(A * this) {
+  ?{}(&this->b);
+  ?{}(&this->c);
+}
+void ?{}(A * this, A other) {
+  ?{}(&this->b, other.b);
+  ?{}(&this->c, other.c);
+}
+A ?=?(A * this, A other) {
+  ?=?(&this->b, other.b);
+  ?=?(&this->c, other.c);
+}
+void ^?{}(A * this) {
+  ^?{}(&this->b);
+  ^?{}(&this->c);
+}
+\end{lstlisting}
+
+In addition to the standard set, a set of \emph{field constructors} is also generated for structures.
+The field constructors are constructors that consume a prefix of the struct's member list.
+That is, $N$ constructors are built of the form ©void ?{}(S *, T$_{\text{M}_0}$)©, ©void ?{}(S *, T$_{\text{M}_0}$, T$_{\text{M}_1}$)©, ..., ©void ?{}(S *, T$_{\text{M}_0}$, T$_{\text{M}_1}$, ..., T$_{\text{M}_{N-1}}$)©, where members are copy constructed if they have a corresponding positional argument and are default constructed otherwise.
+The addition of field constructors allows structs in \CFA to be used naturally in the same ways that they could be used in C (i.e. to initialize any prefix of the struct).
+Extending the previous example, the following constructors are implicitly generated for ©A©.
+\begin{lstlisting}
+void ?{}(A * this, B b) {
+  ?{}(&this->b, b);
+  ?{}(&this->c);
+}
+void ?{}(A * this, B b, C c) {
+  ?{}(&this->b, b);
+  ?{}(&this->c, c);
+}
+\end{lstlisting}
+
+For unions, the default constructor and destructor do nothing, as it's not obvious which member if any should be constructed.
+For copy constructor and assignment operations, a bitwise ©memcpy© is applied.
+An alterantive to this design is to always construct and destruct the first member of a union, to match with the C semantics of initializing the first member of the union.
+This approach ultimately feels subtle and unsafe.
+Another option is to, like \CC, disallow unions from containing members which are themselves managed types.
+This is a reasonable approach from a safety standpoint, but is not very C-like.
+Since the primary purpose of a union is to provide low-level memory optimization, it is assumed that the user has a certain level of maturity.
+It is therefore the responsibility of the user to define the special functions explicitly if they are appropriate, since it is impossible to accurately predict the ways that a union is intended to be used at compile-time.
+
+Arrays are a special case in the C type system.
+C arrays do not carry around their size, making it impossible to write a standalone \CFA function which constructs or destructs an array while maintaining the standard interface for constructors and destructors.
+Instead, \CFA defines the initialization and destruction of an array recursively.
+That is, when an array is defined, each of its elements will be constructed in order from element 0 up to element $n-1$.
+When an array is to be implicitly destructed, each of its elements is destructed in reverse order from element $n-1$ down to element 0.
+
+\subsection{Using Constructors and Destructors}
+Implicitly generated constructor and destructor calls ignore the outermost type qualifiers on a type by way of a cast on the first argument to the function.
+This mechanism allows the same constructors and destructors to be used for qualified objects as for unqualified objects.
+Since this applies only to implicitly generated constructor calls, the language will not allow qualified objects to be re-initialized with a constructor without an explicit cast.
+
+Unlike \CC, \CFA provides an escape hatch that allows a user to decide at an object's definition whether it should be managed or not.
+An object initialized with \lstinline{@=} is guaranteed to be initialized like a C object, and will not be implicitly destructed.
+This feature provides all of the freedom that C programmers are used to having to optimize the program, while maintaining safety as a sensible default.
+In addition to freedom, \lstinline{@=} provides a simple path to migrating legacy C code to Cforall, in that objects can be moved from C-style initialization to \CFA gradually and individually.
+It is worth noting that the use of unmanaged objects can be tricky to get right, since there is no guarantee that the proper invariants will be established on an unmanaged object.
+It is recommended that most objects are managed by sensible constructors and destructors, except where absolutely necessary.
+
+When the user defines any constructor, the intrinsic/generated functions become invisible.
+In the current implementation, the default constructor and copy constructor are only hidden when explicitly overriden, since the derefence operator ©*?© is currently an ©otype© function, which would make it impossible to override a constructor, due to the lack of assertion-satifying funcitons.
+There is a proposal which decouples size/alignment type information from ©otype©, and implementing this would allow constructors and destructors to be hidden by the same rules that \CC uses.
+
+% TODO discuss compile time "checks" for subobjects when defining ctor/dtor for struct
+When defining a constructor or destructor for a struct ©S©, any members that are not explicitly constructed or destructed will be implicitly constructed or destructed automatically.
+If an explicit call is present, then that call is taken in preference to any implicitly generated call.
+A consequence of this rule is that it is possible, unlike \CC, to precisely control the order of construction and destruction of subobjects on a per-constructor basis, whereas in \CC subobject initialization and destruction is always performed based on the declaration order.
+Finally, it is illegal for a subobject to be explicitly constructed after it is used for the first time.
+If the translator cannot be reasonably sure that an object is constructed prior to its first use, but may be constructed afterward, and error is emitted.
+To override this rule, \lstinline{@=} can be used to force the translator to trust the programmer's discretion.
+This form of \lstinline{@=} is not yet implemented.
+
+% TODO discuss error if initializer nesting is too deep or contains designations
+Despite great effort, some forms of C syntax do not work well with constructors in \CFA.
+In particular, constructor calls cannot contain designations, since this is equivalent to allowing designations on the arguments to arbitrary function calls.
+In C, function prototypes are permitted to have arbitrary parameter names, including no names at all, which may have no connection to the actual names used at function definition.
+Furthermore, a function prototype can be repeated an arbitrary number of times, each time using different names.
+As a result, it was decided that any attempt to resolve designated function calls with C's function prototype rules would be brittle, and thus it is not sensible to allow designations in constructor calls.
+In addition, constructor calls cannot have a nesting depth greater than the number of array components in the type of the initialized object, plus one.
+In C, having a greater nesting depth would mean that the programmer intends to initialize subobjects with the nested initializer.
+The reason for this omission is to both simplify the mental model for using constructors, and to make the case of initialization simpler for the resolver.
+If this were allowed, it would be necessary for the expression resolver to decide whether each argument to the constructor call could initialize to some argument to one of the available constructors, making the problem highly recursive and potentially much more expensive.
+It should be noted that if an object does not have a non-trivial constructor, it can still make use of designations and nested initializers in \CFA.
+
+% TODO section on where destruction occurs - probably belongs in implementation section? or part of it does, anyway
+Destructors are automatically called at the end of the block in which the object was declared.
+In addition to this, destructors are automatically called when statements manipulate control flow to leave the block in which the object is declared, e.g. with return, break, continue, and goto statements.
+
+% TODO discuss copy construction for function parameters and return values
+When a function is called, the arguments supplied to the call are subject to implicit copy construction, and the return value is subject to destruction.
+When a value is returned from a function, the copy constructor is called to pass the value back to the call site.
+Exempt from these rules are intrinsic and builtin functions.
+
+% TODO discuss ©= + copy construction?
+
+% \subsection{Implementation}
+% Discuss the implementation details of constructors and destructors.
+
+\end{document}
Index: doc/proposals/tuples/Makefile
===================================================================
--- doc/proposals/tuples/Makefile	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
+++ doc/proposals/tuples/Makefile	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,81 @@
+## Define the appropriate configuration variables.
+
+MACROS = ../../LaTeXmacros
+BIB = ../../bibliography
+
+TeXLIB = .:$(MACROS):$(MACROS)/listings:$(MACROS)/enumitem:$(BIB)/:
+LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error
+BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
+
+## Define the text source files.
+
+SOURCES = ${addsuffix .tex, \
+tuples \
+}
+
+FIGURES = ${addsuffix .tex, \
+}
+
+PICTURES = ${addsuffix .pstex, \
+}
+
+PROGRAMS = ${addsuffix .tex, \
+}
+
+GRAPHS = ${addsuffix .tex, \
+}
+
+## Define the documents that need to be made.
+
+DOCUMENT = tuples.pdf
+
+# Directives #
+
+all : ${DOCUMENT}
+
+clean :
+	rm -f *.bbl *.aux *.dvi *.idx *.ilg *.ind *.brf *.out *.log *.toc *.blg *.pstex_t *.cf \
+		${FIGURES} ${PICTURES} ${PROGRAMS} ${GRAPHS} ${basename ${DOCUMENT}}.ps ${DOCUMENT}
+
+# File Dependencies #
+
+${DOCUMENT} : ${basename ${DOCUMENT}}.ps
+	ps2pdf $<
+
+${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi
+	dvips $< -o $@
+
+${basename ${DOCUMENT}}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \
+		$(MACROS)/common.tex $(MACROS)/indexstyle $(BIB)/cfa.bib
+	# Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
+	if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi
+	# Must have *.aux file containing citations for bibtex
+	if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
+	-${BibTeX} ${basename $@}
+	# Some citations reference others so run steps again to resolve these citations
+	${LaTeX} ${basename $@}.tex
+	-${BibTeX} ${basename $@}
+	# Make index from *.aux entries and input index at end of document
+	makeindex -s $(MACROS)/indexstyle ${basename $@}.idx
+	${LaTeX} ${basename $@}.tex
+	# Run again to get index title into table of contents
+	${LaTeX} ${basename $@}.tex
+
+predefined :
+	sed -f predefined.sed ${basename ${DOCUMENT}}.tex > ${basename $@}.cf
+
+## Define the default recipes.
+
+%.tex : %.fig
+	fig2dev -L eepic $< > $@
+
+%.ps : %.fig
+	fig2dev -L ps $< > $@
+
+%.pstex : %.fig
+	fig2dev -L pstex $< > $@
+	fig2dev -L pstex_t -p $@ $< > $@_t
+
+# Local Variables: #
+# compile-command: "make" #
+# End: #
Index: doc/proposals/tuples/tuples.tex
===================================================================
--- doc/proposals/tuples/tuples.tex	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
+++ doc/proposals/tuples/tuples.tex	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,336 @@
+% inline code ©...© (copyright symbol) emacs: C-q M-)
+% red highlighting ®...® (registered trademark symbol) emacs: C-q M-.
+% blue highlighting ß...ß (sharp s symbol) emacs: C-q M-_
+% green highlighting ¢...¢ (cent symbol) emacs: C-q M-"
+% LaTex escape §...§ (section symbol) emacs: C-q M-'
+% keyword escape ¶...¶ (pilcrow symbol) emacs: C-q M-^
+% math escape $...$ (dollar symbol)
+
+\documentclass[twoside,11pt]{article}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+% Latex packages used in the document (copied from CFA user manual).
+\usepackage[T1]{fontenc}                                % allow Latin1 (extended ASCII) characters
+\usepackage{textcomp}
+\usepackage[latin1]{inputenc}
+\usepackage{fullpage,times,comment}
+\usepackage{epic,eepic}
+\usepackage{upquote}									% switch curled `'" to straight
+\usepackage{calc}
+\usepackage{xspace}
+\usepackage{graphicx}
+\usepackage{varioref}									% extended references
+\usepackage{listings}									% format program code
+\usepackage[flushmargin]{footmisc}						% support label/reference in footnote
+\usepackage{latexsym}                                   % \Box glyph
+\usepackage{mathptmx}                                   % better math font with "times"
+\usepackage[usenames]{color}
+\usepackage[pagewise]{lineno}
+\renewcommand{\linenumberfont}{\scriptsize\sffamily}
+\input{common}                                          % bespoke macros used in the document
+\usepackage[dvips,plainpages=false,pdfpagelabels,pdfpagemode=UseNone,colorlinks=true,pagebackref=true,linkcolor=blue,citecolor=blue,urlcolor=blue,pagebackref=true,breaklinks=true]{hyperref}
+\usepackage{breakurl}
+\renewcommand{\UrlFont}{\small\sf}
+
+\setlength{\topmargin}{-0.45in}							% move running title into header
+\setlength{\headsep}{0.25in}
+
+\usepackage{caption}
+\usepackage{subcaption}
+\usepackage{bigfoot}
+
+\interfootnotelinepenalty=10000
+
+\title{
+\Huge \vspace*{1in} Tuple Design in \CFA \\
+\vspace*{1in}
+}
+
+\author{
+\huge Rob Schluntz \\
+\Large \vspace*{0.1in} \texttt{rschlunt@uwaterloo.ca} \\
+\Large Cheriton School of Computer Science \\
+\Large University of Waterloo
+}
+
+\date{
+\today
+}
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\newcommand{\bigO}[1]{O\!\left( #1 \right)}
+
+\begin{document}
+\pagestyle{headings}
+% changed after setting pagestyle
+\renewcommand{\sectionmark}[1]{\markboth{\thesection\quad #1}{\thesection\quad #1}}
+\renewcommand{\subsectionmark}[1]{\markboth{\thesubsection\quad #1}{\thesubsection\quad #1}}
+\pagenumbering{roman}
+% \linenumbers                                            % comment out to turn off line numbering
+
+\maketitle
+\thispagestyle{empty}
+
+\clearpage
+\thispagestyle{plain}
+\pdfbookmark[1]{Contents}{section}
+\tableofcontents
+
+\clearpage
+\thispagestyle{plain}
+\pagenumbering{arabic}
+
+
+\section{Introduction}
+This document describes my understanding of the existing tuple design~\cite{Buhr94a,Till89}, mixed with my thoughts on improvements after various discussions with Peter, Aaron, and Thierry.
+
+\section{Tuple Expressions}
+A tuple expression is an expression which produces a fixed-size, ordered list of values of heterogeneous types.
+The type of a tuple expression is the tuple of the subexpression types.
+In Cforall, a tuple expression is denoted by a list of expressions enclosed in square brackets.
+
+For example, the expression ©[5, 'x', 10.5]© has type ©[int, char, double]©.
+Tuples are a compile-time phenomenon and have little to no run-time presence.
+
+\subsection{Tuple Variables}
+It is possible to have variables of tuple type, pointer to tuple type, and array of tuple type.
+Tuple types can be composed of any types, except for array types \footnote{I did not see this issue mentioned at all in the original design. A tuple containing an array type seems to make sense up until you try to use a tuple containing an array type as a function parameter. At this point you lose information about the size of the array, which makes tuple assignment difficult. Rather than allowing arrays in most situations and disallowing only as function parameters, it seems like it would be better to be consistent across the board.}.
+
+\begin{lstlisting}
+[double, int] di;
+[double, int] * pdi
+[double, int] adi[10];
+\end{lstlisting}
+The program above declares a variable of type ©[double, int]©, a variable of type pointer to ©[double, int]©, and an array of ten ©[double, int]©.
+
+\subsection{Flattening and Structuring}
+In Cforall, tuples do not have a rigid structure.
+In function call contexts, tuples support implicit flattening and restructuring \footnote{In the original tuple design, four tuple coercions were described: opening, closing, flattening, and structuring. I've combined flattening with opening and structuring with closing in my description, as the distinctions do not seem useful in Cforall since these coercions happen only as arguments to function calls, and I believe all of the semantics are properly covered by the simplified descriptions.}. Tuple flattening recursively expands a tuple into the list of its basic components. Tuple structuring packages a list of expressions into a value of tuple type.
+
+\begin{lstlisting}
+int f(int, int);
+int g([int, int]);
+int h(int, [int, int]);
+[int, int] x;
+int y;
+
+f(x);
+g(y, 10);
+h(x, y);
+\end{lstlisting}
+In Cforall, each of these calls is valid.
+In the call to ©f©, ©x© is implicitly flattened so that the components of ©x© are passed as the two arguments to ©f©.
+For the call to ©g©, the values ©y© and ©10© are structured into a single argument of type ©[int, int]© to match the type of the parameter of ©g©.
+Finally, in the call to ©h©, ©y© is flattened to yield an argument list of length 3, of which the first component of ©x© is passed as the first parameter of ©h©, and the second component of ©x© and ©y© are structured into the second argument of type ©[int, int]©.
+
+\section{Functions}
+\subsection{Argument Passing}
+In resolving a function call, all of the arguments to the call are flattened.
+While determining if a particular function/argument-list combination is valid, the arguments are structured to match the shape of each formal parameter, in order.
+
+For example, given a function declaration ©[int] f(int, [double, int])©, the call ©f([5, 10.2], 0)© can be satisfied by first flattening the tuple to yield the expression ©f(5, 10.2, 0)© and then structuring the argument list to match the formal parameter list structure as ©f(5, [10.2, 0])©.
+
+\subsection{Multiple-Return-Value Functions}
+Functions can be declared to return more than one value.
+Multiple return values are packaged into a tuple value when the function returns.
+A multiple-returning function with return type ©T© can return any expression which is implicitly convertible to ©T©.
+
+\subsection{Tuple Assignment}
+An assignment where the left side of the assignment operator has a tuple type is called tuple assignment.
+There are two kinds of tuple assignment depending on whether the right side of the assignment operator has a tuple type or a non-tuple type, called Multiple Assignment and Mass Assignment respectively.
+Let $L_i$ for $i$ in $[0, n)$ represent each component of the flattened left side, $R_i$ represent each component of the flattened right side of a multiple assignment, and $R$ represent the right side of a mass assignment.
+
+For a multiple assignment to be valid, both tuples must have the same number of elements when flattened. Multiple assignment assigns $R_i$ to $L_i$ for each $i$.
+That is, ©?=?(&$L_i$, $R_i$)© must be a well-typed expression.
+
+Mass assignment assigns the value $R$ to each $L_i$. For a mass assignment to be valid, ©?=?(&$L_i$, $R$)© must be a well-typed expression.
+This differs from C cascading assignment (e.g. ©a=b=c©) in that conversions are applied to $R$ in each individual assignment, which prevents data loss from the chain of conversions that can happen during a cascading assignment.
+
+Both kinds of tuple assignment have parallel semantics, such that each value on the left side and right side is evaluated \emph{before} any assignments occur.
+Tuple assignment is an expression where the result type is the type of the left side of the assignment, as in normal assignment (i.e. the tuple of the types of the left side expressions) \footnote{This is a change from the original tuple design, wherein tuple assignment was a statement. This decision appears to have been made in an attempt to fix what was seen as a problem with assignment, but at the same time this doesn't seem to fit C or Cforall very well. In another language, tuple assignment as a statement could be reasonable, but I don't see a good justification for making this the only kind of assignment that isn't an expression. In this case, I would value consistency over idealism}.
+These semantics allow cascading tuple assignment to work out naturally in any context where a tuple is permitted.
+
+The following example shows multiple, mass, and cascading assignment in one expression
+\begin{lstlisting}
+  int a, b;
+  double c, d;
+  [void] f([int, int]);
+  f([c, a] = [b, d] = 1.5);
+\end{lstlisting}
+First a mass assignment of ©1.5© into ©[b, d]©, which assigns ©1.5© into ©b©, which is truncated to ©1©, and ©1© into ©d©, producing the tuple ©[1, 1.5]© as a result.
+That tuple is used as the right side of the multiple assignment (i.e. ©[c, a] = [1, 1.5]©) which assigns ©1© into ©c© and ©1.5© into ©a©, which is truncated to ©1©, producing the result ©[1, 1]©.
+Finally, the tuple ©[1, 1]© is used as an expression in the call to ©f©.
+
+\subsection{Tuple Construction}
+Tuple construction and destruction follow the same rules and semantics as tuple assignment, except that in the case where there is no right side, the default constructor or destructor is called on each component of the tuple.
+
+It is possible to define constructors and assignment functions for tuple types that provide new semantics.
+For example, the function ©void ?{}([T, U] *, S);© can be defined to allow a tuple variable to be constructed from a value of type ©S©. Due to the structure of generated constructors, it is possible to pass a tuple to a generated constructor for a type with a member prefix that matches the type of the tuple (e.g. an instance of ©struct S { int x; double y; int z }© can be constructed with a tuple of type ©[int, double]©, `out of the box').
+
+\section{Other Tuple Expressions}
+\subsection{Member Tuple Expression}
+It is possible to access multiple fields from a single expression using a Member Tuple Expression \footnote{Called ``record field tuple'' in the original design, but there's no reason to limit this feature to only structs, so ``field tuple'' or ``member tuple'' feels more appropriate.}.
+The result is a single tuple-valued expression whose type is the tuple of the types of the members.
+A member tuple expression has the form ©a.[x, y, z];© where ©a© is an expression with type ©T©, where ©T© supports member access expressions, and ©x, y, z© are all members of ©T© with types ©T$_x$©, ©T$_y$©, and ©T$_z$© respectively.
+Then the type of ©a.[x, y, z]© is ©[T$_x$, T$_y$, T$_z$]©.
+It is possible for a member tuple expression to contain other member access expressions, e.g. ©a.[x, y.[i, j], z.k]©.
+This expression is equivalent to ©[a.x, [a.y.i, a.y.j], a.z.k]©.
+It is guaranteed that the aggregate expression to the left of the ©.© on a member tuple expression is evaluated once.
+
+\subsection{Tuple Indexing}
+Sometimes it is desirable to access a single component of a tuple-valued expression without creating unnecessary temporary variables to assign to.
+Given a tuple-valued expression ©e© and a compile-time constant integer $i$ where $0 \leq i < n$, where $n$ is the number of components in ©e©, ©e.i© will access the $i$\textsuperscript{th} component of ©e©.
+% \footnote{If this syntax cannot be parsed, we can make it ©_i©, and a semantic check ensures that ©_i© has the right form. The capability to access a component of a tuple is helpful internally, and there doesn't seem to be a disadvantage to exposing it to users. On the other hand, it is more general than casting and much more explicit, while also being less verbose.}.
+It is possible to use a member tuple expression with tuple indexing to manually restructure a tuple (rearrange components, drop components, duplicate components, etc.).
+
+% TODO: mention that Tuple.member_name and Aggregate.index could have sensible semantics, but introduce complexity into the model. Agg.idx could mean get the ith member of the aggregate (further, this could be extended for enumerations as well, where the LHS is a type instead of a value), but it's not clear there is a compelling use-case. Tuple.member_name can either mean "distribute the member across the elements of the tuple" [effectively a compile-time map], or alternatively array.member_name (to mean basically the same thing). The problem with this is that it takes this expression's meaning from being clear at compile-time to needing resolver support, as the member name needs to appropriately distribute across every member of the tuple, which could itself be a tuple, etc. Again, the extra complexity is not currently justified.
+
+For example
+\begin{lstlisting}
+  [int, double] x;
+  [double, int, double] y = [x.1, x.0, x.1];  // (1)
+
+  [int, int, int] f();
+  [x.0, y.1] = f().[0, 2];                    // (2)
+\end{lstlisting}
+
+(1) ©y© is initialized using a tuple expression which selects components from the tuple variable ©x©.
+
+(2) A mass assignment of the first and third components from the return value of ©f© into the first component of ©x© and the second component of ©y©.
+
+\subsection{Casting}
+A cast to tuple type is valid when $T_n \leq S_m$, where $T_n$ is the number of components in the target type and $S_m$ is the number of components in the source type, and for each $i$ in $[0, n)$, $S_i$ can be cast to $T_i$.
+Excess elements ($S_j$ for all $j$ in $[n, m)$) are evaluated, but their values are discarded so that they are not included in the result expression.
+This naturally follows the way that a cast to void works in C.
+
+For example,
+\begin{lstlisting}
+  [int, int, int] f();
+  [int, [int, int], int] g();
+
+  ([int, double])f();           // (1)
+  ([int, int, int])g();         // (2)
+  ([void, [int, int]])g();      // (3)
+  ([int, int, int, int])g();    // (4)
+  ([int, [int, int, int]])g();  // (5)
+\end{lstlisting}
+
+(1) discards the last element of the return value and converts the second element to type double.
+
+(2) discards the second component of the second element of the return value of ©g© (if ©g© is free of side effects, this is equivalent to ©[(int)(g().0), (int)(g().1.0), (int)(g().2)]©).
+
+(3) discards the first and third return values (equivalent to ©[(int)(g().1.0), (int)(g().1.1)]©).
+
+(4) is invalid because the cast target type contains 4 components, while the source type contains only 3.
+
+(5) is invalid because the cast ©([int, int, int])(g().1)© is invalid (i.e. it is invalid to cast ©[int, int]© to ©[int, int, int]©)
+
+
+\section{Tuples for Variadic Functions}
+Functions with tuple parameters can be used to provide type-safe variadic functions.
+It appears that it would be possible to leverage tuples to get similar power to what \CC vardiadic templates provide, but with the ability to separately compile them.
+
+\subsection{Option 1: Allow type parameters to match whole tuples, rather than just their components}
+This option could be implemented with two phases of argument matching when a function contains type parameters and the argument list contains tuple arguments.
+If flattening and structuring fail to produce a match, a second attempt at matching the function and argument combination is made where tuple arguments are not expanded and structure must match exactly, modulo implicit conversions. \footnote{It may be desirable to skip the exact matching rule if flattening and structuring produce a match that fails when inferring assertion parameters, at least in the current resolver since our assertion inference appears to be very inefficient.}
+
+For example:
+\begin{lstlisting}
+  forall(otype T, otype U | { T g(U); })
+  void f(T, U);
+
+  [int, int] g([int, int, int, int]);
+
+  f([1, 2], [3, 4, 5, 6]);
+\end{lstlisting}
+With flattening and structuring, the call is first transformed into ©f(1, 2, 3, 4, 5, 6)©.
+Since the first argument of type ©T© does not have a tuple type, unification decides that ©T=int© and ©1© is matched as the first parameter.
+Likewise, ©U© does not have a tuple type, so ©U=int© and ©2© is accepted as the second parameter.
+There are now no remaining formal parameters, there are remaining arguments, and the function is not variadic, so the match fails.
+
+With exact matching, ©T=[int,int]© and ©U=[int,int,int,int]© and so the arguments type check.
+When inferring assertion ©g©, a match is found.
+\footnote{This type of interaction between tuple arguments and type parameters is desirable for perfect forwarding, but it's not obvious to me exactly how this should interact with assertion inference. Ideally, the same rules should apply for assertion satisfaction as apply to argument matching (i.e. flattening \& structuring should be attempted, followed by an exact match attempt on failure), but this may be more complicated than it sounds for assertion satisfaction. Aaron, I'm especially interested to hear your thoughts on this with respect to efficiency in the resolver redesign.
+
+For example, should we allow this to match?
+\begin{lstlisting}
+  forall(otype T, otype U | { T g(U); })
+  void f(T, U);
+
+  [int, int] g(int, ®[int, int]®, int);
+
+  f([1, 2], [3, 4, 5, 6]);
+\end{lstlisting}
+To only have an exact matching rule here feels too strict. At the very least, it would be nice to accept ©[int, int] g(int, int, int, int)©, since that would allow for argument lists to be packaged and sent off to polymorphic functions and then directly forwarded to other functions.}.
+
+The addition of an exact matching rule only affects the outcome for polymorphic type binding when tuples are involved.
+For non-tuple arguments, exact matching and flattening \& structuring are equivalent. For tuple arguments to a function without polymorphic formal parameters, flattening and structuring work whenever an exact match would have worked (the tuple is flattened and implicitly restructured to its original structure).
+Thus there is nothing to be gained from permitting the exact matching rule to take effect when a function does not contain polymorphism and none of the arguments are tuples.
+
+\subsection{Option 2: Add another type parameter kind}
+Perhaps a simpler alternative would be to add another kind of type parameter (e.g., ©ttype©).
+There should be at most one ©ttype© parameter which must occur last in a parameter list.
+Matching against a ©ttype© parameter would consume/package all remaining argument components into a tuple, and would also match no arguments.
+These semantics more closely match normal variadic semantics, while being type-safe. C variadic syntax and ©ttype© polymorphism probably should not be mixed, since it is not clear where to draw the line to decide which arguments belong where.\footnote{In fact, if we go with this proposal, it might be desirable to disallow polymorphic functions to use C variadic syntax to encourage a Cforall style. Aside from maybe calling C variadic functions, it's not obvious to me there would be anything you can do with C variadics that couldn't also be done with ©ttype© parameters. }
+
+Example 1: taken from Wikipedia, demonstrates variadic templates done in a Cforall style
+\begin{lstlisting}
+  void func(void) {}                           // termination version (1)
+  forall(otype T, ttype Params | { void process(const T &); void func(const Params &); })
+  void func(const T& arg1, const Params & p) { // (2)
+    process(arg1);
+    func(p);
+  }
+  void process(int);                           // (3)
+  void process(double);                        // (4)
+  func(1, 2.0, 3.5, 4);
+\end{lstlisting}
+In the call to ©func©, the value ©1© is taken as the first parameter, so ©T© unifies with ©int©, and the arguments ©2.0©, ©3.5©, and ©4© are consumed to form a tuple argument of type ©[double, double, int]©.
+To satisfy the assertions to ©func©, the functions (3) and (2) are implicitly selected to satisfy the requirements of ©void process(const T &)© and ©void func(const Params &)© respectively.
+Since (2) requires assertion parameters, the process repeats selecting (4) and (2).
+The matching process continues recursively until reaching the base case where (3) and (1) are selected.
+The end result is semantically equivalent to ©process(1), process(2.0), process(3.5), process(4)©.
+
+Since (2) is not an exact match for the expected assertion parameter, a thunk is generated that wraps a call to ©func© that accepts an argument of type ©[double, double, int]©.
+This conversion already occurs in the Cforall translator, but may require some modification to handle all of the cases present here.
+
+Example 2: new (i.e. type-safe malloc + constructors)
+\begin{lstlisting}
+  forall(dtype T, ttype Params | sized(T) | { void ?{}(T *, Params); })
+  T * new(Params p) {
+    return malloc(){ p };
+  }
+  array(int) * x = new(1, 2, 3, 4);
+\end{lstlisting}
+In the call to ©new©, ©array(int)© is selected to match ©T©, and ©Params© is expanded ot match ©[int, int, int, int]©. To satisfy the assertions, a constructor with an interface compatible with ©void ?{}(array(int) *, int, int, int, int)© must exist in the current scope.
+
+Assertion inference can also be special cased to match functions that take tuples of any structure only for ttype parameters, if desired.
+
+
+\subsection{Conclusions}
+With either option, we can generate a thunk to perform the conversion from the actual argument's structure to the structure expected by the assertion parameter and that function would be passed as the assertion argument, in a manner similar to the other thunks that are already generated.
+
+I prefer option 2, because it is simpler and I think the semantics are clearer.
+I wouldn't be surprised if it was also noticeably more efficient, because of the lack of backtracking.
+
+As a side note, option 1 also requires calls to be written explicitly, e.g. ©array(int) * x = new([1, 2, 3, 4]);©, which isn't particularly appealing.
+It shifts the burden from the compiler to the programmer, which is almost always wrong, and doesn't match with the way our tuples can be used elsewhere.
+The more I think about it, the more I'm convinced option 1 is the wrong approach, but I'm putting it out anyway in case someone has a good thought on how to make it work correctly.
+
+\addcontentsline{toc}{section}{\refname}
+\bibliographystyle{plain}
+\bibliography{cfa}
+
+%\addcontentsline{toc}{section}{\indexname} % add index name to table of contents
+%\begin{theindex}
+%Italic page numbers give the location of the main entry for the referenced term.
+%Plain page numbers denote uses of the indexed term.
+%Entries for grammar non-terminals are italicized.
+%A typewriter font is used for grammar terminals and program identifiers.
+%\indexspace
+%\input{comp_II.ind}
+%\end{theindex}
+
+\end{document}
Index: src/CodeGen/CodeGenerator.cc
===================================================================
--- src/CodeGen/CodeGenerator.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/CodeGen/CodeGenerator.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Dec 13 14:51:27 2016
-// Update Count     : 362
+// Last Modified On : Wed Jan 18 15:23:08 2017
+// Update Count     : 414
 //
 
@@ -111,18 +111,19 @@
 	}
 
-	void CodeGenerator::genAttributes( std::list< Attribute * > & attributes ) {
-		if ( ! attributes.empty() ) {
-			output << "__attribute__ ((";
-			for ( Attribute *& attr : attributes ) {
-				if ( ! attr->empty() ) {
-					output << attr->get_name() << "(";
-					genCommaList( attr->get_parameters().begin(), attr->get_parameters().end() );
-					output << ")";
-				} // if
-				output << ",";
-			} // for
-			output << ")) ";
-		} // if
-	}
+	void CodeGenerator::genAttributes( list< Attribute * > & attributes ) {
+	  if ( attributes.empty() ) return;
+		output << "__attribute__ ((";
+		for ( list< Attribute * >::iterator attr( attributes.begin() );; ) {
+			output << (*attr)->get_name();
+			if ( ! (*attr)->get_parameters().empty() ) {
+				output << "(";
+				genCommaList( (*attr)->get_parameters().begin(), (*attr)->get_parameters().end() );
+				output << ")";
+			} // if
+		  if ( ++attr == attributes.end() ) break;
+			output << ",";								// separator
+		} // for
+		output << ")) ";
+	} // CodeGenerator::genAttributes
 
 
Index: src/CodeGen/CodeGenerator.h
===================================================================
--- src/CodeGen/CodeGenerator.h	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/CodeGen/CodeGenerator.h	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Dec 13 13:51:53 2016
-// Update Count     : 39
+// Last Modified On : Tue Jan 17 16:55:40 2017
+// Update Count     : 48
 //
 
@@ -114,5 +114,4 @@
 		void extension( Declaration *decl );
 	  private:
-
 		Indenter indent;
 		int cur_indent;
@@ -131,12 +130,11 @@
 	template< class Iterator >
 	void CodeGenerator::genCommaList( Iterator begin, Iterator end ) {
-		if ( begin == end ) return;
-
+	  if ( begin == end ) return;
 		for ( ;; ) {
 			(*begin++)->accept( *this );
-			if ( begin == end ) return;
-			output << ", ";
+		  if ( begin == end ) break;
+			output << ", ";								// separator
 		} // for
-	}
+	} // genCommaList
 
 	inline bool doSemicolon( Declaration* decl ) {
@@ -145,5 +143,5 @@
 		} // if
 		return true;
-	}
+	} // doSemicolon
 
 	/// returns C-compatible name of declaration
Index: src/GenPoly/GenPoly.cc
===================================================================
--- src/GenPoly/GenPoly.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/GenPoly/GenPoly.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -28,5 +28,5 @@
 			for ( std::list< Expression* >::iterator param = params.begin(); param != params.end(); ++param ) {
 				TypeExpr *paramType = dynamic_cast< TypeExpr* >( *param );
-				assert(paramType && "Aggregate parameters should be type expressions");
+				assertf(paramType, "Aggregate parameters should be type expressions");
 				if ( isPolyType( paramType->get_type(), env ) ) return true;
 			}
Index: src/GenPoly/Specialize.cc
===================================================================
--- src/GenPoly/Specialize.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/GenPoly/Specialize.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -35,7 +35,5 @@
 
 namespace GenPoly {
-	class Specializer;
 	class Specialize final : public PolyMutator {
-		friend class Specializer;
 	  public:
 		using PolyMutator::mutate;
@@ -47,40 +45,13 @@
 		// virtual Expression * mutate( CommaExpr *commaExpr );
 
-		Specializer * specializer = nullptr;
 		void handleExplicitParams( ApplicationExpr *appExpr );
+		Expression * createThunkFunction( FunctionType *funType, Expression *actual, InferredParams *inferParams );
+		Expression * doSpecialization( Type *formalType, Expression *actual, InferredParams *inferParams = nullptr );
+
+		std::string paramPrefix = "_p";
 	};
 
-	class Specializer {
-	  public:
-		Specializer( Specialize & spec ) : spec( spec ), env( spec.env ), stmtsToAdd( spec.stmtsToAdd ) {}
-		virtual bool needsSpecialization( Type * formalType, Type * actualType, TypeSubstitution * env ) = 0;
-		virtual Expression *createThunkFunction( FunctionType *funType, Expression *actual, InferredParams *inferParams ) = 0;
-		virtual Expression *doSpecialization( Type *formalType, Expression *actual, InferredParams *inferParams = 0 );
-
-	  protected:
-		Specialize & spec;
-		std::string paramPrefix = "_p";
-		TypeSubstitution *& env;
-		std::list< Statement * > & stmtsToAdd;
-	};
-
-	// for normal polymorphic -> monomorphic function conversion
-	class PolySpecializer : public Specializer {
-	  public:
-		PolySpecializer( Specialize & spec ) : Specializer( spec ) {}
-		virtual bool needsSpecialization( Type * formalType, Type * actualType, TypeSubstitution * env ) override;
-		virtual Expression *createThunkFunction( FunctionType *funType, Expression *actual, InferredParams *inferParams ) override;
-	};
-
-	// // for tuple -> non-tuple function conversion
-	class TupleSpecializer : public Specializer {
-	  public:
-		TupleSpecializer( Specialize & spec ) : Specializer( spec ) {}
-		virtual bool needsSpecialization( Type * formalType, Type * actualType, TypeSubstitution * env ) override;
-		virtual Expression *createThunkFunction( FunctionType *funType, Expression *actual, InferredParams *inferParams ) override;
-	};
-
 	/// Looks up open variables in actual type, returning true if any of them are bound in the environment or formal type.
-	bool PolySpecializer::needsSpecialization( Type *formalType, Type *actualType, TypeSubstitution *env ) {
+	bool needsPolySpecialization( Type *formalType, Type *actualType, TypeSubstitution *env ) {
 		if ( env ) {
 			using namespace ResolvExpr;
@@ -106,62 +77,16 @@
 	}
 
-	/// Generates a thunk that calls `actual` with type `funType` and returns its address
-	Expression * PolySpecializer::createThunkFunction( FunctionType *funType, Expression *actual, InferredParams *inferParams ) {
-		static UniqueName thunkNamer( "_thunk" );
-
-		FunctionType *newType = funType->clone();
-		if ( env ) {
-			// it is important to replace only occurrences of type variables that occur free in the
-			// thunk's type
-			env->applyFree( newType );
-		} // if
-		// create new thunk with same signature as formal type (C linkage, empty body)
-		FunctionDecl *thunkFunc = new FunctionDecl( thunkNamer.newName(), DeclarationNode::NoStorageClass, LinkageSpec::C, newType, new CompoundStmt( noLabels ), false, false );
-		thunkFunc->fixUniqueId();
-
-		// thunks may be generated and not used - silence warning with attribute
-		thunkFunc->get_attributes().push_back( new Attribute( "unused" ) );
-
-		// thread thunk parameters into call to actual function, naming thunk parameters as we go
-		UniqueName paramNamer( paramPrefix );
-		ApplicationExpr *appExpr = new ApplicationExpr( actual );
-		for ( std::list< DeclarationWithType* >::iterator param = thunkFunc->get_functionType()->get_parameters().begin(); param != thunkFunc->get_functionType()->get_parameters().end(); ++param ) {
-			(*param )->set_name( paramNamer.newName() );
-			appExpr->get_args().push_back( new VariableExpr( *param ) );
-		} // for
-		appExpr->set_env( maybeClone( env ) );
-		if ( inferParams ) {
-			appExpr->get_inferParams() = *inferParams;
-		} // if
-
-		// handle any specializations that may still be present
-		std::string oldParamPrefix = paramPrefix;
-		paramPrefix += "p";
-		// save stmtsToAdd in oldStmts
-		std::list< Statement* > oldStmts;
-		oldStmts.splice( oldStmts.end(), stmtsToAdd );
-		spec.handleExplicitParams( appExpr );
-		paramPrefix = oldParamPrefix;
-		// write any statements added for recursive specializations into the thunk body
-		thunkFunc->get_statements()->get_kids().splice( thunkFunc->get_statements()->get_kids().end(), stmtsToAdd );
-		// restore oldStmts into stmtsToAdd
-		stmtsToAdd.splice( stmtsToAdd.end(), oldStmts );
-
-		// add return (or valueless expression) to the thunk
-		Statement *appStmt;
-		if ( funType->get_returnVals().empty() ) {
-			appStmt = new ExprStmt( noLabels, appExpr );
-		} else {
-			appStmt = new ReturnStmt( noLabels, appExpr );
-		} // if
-		thunkFunc->get_statements()->get_kids().push_back( appStmt );
-
-		// add thunk definition to queue of statements to add
-		stmtsToAdd.push_back( new DeclStmt( noLabels, thunkFunc ) );
-		// return address of thunk function as replacement expression
-		return new AddressExpr( new VariableExpr( thunkFunc ) );
-	}
-
-	Expression * Specializer::doSpecialization( Type *formalType, Expression *actual, InferredParams *inferParams ) {
+	bool needsTupleSpecialization( Type *formalType, Type *actualType, TypeSubstitution *env ) {
+		if ( FunctionType * ftype = getFunctionType( formalType ) ) {
+			return ftype->isTtype();
+		}
+		return false;
+	}
+
+	bool needsSpecialization( Type *formalType, Type *actualType, TypeSubstitution *env ) {
+		return needsPolySpecialization( formalType, actualType, env ) || needsTupleSpecialization( formalType, actualType, env );
+	}
+
+	Expression * Specialize::doSpecialization( Type *formalType, Expression *actual, InferredParams *inferParams ) {
 		assertf( actual->has_result(), "attempting to specialize an untyped expression" );
 		if ( needsSpecialization( formalType, actual->get_result(), env ) ) {
@@ -185,11 +110,4 @@
 	}
 
-	bool TupleSpecializer::needsSpecialization( Type *formalType, Type *actualType, TypeSubstitution *env ) {
-		if ( FunctionType * ftype = getFunctionType( formalType ) ) {
-			return ftype->isTtype();
-		}
-		return false;
-	}
-
 	/// restructures arg to match the structure of a single formal parameter. Assumes that atomic types are compatible (as the Resolver should have ensured this)
 	template< typename OutIterator >
@@ -207,21 +125,26 @@
 
 	/// restructures the ttype argument to match the structure of the formal parameters of the actual function.
-	// [begin, end) are the formal parameters.
-	// args is the list of arguments currently given to the actual function, the last of which needs to be restructured.
+	/// [begin, end) are the formal parameters.
+	/// args is the list of arguments currently given to the actual function, the last of which needs to be restructured.
 	template< typename Iterator, typename OutIterator >
 	void fixLastArg( Expression * last, Iterator begin, Iterator end, OutIterator out ) {
-		// safe_dynamic_cast for the assertion
-		safe_dynamic_cast< TupleType * >( last->get_result() );
-		unsigned idx = 0;
-		for ( ; begin != end; ++begin ) {
-			DeclarationWithType * formal = *begin;
-			Type * formalType = formal->get_type();
-			matchOneFormal( last, idx, formalType, out );
-		}
-		delete last;
-	}
-
-	Expression * TupleSpecializer::createThunkFunction( FunctionType *funType, Expression *actual, InferredParams *inferParams ) {
-		static UniqueName thunkNamer( "_tupleThunk" );
+		if ( Tuples::isTtype( last->get_result() ) ) {
+			*out++ = last;
+		} else {
+			// safe_dynamic_cast for the assertion
+			safe_dynamic_cast< TupleType * >( last->get_result() );
+			unsigned idx = 0;
+			for ( ; begin != end; ++begin ) {
+				DeclarationWithType * formal = *begin;
+				Type * formalType = formal->get_type();
+				matchOneFormal( last, idx, formalType, out );
+			}
+			delete last;
+		}
+	}
+
+	/// Generates a thunk that calls `actual` with type `funType` and returns its address
+	Expression * Specialize::createThunkFunction( FunctionType *funType, Expression *actual, InferredParams *inferParams ) {
+		static UniqueName thunkNamer( "_thunk" );
 
 		FunctionType *newType = funType->clone();
@@ -253,5 +176,4 @@
 		std::list< DeclarationWithType * >::iterator formalEnd = funType->get_parameters().end();
 
-		Expression * last = nullptr;
 		for ( DeclarationWithType* param : thunkFunc->get_functionType()->get_parameters() ) {
 			// walk the parameters to the actual function alongside the parameters to the thunk to find the location where the ttype parameter begins to satisfy parameters in the actual function.
@@ -259,5 +181,5 @@
 			assertf( formalBegin != formalEnd, "Reached end of formal parameters before finding ttype parameter" );
 			if ( Tuples::isTtype((*formalBegin)->get_type()) ) {
-				last = new VariableExpr( param );
+				fixLastArg( new VariableExpr( param ), actualBegin, actualEnd, back_inserter( appExpr->get_args() ) );
 				break;
 			}
@@ -268,6 +190,4 @@
 			appExpr->get_args().push_back( new VariableExpr( param ) );
 		} // for
-		assert( last );
-		fixLastArg( last, actualBegin, actualEnd, back_inserter( appExpr->get_args() ) );
 		appExpr->set_env( maybeClone( env ) );
 		if ( inferParams ) {
@@ -281,5 +201,5 @@
 		std::list< Statement* > oldStmts;
 		oldStmts.splice( oldStmts.end(), stmtsToAdd );
-		spec.mutate( appExpr );
+		mutate( appExpr );
 		paramPrefix = oldParamPrefix;
 		// write any statements added for recursive specializations into the thunk body
@@ -311,5 +231,5 @@
 		std::list< Expression* >::iterator actual;
 		for ( formal = function->get_parameters().begin(), actual = appExpr->get_args().begin(); formal != function->get_parameters().end() && actual != appExpr->get_args().end(); ++formal, ++actual ) {
-			*actual = specializer->doSpecialization( (*formal )->get_type(), *actual, &appExpr->get_inferParams() );
+			*actual = doSpecialization( (*formal )->get_type(), *actual, &appExpr->get_inferParams() );
 		}
 	}
@@ -322,8 +242,10 @@
 			// create thunks for the inferred parameters
 			// don't need to do this for intrinsic calls, because they aren't actually passed
+			// need to handle explicit params before inferred params so that explicit params do not recieve a changed set of inferParams (and change them again)
+			// alternatively, if order starts to matter then copy appExpr's inferParams and pass them to handleExplicitParams.
+			handleExplicitParams( appExpr );
 			for ( InferredParams::iterator inferParam = appExpr->get_inferParams().begin(); inferParam != appExpr->get_inferParams().end(); ++inferParam ) {
-				inferParam->second.expr = specializer->doSpecialization( inferParam->second.formalType, inferParam->second.expr, inferParam->second.inferParams.get() );
+				inferParam->second.expr = doSpecialization( inferParam->second.formalType, inferParam->second.expr, inferParam->second.inferParams.get() );
 			}
-			handleExplicitParams( appExpr );
 		}
 		return appExpr;
@@ -333,5 +255,5 @@
 		addrExpr->get_arg()->acceptMutator( *this );
 		assert( addrExpr->has_result() );
-		addrExpr->set_arg( specializer->doSpecialization( addrExpr->get_result(), addrExpr->get_arg() ) );
+		addrExpr->set_arg( doSpecialization( addrExpr->get_result(), addrExpr->get_arg() ) );
 		return addrExpr;
 	}
@@ -343,5 +265,5 @@
 			return castExpr;
 		}
-		Expression *specialized = specializer->doSpecialization( castExpr->get_result(), castExpr->get_arg() );
+		Expression *specialized = doSpecialization( castExpr->get_result(), castExpr->get_arg() );
 		if ( specialized != castExpr->get_arg() ) {
 			// assume here that the specialization incorporates the cast
@@ -370,11 +292,4 @@
 	void convertSpecializations( std::list< Declaration* >& translationUnit ) {
 		Specialize spec;
-
-		TupleSpecializer tupleSpec( spec );
-		spec.specializer = &tupleSpec;
-		mutateAll( translationUnit, spec );
-
-		PolySpecializer polySpec( spec );
-		spec.specializer = &polySpec;
 		mutateAll( translationUnit, spec );
 	}
Index: src/InitTweak/FixGlobalInit.cc
===================================================================
--- src/InitTweak/FixGlobalInit.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/InitTweak/FixGlobalInit.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -84,6 +84,6 @@
 			// for library code are run before constructors and destructors for user code,
 			// specify a priority when building the library. Priorities 0-100 are reserved by gcc.
-			ctorParameters.push_back( new ConstantExpr( Constant::from_int( 101 ) ) );
-			dtorParameters.push_back( new ConstantExpr( Constant::from_int( 101 ) ) );
+			ctorParameters.push_back( new ConstantExpr( Constant::from_int( 102 ) ) );
+			dtorParameters.push_back( new ConstantExpr( Constant::from_int( 102 ) ) );
 		}
 		initFunction = new FunctionDecl( "_init_" + fixedName, DeclarationNode::Static, LinkageSpec::C, new FunctionType( Type::Qualifiers(), false ), new CompoundStmt( noLabels ), false, false );
Index: src/InitTweak/InitTweak.cc
===================================================================
--- src/InitTweak/InitTweak.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/InitTweak/InitTweak.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -327,4 +327,6 @@
 			} else if ( ApplicationExpr * appExpr = dynamic_cast< ApplicationExpr * > ( expr ) ) {
 				return handleDerefCalledFunction( appExpr );
+			} else if ( AddressExpr * addrExpr = dynamic_cast< AddressExpr * >( expr ) ) {
+				return getCalledFunction( addrExpr->get_arg() );
 			}
 			return nullptr;
@@ -336,5 +338,5 @@
 		if ( ! appExpr ) return NULL;
 		DeclarationWithType * function = getCalledFunction( appExpr->get_function() );
-		assert( function );
+		assertf( function, "getCalledFunction returned nullptr: %s", toString( appExpr->get_function() ).c_str() );
 		// check for Intrinsic only - don't want to remove all overridable ctor/dtors because autogenerated ctor/dtor
 		// will call all member dtors, and some members may have a user defined dtor.
@@ -386,6 +388,13 @@
 		} else if ( UntypedExpr * untypedExpr = dynamic_cast< UntypedExpr * >( callExpr ) ) {
 			return callArg( untypedExpr, pos );
+		} else if ( TupleAssignExpr * tupleExpr = dynamic_cast< TupleAssignExpr * > ( callExpr ) ) {
+			std::list< Statement * > & stmts = tupleExpr->get_stmtExpr()->get_statements()->get_kids();
+			assertf( ! stmts.empty(), "TupleAssignExpr somehow has no statements." );
+			ExprStmt * stmt = safe_dynamic_cast< ExprStmt * >( stmts.back() );
+			TupleExpr * tuple = safe_dynamic_cast< TupleExpr * >( stmt->get_expr() );
+			assertf( ! tuple->get_exprs().empty(), "TupleAssignExpr somehow has empty tuple expr." );
+			return getCallArg( tuple->get_exprs().front(), pos );
 		} else {
-			assertf( false, "Unexpected expression type passed to getCallArg" );
+			assertf( false, "Unexpected expression type passed to getCallArg: %s", toString( callExpr ).c_str() );
 		}
 	}
Index: src/Parser/DeclarationNode.cc
===================================================================
--- src/Parser/DeclarationNode.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/Parser/DeclarationNode.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 12:34:05 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Dec 13 14:43:38 2016
-// Update Count     : 660
+// Last Modified On : Sat Jan 14 14:36:23 2017
+// Update Count     : 669
 //
 
@@ -22,4 +22,5 @@
 #include "TypeData.h"
 
+#include "SynTree/Attribute.h"
 #include "SynTree/Declaration.h"
 #include "SynTree/Expression.h"
@@ -397,4 +398,14 @@
 }
 
+DeclarationNode * DeclarationNode::newAttribute( string * name, ExpressionNode * expr ) {
+	DeclarationNode * newnode = new DeclarationNode;
+	newnode->type = nullptr;
+	std::list< Expression * > exprs;
+	buildList( expr, exprs );
+	newnode->attributes.push_back( new Attribute( *name, exprs ) );
+	delete name;
+	return newnode;
+}
+
 void appendError( string & dst, const string & src ) {
 	if ( src.empty() ) return;
@@ -435,4 +446,5 @@
 		storageClass = q->storageClass;
 	} // if
+	attributes.splice( attributes.end(), q->attributes );
 	return this;
 } // DeclarationNode::copyStorageClasses
@@ -958,5 +970,5 @@
 
 	if ( type ) {
-		return buildDecl( type, name ? *name : string( "" ), storageClass, maybeBuild< Expression >( bitfieldWidth ), isInline, isNoreturn, linkage, asmName, maybeBuild< Initializer >(initializer) )->set_extension( extension );
+		return buildDecl( type, name ? *name : string( "" ), storageClass, maybeBuild< Expression >( bitfieldWidth ), isInline, isNoreturn, linkage, asmName, maybeBuild< Initializer >(initializer), attributes )->set_extension( extension );
 	} // if
 
Index: src/Parser/ParseNode.h
===================================================================
--- src/Parser/ParseNode.h	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/Parser/ParseNode.h	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 13:28:16 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Dec 13 15:37:33 2016
-// Update Count     : 643
+// Last Modified On : Wed Jan 18 16:20:43 2017
+// Update Count     : 650
 //
 
@@ -35,4 +35,5 @@
 class ExpressionNode;
 class InitializerNode;
+class Attribute;
 
 //##############################################################################
@@ -242,6 +243,7 @@
 	static DeclarationNode * newTuple( DeclarationNode * members );
 	static DeclarationNode * newTypeof( ExpressionNode * expr );
-	static DeclarationNode * newAttr( std::string *, ExpressionNode * expr );
-	static DeclarationNode * newAttr( std::string *, DeclarationNode * type );
+	static DeclarationNode * newAttr( std::string *, ExpressionNode * expr ); // @ attributes
+	static DeclarationNode * newAttr( std::string *, DeclarationNode * type ); // @ attributes
+	static DeclarationNode * newAttribute( std::string *, ExpressionNode * expr = nullptr ); // gcc attributes
 
 	DeclarationNode();
@@ -316,5 +318,5 @@
 	LinkageSpec::Spec linkage;
 	ConstantExpr *asmName;
-	std::list< std::string > attributes;
+	std::list< Attribute * > attributes;
 	InitializerNode * initializer;
 	bool extension = false;
@@ -344,6 +346,7 @@
 	Statement * build() const { return const_cast<StatementNode*>(this)->stmt.release(); }
 
-	virtual StatementNode * add_label( const std::string * name ) {
-		stmt->get_labels().emplace_back( * name );
+	virtual StatementNode * add_label( const std::string * name, DeclarationNode * attr = nullptr ) {
+		stmt->get_labels().emplace_back( * name, nullptr, attr ? std::move( attr->attributes ) : std::list< Attribute * > {} );
+		delete attr;
 		delete name;
 		return this;
Index: src/Parser/TypeData.cc
===================================================================
--- src/Parser/TypeData.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/Parser/TypeData.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 15:12:51 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Dec 13 13:40:33 2016
-// Update Count     : 420
+// Last Modified On : Fri Jan 13 15:47:37 2017
+// Update Count     : 423
 //
 
@@ -721,5 +721,5 @@
 } // buildTypeof
 
-Declaration * buildDecl( const TypeData * td, const string &name, DeclarationNode::StorageClass sc, Expression * bitfieldWidth, bool isInline, bool isNoreturn, LinkageSpec::Spec linkage, ConstantExpr *asmName, Initializer * init ) {
+Declaration * buildDecl( const TypeData * td, const string &name, DeclarationNode::StorageClass sc, Expression * bitfieldWidth, bool isInline, bool isNoreturn, LinkageSpec::Spec linkage, ConstantExpr *asmName, Initializer * init, std::list< Attribute * > attributes ) {
 	if ( td->kind == TypeData::Function ) {
 		FunctionDecl * decl;
@@ -729,11 +729,11 @@
 				CompoundStmt * body = dynamic_cast< CompoundStmt* >( stmt );
 				assert( body );
-				decl = new FunctionDecl( name, sc, linkage, buildFunction( td ), body, isInline, isNoreturn );
+				decl = new FunctionDecl( name, sc, linkage, buildFunction( td ), body, isInline, isNoreturn, attributes );
 			} else {
 				// list< Label > ls;
-				decl = new FunctionDecl( name, sc, linkage, buildFunction( td ), new CompoundStmt( list< Label >() ), isInline, isNoreturn );
+				decl = new FunctionDecl( name, sc, linkage, buildFunction( td ), new CompoundStmt( list< Label >() ), isInline, isNoreturn, attributes );
 			} // if
 		} else {
-			decl = new FunctionDecl( name, sc, linkage, buildFunction( td ), nullptr, isInline, isNoreturn );
+			decl = new FunctionDecl( name, sc, linkage, buildFunction( td ), nullptr, isInline, isNoreturn, attributes );
 		} // if
 		for ( DeclarationNode * cur = td->function.idList; cur != nullptr; cur = dynamic_cast< DeclarationNode* >( cur->get_next() ) ) {
Index: src/Parser/TypeData.h
===================================================================
--- src/Parser/TypeData.h	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/Parser/TypeData.h	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 15:18:36 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Dec 13 13:39:39 2016
-// Update Count     : 143
+// Last Modified On : Fri Jan 13 16:11:23 2017
+// Update Count     : 144
 //
 
@@ -111,5 +111,5 @@
 TupleType * buildTuple( const TypeData * );
 TypeofType * buildTypeof( const TypeData * );
-Declaration * buildDecl( const TypeData *, const std::string &, DeclarationNode::StorageClass, Expression *, bool isInline, bool isNoreturn, LinkageSpec::Spec, ConstantExpr *asmName, Initializer * init = nullptr );
+Declaration * buildDecl( const TypeData *, const std::string &, DeclarationNode::StorageClass, Expression *, bool isInline, bool isNoreturn, LinkageSpec::Spec, ConstantExpr *asmName, Initializer * init = nullptr, std::list< class Attribute * > attributes = std::list< class Attribute * >() );
 FunctionType * buildFunction( const TypeData * );
 
Index: src/Parser/parser.cc
===================================================================
--- src/Parser/parser.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/Parser/parser.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -67,5 +67,5 @@
 
 /* Line 268 of yacc.c  */
-#line 42 "parser.yy"
+#line 41 "parser.yy"
 
 #define YYDEBUG_LEXER_TEXT (yylval)						// lexer loads this up each time
@@ -358,5 +358,5 @@
 
 /* Line 293 of yacc.c  */
-#line 120 "parser.yy"
+#line 119 "parser.yy"
 
 	Token tok;
@@ -609,5 +609,5 @@
 #define YYFINAL  251
 /* YYLAST -- Last index in YYTABLE.  */
-#define YYLAST   10466
+#define YYLAST   10498
 
 /* YYNTOKENS -- Number of terminals.  */
@@ -618,5 +618,5 @@
 #define YYNRULES  758
 /* YYNRULES -- Number of states.  */
-#define YYNSTATES  1541
+#define YYNSTATES  1546
 
 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
@@ -799,5 +799,5 @@
       -1,   177,    -1,   180,    -1,   181,    -1,   185,    -1,   186,
       -1,   198,    -1,   200,    -1,   201,    -1,   206,    -1,   132,
-     149,   119,   150,   120,   137,    -1,    75,   135,   319,   179,
+     149,   119,   150,   120,   137,    -1,   279,   135,   319,   179,
       -1,   119,   120,    -1,   119,   139,   139,   217,   182,   140,
      120,    -1,   183,    -1,   182,   139,   183,    -1,   220,    -1,
@@ -818,7 +818,7 @@
      137,    -1,    51,   114,   139,   199,   115,   179,    -1,   178,
      140,   137,   178,   137,   178,    -1,   220,   178,   137,   178,
-      -1,    54,    75,   137,    -1,    54,   122,   177,   137,    -1,
-      53,   137,    -1,    53,    75,   137,    -1,    52,   137,    -1,
-      52,    75,   137,    -1,    55,   178,   137,    -1,    64,   173,
+      -1,    54,   279,   137,    -1,    54,   122,   177,   137,    -1,
+      53,   137,    -1,    53,   279,   137,    -1,    52,   137,    -1,
+      52,   279,   137,    -1,    55,   178,   137,    -1,    64,   173,
      137,    -1,    65,   173,   137,    -1,    65,   173,    66,   172,
      137,    -1,    60,   181,   202,    -1,    60,   181,   204,    -1,
@@ -949,6 +949,6 @@
      320,   321,    -1,    42,   114,   114,   322,   115,   115,    -1,
      323,    -1,   322,   121,   323,    -1,    -1,   324,    -1,   324,
-     114,   178,   115,    -1,   279,    -1,   241,    -1,   242,    -1,
-     236,    -1,   326,   319,    -1,   327,    -1,   328,   319,    -1,
+     114,   150,   115,    -1,    75,    -1,    77,    -1,    78,    -1,
+      10,    -1,   326,   319,    -1,   327,    -1,   328,   319,    -1,
      329,   319,    -1,   142,    -1,   114,   326,   115,    -1,   157,
      325,    -1,   157,   235,   325,    -1,   114,   327,   115,    -1,
@@ -1032,80 +1032,80 @@
 static const yytype_uint16 yyrline[] =
 {
-       0,   306,   306,   310,   317,   318,   319,   320,   321,   325,
-     326,   327,   331,   332,   336,   337,   341,   342,   346,   350,
-     351,   362,   364,   366,   367,   369,   374,   375,   381,   383,
-     385,   387,   389,   391,   393,   395,   397,   399,   408,   409,
-     415,   416,   420,   421,   425,   426,   428,   430,   432,   434,
-     436,   441,   443,   445,   457,   458,   466,   469,   471,   473,
-     478,   491,   493,   495,   497,   499,   501,   503,   505,   507,
-     509,   511,   518,   519,   525,   526,   527,   528,   532,   533,
-     540,   541,   543,   545,   550,   551,   553,   558,   559,   561,
-     566,   567,   569,   571,   573,   578,   579,   581,   586,   587,
-     592,   593,   598,   599,   604,   605,   610,   611,   616,   617,
-     620,   627,   632,   633,   641,   642,   646,   647,   648,   649,
-     650,   651,   652,   653,   654,   655,   656,   657,   667,   669,
-     674,   675,   680,   681,   687,   688,   694,   695,   696,   697,
-     698,   699,   700,   701,   702,   712,   719,   721,   731,   732,
-     737,   739,   745,   747,   751,   752,   757,   762,   765,   767,
-     769,   779,   781,   792,   793,   795,   799,   801,   805,   806,
-     811,   812,   816,   821,   822,   826,   828,   834,   835,   839,
-     841,   843,   845,   851,   852,   856,   858,   863,   865,   867,
-     872,   874,   879,   881,   885,   888,   892,   895,   899,   901,
-     903,   905,   910,   912,   914,   919,   921,   923,   925,   927,
-     932,   934,   936,   938,   943,   955,   956,   961,   963,   968,
-     972,   974,   976,   978,   980,   986,   987,   993,   994,   998,
-     999,  1004,  1006,  1012,  1013,  1015,  1021,  1026,  1036,  1038,
-    1042,  1043,  1048,  1050,  1054,  1055,  1059,  1061,  1065,  1066,
-    1070,  1071,  1075,  1076,  1091,  1092,  1093,  1094,  1095,  1099,
-    1104,  1111,  1121,  1126,  1131,  1139,  1144,  1149,  1154,  1159,
-    1189,  1194,  1201,  1203,  1210,  1215,  1220,  1231,  1236,  1241,
-    1246,  1251,  1260,  1265,  1273,  1274,  1275,  1276,  1282,  1287,
-    1295,  1296,  1297,  1298,  1302,  1303,  1304,  1305,  1310,  1311,
-    1320,  1321,  1326,  1327,  1332,  1334,  1336,  1338,  1340,  1343,
-    1342,  1354,  1355,  1357,  1367,  1368,  1373,  1375,  1377,  1379,
-    1381,  1384,  1386,  1389,  1394,  1396,  1398,  1400,  1402,  1404,
-    1406,  1408,  1410,  1412,  1414,  1416,  1418,  1420,  1422,  1428,
-    1429,  1431,  1433,  1435,  1440,  1441,  1447,  1448,  1450,  1452,
-    1457,  1459,  1461,  1463,  1468,  1469,  1471,  1473,  1478,  1479,
-    1481,  1486,  1487,  1489,  1491,  1496,  1498,  1500,  1505,  1506,
-    1510,  1512,  1518,  1517,  1521,  1523,  1528,  1530,  1536,  1537,
-    1542,  1543,  1545,  1546,  1555,  1556,  1558,  1560,  1565,  1567,
-    1573,  1574,  1576,  1579,  1582,  1587,  1588,  1593,  1598,  1602,
-    1604,  1610,  1609,  1616,  1618,  1624,  1625,  1633,  1634,  1638,
-    1639,  1640,  1642,  1644,  1651,  1652,  1654,  1656,  1661,  1662,
-    1668,  1669,  1673,  1674,  1679,  1680,  1681,  1683,  1691,  1692,
-    1694,  1697,  1699,  1703,  1704,  1705,  1707,  1709,  1713,  1718,
-    1726,  1727,  1736,  1738,  1743,  1744,  1745,  1749,  1750,  1751,
-    1755,  1756,  1757,  1761,  1762,  1763,  1768,  1769,  1770,  1771,
-    1777,  1778,  1780,  1785,  1786,  1791,  1792,  1793,  1794,  1795,
-    1810,  1811,  1816,  1817,  1823,  1825,  1828,  1830,  1832,  1855,
-    1856,  1858,  1860,  1865,  1866,  1868,  1873,  1878,  1879,  1885,
-    1884,  1888,  1892,  1894,  1896,  1898,  1904,  1905,  1910,  1915,
-    1917,  1922,  1924,  1925,  1927,  1932,  1934,  1936,  1941,  1943,
-    1948,  1953,  1961,  1967,  1966,  1980,  1981,  1986,  1987,  1991,
-    1996,  2001,  2009,  2014,  2025,  2026,  2031,  2032,  2038,  2039,
-    2043,  2044,  2045,  2048,  2047,  2058,  2067,  2073,  2079,  2088,
-    2094,  2100,  2106,  2112,  2120,  2126,  2134,  2140,  2149,  2150,
-    2151,  2155,  2161,  2162,  2168,  2169,  2173,  2174,  2179,  2185,
-    2186,  2189,  2191,  2192,  2196,  2197,  2198,  2199,  2233,  2235,
-    2236,  2238,  2243,  2248,  2253,  2255,  2257,  2262,  2264,  2266,
-    2268,  2273,  2275,  2284,  2286,  2287,  2292,  2294,  2296,  2301,
-    2303,  2305,  2310,  2312,  2314,  2323,  2324,  2325,  2329,  2331,
-    2333,  2338,  2340,  2342,  2347,  2349,  2351,  2366,  2368,  2369,
-    2371,  2376,  2377,  2382,  2384,  2386,  2391,  2393,  2395,  2397,
-    2402,  2404,  2406,  2416,  2418,  2419,  2421,  2426,  2428,  2430,
-    2435,  2437,  2439,  2441,  2446,  2448,  2450,  2481,  2483,  2484,
-    2486,  2491,  2496,  2504,  2506,  2508,  2513,  2515,  2520,  2522,
-    2536,  2537,  2539,  2544,  2546,  2548,  2550,  2552,  2557,  2558,
-    2560,  2562,  2567,  2569,  2571,  2577,  2579,  2581,  2585,  2587,
-    2589,  2591,  2605,  2606,  2608,  2613,  2615,  2617,  2619,  2621,
-    2626,  2627,  2629,  2631,  2636,  2638,  2640,  2646,  2647,  2649,
-    2658,  2661,  2663,  2666,  2668,  2670,  2683,  2684,  2686,  2691,
-    2693,  2695,  2697,  2699,  2704,  2705,  2707,  2709,  2714,  2716,
-    2724,  2725,  2726,  2731,  2732,  2736,  2738,  2740,  2742,  2744,
-    2746,  2753,  2755,  2757,  2759,  2761,  2764,  2766,  2768,  2770,
-    2772,  2777,  2779,  2781,  2786,  2812,  2813,  2815,  2819,  2820,
-    2824,  2826,  2828,  2830,  2832,  2834,  2841,  2843,  2845,  2847,
-    2849,  2851,  2856,  2863,  2865,  2883,  2885,  2890,  2891
+       0,   305,   305,   309,   316,   317,   318,   319,   320,   324,
+     325,   326,   330,   331,   335,   336,   340,   341,   345,   349,
+     350,   361,   363,   365,   366,   368,   373,   374,   380,   382,
+     384,   386,   388,   390,   392,   394,   396,   398,   407,   408,
+     414,   415,   419,   420,   424,   425,   427,   429,   431,   433,
+     435,   440,   442,   444,   456,   457,   465,   468,   470,   472,
+     477,   490,   492,   494,   496,   498,   500,   502,   504,   506,
+     508,   510,   517,   518,   524,   525,   526,   527,   531,   532,
+     539,   540,   542,   544,   549,   550,   552,   557,   558,   560,
+     565,   566,   568,   570,   572,   577,   578,   580,   585,   586,
+     591,   592,   597,   598,   603,   604,   609,   610,   615,   616,
+     619,   626,   631,   632,   640,   641,   645,   646,   647,   648,
+     649,   650,   651,   652,   653,   654,   655,   656,   666,   668,
+     673,   674,   679,   680,   686,   687,   693,   694,   695,   696,
+     697,   698,   699,   700,   701,   711,   718,   720,   730,   731,
+     736,   738,   744,   746,   750,   751,   756,   761,   764,   766,
+     768,   778,   780,   791,   792,   794,   798,   800,   804,   805,
+     810,   811,   815,   820,   821,   825,   827,   833,   834,   838,
+     840,   842,   844,   850,   851,   855,   857,   862,   864,   866,
+     871,   873,   878,   880,   884,   887,   891,   894,   898,   900,
+     902,   904,   909,   911,   913,   918,   920,   922,   924,   926,
+     931,   933,   935,   937,   942,   954,   955,   960,   962,   967,
+     971,   973,   975,   977,   979,   985,   986,   992,   993,   997,
+     998,  1003,  1005,  1011,  1012,  1014,  1020,  1025,  1035,  1037,
+    1041,  1042,  1047,  1049,  1053,  1054,  1058,  1060,  1064,  1065,
+    1069,  1070,  1074,  1075,  1090,  1091,  1092,  1093,  1094,  1098,
+    1103,  1110,  1120,  1125,  1130,  1138,  1143,  1148,  1153,  1158,
+    1188,  1193,  1200,  1202,  1209,  1214,  1219,  1230,  1235,  1240,
+    1245,  1250,  1259,  1264,  1272,  1273,  1274,  1275,  1281,  1286,
+    1294,  1295,  1296,  1297,  1301,  1302,  1303,  1304,  1309,  1310,
+    1319,  1320,  1325,  1326,  1330,  1332,  1334,  1336,  1338,  1341,
+    1340,  1352,  1353,  1355,  1365,  1366,  1371,  1373,  1375,  1377,
+    1379,  1382,  1384,  1387,  1392,  1394,  1396,  1398,  1400,  1402,
+    1404,  1406,  1408,  1410,  1412,  1414,  1416,  1418,  1420,  1426,
+    1427,  1429,  1431,  1433,  1438,  1439,  1445,  1446,  1448,  1450,
+    1455,  1457,  1459,  1461,  1466,  1467,  1469,  1471,  1476,  1477,
+    1479,  1484,  1485,  1487,  1489,  1494,  1496,  1498,  1503,  1504,
+    1508,  1510,  1516,  1515,  1519,  1521,  1526,  1528,  1534,  1535,
+    1540,  1541,  1543,  1544,  1553,  1554,  1556,  1558,  1563,  1565,
+    1571,  1572,  1574,  1577,  1580,  1585,  1586,  1591,  1596,  1600,
+    1602,  1608,  1607,  1614,  1616,  1622,  1623,  1631,  1632,  1636,
+    1637,  1638,  1640,  1642,  1649,  1650,  1652,  1654,  1659,  1660,
+    1666,  1667,  1671,  1672,  1677,  1678,  1679,  1681,  1689,  1690,
+    1692,  1695,  1697,  1701,  1702,  1703,  1705,  1707,  1711,  1716,
+    1724,  1725,  1734,  1736,  1741,  1742,  1743,  1747,  1748,  1749,
+    1753,  1754,  1755,  1759,  1760,  1761,  1766,  1767,  1768,  1769,
+    1775,  1776,  1778,  1783,  1784,  1789,  1790,  1791,  1792,  1793,
+    1808,  1809,  1814,  1815,  1821,  1823,  1826,  1828,  1830,  1853,
+    1854,  1856,  1858,  1863,  1864,  1866,  1871,  1876,  1877,  1883,
+    1882,  1886,  1890,  1892,  1894,  1896,  1902,  1903,  1908,  1913,
+    1915,  1920,  1922,  1923,  1925,  1930,  1932,  1934,  1939,  1941,
+    1946,  1951,  1959,  1965,  1964,  1978,  1979,  1984,  1985,  1989,
+    1994,  1999,  2007,  2012,  2023,  2024,  2029,  2030,  2036,  2037,
+    2041,  2042,  2043,  2046,  2045,  2056,  2065,  2071,  2077,  2086,
+    2092,  2098,  2104,  2110,  2118,  2124,  2132,  2138,  2147,  2148,
+    2149,  2153,  2159,  2160,  2166,  2167,  2171,  2172,  2177,  2182,
+    2183,  2189,  2190,  2192,  2197,  2198,  2199,  2200,  2235,  2237,
+    2238,  2240,  2245,  2250,  2255,  2257,  2259,  2264,  2266,  2268,
+    2270,  2275,  2277,  2286,  2288,  2289,  2294,  2296,  2298,  2303,
+    2305,  2307,  2312,  2314,  2316,  2325,  2326,  2327,  2331,  2333,
+    2335,  2340,  2342,  2344,  2349,  2351,  2353,  2368,  2370,  2371,
+    2373,  2378,  2379,  2384,  2386,  2388,  2393,  2395,  2397,  2399,
+    2404,  2406,  2408,  2418,  2420,  2421,  2423,  2428,  2430,  2432,
+    2437,  2439,  2441,  2443,  2448,  2450,  2452,  2483,  2485,  2486,
+    2488,  2493,  2498,  2506,  2508,  2510,  2515,  2517,  2522,  2524,
+    2538,  2539,  2541,  2546,  2548,  2550,  2552,  2554,  2559,  2560,
+    2562,  2564,  2569,  2571,  2573,  2579,  2581,  2583,  2587,  2589,
+    2591,  2593,  2607,  2608,  2610,  2615,  2617,  2619,  2621,  2623,
+    2628,  2629,  2631,  2633,  2638,  2640,  2642,  2648,  2649,  2651,
+    2660,  2663,  2665,  2668,  2670,  2672,  2685,  2686,  2688,  2693,
+    2695,  2697,  2699,  2701,  2706,  2707,  2709,  2711,  2716,  2718,
+    2726,  2727,  2728,  2733,  2734,  2738,  2740,  2742,  2744,  2746,
+    2748,  2755,  2757,  2759,  2761,  2763,  2766,  2768,  2770,  2772,
+    2774,  2779,  2781,  2783,  2788,  2814,  2815,  2817,  2821,  2822,
+    2826,  2828,  2830,  2832,  2834,  2836,  2843,  2845,  2847,  2849,
+    2851,  2853,  2858,  2865,  2867,  2885,  2887,  2892,  2893
 };
 #endif
@@ -1198,16 +1198,16 @@
   "function_definition", "declarator", "subrange", "asm_name_opt",
   "attribute_list_opt", "attribute_list", "attribute",
-  "attribute_parameter_list", "attrib", "any_word", "variable_declarator",
-  "paren_identifier", "variable_ptr", "variable_array",
-  "variable_function", "function_declarator", "function_no_ptr",
-  "function_ptr", "function_array", "old_function_declarator",
-  "old_function_no_ptr", "old_function_ptr", "old_function_array",
-  "variable_type_redeclarator", "paren_type", "type_ptr", "type_array",
-  "type_function", "identifier_parameter_declarator",
-  "identifier_parameter_ptr", "identifier_parameter_array",
-  "identifier_parameter_function", "type_parameter_redeclarator",
-  "typedef", "type_parameter_ptr", "type_parameter_array",
-  "type_parameter_function", "abstract_declarator", "abstract_ptr",
-  "abstract_array", "abstract_function", "array_dimension",
+  "attribute_name_list", "attribute_name", "attr_name",
+  "variable_declarator", "paren_identifier", "variable_ptr",
+  "variable_array", "variable_function", "function_declarator",
+  "function_no_ptr", "function_ptr", "function_array",
+  "old_function_declarator", "old_function_no_ptr", "old_function_ptr",
+  "old_function_array", "variable_type_redeclarator", "paren_type",
+  "type_ptr", "type_array", "type_function",
+  "identifier_parameter_declarator", "identifier_parameter_ptr",
+  "identifier_parameter_array", "identifier_parameter_function",
+  "type_parameter_redeclarator", "typedef", "type_parameter_ptr",
+  "type_parameter_array", "type_parameter_function", "abstract_declarator",
+  "abstract_ptr", "abstract_array", "abstract_function", "array_dimension",
   "multi_array_dimension", "abstract_parameter_declarator",
   "abstract_parameter_ptr", "abstract_parameter_array",
@@ -1464,5 +1464,5 @@
        0,   299,     0,   262,     2,   263,   282,     0,     0,     2,
      298,   552,   298,   492,   494,   493,   495,     0,     0,   757,
-       0,   298,     0,   298,   497,   298,   567,   565,   566,   564,
+       0,   298,     0,   298,   497,   298,   567,   564,   565,   566,
        0,   559,   562,     0,     0,   298,    64,   298,    78,    59,
      298,    66,   298,   298,    62,    63,     2,   132,     0,     0,
@@ -1487,5 +1487,5 @@
      538,   298,    72,     3,   298,   440,   299,     3,   434,   435,
        2,     0,     0,     0,   491,   310,   298,     0,   487,   489,
-       3,     2,     2,     0,   509,     3,     0,   561,   134,     0,
+       3,     2,     2,     0,   509,     3,     0,   561,    40,     0,
        0,   227,     0,     0,     0,     0,    41,     0,     0,   298,
       24,     0,    25,     0,   699,   704,   455,   696,   554,   554,
@@ -1508,66 +1508,66 @@
      111,   406,   755,     0,     0,   443,   245,     0,     0,     3,
        2,   675,   436,     0,   534,     0,   757,   758,   496,     0,
-     298,   298,   298,     0,   558,   560,   135,     0,     0,   220,
-       0,     0,     0,   228,   229,    65,     0,    67,    70,    71,
-       0,   133,     0,     0,     0,   700,   701,   697,   698,   465,
-      79,   115,   130,     3,   114,     0,    28,    40,     3,     0,
-      37,   110,     0,     3,   657,   661,   664,   656,     3,   599,
-     723,   728,     2,    72,   298,     3,     3,   299,     0,     3,
-     629,   633,   636,   645,   679,   683,   686,   298,     3,   628,
-     644,   678,   298,   298,   431,   298,   298,     0,     0,     0,
-       0,   261,   111,     0,     3,     3,     0,   468,     0,   464,
-       0,     0,   250,   298,     0,     0,   134,     0,     0,     0,
-       0,     0,   134,     0,     0,   114,   114,    21,     0,     0,
-       3,   136,   137,     2,   148,   138,   139,   140,   141,   142,
-     143,   150,   152,     0,     0,     0,   289,   298,   298,   554,
-       0,   547,   298,   381,   383,     0,   397,   700,   392,   396,
-     393,   386,   390,   373,   404,     0,   586,     2,   671,   670,
-       0,   676,     2,   488,   490,   511,     3,   519,   520,     0,
-       2,   515,     3,     3,     0,     0,   563,   227,     0,     0,
-       0,   227,     0,     0,   703,   707,   709,   702,   755,   114,
-       0,     3,    54,     0,    54,    54,     3,    42,    44,    39,
-       0,     3,   109,     0,     2,   659,   660,     0,   298,     0,
-       0,     0,     3,   645,     0,     2,   631,   632,     2,   647,
-       2,   681,   682,     0,     0,    72,     0,     3,     3,     3,
-       3,   416,   415,   419,   754,     2,     2,   753,     0,     0,
-       0,     0,     3,   469,     3,     0,   248,   151,     3,   299,
-     298,     0,     0,     0,     0,     2,     0,   196,     0,   194,
-       0,     0,     0,     0,     0,     0,     0,   554,     0,   156,
-     153,   298,     0,     0,   271,   283,     3,     3,   553,   620,
-     374,   389,   402,   298,   270,   298,     0,   522,   499,   298,
-       0,     0,   498,   513,     0,     0,     0,   221,     0,   230,
-      68,     2,   705,   706,     0,   131,   128,     0,    51,     2,
-      45,    52,    53,     0,     0,     0,     0,    27,     0,   662,
-     298,   587,   731,   732,   733,     0,   684,   298,   298,   298,
-       3,     3,     0,   692,     0,     0,     0,     0,   298,   298,
-       3,   551,   475,   476,     0,   251,   299,     0,     0,     0,
-       0,   298,   197,   195,   192,     0,   198,     0,     0,     0,
-       0,   202,   205,   203,   199,     0,   200,   134,    40,   149,
-     147,   249,     0,     0,   423,   427,   426,     0,   516,     2,
-     517,     2,   518,   512,   298,   233,     0,   231,     0,   233,
-     298,    36,   129,    55,     0,    43,    33,     2,    49,     2,
-      47,    30,     3,   734,     3,     3,     3,     0,     0,   691,
-     693,   634,   648,   273,     2,   413,     3,   412,     0,   478,
-     134,     0,     0,   134,     3,     0,   134,   193,     0,     2,
-       2,   214,   204,     0,     0,     0,   145,     0,   581,   621,
-       2,     0,     0,     2,   234,     0,     0,   222,     0,     3,
-       3,     0,     0,     0,     0,     0,     0,   694,   695,   298,
-       0,   477,   157,     0,     0,     2,   170,   134,   159,     0,
-     187,     0,   134,     0,     2,   161,     0,     2,     0,     2,
-       2,     2,   201,    37,   298,   521,   523,   514,     0,     0,
-       0,     0,     0,     0,     3,     3,   663,   635,   649,   685,
-     417,   134,   163,   166,     0,   165,   169,     3,   172,   171,
-       0,   134,   189,   134,     3,     0,   298,     0,   298,     0,
-       2,     0,     2,   144,     2,   235,   236,     0,   232,   223,
-     708,    46,     0,     0,   158,     0,     0,   168,   238,   173,
-       2,   240,   188,     0,   191,   177,   206,     3,   215,   219,
-     208,     3,     0,   298,     0,   298,     0,     0,     0,    50,
-      48,   164,   167,   134,     0,   174,   298,   134,   134,     0,
-     178,     0,     0,   699,   216,   217,   218,     0,   207,     3,
-     209,     3,   298,   224,   237,   154,   175,   160,   134,   241,
-     190,   185,   183,   179,   162,   134,     0,   700,     0,     0,
-       0,     0,   155,   176,   186,   180,   184,   183,   181,     3,
-       3,     0,     0,   500,   182,   210,   212,     3,     3,   211,
-     213
+     298,   298,   298,     0,   558,   560,     0,     0,   220,     0,
+       0,     0,   228,   229,    65,     0,    67,    70,    71,     0,
+     133,     0,     0,     0,   700,   701,   697,   698,   465,    79,
+     115,   130,     3,   114,     0,    28,    40,     3,     0,    37,
+     110,     0,     3,   657,   661,   664,   656,     3,   599,   723,
+     728,     2,    72,   298,     3,     3,   299,     0,     3,   629,
+     633,   636,   645,   679,   683,   686,   298,     3,   628,   644,
+     678,   298,   298,   431,   298,   298,     0,     0,     0,     0,
+     261,   111,     0,     3,     3,     0,   468,     0,   464,     0,
+       0,   250,   298,     0,     0,   134,     0,     0,     0,     0,
+       0,   134,     0,     0,   114,   114,    21,   365,   446,    69,
+       0,    22,   135,     0,     3,   136,   137,     2,   148,   138,
+     139,   140,   141,   142,   143,   150,     0,   152,     0,     0,
+       0,   289,   298,   298,   554,     0,   547,   298,   381,   383,
+       0,   397,   700,   392,   396,   393,   386,   390,   373,   404,
+       0,   586,     2,   671,   670,     0,   676,     2,   488,   490,
+     511,     3,   519,   520,     0,     2,   515,     3,     3,     0,
+       0,   563,   227,     0,     0,     0,   227,     0,     0,   703,
+     707,   709,   702,   755,   114,     0,     3,    54,     0,    54,
+      54,     3,    42,    44,    39,     0,     3,   109,     0,     2,
+     659,   660,     0,   298,     0,     0,     0,     3,   645,     0,
+       2,   631,   632,     2,   647,     2,   681,   682,     0,     0,
+      72,     0,     3,     3,     3,     3,   416,   415,   419,   754,
+       2,     2,   753,     0,     0,     0,     0,     3,   469,     3,
+       0,   248,   151,     3,   299,   298,     0,     0,     0,     0,
+       2,   196,     0,   194,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,   156,   153,   298,     0,   554,     0,   271,
+     283,     3,     3,   553,   620,   374,   389,   402,   298,   270,
+     298,     0,   522,   499,   298,     0,     0,   498,   513,     0,
+       0,     0,   221,     0,   230,    68,     2,   705,   706,     0,
+     131,   128,     0,    51,     2,    45,    52,    53,     0,     0,
+       0,     0,    27,     0,   662,   298,   587,   731,   732,   733,
+       0,   684,   298,   298,   298,     3,     3,     0,   692,     0,
+       0,     0,     0,   298,   298,     3,   551,   475,   476,     0,
+     251,   299,     0,     0,     0,     0,   298,   197,   195,     0,
+     192,   198,     0,     0,     0,     0,   202,   205,   203,   199,
+       0,   200,    40,   149,   147,   134,   249,     0,     0,   423,
+     427,   426,     0,   516,     2,   517,     2,   518,   512,   298,
+     233,     0,   231,     0,   233,   298,    36,   129,    55,     0,
+      43,    33,     2,    49,     2,    47,    30,     3,   734,     3,
+       3,     3,     0,     0,   691,   693,   634,   648,   273,     2,
+     413,     3,   412,     0,   478,   134,     0,     0,   134,     3,
+       0,   134,   193,     0,     2,     2,   214,   204,     0,     0,
+       0,     0,   145,   581,   621,     2,     0,     0,     2,   234,
+       0,     0,   222,     0,     3,     3,     0,     0,     0,     0,
+       0,     0,   694,   695,   298,     0,   477,   157,     0,     0,
+       2,   170,   134,   159,     0,   187,     0,   134,     0,     2,
+     161,     0,     2,     0,     2,     2,     2,   201,    37,   298,
+     521,   523,   514,     0,     0,     0,     0,     0,     0,     3,
+       3,   663,   635,   649,   685,   417,   134,   163,   166,     0,
+     165,   169,     3,   172,   171,     0,   134,   189,   134,     3,
+       0,   298,     0,   298,     0,     2,     0,     2,   144,     2,
+     235,   236,     0,   232,   223,   708,    46,     0,     0,   158,
+       0,     0,   168,   238,   173,     2,   240,   188,     0,   191,
+     177,   206,     3,   215,   219,   208,     3,     0,   298,     0,
+     298,     0,     0,     0,    50,    48,   164,   167,   134,     0,
+     174,   298,   134,   134,     0,   178,     0,     0,   699,   216,
+     217,   218,     0,   207,     3,   209,     3,   298,   224,   237,
+     154,   175,   160,   134,   241,   190,   185,   183,   179,   162,
+     134,     0,   700,     0,     0,     0,     0,   155,   176,   186,
+     180,   184,   183,   181,     3,     3,     0,     0,   500,   182,
+     210,   212,     3,     3,   211,   213
 };
 
@@ -1576,26 +1576,26 @@
 {
       -1,   803,   466,   303,    49,   135,   136,   304,   305,   306,
-     307,   308,   755,   756,  1116,  1117,  1118,  1228,   309,   380,
+     307,   308,   755,   756,  1121,  1122,  1123,  1233,   309,   380,
      311,   312,   313,   314,   315,   316,   317,   318,   319,   320,
-     321,   322,   323,  1013,   517,   962,   546,   325,   963,   936,
-    1039,  1505,  1041,  1042,  1043,  1044,  1506,  1045,  1046,  1423,
-    1424,  1386,  1387,  1388,  1484,  1485,  1489,  1490,  1525,  1526,
-    1047,  1345,  1048,  1049,  1281,  1282,  1283,  1467,  1050,   147,
-     942,   943,   944,  1365,  1447,  1459,  1460,   467,   468,   863,
-     864,  1021,    53,    54,    55,    56,    57,   347,   159,    60,
+     321,   322,   323,  1012,   517,   961,   546,   325,   962,  1042,
+    1043,  1510,  1045,  1046,  1047,  1048,  1511,  1049,  1050,  1428,
+    1429,  1391,  1392,  1393,  1489,  1490,  1494,  1495,  1530,  1531,
+    1051,  1350,  1052,  1053,  1286,  1287,  1288,  1472,  1054,   147,
+     941,   942,   943,  1370,  1452,  1464,  1465,   467,   468,   863,
+     864,  1020,    53,    54,    55,    56,    57,   347,   159,    60,
       61,    62,    63,    64,   349,    66,    67,   265,    69,    70,
      275,   351,   352,    73,    74,    75,   120,    77,   205,   354,
      121,    80,   122,    82,    83,   453,    84,   452,   682,   683,
-     684,   896,  1068,   897,    85,    86,   456,   454,   690,   845,
+     684,   896,  1073,   897,    85,    86,   456,   454,   690,   845,
      846,   357,   358,   693,   694,   695,   359,   360,   361,   362,
-     464,   178,   137,   138,   521,   327,   171,   639,   640,   641,
+     464,  1056,   137,   138,   521,   327,   171,   639,   640,   641,
      642,   643,    87,   123,    89,   488,   489,   928,   490,   278,
-     494,   328,    90,   139,   140,    91,  1304,  1090,  1091,  1092,
-    1093,    92,    93,   711,    94,   274,    95,    96,   188,  1015,
+     494,   328,    90,   139,   140,    91,  1309,  1095,  1096,  1097,
+    1098,    92,    93,   711,    94,   274,    95,    96,   188,  1014,
      673,   411,   127,    97,   500,   501,   502,   189,   269,   191,
      192,   193,   270,   100,   101,   102,   103,   104,   105,   106,
      196,   197,   198,   199,   200,   815,   601,   602,   603,   604,
      201,   606,   607,   608,   570,   571,   572,   573,   745,   107,
-     610,   611,   612,   613,   614,   615,   956,   747,   748,   749,
+     610,   611,   612,   613,   614,   615,   955,   747,   748,   749,
      591,   365,   366,   367,   368,   329,   165,   109,   110,   111,
      370,   688,   718
@@ -1604,162 +1604,162 @@
 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
    STATE-NUM.  */
-#define YYPACT_NINF -1263
+#define YYPACT_NINF -1328
 static const yytype_int16 yypact[] =
 {
-    6864,  4432, -1263,    10, -1263, -1263, -1263, -1263, -1263, -1263,
-   -1263,   -12, -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263,
-   -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263,    67,    67,
-      67,   564,   950,    20,  6985,   166, -1263, -1263, -1263, -1263,
-   -1263,    71, -1263, -1263, -1263,  1431,   111, -1263, -1263, -1263,
-   -1263,  3253, -1263, -1263, -1263, -1263,    83,   193, -1263,  1119,
-   -1263, -1263, -1263, -1263,   213,  1691,   349,    98,  7106, -1263,
-   -1263,  3253,   817, -1263, -1263,   596,   492,  5210,  1011,  1044,
-     596,  1122, -1263, -1263,   838,   957, -1263,   596,  1203, -1263,
-     236, -1263,   406,   508, -1263, -1263, -1263, -1263,   429,   193,
-      67, -1263,    67, -1263, -1263, -1263, -1263,  4697,  1119, -1263,
-   -1263,  1119, -1263,   434, -1263,  7806, -1263, -1263,  2149,  8896,
-   -1263,   644,   644,   644, -1263, -1263, -1263,    67, -1263, -1263,
-   -1263,   436,   458,   468, -1263, -1263, -1263,   480, -1263, -1263,
-   -1263, -1263, -1263,   498,   503, -1263, -1263,    77,  8347,  2436,
-     255,   519,   522,   535,   547,   585,   603,  8929,  6488,   597,
-   -1263,  4574, -1263, -1263, -1263, -1263,   608, -1263,   -37,  5487,
-    5487, -1263,   539,   241, -1263, -1263, -1263, -1263,   624,   287,
-     313,   327,    67,   621, -1263, -1263,  1691,  2813,   734, -1263,
-     120, -1263,    67,    67,   193, -1263, -1263,   204, -1263,    67,
-      67, -1263,  2931,   664,   675,   644,  6274, -1263, -1263, -1263,
-    3253, -1263, -1263,   596, -1263, -1263, -1263,   193, -1263,  1119,
-      83, -1263,  7457, -1263,   644,   644,   644,   193, -1263,   564,
-   -1263,  3379, -1263, -1263,   671,   644, -1263,   644, -1263,    71,
-    8347, -1263,   715, -1263,   950,   724,   644, -1263,   564,   704,
-     714, -1263,  6985,   544, -1263, -1263, -1263,  8708, -1263, -1263,
-    8263, -1263,   734,   123,  9697,  8896,  2149,  2931, -1263,   205,
-   -1263, -1263,  7806,  1119,   738,  5343, -1263, -1263,   211, -1263,
-   10116,   739,   650,  9756,   757,  9697,  9815, -1263,   763, -1263,
-   -1263, -1263, -1263, -1263, -1263,  9874,  9874,  8111,   111, -1263,
-   -1263, -1263, -1263, -1263, -1263, -1263,   795, -1263,  1259,  2219,
-    8347,  9697, -1263,   496,   315,   375,   430,   719,   760,   770,
-     771,   807,   114, -1263, -1263, -1263,   814, -1263,   402, -1263,
-   -1263,  2436, -1263, -1263,   104,   792, -1263,   372,   792, -1263,
-   -1263,  4697, -1263,   802,   812,  8465, -1263, -1263,   721,  1811,
-    7892,  6274,   596, -1263,   596,   644,   644, -1263, -1263, -1263,
-   -1263, -1263, -1263,   644,  4697,  1119, -1263, -1263,  8929,  1749,
-   -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263,  4858,
-    9697, -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263,
-   -1263, -1263, -1263, -1263, -1263,  2149, -1263,   677,   823,   827,
-     829,   862,   831,   834,   836,  2813, -1263, -1263,   842,    83,
-     841, -1263, -1263,   837, -1263, -1263, -1263,  8708, -1263, -1263,
-   -1263, -1263, -1263,  2931, -1263,  8347,  8347, -1263,   644,  2149,
-    6398,  7967, -1263, -1263, -1263, -1263,  8708,   123, -1263, -1263,
-     596,   193, -1263, -1263,  8708, -1263,  5038, -1263, -1263,   644,
-     644,   474,  8741,   848,   849,   824,   850,   644, -1263, -1263,
-   -1263, -1263,  9167, -1263,   507, 10150, -1263,   193,   853, -1263,
-    2149, 10237,  9933, -1263, -1263, -1263, -1263,   898,  2931, -1263,
-    7967,   734,  5424, -1263, -1263, -1263, -1263,  1676,   514,   844,
-     950,  5343,  1027,  7806, -1263,  5343, -1263, -1263, -1263, -1263,
-     545, -1263,   859,   650,   244,  8111, -1263,  9014, -1263, -1263,
-    8111, -1263,  8229,  8111, -1263, -1263,   111, -1263,   548,   867,
-     926,   872, -1263, -1263,  6240, -1263, -1263,   387, -1263, -1263,
-    9697, -1263,   467,  9697, -1263, -1263, -1263, -1263, -1263, -1263,
-   -1263, -1263, -1263, -1263, -1263, -1263,  9697, -1263, -1263,  9697,
-    9697,  9697,  9697,  9697,  9697,  9697,  9697,  9697,  9697,  9697,
-    9697,  9697,  9697,  9697,  9697,  9697,  9697,  4047,   814,  1636,
-   -1263, -1263,    67,    67, -1263, -1263,  8347, -1263, -1263,   837,
-     544, -1263,   837,  9992, -1263, -1263,  8929,  6240,   873, -1263,
-    8896, -1263, -1263,   608, -1263,   880,   787,   882,  2301,   259,
-     844, -1263,    67,    67,   844,   286, -1263,    67,    67,   837,
-   -1263, -1263,    67,    67, -1263,   792,  9047,  1119, 10388,   450,
-     493,  9047, -1263,  8263, -1263,   844, -1263,  4697, -1263,   -35,
-    7577,  7577,  1119,  5632,   869, -1263,   326,   874,   889, -1263,
-     881,  5487,   342, -1263,   977,  1119,  7577,   544,  2149,   544,
-     734,   382,   792, -1263, -1263,   405,   792, -1263, -1263, -1263,
-     650, -1263,   792,   193,  9167, -1263,   570,   918,   602,   921,
-   -1263,   802,   193, -1263, -1263,  8708,   193,   940,  9014,   111,
-   -1263,  1310, -1263,   353,   395,   950, -1263,   950,   941,  9697,
-   -1263,   950, 10388, -1263, -1263,   948, -1263, -1263, -1263,   544,
-   -1263, 10313,   812, -1263,  7577,   987,  7892, -1263, -1263,   608,
-     955,   960,  1676,  3085, -1263, -1263,  5343,  9697, -1263, -1263,
-     947, -1263, -1263,   956, -1263,   947,   967, 10116,  9697,   949,
-     954,   180,   972,   975,   984,   993, -1263,  1002,  1005,  6240,
-   -1263,  9697, -1263,   926,  1965, -1263, -1263, -1263,    67,    67,
-    9638,  9697,   992, -1263, -1263,   615, -1263,  9697, -1263, -1263,
-     711, -1263, -1263, -1263, -1263,   496,   496,   315,   315,   375,
-     375,   375,   375,   430,   430,   719,   760,   770,   771,   807,
-    9697,   330,  9167,  1006,  1007,  1008,  1636, -1263, -1263, -1263,
-   -1263, -1263,  9167,   620, -1263,  4697, -1263,  6612,  8583, -1263,
-   -1263, -1263,   787,  9167,   937,  1012,  1014,  1022,  1023,  1024,
-    1029,  1036, -1263,  3424,  2301, -1263, -1263, -1263, -1263, -1263,
-   -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263,
-   -1263, -1263,   837, -1263, -1263, -1263,   844, -1263, -1263, -1263,
-   -1263, -1263, -1263, -1263, -1263, -1263, -1263,  1039,  1043, -1263,
-      83,   992,  5632, -1263, -1263, -1263,  4858,  1042, -1263, -1263,
-   -1263, -1263,   950,  5809,  1095, -1263, -1263, -1263, -1263,  1030,
-      83, -1263, -1263,   837, -1263, -1263,   837,  1048,   837, -1263,
-   -1263, -1263, -1263, -1263, -1263,  6488, -1263,   193, -1263, -1263,
-     407,   410,  6488,  2038,  9697,  2697, -1263, -1263,  1037,    53,
-    1037, -1263,   950, -1263,    67, -1263, -1263,  8781,   824, -1263,
-   -1263, -1263,   849,  1059,  1021, -1263, -1263,  1062,  1063, -1263,
-     987,  2296, -1263,   528, -1263,  3085,   844, -1263, -1263,  1071,
-    5343,  7806,  8347,  1073, -1263, -1263,  1074,  1084,  1066, -1263,
-    9697,  1088,   282,  1083, -1263,  1091,   544,  1091, -1263, -1263,
-    1091, -1263,  1097,  1105,  1115,  1965, -1263, -1263, -1263,  4858,
-   -1263, -1263, -1263,  1113,  9697,   605, -1263,  9697, -1263,   605,
-   -1263, -1263,  9697, -1263,   424,   792, -1263, -1263, -1263, -1263,
-   -1263, -1263, -1263,   812,  8465, -1263, -1263,  6736,  1120, -1263,
-     568,   792, -1263,   594,   631,   792, -1263,   644,  3969, -1263,
-   -1263, -1263,  9167,  9167, -1263,  7967,  7967,  1123,  1118,  1127,
-    1125, -1263,   558,   212,   992, -1263,   605, -1263,  5487, -1263,
-    9697,   420, -1263,  6116,  1129,  1135,  9579,  1136,  1137,   146,
-     206,   181,  9697,  1140,   193,  9697,  9697,  1106,   305,  1124,
-   -1263, -1263, -1263,  1143, -1263, -1263, -1263, -1263, -1263, -1263,
-   -1263, -1263, -1263,   950,  1141,  9697, -1263,  9167,  9167,    67,
-    1150, -1263,  8856, -1263, -1263,   722, -1263,  2697, -1263, -1263,
-   -1263, -1263,  1310, -1263, -1263,  1148, -1263, -1263, -1263, -1263,
-    1154,  2296, -1263, -1263,  1139, -1263,   947, -1263, -1263,  2149,
-    1158, -1263, -1263, -1263,   627,  1151, -1263,   180,  1138,  9697,
-    1146,   180,   180,  1165,   653,   792, -1263, -1263,   881,  9697,
-    1164,  1113, -1263,  1068, -1263, -1263,  1163, -1263,   219, -1263,
-    1168,  1163, -1263,  1171, -1263, -1263,   837,  1173,  6364,  1172,
-    1175,  1177, -1263, -1263,  1180, -1263, -1263,   837, -1263, -1263,
-   -1263, -1263,   837,  9697,  9697,   812,  1179, -1263, -1263, -1263,
-   -1263, -1263, -1263, -1263, -1263, -1263, -1263, -1263,  9697,  9697,
-    1182,  1184,  1163, -1263, -1263,   950, -1263, -1263, -1263,  7382,
-    7806,  9697,  9697,  1240,  9697, -1263,  1160, -1263,  1170, -1263,
-    1174,  9697,  1178,  9697,  1032,  1185,    59,    67,  1380, -1263,
-   -1263,  5809,  1189,   442, -1263, -1263, -1263, -1263, -1263, -1263,
-   -1263, -1263, -1263,  9395, -1263,  7967,  1190, -1263, -1263,  7806,
-     454,   456, -1263,  1197,  1193,   650,  1210, -1263,   295, -1263,
-   -1263, -1263, -1263,   837,  1213, -1263, -1263,  1220,  1252, -1263,
-   -1263,  1252,  1252,   605,  1222,  1144,  1570, -1263,  1237, -1263,
-    9167, -1263, -1263, -1263, -1263,  1238, -1263,  9167,  9167,  9167,
-   -1263, -1263,  1239, -1263,  1241,  1242,  1245,   586,  7652,  7772,
-   -1263, -1263, -1263, -1263,  1244, -1263,  8042,   635,   640,  1249,
-     662,  5981, -1263, -1263, -1263,   460, -1263,   666,  1250,  1251,
-     193,  1306,   785, -1263, -1263,  9697, -1263,  9579,  9697, -1263,
-   -1263, -1263,  1255,  1257, -1263, -1263, -1263,  1262, -1263, -1263,
-   -1263, -1263, -1263, -1263,  7806,   650,  1270, -1263,  1254,   650,
-    9167, -1263, -1263, -1263,   605, -1263, -1263, -1263, -1263, -1263,
-   -1263, -1263, -1263, -1263, -1263, -1263, -1263,  1278,  1279, -1263,
-   -1263, -1263, -1263, -1263, -1263, -1263,  1282, -1263,  1284, -1263,
-    9579,    89,  9697,  9579, -1263,  1287,  9697, -1263,   136,  1302,
-    1311, -1263, -1263,  1297,  1299,  1280, -1263,   753, -1263, -1263,
-   -1263,  1119,  2149,  1300, -1263,   338,  9697, -1263,   667, -1263,
-    1163,   605,   605,  1314,  1315,  1320,  1328, -1263, -1263,  7967,
-    1304, -1263,  1376,  9697,  1309, -1263, -1263,  9489, -1263,   690,
-   -1263,  1313,  9579,  1321, -1263, -1263,  1331, -1263,  1333, -1263,
-    1351,  1361, -1263,  1337,  7806, -1263, -1263, -1263,   650,   544,
-    1362,  1339,  1365,  1364,  1163,  1163, -1263, -1263, -1263, -1263,
-   -1263,  9579,   234, -1263,   427, -1263, -1263,  7227, -1263, -1263,
-    1346,  9697, -1263,  9697,  7227,   193,  9014,   193,  9014,  1369,
-   -1263,  1370, -1263, -1263,  1367, -1263, -1263,   697, -1263, -1263,
-   -1263, -1263,  1371,  1373, -1263,  9697,  9697, -1263, -1263,   839,
-      85, -1263, -1263,  1358, -1263,   839, -1263, -1263,  2097,   544,
-   -1263, -1263,   193,  9014,   193,  9014,  1387,  1366,   544, -1263,
-   -1263, -1263, -1263,  9489,  1384,   839,  7306,  9697,  9399,  1388,
-     839,  1392,  2097,  3030, -1263, -1263, -1263,  1399, -1263, -1263,
-   -1263, -1263,  8347, -1263, -1263, -1263,  9261, -1263,  9489, -1263,
-   -1263,  1378,  9171, -1263, -1263,  9399,   193,  3030,   193,  1401,
-    1403,   712, -1263,  9261, -1263, -1263, -1263,  9171, -1263, -1263,
-   -1263,   193,   193, -1263, -1263, -1263, -1263, -1263, -1263, -1263,
-   -1263
+    7094,  5192, -1328,    47, -1328, -1328, -1328, -1328, -1328, -1328,
+   -1328,    41, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328,
+   -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328,   209,   209,
+     209,  1263,  1027,   118,  7336,   312, -1328, -1328, -1328, -1328,
+   -1328,   248, -1328, -1328, -1328,  1020,   187, -1328, -1328, -1328,
+   -1328,  8977, -1328, -1328, -1328, -1328,   126,   266, -1328,  1653,
+   -1328, -1328, -1328, -1328,   285,  1985,   410,    77,  7457, -1328,
+   -1328,  8977,   983, -1328, -1328,   602,   416,  4937,   741,  1118,
+     602,  1546, -1328, -1328,  1203,   473, -1328,   602,  1860, -1328,
+     325, -1328,   471,   476, -1328, -1328, -1328, -1328,   367,   266,
+     209, -1328,   209, -1328, -1328, -1328, -1328,  7962,  1653, -1328,
+   -1328,  1653, -1328,   375, -1328,  8082, -1328, -1328,  2291,  9246,
+   -1328,   847,   847,   847, -1328, -1328, -1328,   209, -1328, -1328,
+   -1328,   408,   426,   461, -1328, -1328, -1328,   472, -1328, -1328,
+   -1328, -1328, -1328,   508,   512, -1328, -1328,   103,  8623,  1598,
+     500,   443,   518,   536,   544,   548,   556,  9286,  6718,   568,
+   -1328,  9017, -1328, -1328, -1328, -1328,   575, -1328,   190,  3423,
+    3423, -1328,   577,   294, -1328, -1328, -1328, -1328,   578,   352,
+     387,   393,   209,   564, -1328, -1328,  1985,  3980,   641, -1328,
+      84, -1328,   209,   209,   266, -1328, -1328,   214, -1328,   209,
+     209, -1328,  4262,   597,   616,   847,  6752, -1328, -1328, -1328,
+    8977, -1328, -1328,   602, -1328, -1328, -1328,   266, -1328,  1653,
+     126, -1328,  7808, -1328,   847,   847,   847,   266, -1328,  1263,
+   -1328,  6380, -1328, -1328,   600,   847, -1328,   847, -1328,   248,
+    8623, -1328,   625, -1328,  1027,   697,   847, -1328,  1263,   667,
+     675, -1328,  7336,   663, -1328, -1328, -1328,  3551, -1328, -1328,
+    8539, -1328,   641,   128,  5841,  9246,  2291,  4262, -1328,   236,
+   -1328, -1328,  8082,  1653,   700, 10420, -1328, -1328,   221, -1328,
+     493,   710,   742,  6026,   753,  5841,  9865, -1328,   766, -1328,
+   -1328, -1328, -1328, -1328, -1328,  9924,  9924,  8387,   187, -1328,
+   -1328, -1328, -1328, -1328, -1328, -1328,   808, -1328,  2340,  2114,
+    8623,  5841, -1328,   633,    22,   547,   447,   693,   771,   758,
+     785,   800,    32, -1328, -1328, -1328,   572, -1328,   268, -1328,
+   -1328,  1598, -1328, -1328,   329,   827, -1328,   417,   827, -1328,
+   -1328,  7962, -1328,   807,   834,  8741, -1328, -1328,  1437,  2015,
+    8168,  6752,   602, -1328,   602,   847,   847, -1328, -1328, -1328,
+   -1328, -1328, -1328,   847,  7962,  1653, -1328, -1328,  9286,  1675,
+   -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328,  4621,
+    5841, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328,
+   -1328, -1328, -1328, -1328, -1328,  2291, -1328,   818,   832,   839,
+     851,   857,   865,   870,   881,  3980, -1328, -1328,   888,   126,
+     903, -1328, -1328,   889, -1328, -1328, -1328,  3551, -1328, -1328,
+   -1328, -1328, -1328,  4262, -1328,  8623,  8623, -1328,   847,  2291,
+    6876,  8243, -1328, -1328, -1328, -1328,  3551,   128, -1328, -1328,
+     602,   266, -1328, -1328,  3551, -1328,  6628, -1328, -1328,   847,
+     847,   552,  5831,   902,   906,   897,   905,   847, -1328, -1328,
+   -1328, -1328,  9444, -1328,   569, 10160, -1328,   266,   913, -1328,
+    2291, 10200,  9983, -1328, -1328, -1328, -1328,   896,  4262, -1328,
+    8243,   641,  7215, -1328, -1328, -1328, -1328,  1315,   613,   907,
+    1027, 10420,  1475,  8082, -1328, 10420, -1328, -1328, -1328, -1328,
+     654, -1328,   931,   742,   246,  8387, -1328,  9319, -1328, -1328,
+    8387, -1328,  8505,  8387, -1328, -1328,   187, -1328,   666,   933,
+     695,   936, -1328, -1328,  6470, -1328, -1328,   345, -1328, -1328,
+    5841, -1328,   431,  5841, -1328, -1328, -1328, -1328, -1328, -1328,
+   -1328, -1328, -1328, -1328, -1328, -1328,  5841, -1328, -1328,  5841,
+    5841,  5841,  5841,  5841,  5841,  5841,  5841,  5841,  5841,  5841,
+    5841,  5841,  5841,  5841,  5841,  5841,  5841,  4496,   572,   830,
+   -1328, -1328,   209,   209, -1328, -1328,  8623, -1328, -1328,   889,
+     663, -1328,   889, 10042, -1328, -1328,  9286,  6470,   929, -1328,
+    9246, -1328, -1328,   575, -1328,   937,   947,   939,  3082,   257,
+     907, -1328,   209,   209,   907,   260, -1328,   209,   209,   889,
+   -1328, -1328,   209,   209, -1328,   827,  9404,  1653, 10351,   176,
+     238,  9404, -1328,  8539, -1328,   907, -1328,  7962, -1328,     8,
+    5680,  5680,  1653,  5204,   927, -1328,   546,   943,   945, -1328,
+     950,  3423,   381, -1328,  1033,  1653,  5680,   663,  2291,   663,
+     641,   477,   827, -1328, -1328,   604,   827, -1328, -1328, -1328,
+     742, -1328,   827,   266,  9444, -1328,   678,   967,   680,   968,
+   -1328,   807,   266, -1328, -1328,  3551,   266,   965,  9319,   187,
+   -1328,  1893, -1328,   436,   439,  1027, -1328,  1027,   966,  5841,
+   -1328,  1027, 10351, -1328, -1328,   972, -1328, -1328, -1328,   663,
+   -1328, 10276,   834, -1328,  5680,   707,  8168, -1328, -1328,   575,
+     973,   976,  1315,  1837, -1328, -1328, 10420,  5841, -1328, -1328,
+     979, -1328, -1328,   993, -1328,   979,   982,   493,  5841,   977,
+     974,    26,  1002,   998,  1007,  1008, -1328,  1011,  1012,  6470,
+   -1328,  5841, -1328,   695,  1078, -1328, -1328, -1328,   209,   209,
+    5376,  5841,  1015, -1328, -1328,   718, -1328,  5841, -1328, -1328,
+     733, -1328, -1328, -1328, -1328,   633,   633,    22,    22,   547,
+     547,   547,   547,   447,   447,   693,   771,   758,   785,   800,
+    5841,   106,  9444,  1023,  1035,  1036,   830, -1328, -1328, -1328,
+   -1328, -1328,  9444,   730, -1328,  7962, -1328,  6842,  8859, -1328,
+   -1328, -1328,   947,  9444,   952,  1039,  1040,  1041,  1042,  1044,
+    1046,  1047, -1328,  4747,  3082, -1328, -1328, -1328, -1328, -1328,
+   -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328,
+   -1328, -1328,   889, -1328, -1328, -1328,   907, -1328, -1328, -1328,
+   -1328, -1328, -1328, -1328, -1328, -1328, -1328,  1053,  1054, -1328,
+     126,  1015,  5204, -1328, -1328, -1328,  4621,  1051, -1328, -1328,
+   -1328, -1328,  1027,  6163,  1143, -1328, -1328, -1328, -1328,  1049,
+     126, -1328, -1328,   889, -1328, -1328,   889,  1060,   889, -1328,
+   -1328, -1328, -1328, -1328, -1328,  6718, -1328,   266, -1328, -1328,
+     444,   451,  6718,  2036,  5841,  3709, -1328, -1328,  1045,    40,
+    1045, -1328,  1027, -1328,   209, -1328, -1328,  9131,   897, -1328,
+   -1328, -1328,   906,  1061,  1056, -1328, -1328,  1069,  1072, -1328,
+     707,  1770, -1328,   275, -1328,  1837,   907, -1328, -1328,  1076,
+   10420,  8082,  8623,  1081, -1328, -1328,   734,  1058, -1328,  5841,
+    1084,   279,  1082, -1328,  1080,   663,  1080, -1328, -1328,  1080,
+   -1328,  1087,  1089,  1091,  1078, -1328, -1328, -1328,  4621, -1328,
+   -1328, -1328,  1088,  5841,   919, -1328,  5841, -1328,   919, -1328,
+   -1328,  5841, -1328,   611,   827, -1328, -1328, -1328, -1328, -1328,
+   -1328, -1328,   834,  8741, -1328, -1328,  6966,  1093, -1328,   640,
+     827, -1328,   652,   657,   827, -1328,   847,  4999, -1328, -1328,
+   -1328,  9444,  9444, -1328,  8243,  8243,  1096,  1094,  1095,  1099,
+   -1328,   347,    89,  1015, -1328,   919, -1328,  3423, -1328,  5841,
+     464, -1328,  6346,  1103,  1105,  9806,  1107,  1112,   627,   759,
+    1566,  5841,  1115,   266,  5841,  5841,  1092,  1104,   248,   228,
+     302,  1108,  1123,  1097, -1328, -1328, -1328,  1128, -1328, -1328,
+   -1328, -1328, -1328, -1328, -1328, -1328,  1119, -1328,  1027,  1138,
+    5841, -1328,  9444,  9444,   209,  1140, -1328,  9171, -1328, -1328,
+     806, -1328,  3709, -1328, -1328, -1328, -1328,  1893, -1328, -1328,
+    1136, -1328, -1328, -1328, -1328,  1144,  1770, -1328, -1328,  1127,
+   -1328,   979, -1328, -1328,  2291,  1145, -1328, -1328, -1328,   749,
+    1149, -1328,    26,  1146,  5841,  1132,    26,    26,  1157,   672,
+     827, -1328, -1328,   950,  5841,  1159,  1088, -1328,  1148, -1328,
+   -1328,  1158, -1328,    81, -1328,  1166,  1158, -1328,  1169, -1328,
+   -1328,   889,  1171,  6594,  1173,  1184,  1185, -1328, -1328,  1189,
+   -1328, -1328,   889, -1328, -1328, -1328, -1328,   889,  5841,  5841,
+     834,  1188, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328,
+   -1328, -1328, -1328,  5841,  5841,  1190,  1194,  1158, -1328, -1328,
+    1027, -1328, -1328, -1328,  7733,  8082,  5841,  5841,  1274,  5841,
+   -1328, -1328,  1191, -1328,  1192,  5841,  1199,  1206,  5841,  1013,
+    1207,    37,  2395, -1328, -1328,  6163,  1211,   209,   482, -1328,
+   -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328,  9622, -1328,
+    8243,  1231, -1328, -1328,  8082,   492,   506, -1328,  1227,  1219,
+     742,  1242, -1328,   293, -1328, -1328, -1328, -1328,   889,  1238,
+   -1328, -1328,  1243,  1273, -1328, -1328,  1273,  1273,   919,  1245,
+    1200,  1221, -1328,  1247, -1328,  9444, -1328, -1328, -1328, -1328,
+    1251, -1328,  9444,  9444,  9444, -1328, -1328,  1252, -1328,  1254,
+    1257,  1259,   446,  7928,  8048, -1328, -1328, -1328, -1328,  1258,
+   -1328,  8318,   754,   762,  1267,   767,  3351, -1328, -1328,   507,
+   -1328, -1328,   782,  1269,  1270,   266,  1323,   868, -1328, -1328,
+    5841, -1328,  5841, -1328, -1328,  9806, -1328,  1272,  1280, -1328,
+   -1328, -1328,  1277, -1328, -1328, -1328, -1328, -1328, -1328,  8082,
+     742,  1284, -1328,  1264,   742,  9444, -1328, -1328, -1328,   919,
+   -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328,
+   -1328, -1328,  1285,  1288, -1328, -1328, -1328, -1328, -1328, -1328,
+   -1328,  1292, -1328,  1294, -1328,  9806,   292,  5841,  9806, -1328,
+    1297,  5841, -1328,   298,  1308,  1314, -1328, -1328,  1302,  1303,
+    1282,   817, -1328, -1328, -1328, -1328,  1653,  2291,  1300, -1328,
+     139,  5841, -1328,   792, -1328,  1158,   919,   919,  1310,  1312,
+    1313,  1317, -1328, -1328,  8243,  1309, -1328,  1388,  5841,  1299,
+   -1328, -1328,  9716, -1328,   793, -1328,  1298,  9806,  1304, -1328,
+   -1328,  1325, -1328,  1327, -1328,  1342,  1344, -1328,  1316,  8082,
+   -1328, -1328, -1328,   742,   663,  1334,  1318,  1337,  1343,  1158,
+    1158, -1328, -1328, -1328, -1328, -1328,  9806,   149, -1328,   165,
+   -1328, -1328,  7578, -1328, -1328,  1322,  5841, -1328,  5841,  7578,
+     266,  9319,   266,  9319,  1351, -1328,  1352, -1328, -1328,  1348,
+   -1328, -1328,   794, -1328, -1328, -1328, -1328,  1347,  1355, -1328,
+    5841,  5841, -1328, -1328,   893,   117, -1328, -1328,  1338, -1328,
+     893, -1328, -1328,  2215,   663, -1328, -1328,   266,  9319,   266,
+    9319,  1362,  1341,   663, -1328, -1328, -1328, -1328,  9716,  1365,
+     893,  7657,  5841,  9626,  1366,   893,  1367,  2215,  3729, -1328,
+   -1328, -1328,  1372, -1328, -1328, -1328, -1328,  8623, -1328, -1328,
+   -1328,  9488, -1328,  9716, -1328, -1328,  1353,  5938, -1328, -1328,
+    9626,   266,  3729,   266,  1376,  1377,   795, -1328,  9488, -1328,
+   -1328, -1328,  5938, -1328, -1328, -1328,   266,   266, -1328, -1328,
+   -1328, -1328, -1328, -1328, -1328, -1328
 };
 
@@ -1767,29 +1767,29 @@
 static const yytype_int16 yypgoto[] =
 {
-   -1263,  3947,  2776, -1263,    44, -1263,   887,   695,  -232, -1263,
-   -1263,   487,  -523,  -501,  -842,  -960, -1263,  -216,  4593,     0,
-   -1263,   122,   359,   368,   437,   403,   964,   965,   963,   966,
-     969, -1263,   998,  -607,  4667,  -955, -1263, -1263,   569,  -183,
-    -658,   414, -1263,  1406, -1263,   347, -1148, -1263, -1263,    84,
-   -1263,  -949, -1074,   191, -1263, -1263, -1263, -1263,    17, -1186,
-   -1263, -1263, -1263, -1263, -1263, -1263,   265, -1262,    33, -1263,
-    -866, -1263,   445,   246, -1263,   124, -1263,  -320, -1263, -1263,
-   -1263,   506,  -835, -1263, -1263,    19,  -980,    55,   606, -1263,
-   -1263, -1263,  -220, -1263,   129,  1096,  -190,  1478,  3486, -1263,
-   -1263,    96,   144,  1103,  1793, -1263,  1550, -1263, -1263,    27,
-    1989, -1263,  2286,  1081, -1263, -1263, -1263,  -632, -1263,   884,
-     886,   488,   668,  -575, -1263, -1263, -1263,   875,   659,  -511,
-   -1263,  -466,  -248,   801, -1263, -1263,  -959,  -944,  -218,   636,
-     989,    92, -1263,   209,   354,  -244,  -203,  -140,   611,   717,
-   -1263,   932, -1263,  2427,  1924,  -447,   860, -1263, -1263,   647,
-   -1263,  -235, -1263,   189, -1263, -1263, -1263, -1245,   370, -1263,
-   -1263, -1263,  1098, -1263,     2, -1263, -1263,  -849,  -115, -1223,
-    -150,  2775, -1263,  2462, -1263,   854, -1263,  -127,    40,  -178,
-    -174,  -173,     7,   -43,   -41,   -36,  1803,    12,    18,    21,
-    -101,  -168,  -162,  -160,  -144,  -317,  -520,  -513,  -497,  -545,
-    -300,  -486, -1263, -1263,  -547,  1009,  1026,  1028,  1598,  4212,
-    -563,  -557,  -544,  -532,  -458, -1263,  -514,  -722,  -720,  -718,
-    -585,  -194,  -291, -1263, -1263,   769,   138,   -88, -1263,  3371,
-     239,  -624,  -483
+   -1328,  4218,  2910, -1328,  2669, -1328,   454,     0,  -147, -1328,
+   -1328,   463,  -522,  -472,  -935, -1037, -1328,  -158,  4217,  1113,
+   -1328,   115,   430,   459,   419,   456,   932,   938,   935,   940,
+     941, -1328,  -236,  -629,  5014,  -930, -1328, -1328,   543,  -135,
+    -872,  -345, -1328,  1349, -1328,   324,  -967, -1328, -1328,    49,
+   -1328, -1273,  -818,   170, -1328, -1328, -1328, -1328,    -5, -1312,
+   -1328, -1328, -1328, -1328, -1328, -1328,   244, -1175,    35, -1328,
+    -502, -1328,   424,   219, -1328,    95, -1328,  -308, -1328, -1328,
+   -1328,   479,  -837, -1328, -1328,     4,  -995,   175,  1139, -1328,
+   -1328, -1328,  -119, -1328,    57,   315,  -193,  1470,  3860, -1328,
+   -1328,    63,   160,   685,  1861, -1328,  1798, -1328, -1328,    18,
+    1913, -1328,  2277,  2037, -1328, -1328, -1328,  -545, -1328,   862,
+     867,   458,   646,   -93, -1328, -1328, -1328,   856,   647,  -449,
+   -1328,  -478,  -351,  -615, -1328, -1328,  -928,  -975,    -3,   985,
+     981,   776, -1328,   107,   366,   -24,  -195,  -132,   609,   706,
+   -1328,   926, -1328,  2605,  1917,  -447,   855, -1328, -1328,   645,
+   -1328,  -234, -1328,  -136, -1328, -1328, -1328, -1230,   360, -1328,
+   -1328, -1328,  1098, -1328,    12, -1328, -1328,  -835,  -110, -1327,
+    -138,  2640, -1328,  3073, -1328,   848, -1328,  -166,    72,  -183,
+    -179,  -176,     2,   -41,   -36,   -32,    62,    10,    19,    21,
+     -98,  -172,  -171,  -170,  -167,  -307,  -494,  -481,  -476,  -551,
+    -310,  -510, -1328, -1328,  -515,  1010,  1014,  1017,  1772,  4826,
+    -557,  -496,  -482,  -480,  -543, -1328,  -503,  -723,  -721,  -720,
+    -573,  -287,  -290, -1328, -1328,   226,   457,    -9, -1328,  3666,
+     -27,  -611,  -257
 };
 
@@ -1800,640 +1800,663 @@
 static const yytype_int16 yytable[] =
 {
-      51,   115,   151,   268,   152,   451,   746,    99,   398,   153,
-     760,   735,   399,   400,  1052,   427,   857,   438,   401,   261,
-     116,   952,   787,   953,   402,   954,   403,    78,  1051,   382,
-     383,   834,   600,    52,    51,   817,   145,   469,   409,   809,
-      98,    99,   404,  1168,   720,   149,  1151,  1152,   725,   605,
-     504,    51,   810,   816,   907,    58,   117,   154,   162,  1363,
-     406,    78,  1153,   155,   811,   187,   156,    52,   210,   342,
-     937,    51,   194,   624,    98,   217,   805,   628,   227,   474,
-    1185,  1186,   911,   806,   376,   150,   407,   424,   398,    58,
-     220,    98,   399,   400,   124,    33,    71,   663,   401,   807,
-     377,   717,   125,   177,   402,   190,   403,   115,    98,    33,
-     808,    98,   473,   475,   518,   115,   672,   821,   267,   272,
-     849,   824,   404,   211,   676,  1285,   221,  1121,   203,    65,
-      71,   281,  -239,  -239,   144,   866,  1383,  1384,   108,   108,
-     406,   820,   841,   151,    72,   152,   844,   827,   310,   149,
-     153,   592,   177,  1230,  1225,   177,   162,   115,   345,  1444,
-    1425,   210,    33,    65,   847,   847,   407,   901,   372,   410,
-     714,   952,   108,   953,  1162,   954,  1471,   146,    72,   204,
-     847,   667,   669,  1383,  1384,   148,   187,   187,  1167,    98,
-     408,   282,   805,   919,   162,   169,  1286,   469,   154,   806,
-     262,    98,   267,   263,   155,  -239,   661,   156,  1385,   108,
-      51,  1499,   213,  1501,   566,   807,   469,   162,   577,   170,
-     410,  1176,   210,   151,   469,   152,   397,   190,   157,   441,
-     153,  1214,   707,  1425,   253,  1218,   410,   474,   847,   977,
-     310,   143,   666,   668,   696,   809,    33,    33,   567,   724,
-      98,  1001,    51,   585,   461,  1394,  1180,  1062,   810,    99,
-     272,  1153,    98,   177,   291,   272,   267,   267,   737,  1000,
-     811,   729,   115,  1315,   162,  1318,  1320,   439,   658,    78,
-     650,  1178,   805,  1177,    78,    52,   708,  1066,  1075,   806,
-     167,  1168,    98,   242,   245,   796,   940,   310,   605,  1151,
-    1152,    33,  1513,  1181,   659,   807,   477,    58,   665,  1235,
-     310,   437,   172,  1158,   670,  1153,   988,   177,   418,   479,
-     410,   410,   518,  1069,   177,  1069,   569,   518,    33,  1528,
-     518,   149,   791,  1098,   182,  1455,   843,  1236,   372,  1159,
-    1512,   115,  1052,  1179,   492,   345,   820,   493,    71,   598,
-     616,   658,   202,  1004,   167,   887,  1051,   248,   817,   730,
-    1523,  1159,   386,   809,   621,   481,   440,  1527,   621,   253,
-     332,    98,   499,   818,  1182,   597,   810,   659,   387,   731,
-     287,    65,   848,   848,   781,  1483,   470,   330,   811,   599,
-     108,  1488,   177,    43,    44,   267,    72,  1100,   848,   834,
-     825,   112,   597,   141,   142,   187,   251,   509,   389,   177,
-    1308,  1508,   372,   177,    43,    44,  1515,  1101,   445,   513,
-    1420,   378,   592,   267,   390,   310,   310,   592,   877,   267,
-    1309,   621,   547,   548,   391,  1153,  1346,   458,  1429,   552,
-     553,  1107,   853,  1083,    78,   190,   696,  1168,   393,   434,
-     392,   741,   115,   455,  1168,   469,   848,   625,   859,  1408,
-     636,   629,   112,    78,   394,   972,  1119,   547,   554,   555,
-     267,    78,  1370,  1409,   902,    43,    44,   860,   267,   330,
-     621,   916,    51,  1086,  1224,   372,   580,   713,   410,    99,
-     903,   707,  1216,   115,   213,  -294,   871,   999,   410,   941,
-     870,   858,   547,   753,   981,   310,  1168,   115,  -525,    78,
-     310,   434,   310,   310,   605,    52,   904,   575,  1001,   874,
-     744,   410,    98,   576,   345,   556,   557,   599,   902,  1414,
-    1415,   904,   905,   868,  1429,  1139,  1141,    58,  1124,  1429,
-     410,  1165,   112,   253,  1063,   708,   470,  1064,  1456,   167,
-     -12,  1260,  1261,  1107,   898,    43,    44,  1166,   901,  1429,
-     558,   559,  1457,  1165,   696,   470,  1429,   837,   569,   569,
-     264,   838,  -448,   470,   696,  1299,   310,  1301,    71,  1291,
-     900,   741,  -449,   758,   594,   696,   621,   345,   638,   677,
-     616,  1300,  1461,  1302,   277,   576,   598,  1347,   598,  1461,
-       2,   207,     4,     5,     6,     7,    59,    59,   999,   705,
-     839,    65,   279,  1344,   840,   213,   621,   280,   549,   112,
-     108,   621,   698,   616,   550,   551,    72,   621,   699,   715,
-     621,   621,    43,    44,   333,   716,   804,   334,   599,   131,
-      59,   132,   133,   134,   707,   839,   621,  1011,   267,  1082,
-     335,  1509,    43,    44,     8,     9,    10,    11,    12,   384,
-     726,   177,   336,   740,   330,   330,   727,  1056,    37,   741,
-      38,   762,   763,   764,    59,  -112,   177,    59,   115,  -112,
-     112,   895,  1135,   798,   410,   881,    33,  1112,  1393,   177,
-    1113,   741,  1114,    43,    44,    50,   114,  1094,   708,   719,
-     337,   723,    78,  1333,   621,   921,   616,  1334,  1138,   836,
-     597,   371,   713,   713,    36,   398,  1017,   883,   338,   399,
-     400,   899,   375,   741,   850,   401,   114,   114,    78,    50,
-     966,   402,   330,   403,   291,   979,   967,   865,   388,   345,
-      50,   699,  1212,   744,   744,  1140,    50,   597,   576,   404,
-    1340,   330,   804,   599,    50,  1341,   741,  1150,   396,  1410,
-      50,   741,   440,    50,   348,  1357,    50,  1221,   406,   410,
-     952,   177,   953,  1463,   954,  1464,  1422,  1343,   425,   114,
-     114,  1348,  1411,   741,   696,   696,   569,   741,  1408,   426,
-     592,   253,   332,   410,   407,   621,    39,   984,   175,   176,
-      42,   408,   598,    50,   470,  1430,    50,  1143,   448,    43,
-      44,   741,  1477,    50,   598,   330,   560,   561,  1478,   499,
-     164,     2,   207,     4,     5,     6,     7,  1533,    59,  1510,
-     470,   970,   967,   576,  -372,   371,   213,   332,   410,   696,
-     696,   459,   804,  -401,    50,   854,  1353,  1354,  1481,  1422,
-     213,   460,   229,   503,   599,   835,    50,   482,    59,   732,
-     594,   733,    39,   310,   734,   941,    42,   738,   705,   941,
-     941,   507,   960,  1403,   967,    43,    44,   512,  1163,   525,
-     707,    50,    50,   562,   164,   345,  1383,  1384,   113,    37,
-      78,    38,   345,   895,   906,   895,   908,    50,  1231,  1232,
-     455,   802,   563,   597,   564,    50,   565,   115,   339,    47,
-      48,   765,   766,   112,    50,   141,   239,    50,    58,   586,
-     921,   921,   767,   768,   114,   713,    43,    44,   568,    -3,
-     410,   115,   310,  1065,   708,   899,    47,    48,   651,   114,
-     658,   213,   652,   114,   653,   898,   655,    50,   114,   656,
-    1087,   657,   240,   258,  1495,   744,   660,   241,   662,    71,
-     689,    50,    50,   773,   774,   599,   659,   686,    50,   691,
-     687,   900,  -243,   728,  1207,    50,   418,   654,   410,   433,
-     717,   798,   742,  1306,   345,  1295,  1088,   750,  1267,  1268,
-     799,  1270,    65,   769,   770,   771,   772,   801,  1275,   812,
-    1277,   108,   856,  1107,   -14,   621,   621,    72,   862,   -15,
-    1336,   708,   479,   332,   410,     2,   207,     4,     5,     6,
-       7,   705,   696,   310,   855,   112,    50,   141,   142,   696,
-     696,   696,   112,   882,   141,   142,   884,   348,    43,    44,
-     743,   433,   410,    50,    50,    43,    44,  -295,    47,    48,
-      78,   818,   332,   597,     8,     9,    10,    11,    12,   889,
-      50,   909,   115,  -422,    50,   638,   522,   895,   716,   108,
-     932,  1022,   895,  1364,   637,  -529,   244,  1364,    58,   164,
-     924,   921,   934,    37,   938,    38,    33,   945,    59,   267,
-      50,   939,   696,  1278,  1279,  1280,   946,   118,   697,   947,
-      50,   920,   112,   597,   141,   142,   547,   899,   948,    47,
-      48,  1071,   899,   964,    36,    43,    44,   949,    50,  1170,
-     950,   974,   975,   976,    50,  -296,  1053,   990,   345,   991,
-     348,   440,     8,     9,    10,    11,    12,   992,   993,   994,
-     463,   721,  1077,   112,   995,   509,   722,   160,    -3,   215,
-    1112,   996,   470,  1113,  -410,  1114,    43,    44,  -409,  1389,
-     114,   108,  1019,  1059,    33,    50,  1055,    72,   638,   272,
-     115,   330,   894,    50,  1076,   230,  1445,    50,   231,  1078,
-    1079,   235,    50,   237,  1229,   114,  1085,   114,  1095,   220,
-     246,   310,    36,   348,    39,   741,   175,   176,    42,  1096,
-     215,  1097,  1099,   259,  1102,   621,  -297,    43,    44,   115,
-     959,   160,  1104,     8,     9,    10,    11,    12,    78,   112,
-    1105,   685,   114,   835,   211,   221,  1112,   114,  1087,  1113,
-    1106,  1114,    43,    44,  1109,  1133,   348,   348,  1154,  1155,
-    1157,  1187,   215,  1171,   326,    33,    58,  1406,  1156,  1172,
-    1174,  1175,   348,   340,  1183,  1215,  1194,   705,   621,   621,
-    1317,  1189,  1022,    -3,  1088,  1199,   272,  1521,  1202,  1204,
-    1213,   310,   492,    36,   522,   114,   522,  1040,  1208,   522,
-    1220,  1226,   522,  1217,  1233,  1237,  1239,    71,  1241,  1242,
-    1269,    50,  1243,    50,  1244,  1246,  1253,  1272,    78,  1262,
-     697,  1263,   429,   215,   115,  1297,   432,  1273,   108,  1290,
-     348,  1274,    50,   213,   398,  1276,   230,  1303,   399,   400,
-      65,   439,  1284,  1087,   401,  1307,    58,    50,  1305,   108,
-     402,   114,   403,  1311,   705,    72,   326,  1312,  1313,  1316,
-      50,   215,   114,    50,   114,   526,   215,   108,   404,   527,
-     528,   529,   113,  1494,  1321,  1323,  1329,  1331,  1330,  1088,
-    1332,  1339,   267,  1342,  1349,  1350,   406,  1170,   432,  1280,
-    1358,   487,  1359,   530,  1265,   531,    50,   532,   533,   621,
-     114,  1360,   114,   497,  1366,    39,   114,   184,   185,    42,
-     658,  1367,   407,   520,   114,  1377,  1378,  -411,    43,    44,
-     470,  1381,  1392,  1396,   115,   177,   160,    50,    50,   108,
-     440,  1400,  1398,  1401,   754,    72,   659,  1402,   697,   759,
-    1407,  1421,    50,  1087,   893,  1334,   410,   115,   697,  1416,
-    1417,   215,    47,    48,   115,  1418,   115,   584,   115,   697,
-    1173,   589,   108,  1419,  1426,   894,  1435,   685,  1437,   151,
-    1431,   152,  1439,  1405,    78,   230,   153,   235,  1433,  1088,
-     622,    78,  1441,   174,   626,   880,   526,   463,  1493,    59,
-     527,   528,   529,   115,  1443,   115,  1449,  1448,    68,   119,
-    1450,  1451,    58,  1462,  1472,  1474,   115,  1476,  1479,    58,
-    1480,   348,  1493,  1493,   530,  1487,   531,    50,   532,  1288,
-     162,  1502,   310,  1503,  1507,   254,    39,  1516,  1514,    50,
-      42,   215,    68,    78,  1518,  1524,  1531,  1493,  1532,    43,
-      44,   326,   326,  1170,   372,  1188,   775,   777,   776,   161,
-    1170,   778,   477,  1111,   867,   779,   869,    59,  1289,  1395,
-    1482,    58,   108,   230,  1534,    45,  1352,  1219,   681,   222,
-      76,   637,   215,    47,    48,  1368,   470,   114,  1465,  1193,
-    1201,   118,   890,   470,   891,   108,   912,  1074,  1070,   793,
-    1108,    72,   108,  1018,   861,  1084,   926,   783,    72,  1298,
-     710,   935,  1170,   973,    76,   260,   915,   487,    50,   326,
-      50,   487,     0,   978,   784,     0,   785,   114,     0,     0,
-     416,   520,     0,   520,   989,  1040,   520,     0,   326,   520,
-       0,   348,   348,     0,     0,   470,     0,     0,     0,     0,
-      50,   223,     0,   435,   108,     0,     0,   331,     0,    59,
-      72,     0,     0,   443,     0,   260,   350,     0,   697,   697,
-       0,   114,     0,     0,     0,   112,     8,     9,    10,    11,
-      12,     0,  1112,     0,   637,  1113,     0,  1114,    43,    44,
-     114,     0,     0,     0,   114,   405,     0,     0,     0,     0,
-       0,   215,   326,     0,     0,     0,   685,     0,    33,     0,
-     423,     0,   794,   428,   430,     0,  1319,   910,   161,     0,
-       0,     0,     0,   697,   697,     0,     0,     0,     0,   215,
-       0,  1356,     0,   519,   215,     0,    36,     0,   353,   446,
-       0,   114,   833,   449,     0,   450,     0,   589,     0,     0,
-       0,     0,     0,   842,   457,     0,     0,     0,     0,     0,
-      68,     0,     0,     0,     0,   471,     0,     0,     0,     0,
-       0,   330,     0,     0,     0,   478,     0,     0,   114,     0,
-     568,    39,   410,   430,  1382,    42,     0,  1390,    47,    48,
-       0,     0,    50,     0,    43,    44,    39,    50,   184,   185,
-      42,     0,     0,   215,   681,    59,    59,     0,   971,    43,
-      44,   447,     0,     0,    50,     0,     0,   215,   412,     0,
-     712,     0,     0,     0,     0,   420,     0,    59,    47,    48,
-       0,  1428,    76,  1148,  1149,   186,  1432,    76,   114,     0,
-       0,     0,   487,    47,    48,    59,     0,     0,     0,   260,
-       0,     0,     0,   590,    39,     0,   175,   176,    42,   618,
-     497,   685,     0,  1103,     0,  1454,     0,    43,    44,  1296,
-       0,     0,   623,     0,     0,     0,   623,   674,     0,     0,
-    1012,     0,  1115,     0,   163,     0,  1115,     0,  1196,  1197,
-     114,   214,     0,   375,   348,   348,     0,   412,   195,     0,
-     233,   218,    59,   700,   228,     0,   697,    59,   215,     0,
-       0,     0,     0,   697,   697,   697,    39,     0,   184,   185,
-      42,   980,   910,     0,     0,   471,     0,     0,     0,    43,
-      44,   223,     0,  1115,     0,     0,     0,     0,     0,   350,
-      59,   519,   214,     0,   471,     0,   519,     0,     0,   519,
-    1522,     0,   471,     0,   574,   596,  1522,   597,   114,     0,
-     114,   114,   578,    47,    48,   581,     0,  1522,   910,     0,
-     692,  1522,     0,   430,     0,     0,   697,     0,     0,     0,
-       0,     0,   163,     0,   214,     0,     0,     0,   706,     0,
-      68,     0,     0,     0,   373,     0,     0,    76,     0,   430,
-    1122,     0,     0,   430,     0,     8,     9,    10,    11,    12,
-       0,   353,     0,     0,     0,   348,    76,     0,     0,    79,
-     163,     0,   216,     0,    76,   412,     0,     0,     0,   420,
-    1115,     0,   350,   681,     0,     0,     0,    33,   243,   114,
-      59,     0,   353,   163,     0,   214,     0,     0,  1012,     0,
-       0,     0,     0,    79,     0,   442,   487,  1089,   326,     0,
-     353,     0,    76,    59,     0,    36,     0,     0,     0,     0,
-      59,  1322,     0,   216,     0,     0,     0,   786,  1324,  1325,
-    1326,     0,     0,   214,     0,     0,    50,    50,   214,     0,
-     224,     0,     0,     0,   623,   797,   114,   114,   215,   879,
-       0,     0,     0,   498,   353,   412,   814,     0,   886,   743,
-     833,   410,   888,     0,     0,   216,     0,    47,    48,     0,
-       0,     0,    59,     0,   590,     0,     0,   910,     0,   590,
-       0,     0,     0,     0,   114,   623,     0,     0,   350,   350,
-       0,  1369,     0,    39,     0,   184,   185,    42,     0,     0,
-    1115,     0,  1115,  1115,   350,     0,    43,    44,     0,     0,
-       0,     0,     0,     0,   373,     0,     0,   353,     0,     0,
-       0,     0,   692,   214,     0,     0,   216,   355,     0,     0,
-       0,     0,   893,   471,   410,     0,   910,   910,   681,     0,
-      47,    48,     0,    50,   114,     0,   574,   574,     0,     0,
-       0,     0,    39,   114,   184,   185,    42,     0,     0,   471,
-     353,   353,   350,     0,   216,    43,    44,    50,    50,   216,
-       0,   925,     0,     0,   430,     0,   353,     0,     0,     0,
-       0,  1115,     0,     0,     0,  1469,     0,  1469,   373,     0,
-       0,  1492,    50,   410,   353,     0,     0,   706,     0,    47,
-      48,     0,   955,   214,    39,    76,   184,   185,    42,     0,
-       0,     0,     0,     0,     0,     0,     0,    43,    44,   214,
-       0,    79,  1469,     0,  1469,     0,    79,     0,     0,   872,
-     215,    76,     0,   875,   353,     0,     0,     0,  1115,  1115,
-     692,     0,     0,   266,   214,     0,     0,     0,     0,     0,
-     692,    47,    48,   623,   216,     0,   987,     0,     0,     0,
-       0,   692,     0,     0,     0,     0,    81,     0,     0,   353,
-       0,   998,     0,  1061,     0,     0,  1446,     0,     0,     0,
-       0,     0,     0,     0,     0,  1089,     8,     9,    10,    11,
-      12,     8,     9,    10,    11,    12,     0,     0,     0,     0,
-      81,   534,   535,   536,   537,   538,   539,   540,   541,   542,
-     543,   544,   353,     0,     0,     0,     0,     0,    33,     0,
-     224,    68,   353,    33,     0,     0,     0,   215,   223,     0,
-       0,     0,     0,   353,   216,   545,  1496,   225,     0,     0,
-       0,     0,     0,   797,   910,  1504,    36,     0,     0,     0,
-     706,    36,     0,  1067,     0,     0,    39,     0,   184,   185,
-      42,   910,     0,   214,   574,     0,     0,     0,     0,    43,
-      44,     0,     0,     0,     0,   216,     0,     0,     0,  1081,
-    1089,     0,     0,     0,     0,     0,    79,     0,   430,   119,
-     920,   214,   597,    76,     0,   596,   214,   597,    47,    48,
-     355,     0,     0,    47,    48,    79,     0,    88,     0,     0,
-       0,     0,     0,    79,     0,   353,     0,     0,     0,     0,
-    1184,     0,   353,     0,   356,     0,     8,     9,    10,    11,
-      12,   355,     0,   910,   910,     0,     0,     0,     0,     0,
-       0,    88,   590,     0,     0,     0,     0,     0,     0,   355,
-       0,    79,     0,     0,     0,   428,     0,     0,    33,     0,
-     692,   692,     0,   350,   350,   214,     0,     0,     0,     0,
-     128,   128,   128,     0,     0,     0,     0,   412,   226,   214,
-    1089,  1169,     0,     0,     0,     0,    36,     0,     0,     0,
-       0,    39,     0,   355,   216,    42,     0,     0,     0,     0,
-     498,     0,     0,     0,    43,    44,     0,     0,     0,     0,
-       0,     0,  1468,     0,  1468,   692,   692,     0,    81,     0,
-       0,     0,   216,    81,     0,     0,     0,   216,     0,     0,
-      45,     0,   353,   353,     0,   353,   353,     0,    47,    48,
-       0,     0,   128,     0,   128,     0,     0,     0,     0,  1468,
-       0,  1468,  1125,    76,     0,     0,   355,     0,     0,     0,
-       0,     0,     0,     0,     0,   363,     0,     0,  1136,   276,
-     214,     0,     0,     0,     0,     0,     0,     0,   326,     0,
-       0,     0,     0,     0,     0,     0,   706,   353,   353,     0,
-       0,     0,     0,     0,     0,     0,   216,     0,     0,   355,
-     355,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-     216,     0,     0,     0,     0,   355,     0,   225,     0,     0,
-       0,     0,     0,     0,   128,     0,     0,     0,  1266,     0,
-       0,     0,   128,   355,   128,   128,     0,     0,     0,   128,
-       0,   128,   128,   412,    79,     0,     0,     0,     0,    68,
-       0,     0,     0,     0,     0,     0,     0,     0,   353,    88,
-       0,   692,     0,   706,    88,     0,  1351,   119,     0,     0,
-      79,     0,     0,   355,     0,     0,     0,     0,     0,     0,
-       0,     0,  1222,    81,     0,     0,     0,     8,     9,    10,
-      11,    12,     0,     0,     0,     0,     0,   356,   692,     0,
-     223,   216,    81,     0,     0,   692,   692,   692,   355,     0,
-      81,   128,     0,     0,     0,     0,   350,   350,     0,    33,
-       0,    76,     0,     0,     0,     0,     0,     0,   356,  1169,
-       0,     0,     0,   353,     0,   353,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,   356,    36,    81,     0,
-       0,   355,    39,     0,   184,   185,    42,     0,   226,     0,
-     214,   355,   119,     0,     0,    43,    44,   224,   692,     0,
-     353,     0,   355,     0,     0,     0,     0,   353,   353,   353,
-       0,     0,     0,   126,   129,   130,     0,     0,   353,   353,
-     356,   893,     0,   410,     0,     0,     0,     0,     0,    47,
-      48,    76,     0,     8,     9,    10,    11,    12,     0,     0,
-       0,   168,     0,   173,     0,     0,   179,   180,   181,     0,
-     183,  1466,     0,  1470,    88,     0,     0,     0,     0,     0,
-       0,     0,    79,     0,   234,    33,     0,   350,   363,     0,
-     353,     0,     0,    88,     0,     0,   249,   250,     0,     0,
-       0,    88,     0,   356,   355,   255,     0,   256,  1498,     0,
-    1500,   355,   119,    36,     0,     0,     0,     0,    39,   363,
-     184,   185,    42,     0,     0,     0,     0,     0,     0,     0,
-       0,    43,    44,     0,     0,  1169,     0,   363,     0,    88,
-       0,   216,  1169,     0,     0,     0,   356,   356,     0,     0,
-       0,     0,  1529,     0,  1530,     0,     0,   186,     0,   353,
-       0,     0,   356,     0,     0,    47,    48,  1537,  1538,     0,
-       0,     8,     9,    10,    11,    12,     0,     0,     0,     0,
-     356,   363,     0,     0,     0,     0,     0,   395,     0,     0,
-       0,    81,   214,     0,  1169,     0,     0,   414,   415,     0,
-       0,  1517,   419,    33,   421,   422,     0,    76,     0,     0,
-       0,     0,     0,     0,    76,     0,     0,    81,     0,     0,
-     356,   355,   355,     0,   355,   355,     0,     0,     0,     0,
-       0,    36,     0,     0,     0,     0,    39,     0,   184,   185,
-      42,     0,    79,     0,   363,     0,     0,     0,     0,    43,
-      44,     0,     0,     0,     0,   356,     0,     0,     0,     0,
-       0,     0,     0,     0,   128,   128,    76,     0,     0,     0,
-       8,     9,    10,    11,    12,   266,   355,   355,     0,     0,
-       0,     0,     0,    47,    48,     0,     0,   363,   363,   214,
-       0,   128,     0,     0,   128,   128,     0,   128,   356,   128,
-     128,     0,    33,   363,   128,   128,     0,     0,   356,     0,
-       0,     0,     0,     0,   225,     0,     0,     0,     0,   356,
-       0,   363,     0,   216,     0,     8,     9,    10,    11,    12,
-      36,     0,    88,     0,     0,    39,     0,   184,   185,    42,
-       0,     0,     0,     0,     0,     0,     0,   355,    43,    44,
-     588,     0,   595,     0,     0,     0,     0,    33,    88,     0,
-       0,   363,     0,   619,   620,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,  1492,     0,   410,     0,     0,    81,
-       0,     0,    47,    48,     0,    36,     0,     0,     0,   224,
-      39,     0,     0,     0,    42,     0,   363,     0,     0,     0,
-       0,   356,     0,    43,    44,     0,     0,     0,   356,     0,
-      79,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-     216,     0,   355,     0,   355,     0,     0,     0,     0,   712,
-       0,     0,     0,     0,     0,     0,     0,    47,    48,   363,
-     128,   128,     0,     0,     0,     0,     0,     0,     0,   363,
-       0,     0,     0,     0,     0,   226,     0,     0,     0,   355,
-     363,     0,     0,     0,     0,     0,   355,   355,   355,     0,
-       0,     0,     0,     0,     0,     0,     0,   355,   355,     0,
+      50,   114,    99,   398,   151,   116,   451,   399,   268,   152,
+     400,   760,   427,   153,   401,   402,   403,   746,    78,   404,
+     951,   406,   952,   953,   167,   438,  1055,  1173,  1057,   857,
+    1158,   114,   114,  1126,    50,    52,    99,   382,   383,   605,
+     735,   817,   600,   834,   720,    50,   145,   816,   725,   880,
+     409,    50,    78,   162,   787,   154,   820,    65,   592,    50,
+     911,  1430,   827,    71,   155,    50,   156,   194,    50,    52,
+     217,    50,    98,   227,   624,   220,  1156,  1157,   628,  1368,
+    1167,  1235,    33,   398,   114,   114,   808,   399,   167,   407,
+     400,    65,   424,   445,   401,   402,   403,    71,   261,   404,
+     809,   406,   805,  1290,  1190,  1191,    98,   203,    50,   663,
+     291,    50,   458,   163,   810,   806,   811,   150,    50,  1434,
+     807,   330,   474,    98,   473,   475,    33,   195,   672,   707,
+     218,   124,   566,   228,  1430,   504,   676,   190,   469,   143,
+      98,   907,   939,    98,   717,   151,   552,   553,   342,    50,
+     152,   162,   847,   847,   153,   125,   410,   281,   204,  1187,
+      72,    50,   518,   372,  -239,  -239,   567,   972,   847,   407,
+     951,  1240,   952,   953,  1291,    58,   117,   977,   901,  1449,
+     714,  1518,   849,   434,  1230,  1172,    50,    50,   988,   162,
+    1163,   242,   245,   708,    72,   408,   154,   866,   253,  1241,
+     410,  1320,    50,  1323,  1325,   155,   936,   156,  1533,    58,
+      50,   163,   162,   330,   661,  1434,  1164,   282,   805,    50,
+    1434,    98,    50,   373,   441,   151,   847,   741,   213,   114,
+     152,   806,   144,    98,   153,  1158,   807,  -239,   169,   658,
+    1434,   971,   474,   211,   114,   434,   221,  1434,   114,   163,
+    1460,    33,    50,   114,    99,   919,    33,  1000,   397,   190,
+    1413,   820,   170,   999,   461,  1071,    50,    50,  1476,   162,
+      78,   976,   163,    50,  1414,    78,  1164,   164,    33,   848,
+     848,  1173,    98,   167,   442,   650,  1461,    52,   605,  1158,
+     666,   668,   987,   837,    98,   848,   796,   838,   469,    33,
+    1462,  1080,    33,  1504,   157,  1506,   809,   659,   805,    65,
+    1103,   376,   658,   665,   470,    71,   118,   469,   594,   670,
+     810,   806,   811,   146,    98,   469,   807,   377,   418,   592,
+     410,    50,   585,   372,   592,  1156,  1157,   843,   477,  1388,
+    1389,   164,   512,   821,  1067,  1388,  1389,   824,    50,    50,
+     479,   455,   410,   848,   492,   839,   729,   493,  1055,   840,
+    1057,   730,   148,   -10,   817,    50,   160,   887,   841,    50,
+     518,   818,   844,   597,   825,   518,   597,   287,   518,   637,
+     659,   731,   440,   575,  1375,   172,  1153,  1154,   707,   576,
+      43,    44,   839,   373,  1105,    50,  1087,   439,   330,   330,
+     509,   667,   669,    98,  1349,    50,   182,   372,  1313,  1158,
+     834,  1390,    72,   202,  1106,   386,   513,  1399,   378,  -294,
+     112,   599,   259,    50,   809,   547,   548,    58,  1314,    50,
+     160,   387,   781,    43,    44,    78,   433,  1173,   810,  1351,
+     811,  1419,  1420,   577,  1173,   410,   248,  1201,  1202,  1144,
+    1146,  1112,   708,   910,    78,   113,  1425,   108,   108,   696,
+     547,   753,    78,   326,  -112,   114,   330,   373,  -112,   724,
+      50,   251,   340,   389,   470,  1221,  -525,   190,    50,  1398,
+     372,   253,    50,  1091,    99,   330,   638,    50,   737,   390,
+     114,   108,   114,   470,  1124,   547,  1173,   859,   433,   636,
+      78,   470,  1229,   496,   605,   980,   112,   998,   391,   858,
+     213,   264,   870,   877,   393,   898,   860,    52,  1044,    43,
+      44,   429,   -12,   522,   392,   432,  1517,   114,   108,  1000,
+     394,   580,   114,   410,  1265,  1266,   164,   705,   868,    65,
+    -448,   707,   556,   557,   970,    71,  1528,   758,   112,   330,
+     141,   142,   791,  1532,    98,   326,   469,   902,   333,   599,
+     904,    43,    44,  1338,  1468,   902,  1469,  1339,   497,  1112,
+     498,   499,   904,   903,   901,  -449,   905,   558,   559,  1003,
+     114,  1068,   916,   900,   940,  1170,   277,   432,  1069,   835,
+     487,   871,   244,   410,   594,  1466,    50,   719,    50,   723,
+    1219,  1171,  1466,  1170,  1223,   708,     2,   207,     4,     5,
+       6,     7,   520,  1304,   253,   332,  1011,    50,   998,  1296,
+    1515,   112,   279,   141,   142,   160,   280,  1306,   741,  1305,
+    1327,   213,    50,   334,    43,    44,   114,  1329,  1330,  1331,
+     554,   555,    72,  1307,  1352,    50,  1488,   114,    50,   114,
+     798,   335,  1493,  1155,  1514,  1010,   584,    58,   910,   336,
+     589,   696,   853,   337,   762,   763,   764,   677,   804,  1088,
+     599,   338,  1513,   576,    37,  1061,    38,  1520,   685,   622,
+    1178,    50,   371,   626,   698,   114,   568,   114,   410,   375,
+     699,   114,   388,    78,    47,    48,   592,   384,  1099,   114,
+    1374,   396,    39,   910,   175,   176,    42,   463,   408,   108,
+     398,   425,    50,    50,   399,    43,    44,   400,   874,    78,
+     410,   401,   402,   403,  1016,  1129,   404,   410,   715,   406,
+     426,   522,   470,   522,   716,  1127,   522,   448,   112,   522,
+     326,   326,  1415,   854,  -372,     2,   207,     4,     5,     6,
+       7,    43,    44,   899,  1140,   549,   410,   230,   470,  1427,
+     231,   550,   551,   235,  1181,   237,  1143,   681,   597,   726,
+    1361,  1145,   246,   597,   951,   727,   952,   953,   440,   696,
+     118,   740,   707,  1011,   804,   599,  1226,   741,   410,   696,
+     560,   561,   906,   881,   908,   883,   705,   407,   455,   741,
+     696,   741,    50,  1148,   459,  1074,   487,  1074,   326,   743,
+     487,   410,   460,    37,    50,    38,  -401,    47,    48,   482,
+     520,   920,   520,   597,   503,   520,   291,   326,   520,    47,
+      48,  1486,  1427,   965,    39,   178,   175,   176,    42,   966,
+       8,     9,    10,    11,    12,   978,   708,    43,    44,  1101,
+    1044,   699,   213,   969,   966,   966,   637,     8,     9,    10,
+      11,    12,   114,  1041,  1217,   959,   213,   507,   910,  1345,
+     576,   732,    33,   733,   804,   741,   734,  1346,    -3,   738,
+     512,    78,  1348,   741,   262,  1168,   599,   263,   741,    33,
+     563,   326,   525,    50,   562,    50,  1183,  1353,   230,   565,
+      36,   794,   114,   741,   685,   330,   658,  1416,  1435,  1482,
+    1538,   898,  1341,  1413,   741,  1483,   576,    36,   564,   113,
+      65,   332,   410,   708,   586,    50,    71,   910,   910,  1358,
+    1359,   833,   253,   332,   410,  1092,   589,  1408,   966,   108,
+    1388,  1389,   842,   339,   568,   114,   410,   651,   798,   705,
+    1362,    -3,    47,    48,   652,   940,   835,   213,   637,   940,
+     940,  1236,  1237,   638,   114,  1070,   653,   899,   114,  1021,
+    1500,   418,   654,   410,   659,   769,   770,   771,   772,   900,
+     655,   754,   765,   766,  1212,   656,   759,     2,   207,     4,
+       5,     6,     7,   681,   112,   437,   657,   599,   696,   696,
+    1387,  1117,   660,  1395,  1118,   258,  1119,    43,    44,  1076,
+     479,   332,   410,   767,   768,   114,   773,   774,   229,  1112,
+     662,   686,    39,    72,   691,  1041,    42,   687,    50,    50,
+      50,   487,  -243,   689,   463,    43,    44,   230,    58,   235,
+      78,  1272,  1273,   717,  1275,   728,   799,  1433,   742,   481,
+    1279,   750,  1437,  1282,   801,    37,   812,    38,   114,   696,
+     696,   802,   -14,   597,   862,   638,   818,   332,   597,    47,
+      48,   856,    50,  1311,  1283,  1284,  1285,    50,   -15,   470,
+     855,  1459,   882,   884,   889,  1175,   909,  -422,     8,     9,
+      10,    11,    12,  -529,    50,    39,   924,   934,   547,    42,
+     716,   867,   112,   869,   141,   142,  1093,   932,    43,    44,
+     979,   938,   937,    51,   115,    43,    44,   944,   114,   945,
+      33,  -295,   946,   947,   178,   230,   948,   949,     8,     9,
+      10,    11,    12,   685,    45,   910,   963,   509,   973,    59,
+      59,   625,    47,    48,   899,   629,   440,    51,    36,   899,
+     974,   975,   910,   915,   989,   990,   991,   992,   149,   993,
+      33,   994,   995,  1369,    51,  1021,  1527,  1369,  -410,  -409,
+     114,  1018,  1527,    59,  1058,  1064,  1081,  1082,   187,   220,
+     894,   210,    72,  1527,    51,  1060,  1083,  1527,    36,  1084,
+     705,  1090,   743,  1102,   410,  1041,  1100,    58,  1104,   958,
+      47,    48,  1109,  1107,  1110,  1300,  1111,    59,  1138,  1114,
+      59,  1159,  1394,    78,  1162,  1160,  1161,  1176,  1092,  1177,
+     115,  1179,   681,   112,   910,   910,  1180,    -9,   115,  1188,
+    1117,   267,   272,  1118,  1193,  1119,    43,    44,   114,  -445,
+     114,   114,   696,   -11,   741,   487,  1094,   326,    -3,   696,
+     696,   696,    65,  1199,  1197,  1204,  1207,  1411,    71,  1209,
+     492,   310,   149,  1220,  1234,  1213,  1450,   705,  1218,  1222,
+     115,   345,  1225,  1526,   210,   112,  1231,  1270,   112,  1238,
+     141,   239,  1117,  1242,  1244,  1118,  1246,  1119,    43,    44,
+    1247,    43,    44,   685,    78,  1041,   112,   348,   833,   187,
+     187,  1248,  1249,  1117,  1251,  1258,  1118,  1267,  1119,    43,
+      44,  1268,   696,  1092,   398,   267,  1322,   240,   399,   114,
+     108,   400,   241,    51,  1274,   401,   402,   403,  1277,  1278,
+     404,  1294,   406,   470,   213,   210,  1280,  1324,   131,  1175,
+     132,   133,   134,  1281,  1289,  1041,  1302,  1308,  1041,   211,
+     221,    43,    44,   310,  1310,    72,   658,  1312,  1316,  1318,
+    1317,    59,  1321,  1499,  1326,    51,    50,    50,  1328,  1334,
+      58,  1335,  1336,   272,  1337,  1344,   114,   114,   272,   267,
+     267,  1347,   681,  1354,  1355,   115,  1285,  1363,   108,  1093,
+      39,    59,  1041,   836,    42,  1364,  1365,  1041,  1371,  1108,
+     407,  1372,  1382,    43,    44,  1383,   174,  -411,   850,  1401,
+     310,  1386,  1397,  1092,   114,  1403,  1405,  1406,  1120,  1407,
+    1412,   865,  1120,   310,   659,  1421,  1041,  1422,  1423,   712,
+    1339,   440,  1424,  1426,  1431,  1436,    72,    47,    48,   569,
+    1440,  1438,  1442,  1444,   149,  1446,   439,   697,   254,  1453,
+      78,    58,  1455,  1448,   115,  1454,   151,    78,   345,  1467,
+    1456,   152,   598,   616,  1484,   153,  1477,  1479,  1481,  1120,
+      68,   119,  1485,    50,   114,  1492,  1507,   621,  1508,   108,
+     330,   621,  1521,   114,  1093,  1512,  1519,  1523,  1041,   470,
+    1529,  1536,  1537,  1041,   775,  1175,   470,    50,    50,   777,
+     162,   776,  1175,  1192,    68,   778,  1116,   779,   267,    78,
+    1487,  1041,    39,  1041,   175,   176,    42,  1041,   187,  1293,
+    1041,   161,    50,  1400,   372,    43,    44,  1539,  1041,  1094,
+    1357,  1224,  1041,  1373,  1470,  1206,   267,  1198,   310,   310,
+     890,   222,   267,   416,   621,   891,  1075,   912,   470,  -296,
+     112,   371,   141,   142,  1175,  1079,     8,     9,    10,    11,
+      12,   793,  1017,    43,    44,   115,   435,  1113,   861,   477,
+     348,   926,  1120,  1089,  1303,   935,   443,   260,   783,     0,
+     710,     0,   784,   267,  1093,   785,     0,     0,    33,   721,
+       0,   267,    72,   621,   722,    51,     0,     0,     0,    72,
+     713,     0,     0,     0,     0,     0,   115,    58,     8,     9,
+      10,    11,    12,     0,    58,     0,    36,     0,   310,   331,
+     115,    59,     0,   310,  1094,   310,   310,   260,   350,     0,
+       0,     0,   108,   744,     0,     0,     0,   345,     0,     0,
+      33,    39,     0,   175,   176,    42,   519,     0,     0,   697,
+       0,    72,   108,     0,    43,    44,     0,   405,     0,     0,
+       0,     0,     0,   348,     0,     0,    58,  1474,    36,  1474,
+       0,   108,   423,    39,     0,   428,   430,    42,     0,     0,
+     161,   569,   569,     0,     0,     0,    43,    44,  1185,   310,
+       0,     0,  1120,     0,  1120,  1120,     0,     0,     0,   621,
+     345,   446,     0,   616,  1474,   449,  1474,   450,     0,   598,
+       0,   598,    45,     0,     0,     0,   457,     0,     0,     0,
+      47,    48,    68,     0,  1094,     0,   348,   471,    39,   621,
+     175,   176,    42,   108,   621,     0,   616,   478,     0,     0,
+     621,    43,    44,   621,   621,   430,     0,     0,     0,     0,
+      39,     0,   175,   176,    42,     0,  1473,     0,  1473,   621,
+       0,   267,     0,    43,    44,     0,   108,   697,     0,   348,
+     348,     0,     0,  1120,     0,     0,     0,   697,     0,     0,
+       8,     9,    10,    11,    12,   348,     0,     0,   697,   375,
+     674,   115,     0,  1473,   895,  1473,     0,     0,    76,     0,
+       0,     0,     0,     0,  1182,  1184,  1186,     0,     0,     0,
+       0,   260,    33,     0,     0,   590,   700,   621,   921,   616,
+       0,   618,   326,     0,     0,   713,   713,     0,     0,     0,
+    1120,  1120,    76,     0,   623,     0,     0,     0,   623,     0,
+      36,     0,     0,   348,     0,     0,     0,     8,     9,    10,
+      11,    12,   345,     0,   519,     0,   744,   744,     0,   519,
+       0,     0,   519,  -297,     0,     0,   108,     0,  1451,   223,
+       8,     9,    10,    11,    12,     0,     0,     0,     0,    33,
+       0,     0,     0,     0,   920,     0,   597,   471,     0,   108,
+       0,     0,    47,    48,     0,     0,   108,     0,     0,   569,
+       0,   350,    33,     0,     0,     0,   471,    36,   621,     0,
+     983,     0,    39,    79,   471,   598,    42,     0,     0,     0,
+       0,     0,     0,     0,     0,    43,    44,   598,  1501,   214,
+      36,     0,   692,     0,     0,   430,     0,  1509,   233,     0,
+       0,     0,     0,     0,     0,     0,     0,    79,   108,     0,
+     706,   712,    68,     0,     0,     0,   353,     0,     0,    47,
+      48,   430,   412,     0,     0,   430,     0,     0,    39,   420,
+     184,   185,    42,     0,     0,     0,   310,     0,     0,     0,
+     214,    43,    44,     0,   224,   216,   697,   697,     0,     0,
+       0,     0,     0,     0,   350,     0,     0,     0,   345,     0,
+       0,   243,    59,     0,     0,   345,   895,   893,   895,   410,
+       0,     0,   879,     0,     0,    47,    48,     0,     0,     0,
+     115,   886,   214,     0,   348,   888,     0,     0,   894,   447,
+       0,     0,     0,   921,   921,     0,   216,     0,   713,   786,
+       0,   412,     0,     0,   115,   310,     0,   697,   697,     0,
+      76,     0,     0,     0,     0,    76,   623,   797,     0,     0,
+      39,     0,   184,   185,    42,     0,     0,   744,   814,     0,
+      59,   355,     0,    43,    44,     0,     0,     0,   216,     0,
+       0,     0,     0,   214,     0,     0,   590,     0,     0,     0,
+      39,   590,   184,   185,    42,     0,   345,   623,   574,   186,
+     350,   350,     0,    43,    44,   215,   578,    47,    48,   581,
+       0,    39,     0,   184,   185,    42,   350,   621,   621,     0,
+       0,   214,     0,     0,    43,    44,   214,     0,     0,   596,
+       0,   597,     0,     0,   692,   310,     0,    47,    48,   216,
+       0,     0,  1410,   348,   348,   471,     0,     0,     0,   223,
+     893,     0,   410,     0,     0,     0,   215,     0,    47,    48,
+       0,    59,     0,     0,     0,    79,     0,     0,     0,   412,
+      79,   471,     0,   420,   350,     0,     0,   216,     0,     0,
+     115,     0,   216,   925,     0,   895,   430,     0,     0,     0,
+     895,     0,     0,  1301,     0,     0,     0,     0,   215,   921,
+       0,     0,     0,     0,     0,     0,     0,   267,     0,   706,
+       0,   214,     0,     0,   954,    76,   534,   535,   536,   537,
+     538,   539,   540,   541,   542,   543,   544,     0,     0,   353,
+     697,     0,     0,     0,    76,     0,  1066,   697,   697,   697,
+       0,     0,    76,     0,     0,     0,   345,     0,     0,   412,
+     545,     0,   692,     0,     0,     0,     0,     0,     0,   215,
+     353,     0,   692,     0,   224,   623,     0,   216,   986,     0,
+       0,     0,     0,   692,     0,     0,     0,    81,   353,     0,
+      76,     0,     0,   997,     0,     0,     0,   272,   115,     0,
+      39,   214,   184,   185,    42,     0,     0,   215,     0,     0,
+     697,     0,   215,    43,    44,     0,     0,   214,   310,     0,
+       0,    81,     0,    59,    59,     0,     0,     0,     0,     0,
+       0,     0,   353,   621,     0,     0,     0,   115,     0,  1497,
+      79,   410,   214,    68,    59,     0,     0,    47,    48,     0,
+     574,   574,     0,     0,   355,     0,     0,   216,   225,    79,
+       0,     0,     0,    59,     0,   797,     0,    79,     0,     0,
+       0,     0,   706,     0,     0,  1072,    39,     0,   184,   185,
+      42,     0,     0,     0,     0,   355,   621,   621,     0,    43,
+      44,     0,  1189,     0,   272,   353,     0,   215,   216,   310,
+       0,  1086,     0,   355,     0,    79,     0,     0,     0,     0,
+     430,   119,   348,   348,     0,   266,     0,     0,     0,     0,
+      59,     0,     0,    47,    48,    59,     0,     0,     0,     0,
+       0,     0,   115,   872,     0,     0,   526,   875,   353,   353,
+     527,   528,   529,     0,     0,   356,     0,   355,     0,     0,
+       0,     0,     0,     0,   353,     0,     0,     0,    59,     0,
+       0,   214,     0,   590,   530,     0,   531,     0,   532,   533,
+       0,     0,   353,     0,     0,     0,   428,   215,     0,     0,
+       0,   692,   692,    76,   350,   350,     0,     0,     0,   214,
+     267,   526,     0,     0,   214,   527,   528,   529,     0,     0,
+       0,     0,  1174,     0,     0,     0,     0,   621,     0,    76,
+     355,     0,   353,     0,     0,     0,     0,   216,   215,   530,
+       0,   531,     0,   532,  1292,     0,     0,     0,     0,     0,
+       0,     0,   115,   348,     0,     0,     0,     0,     0,    81,
+       0,     0,   692,   692,    81,   216,     0,   353,     0,     0,
+     216,     0,     0,   355,   355,   115,     0,     0,    59,     0,
+       0,     0,   115,   214,   115,     0,   115,     0,   574,   355,
+       0,     0,     0,     0,     0,     0,     0,   214,     0,     0,
+       0,    59,     0,     0,     0,     0,     0,   355,    59,     0,
+     353,     0,     0,     0,     0,     0,  1498,     0,    79,     0,
+     353,   115,     0,   115,     0,     0,   223,     0,     0,     0,
+       0,   353,     0,   706,   115,    88,     0,     0,     0,   216,
+    1498,  1498,     0,     0,    79,     0,     0,   355,     0,     0,
+     310,     0,     0,   216,     0,     0,     0,   215,   225,     0,
+      59,     0,     0,     0,  1356,  1498,     0,     0,     0,    88,
+       0,     0,     0,     0,     0,  1271,     0,     0,     0,     0,
+       0,     0,   355,     0,     0,   215,     0,     0,   214,     0,
+     215,    76,     0,     0,     0,    68,     0,     0,   126,   129,
+     130,   412,     0,     0,     0,     0,   226,     0,   692,     0,
+     706,     0,     0,   353,   119,     0,     0,     0,     0,     0,
+     353,     0,     0,     0,    81,   355,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,   355,     0,     0,   356,     0,
+       0,   224,     0,    81,   216,   692,   355,     0,     0,     0,
+       0,    81,   692,   692,   692,     0,     0,     0,   177,   215,
+       0,     0,     0,   350,   350,     0,     0,     0,     0,   356,
+     255,     0,   256,   215,     0,  1130,  1174,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   356,     0,    81,
+       0,  1141,     0,   363,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,    79,   177,     0,   119,
+     177,     0,     0,     0,     0,   692,     0,     0,     0,  1471,
+       0,  1475,     0,     0,     0,     0,     0,     0,   355,   353,
+     353,   356,   353,   353,     0,   355,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-      79,     0,     0,     8,     9,    10,    11,    12,    13,    14,
-      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
-      25,    26,    27,     0,     0,    28,    29,    30,   356,   356,
-      88,   356,   356,     0,     0,    33,     0,     0,     0,   355,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,    81,
-       0,     0,   363,     0,     0,     0,     0,     0,     0,   363,
-       0,     0,     0,    36,     0,     0,     0,     0,    39,     0,
-      40,    41,    42,     0,     0,     0,     0,     0,     0,     0,
-       0,    43,    44,   356,   356,     0,     0,   788,   789,     0,
+      76,     0,   395,     0,     0,     0,  1503,     0,  1505,     0,
+       0,     0,   414,   415,   215,     0,     0,   419,     0,   421,
+     422,     0,   412,     0,     0,     0,     0,   214,     0,     0,
+       0,     0,     0,     0,   350,     0,     0,    88,     0,     0,
+     353,   353,    88,     0,   356,     0,     0,     0,     0,     0,
+    1534,     0,  1535,     0,     0,     0,     0,     0,     0,   119,
+       0,  1227,     0,     0,     0,  1542,  1543,     0,   177,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,   128,     0,     0,     0,     0,   128,    45,   355,    46,
-       0,     0,     0,     0,   819,    47,    48,   822,   823,     0,
-     826,     0,   828,   829,     0,     0,     0,   830,   831,     8,
-       9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
-      19,    20,    21,    22,    23,    24,    25,    26,    27,  -298,
-       0,     0,     0,     0,   356,     0,    79,     0,     0,     0,
-       0,    33,   166,    79,     0,     0,     0,     0,     0,   363,
-     363,   997,   363,   363,     8,     9,    10,    11,    12,   219,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,    36,
-      88,     0,     0,     0,     0,     0,   225,     0,     0,     0,
-    -298,     0,     0,     0,   283,   284,    33,   285,     0,   913,
-       0,   914,     0,     0,     0,    79,     0,    81,   917,   918,
-       0,     0,     0,   923,   363,   363,   166,     0,     0,   356,
-     273,   356,     0,   286,    36,     0,   929,     0,     0,   287,
-       0,   933,     0,   288,     0,     0,   289,   290,   291,   292,
-     293,   294,    43,    44,     0,   295,   296,     0,     0,   166,
-       0,   128,     0,   957,   958,     0,   356,     0,   595,   369,
-       0,     0,   374,   356,   356,   356,     0,     0,   297,     0,
-     378,     0,     0,     0,   356,   356,   344,    48,   299,   300,
-     301,   302,     0,     0,   212,   363,     0,    81,     0,     0,
-       0,     0,     0,   232,     0,   236,     0,   238,     0,     0,
-       0,     0,     0,     0,   247,     0,     0,     0,     0,     0,
-       0,   166,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,   219,     0,     0,   356,   226,     0,     0,
-       0,     0,     0,     0,     0,   212,     0,   236,   238,   247,
-       0,   166,     0,     0,     0,     0,     0,     0,    88,     0,
-       0,  1007,     0,  1008,  1009,  1010,     0,     0,     0,     0,
-     363,     0,   363,     0,     0,     0,   374,     0,     0,     0,
-       0,     0,  1054,   166,     0,     0,     0,   212,     0,   128,
-       0,     0,     0,     0,     0,     0,  1060,     0,     0,     0,
-       0,     0,     0,     0,     0,   356,     0,   363,   523,     0,
-       0,     0,     0,     0,   363,   363,   363,     0,     0,  1072,
-       0,   166,     0,     0,     0,   363,   363,     0,     0,     0,
-       0,     0,     0,     0,     0,  1080,     0,     0,    88,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,   212,     0,
-     236,   238,   247,    81,     0,     0,   593,     0,     0,     0,
-      81,   617,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,   363,     0,  1110,
-       0,     0,     0,     0,  1120,     0,   212,     0,     0,  1123,
-       0,   212,     0,     0,  1127,     0,     0,     0,     0,  1129,
-       0,  1130,  1131,     0,     0,  1134,   496,     0,     0,     0,
-       0,     0,    81,     0,  1146,     0,     0,     0,     0,     0,
+       0,     0,  1174,   216,     0,     0,     0,   356,   356,  1174,
+       0,     0,     0,     0,   355,   355,     0,   355,   355,     0,
+       0,     0,     0,   356,     0,     0,     0,     0,     0,     0,
+       0,   353,     0,     0,     0,    79,     0,     0,     0,     0,
+       0,   356,   177,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,    81,     0,     0,     0,   226,     0,     0,     0,
+       0,  1174,     0,     0,     0,   168,     0,   173,  1522,     0,
+     179,   180,   181,   223,   183,   355,   355,     0,    81,     0,
+       0,   356,     0,     0,     0,     0,     0,     0,   234,     0,
+       0,     0,     0,    76,     0,     0,     0,     0,     0,     0,
+     249,   250,     0,     0,     0,     0,   353,     0,   353,     0,
+       0,     0,     0,     0,     0,     0,   356,   177,     0,     0,
+       0,     0,    88,   215,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,   177,   214,   363,     0,   177,     0,
+       0,    88,     0,   353,     0,     0,   355,     0,     0,    88,
+     353,   353,   353,     0,     0,     0,     0,     0,     0,   356,
+       0,   353,   353,     0,     0,     0,     0,   363,     0,   356,
+       0,     0,     0,     0,    76,   225,     0,     0,     0,     0,
+     356,     0,     0,     0,     0,   363,     0,    88,   224,     0,
+       0,   216,     8,     9,    10,    11,    12,     0,     0,     0,
+       0,   128,   128,   128,     0,     0,     0,     0,    79,     0,
+       0,     0,     0,   353,     0,     0,     0,     0,     0,     0,
+       0,   355,     0,   355,    33,     0,     0,     0,     0,   363,
+       0,     0,   214,     0,     0,     0,     0,     0,     0,     0,
+      81,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,    36,     0,     0,     0,     0,    39,   355,   184,
+     185,    42,   356,     0,     0,   355,   355,   355,     0,   356,
+      43,    44,     0,   128,     0,   128,   355,   355,     0,     0,
+       0,     0,   353,     0,     0,     0,     0,     0,   216,    79,
+       0,     0,   363,     0,     0,     0,   596,     0,   597,     0,
+     276,     0,     0,     0,    47,    48,     0,     0,     0,     0,
+       0,   215,   788,   789,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,   355,     0,
+      76,     0,     0,     0,     0,   363,   363,    76,     0,   819,
+       0,     0,   822,   823,     0,   826,     0,   828,   829,     0,
+       0,   363,   830,   831,   588,   128,   595,     0,     0,     0,
+       0,     0,     0,   128,     0,   128,   128,   619,   620,   363,
+     128,     0,   128,   128,     0,     0,     0,     0,   356,   356,
+      88,   356,   356,     0,     0,     0,   177,     0,     0,    76,
+       0,     0,     0,     0,     0,     0,     0,   355,     0,    81,
+       0,   177,     0,     0,     0,     0,    88,     0,   215,   363,
+       0,     0,     0,     0,   177,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-    1160,  1161,     0,     0,     0,     0,   166,   166,     0,     0,
-       0,     0,   369,     0,     0,     0,   363,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,  1190,   212,     0,  1192,
-       0,     0,     0,   523,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,  1198,     0,   212,     0,     0,     0,
-       0,   236,   238,     0,     0,     0,     0,     0,     0,   247,
-       0,   709,     0,     0,    88,     0,     0,     0,     0,     0,
-       0,    88,  1206,     0,   166,     0,     0,     0,  1210,  1211,
-       0,     0,     0,     0,     0,     0,   523,     0,   523,     0,
-       0,   523,     0,   166,   523,     0,     0,  1227,     0,     0,
-       0,   212,  1234,     0,     0,   369,     0,  1238,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,  1245,   212,
-       0,     0,     0,    88,   212,     0,   212,     0,     0,     0,
-       0,  1252,     0,  1254,  1255,  1256,  1257,     0,     0,     0,
-       0,     0,   212,     0,     0,   212,   212,     0,  1264,     0,
-    1160,     0,     0,   212,   173,     0,     0,   166,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,   212,   369,     0,
-       0,   800,  1287,     0,   212,     0,     0,     0,     0,     0,
-       0,     0,  1292,  1293,     0,     0,  1144,     0,     0,     8,
-       9,    10,    11,    12,     0,     0,     0,   593,     0,     0,
-       0,     0,   593,   158,     0,     0,     0,     0,     0,     0,
-       0,   369,   369,     0,     0,     0,     0,     0,     0,   283,
-     284,    33,   285,     0,     0,     0,     0,   369,     0,     0,
-       0,     0,     0,     0,     0,     0,  1327,  1328,     0,     0,
-       0,     0,     0,     0,     0,     0,  1338,     0,   286,    36,
-     252,     0,     0,     0,   287,     0,     0,     0,   288,   523,
-     257,   289,   290,   291,   292,   293,   294,    43,    44,     0,
-     295,   296,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,   369,   212,   922,     0,     0,
-       0,     0,     0,   297,     0,   378,     0,   283,   284,     0,
-     285,  1145,    48,   299,   300,   301,   302,     0,  1373,     0,
-    1374,  1375,  1376,     0,   212,     0,     0,     0,     0,   212,
-     709,     0,  1380,     0,     0,     0,   286,     0,     0,   385,
-    1391,     0,   287,     0,     0,     0,   288,     0,     0,   289,
-     290,   291,   292,   293,   294,    43,    44,     0,   295,   296,
-       0,     0,   417,     0,     0,  1412,  1413,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,   431,     0,     0,     0,
-       0,   297,     0,   378,     0,   436,     0,     0,   617,    47,
-      48,   299,   300,   301,   302,   444,     0,     0,   212,     0,
-       0,     0,   780,     0,     0,     0,     0,     0,     0,     0,
-    1452,  1453,   212,     0,     0,     0,     0,     0,     0,     0,
-     462,     0,     0,  1458,     0,   472,     0,     0,     0,     0,
-    1458,     0,     0,   496,     0,     0,     0,     0,   480,     0,
-       0,     0,     0,     0,   491,     0,   495,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,  1491,     0,   524,     0,  1497,     0,     0,
-       0,     0,     0,     0,     0,     0,   369,     0,     0,     0,
-       0,     0,     0,   709,     0,     0,     0,     0,     0,     0,
-       0,     0,   212,     0,     0,  1519,     0,  1520,   523,     0,
-       0,     0,     0,   212,     0,     0,   583,     0,     0,     0,
-     587,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-     212,     0,     0,   166,     0,  1535,  1536,     0,     0,     0,
-       0,     0,     0,  1539,  1540,     0,     0,     0,   630,     0,
-       0,     0,   631,   632,     0,   633,     0,     0,     0,     0,
-       0,     0,   644,   645,     0,   646,   647,     0,   648,     0,
-     649,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,   593,     0,   583,     0,     0,
-       0,     0,     0,     0,     0,   664,     0,     0,     0,   341,
-     364,     0,     0,     0,     0,     0,   369,   369,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,   675,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,   413,     0,     0,     0,     0,     0,     0,   413,
-       0,   212,     0,     0,     0,   701,     0,     0,     0,     0,
-       0,   704,     0,     0,     0,     0,   462,     0,     0,     0,
-       0,     0,     0,   523,     0,     0,     0,     0,     0,     0,
-       0,   212,     8,     9,    10,    11,    12,    13,    14,    15,
-      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,     0,   739,    28,    29,    30,     0,     0,     0,
-       0,     0,     0,   212,    33,     0,     0,     0,   757,     0,
-       0,   413,     0,     0,   212,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,   709,
-       0,     0,    36,     0,     0,     0,     0,   112,     0,    40,
-      41,     0,     0,     0,     0,   782,     0,     0,     0,     0,
-      43,    44,     0,     0,   792,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,   413,     0,
-     219,     0,     0,     0,   813,     0,   413,   579,    46,   413,
-     582,     0,     0,   212,    47,    48,     0,   364,     0,     0,
-       0,   609,     0,     0,     0,     0,     0,   212,     0,     0,
-       0,     0,     0,     0,     0,     0,   709,     0,     0,     0,
-     627,     0,   852,     0,     8,     9,    10,    11,    12,    13,
-      14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
-      24,    25,    26,    27,     0,     0,    28,    29,    30,   413,
-       0,     0,     0,   413,     0,     0,    33,     0,   885,     0,
-       0,     0,     0,     0,     0,     0,   892,     0,     0,   369,
-     369,     0,     0,     0,     0,     0,     0,   219,     0,     0,
-       0,     0,     0,   364,    36,     0,     0,     0,     0,    39,
-       0,   208,    41,    42,     0,   212,     0,   252,     0,     0,
-       0,     0,    43,    44,     0,     0,     0,     0,   930,   931,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,    45,   413,
-     271,     0,   364,     0,     0,     0,    47,    48,     0,     0,
-     965,     0,     0,     0,     0,   969,     0,     8,     9,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
-      29,    30,   413,     0,     0,     0,   364,     0,     0,    33,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-     369,     0,   212,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,  1002,     0,    36,     0,     0,
-       0,     0,  1003,     0,    40,    41,     0,     0,     0,     0,
-     413,   413,     0,     0,     0,  1005,     0,  1006,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,   795,   364,
-    1016,     0,     0,     0,     0,     0,  1020,   523,   609,   523,
-     609,   609,     0,   258,     0,   324,     0,   609,  1057,    47,
-      48,  1058,     0,     0,     0,   346,     0,   832,   364,     0,
-       0,     0,     0,   364,     0,     0,   381,   381,     0,     0,
-       0,     0,   364,   364,   523,     0,   523,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,   364,     0,
-       0,     0,     0,   413,   873,     0,     0,   413,   876,     0,
-       0,     0,     0,   166,   878,     0,   506,     0,   508,   511,
-       0,     0,     0,     0,     0,     0,     0,     0,   514,   515,
-       0,     0,     0,   413,     0,     0,     0,     0,   283,   284,
-       0,   285,     0,   508,   508,     0,     0,   324,     0,     0,
-       0,     0,     0,     0,     0,     0,   364,   609,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,   286,     0,  1128,
-       0,   476,     0,   634,     0,   141,   142,   288,   508,     0,
-     289,   290,   291,   292,   293,   294,    43,    44,     0,   295,
-     296,   364,     0,     0,     0,   413,   413,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,   297,   508,   635,     0,   636,   379,     0,     0,
-      47,    48,   299,   300,   301,   302,     0,     0,     0,     0,
-    1191,     0,     0,     0,     0,     0,     0,     0,   413,     0,
-       0,     0,     0,   212,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,   609,     0,   609,     0,     0,     0,
-       0,     0,     0,     0,  1203,     0,   609,     0,     0,  1205,
-       0,     0,     0,     0,     0,     0,     0,  1209,     0,     0,
-       0,     0,     0,     0,     0,     0,   381,     0,     8,     9,
-      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
-      20,    21,    22,    23,    24,    25,    26,    27,  -299,     0,
-       0,  1240,     0,     0,     0,     0,     0,     0,     0,     0,
-      33,     0,  1247,     0,     0,  1248,     0,  1249,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,   364,     0,     0,
-       0,     0,  1258,  1259,   364,   413,     0,   413,    36,     0,
-       0,   413,     0,     0,     0,     0,     0,     0,     0,  -299,
-       0,     0,  1271,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,   609,   609,     0,     0,     0,     0,     0,   703,
-       0,     0,   508,   508,   508,   508,   508,   508,   508,   508,
-     508,   508,   508,   508,   508,   508,   508,   508,   508,   508,
-       0,     0,     0,     0,     0,     0,     0,   413,  1310,     0,
-       0,     0,     0,     0,     0,     0,  1314,     0,     0,   736,
-       0,     0,     0,     0,     0,     0,   413,  1126,     0,     0,
-       0,   752,     0,     0,     0,     0,   364,   736,     0,     0,
-     736,     0,   413,  1137,     0,   609,   609,  1142,     0,     0,
-       0,     0,     0,   761,     0,     0,     0,   364,   364,     0,
-       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
-      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
-       0,     0,     0,   790,     0,     0,  1361,     0,  1362,     0,
-     346,     0,    33,     0,   752,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,  1371,     0,  1372,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,   413,     0,   413,
-      36,  1379,   508,     0,   413,     0,     0,     0,     0,     0,
-       0,     0,     0,   609,     0,     0,  1397,  1399,     0,     0,
-     851,     0,     0,     0,     0,     0,     0,  1404,   381,     0,
-    1209,     0,     0,     0,     0,     0,   413,  1223,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,  1427,     0,     0,     0,     0,     0,     0,     0,
-     364,  1434,     0,   508,  1436,     0,  1438,  1440,  1442,     0,
-       0,     0,     0,     8,     9,    10,    11,    12,    13,    14,
-      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
-      25,    26,    27,   508,     0,    28,    29,    30,   483,   484,
-     485,   486,     0,     0,   927,    33,     0,  1473,     0,  1475,
-       0,  1209,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,   752,  1486,   951,     0,
-       0,     0,     0,    36,     0,     0,     0,   364,   961,     0,
-      40,    41,     0,     0,   968,     0,     0,     1,     2,     3,
-       4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
-      14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
-      24,    25,    26,    27,     0,     0,    28,    29,    30,    31,
-       0,     0,     0,    32,   985,   986,    33,    34,     0,     0,
-     364,   364,     0,     0,     0,     0,     0,     0,     0,     0,
-     346,     0,     0,     0,     0,     0,     0,   508,     0,     0,
-       0,    35,     0,     0,    36,     0,    37,     0,    38,    39,
-       0,    40,    41,    42,     0,     0,     0,     0,     0,     0,
-       0,     0,    43,    44,     0,     0,     0,     0,     0,  1014,
-       0,     0,     0,   381,     0,     0,     0,   283,   284,     0,
-     285,     0,     0,   508,     0,     0,     0,     0,    45,     0,
-      46,     0,     0,     0,  -528,     0,    47,    48,     0,     0,
-       0,     0,   346,     0,     0,     0,   286,     0,     0,   346,
-       0,     0,   287,     0,     0,   508,   288,     0,     0,   289,
-     290,   291,   292,   293,   294,    43,    44,   508,   295,   296,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,   364,     0,     0,     0,     0,     0,     0,     0,   324,
-       0,   297,     0,   378,     0,     0,   379,     0,     0,    47,
-      48,   299,   300,   301,   302,     0,   508,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,   381,     0,     0,     0,
-       0,   961,     0,     0,   736,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,  1132,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,  1147,     0,     0,     0,     0,
-       0,     0,   283,   284,     0,   285,     0,     0,     0,     0,
-     413,     0,     0,     0,     0,   381,     0,  1164,     0,     0,
-       0,     0,   508,     0,     0,     0,     0,     0,     0,     0,
-       0,   286,   961,   961,   413,   413,     0,   287,     0,     0,
-       0,   288,     0,     0,   289,   290,   291,   292,   293,   294,
-      43,    44,  1195,   295,   296,     0,     0,     0,     0,   413,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,   297,     0,   378,     0,
-       0,   508,   508,   751,    47,    48,   299,   300,   301,   302,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,   961,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,   851,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-    1250,  1251,     1,     2,   207,     4,     5,     6,     7,     8,
-       9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
-      19,    20,    21,    22,    23,    24,    25,    26,    27,     0,
-       0,    28,    29,    30,    31,     0,     0,     0,    32,   283,
-     284,    33,  1023,  1024,     0,  1025,     0,     0,  1026,  1027,
-    1028,  1029,  1030,  1031,  1032,  1033,     0,     0,     0,  1034,
-       0,     0,     0,  1035,  1036,     0,    35,     0,   286,    36,
-       0,    37,     0,    38,  1037,     0,    40,    41,   288,     0,
-       0,   289,   290,   291,   292,   293,   294,    43,    44,     0,
-     295,   296,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,   297,     0,   298,     0,     0,   172,     0,
-       0,    47,    48,   299,   300,   301,   302,     0,     0,     0,
-       0,  1038,     0,     0,     0,     0,  -134,     0,     0,     0,
-       0,     0,  1355,     0,     0,   736,     0,     0,     0,   508,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,   508,     0,     0,     0,
-       0,     0,     0,     0,     1,     2,   207,     4,     5,     6,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,   356,
+     356,     0,   128,     0,   363,    79,     0,     0,     0,     0,
+       0,     0,    79,     0,     1,     2,   207,     4,     5,     6,
        7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
       17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
-      27,     0,     0,    28,    29,    30,    31,     0,     0,     0,
-      32,   283,   284,    33,   285,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,   508,   508,
+      27,     0,     0,    28,    29,    30,    31,   363,   956,   957,
+      32,   283,   284,    33,   285,     0,     0,   363,     0,     0,
+       0,     0,     0,   226,    79,     0,     0,     0,   363,     0,
+     356,     0,     0,     0,     0,     0,     0,     0,     0,     0,
      286,    36,     0,    37,     0,    38,   287,     0,    40,    41,
      288,     0,     0,   289,   290,   291,   292,   293,   294,    43,
       44,     0,   295,   296,     0,     0,     0,     0,     0,     0,
+       0,     0,   225,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,   283,   284,   297,   285,   298,    88,     0,
+       0,     0,    81,    47,    48,   299,   300,   301,   302,     0,
+       0,     0,     0,     0,     0,   356,     0,   356,  -134,     0,
+     363,     0,   286,     0,     0,     0,     0,   363,   287,     0,
+       0,     0,   288,     0,     0,   289,   290,   291,   292,   293,
+     294,    43,    44,     0,   295,   296,     0,     0,     0,     0,
+       0,     0,   356,     0,     0,     0,     0,     0,     0,   356,
+     356,   356,   177,     0,     0,     0,     0,   297,     0,   378,
+     356,   356,   379,     0,  1077,    47,    48,   299,   300,   301,
+     302,     0,     0,    81,   465,     2,   207,     4,     5,     6,
+       7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
+      27,     0,     0,    28,    29,    30,     0,     0,     0,     0,
+       0,     0,   356,    33,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,   913,     0,   914,   363,   363,     0,   363,
+     363,     0,   917,   918,     0,     0,     0,   923,     0,     0,
+       0,    36,     0,    37,     0,    38,     0,    88,    40,    41,
+     929,     0,     0,     0,     0,   933,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,   128,   128,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,   297,     0,   298,     0,     0,
+       0,   356,   595,     0,     0,     0,     0,   363,   363,     0,
+      -3,     0,   128,     0,     0,   128,   128,     0,   128,     0,
+     128,   128,     0,     0,     0,   128,   128,     0,     0,     0,
+       0,     0,     0,     0,   177,     0,     0,   177,   177,   177,
+       0,     0,     0,     0,  1203,     0,     0,     0,     0,    81,
+       0,     0,     0,     0,     0,     0,    81,   166,     0,     8,
+       9,    10,    11,    12,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,   219,     0,     0,     0,   363,     8,
+       9,    10,    11,    12,     0,     0,     0,     0,     0,     0,
+       0,    33,     0,     0,     0,  1006,     0,  1007,  1008,  1009,
+       0,     0,     0,     0,     0,     0,     0,     0,    81,     0,
+       0,    33,     0,     0,     0,     0,  1059,     0,     0,    36,
+     226,   166,     0,     0,    39,   273,   184,   185,    42,     0,
+    1065,     0,     0,     0,     0,     0,     0,    43,    44,    36,
+      88,     0,     0,     0,    39,     0,   184,   185,    42,     0,
+       0,     0,     0,   363,   166,   363,     0,    43,    44,     0,
+       0,   128,   128,   893,   369,   410,     0,   374,     0,  1085,
+       0,    47,    48,     0,     0,     0,     0,  1295,     0,     0,
+       0,     0,     0,  1497,     0,   410,     0,     0,     0,     0,
+     363,    47,    48,     0,     0,     0,     0,   363,   363,   363,
+       0,     0,     0,     0,   177,     0,     0,     0,   363,   363,
+       0,     0,  1115,     0,     0,     0,   166,  1125,     0,     0,
+       0,    88,  1128,     0,     0,     0,     0,  1132,   219,     0,
+       0,     0,  1134,     0,  1135,  1136,     0,     0,  1139,     0,
+       0,     0,     0,     0,     0,     0,   166,  1151,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+     363,     0,     0,  1165,  1166,     0,     0,     0,   212,     0,
+       0,   374,     0,     0,     0,     0,     0,   232,   166,   236,
+       0,   238,     0,     0,     0,     0,     0,     0,   247,     0,
+       0,     0,     0,     0,  1194,     0,     0,  1196,     0,     0,
+       0,     0,     0,   523,   177,     0,     0,     0,     0,     0,
+       0,     0,   128,     0,     0,     0,   166,   128,     0,   212,
+       0,   236,   238,   247,     0,     0,     0,     0,     0,   363,
+       8,     9,    10,    11,    12,     0,     0,     0,     0,     0,
+       0,  1211,     0,     0,     0,     0,     0,  1215,  1216,     0,
+       0,   593,     0,     0,   177,     0,   617,   177,     0,     0,
+       0,   212,    33,     0,     0,     0,  1232,     0,     0,     0,
+       0,  1239,     0,     0,     0,   177,  1243,    88,     0,     0,
+       0,     0,     0,     0,    88,     0,     0,  1250,     0,     0,
+      36,     0,     0,     0,     0,    39,     0,   184,   185,    42,
+    1257,   177,  1259,  1260,  1261,  1262,   177,     0,    43,    44,
+       0,     0,     0,     0,     0,     0,     0,  1269,     0,  1165,
+       0,     0,   212,   173,   236,   238,   247,     0,     0,     0,
+       0,   166,   166,     0,   186,   177,    88,   369,     0,     0,
+       0,     0,    47,    48,     0,     0,     0,     0,     0,     0,
+       0,  1297,  1298,     0,     0,     0,     0,     0,   523,     0,
+     212,     0,     0,     0,     0,   212,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   128,     0,     0,
+       0,     0,     0,     0,     0,     0,   709,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   177,     0,   166,
+       0,     0,   177,     0,     0,  1332,  1333,     0,     0,     0,
+       0,   523,     0,   523,     0,  1343,   523,     0,   166,   523,
+     177,     0,   177,     0,     0,     0,   177,     0,     0,   177,
+     369,   212,     0,     0,     0,     0,     0,   177,     0,     0,
+       0,   177,     0,     0,     0,     0,     0,     0,     0,     0,
+     212,     0,     0,     0,     0,   236,   238,     0,     0,     0,
+       0,     0,     0,   247,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,  1378,     0,  1379,
+    1380,  1381,   166,     0,     0,     0,     0,     0,     0,     0,
+       0,  1385,     0,   369,     0,     0,   800,     0,     0,  1396,
+       0,     0,     0,     0,   158,   212,     0,     0,     0,     0,
+     128,     0,     8,     9,    10,    11,    12,     0,     0,     0,
+       0,     0,   593,   212,  1417,  1418,     0,   593,   212,     0,
+     212,     0,     0,     0,     0,     0,   369,   369,     0,     0,
+       0,     0,     0,     0,    33,     0,   212,     0,     0,   212,
+     212,   252,   369,     0,     0,     0,     0,   212,     0,     0,
+       0,   257,     0,     0,     0,     0,     0,     0,     0,  1457,
+    1458,   212,    36,     0,     0,     0,     0,    39,   212,   184,
+     185,    42,  1463,     0,   523,     0,     0,     0,     0,  1463,
+      43,    44,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+     369,     0,   922,     0,     0,     0,   266,     0,     0,     0,
+       0,     0,  1496,     0,    47,    48,  1502,     0,     0,     0,
+     385,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,   709,     0,     0,     0,     0,
+       0,     0,     0,   417,  1524,     0,  1525,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   431,     0,     0,
+       0,     0,     0,     0,     0,     0,   436,     0,     0,     0,
+       0,     0,     0,     0,  1540,  1541,   444,     0,     0,     0,
+     212,     0,  1544,  1545,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,   617,     0,     0,     0,     0,     0,     0,
+       0,   462,     0,     0,     0,     0,   472,     0,   212,     0,
+       0,     0,     0,   212,     0,     0,     0,     0,     0,   480,
+       0,     0,     0,     0,     0,   491,     0,   495,     0,     0,
+     506,     0,   508,   511,     0,     0,     0,     0,     0,     0,
+       0,     0,   514,   515,     0,     0,   524,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   508,   508,     0,
+       0,     0,     0,     0,     0,     0,   283,   284,     0,   285,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,   369,   212,     0,     0,     0,     0,   583,   709,     0,
+       0,   587,   508,     0,     0,   286,   212,     0,     0,     0,
+       0,   287,     0,   523,     0,   288,     0,     0,   289,   290,
+     291,   292,   293,   294,    43,    44,     0,   295,   296,   630,
+       0,     0,     0,   631,   632,     0,   633,   508,   166,     0,
+       0,     0,     0,   644,   645,     0,   646,   647,     0,   648,
+     297,   649,   378,     0,     0,     0,     0,     0,    47,    48,
+     299,   300,   301,   302,     0,     0,     0,     0,   583,     0,
+       0,   780,     0,     0,     0,     0,   664,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,   212,     0,     0,   593,
+       0,     0,     0,     0,     0,     0,     0,   212,     0,     0,
+     675,   283,   284,     0,   285,     0,     0,     0,     0,     0,
+     369,   369,     0,     0,   212,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,   701,     0,     0,     0,
+     286,     0,   704,     0,     0,     0,   634,   462,   141,   142,
+     288,     0,     0,   289,   290,   291,   292,   293,   294,    43,
+      44,     0,   295,   296,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,   523,   739,   297,     0,   635,     0,   636,
+     379,     0,     0,    47,    48,   299,   300,   301,   302,   757,
+       0,     0,     0,     0,   996,     0,     0,     8,     9,    10,
+      11,    12,     0,     0,     0,     0,   508,   508,   508,   508,
+     508,   508,   508,   508,   508,   508,   508,   508,   508,   508,
+     508,   508,   508,   508,     0,   212,   782,   283,   284,    33,
+     285,     0,     0,     0,     0,   792,     0,     0,     0,   709,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,   212,   813,   286,    36,     0,     0,
+       0,     0,   287,     0,     0,     0,   288,     0,     0,   289,
+     290,   291,   292,   293,   294,    43,    44,     0,   295,   296,
+     219,     0,     0,     0,     0,     0,   212,     0,     0,     0,
+       0,     0,     0,   852,     0,     0,     0,   212,     0,     0,
+       0,   297,     0,   378,     0,     0,     0,     0,     0,   344,
+      48,   299,   300,   301,   302,     0,   709,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,   885,
+       0,     0,     0,     0,     0,     0,     0,   892,     0,     0,
+       0,     0,     0,     0,     0,     0,   508,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,   252,   369,
+     369,     0,   212,     0,     0,     0,     0,   219,     0,   930,
+     931,     0,     0,     0,     0,     0,   212,     8,     9,    10,
+      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
+      21,    22,    23,    24,    25,    26,    27,   508,     0,     0,
+       0,   964,     0,     0,     0,     0,   968,     0,     0,    33,
+       0,     0,     0,   341,   364,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   508,     0,     0,
+       0,     0,     0,     0,     0,     0,  1149,    36,     0,     8,
+       9,    10,    11,    12,     0,     0,   413,     0,     0,     0,
+       0,     0,     0,   413,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,   212,     0,  1001,     0,     0,   283,
+     284,    33,   285,  1002,     0,     0,     0,     0,     0,     0,
+     369,     0,     0,     0,     0,     0,  1004,     0,  1005,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,   286,    36,
+       0,  1015,     0,     0,   287,     0,     0,  1019,   288,     0,
+       0,   289,   290,   291,   292,   293,   294,    43,    44,  1062,
+     295,   296,  1063,     0,     0,   413,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   523,     0,   523,
+       0,   508,     0,   297,     0,   378,     0,     0,     0,     0,
+       0,  1150,    48,   299,   300,   301,   302,     0,     0,     0,
+       0,   212,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,   523,     0,   523,     0,     0,     0,
+       0,     0,   413,     0,     0,     0,   508,     0,     0,     0,
+     413,   579,   324,   413,   582,     0,     0,     0,     0,     0,
+       0,   364,   346,   166,     0,   609,     0,     0,     0,     0,
+       0,     0,     0,   381,   381,     0,     0,     0,   508,     0,
+       0,     0,     0,     0,   627,     0,     0,     0,     0,  1133,
+     508,     0,     8,     9,    10,    11,    12,    13,    14,    15,
+      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
+      26,    27,     0,   413,    28,    29,    30,   413,     0,     0,
+       0,     0,     0,     0,    33,     0,     0,     0,     0,   508,
+       0,     0,     0,     0,   283,   284,     0,   285,     0,     0,
+       0,     0,     0,     0,   324,     0,     0,   364,     0,     0,
+       0,     0,    36,     0,     0,  1195,     0,   112,     0,    40,
+      41,     0,     0,   286,     0,     0,     0,     0,   476,   287,
+      43,    44,     0,   288,     0,     0,   289,   290,   291,   292,
+     293,   294,    43,    44,     0,   295,   296,     0,     0,     0,
+    1208,     0,     0,   413,     0,  1210,   364,     0,    46,     0,
+       0,     0,     0,  1214,    47,    48,     0,     0,   297,     0,
+     378,   508,     0,     0,     0,   751,    47,    48,   299,   300,
+     301,   302,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,   413,  1245,     0,     0,
+     364,     0,     0,     0,     0,     0,     0,     0,  1252,     0,
+       0,  1253,     0,  1254,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,  1263,  1264,
+     508,   508,   212,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,   381,   413,   413,     0,     0,  1276,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,   795,   364,     0,     0,   283,   284,     0,   285,
+       0,     0,   609,     0,   609,   609,     0,     0,     0,     0,
+       0,   609,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,   832,   364,     0,  1315,   286,     0,   364,     0,     0,
+       0,   287,  1319,     0,     0,   288,   364,   364,   289,   290,
+     291,   292,   293,   294,    43,    44,     0,   295,   296,     0,
+       0,     0,   364,     0,     0,     0,     0,   413,   873,     0,
+       0,   413,   876,     0,     0,     0,   703,     0,   878,     0,
+     297,     0,   378,     0,     0,   958,     0,     0,    47,    48,
+     299,   300,   301,   302,     0,     0,     0,   413,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,  1366,     0,  1367,     0,   736,     0,     0,     0,
+     364,   609,     0,     0,     0,     0,     0,     0,   752,     0,
+    1376,     0,  1377,     0,   736,     0,     0,   736,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,  1384,     0,     0,
+     761,     0,     0,     0,     0,   364,     0,     0,     0,   413,
+     413,     0,  1402,  1404,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,  1409,     0,     0,  1214,     0,   508,     0,
+     790,     0,     0,     0,     0,     0,     0,   346,     0,     0,
+       0,   752,     0,     0,     0,   508,     0,     0,  1432,     0,
+       0,     0,   413,     0,     0,     0,     0,  1439,     0,     0,
+    1441,     0,  1443,  1445,  1447,     0,     0,     0,   609,     0,
+     609,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+     609,     0,     0,     0,     0,     0,     0,   851,     0,     0,
+       0,     0,     0,     0,     0,   381,     0,     0,     0,     0,
+       0,     0,     0,  1478,     0,  1480,     0,  1214,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   508,   508,     0,
+       0,     0,     0,  1491,     2,   207,     4,     5,     6,     7,
+       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
+      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
+       0,   364,    28,    29,    30,     0,     0,     0,   364,   413,
+       0,   413,    33,     0,     0,   413,     0,     0,     0,     0,
+       0,   927,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,   736,     0,     0,     0,   609,   609,     0,     0,
+      36,     0,    37,   752,    38,   950,     0,    40,    41,     0,
+       0,     0,     0,     0,     0,   960,     0,     0,     0,     0,
+       0,   967,     0,     0,     0,     0,     0,     0,     0,     0,
+     413,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,  -407,   671,     0,     0,   413,
+    1131,     0,    47,    48,     0,     0,     0,     0,     0,   364,
+       0,   984,   985,     0,     0,   413,  1142,     0,   609,   609,
+    1147,     0,     0,     0,     0,     0,     0,   346,     0,     0,
+     364,   364,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
+      27,     0,     0,    28,    29,    30,  1013,     0,     0,     0,
+     381,     0,     0,    33,   678,     0,     0,     0,     0,     0,
+       0,   283,   284,     0,   285,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,   413,     0,   413,   346,
+       0,    36,     0,   413,     0,     0,   346,     0,    40,    41,
+     286,     0,   609,     0,     0,     0,   287,     0,     0,     0,
+     288,     0,     0,   289,   290,   291,   292,   293,   294,    43,
+      44,     0,   295,   296,     0,   413,  1228,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,   324,   679,     0,     0,
+       0,   680,     0,    47,    48,   297,     0,   378,     0,   364,
        0,     0,     0,    47,    48,   299,   300,   301,   302,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,  -134,     1,
+       0,     0,   381,     0,     0,     0,     0,   960,   283,   284,
+     736,   285,  1023,     0,  1024,     0,     0,  1025,  1026,  1027,
+    1028,  1029,  1030,  1031,  1032,     0,     0,  1516,  1033,     0,
+    1137,     0,  1034,  1035,     0,    35,     0,   286,     0,     0,
+       0,  1152,     0,  1036,     0,   175,   176,  1039,     0,     0,
+     289,   290,   291,   292,   293,   294,    43,    44,     0,   295,
+     296,   381,     0,  1169,     0,     0,   364,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,   960,   960,
+       0,     0,   297,     0,   378,     0,     0,   172,     0,     0,
+      47,    48,   299,   300,   301,   302,   283,   284,     0,   285,
+    1040,     0,     0,     0,  1200,  -134,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,   364,
+     364,     0,     0,     0,     0,   286,     0,     0,     0,     0,
+       0,   287,     0,     0,     0,   288,     0,     0,   289,   290,
+     291,   292,   293,   294,    43,    44,     0,   295,   296,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,   960,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+     505,     0,   378,     0,     0,     0,     0,   851,    47,    48,
+     299,   300,   301,   302,     0,     0,     0,     0,     0,     0,
+       0,     0,  1255,  1256,     0,     0,     1,     2,   207,     4,
+       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
+      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
+      25,    26,    27,     0,     0,    28,    29,    30,    31,     0,
+       0,     0,    32,   283,   284,    33,  1022,  1023,     0,  1024,
+     364,     0,  1025,  1026,  1027,  1028,  1029,  1030,  1031,  1032,
+       0,     0,     0,  1033,     0,     0,     0,  1034,  1035,     0,
+      35,     0,   286,    36,     0,    37,     0,    38,  1036,     0,
+    1037,  1038,  1039,     0,     0,   289,   290,   291,   292,   293,
+     294,    43,    44,     0,   295,   296,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,   297,     0,   298,
+       0,     0,   172,     0,     0,    47,    48,   299,   300,   301,
+     302,     0,     0,     0,     0,  1040,     0,     0,     0,   413,
+    -134,     0,     0,     0,  1360,     0,   736,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,   413,   413,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,   413,     1,
        2,   207,     4,     5,     6,     7,     8,     9,    10,    11,
       12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
       22,    23,    24,    25,    26,    27,     0,     0,    28,    29,
       30,    31,     0,     0,     0,    32,   283,   284,    33,   285,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,   324,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,   286,    36,     0,    37,     0,
-      38,   287,     0,    40,    41,   288,     0,     0,   289,   290,
+       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
+      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
+    -298,     0,     0,     0,     0,   286,    36,     0,    37,     0,
+      38,   287,    33,    40,    41,   288,     0,     0,   289,   290,
      291,   292,   293,   294,    43,    44,     0,   295,   296,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-     297,     0,   298,     0,     0,     0,     0,     0,    47,    48,
+      36,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+     297,  -298,   298,     0,     0,     0,     0,     0,    47,    48,
      299,   300,   301,   302,     2,   207,     4,     5,     6,     7,
        8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
       18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
        0,     0,    28,    29,    30,     0,     0,     0,     0,     0,
-     283,   284,    33,   285,     8,     9,    10,    11,    12,    13,
-      14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
-      24,    25,    26,    27,     0,     0,    28,    29,    30,   286,
-      36,     0,    37,     0,    38,   287,    33,    40,    41,   288,
+     283,   284,    33,   285,     0,     0,     0,     0,     0,     0,
+       0,   324,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,   286,
+      36,     0,    37,     0,    38,   287,     0,    40,    41,   288,
        0,     0,   289,   290,   291,   292,   293,   294,    43,    44,
        0,   295,   296,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,    36,     0,     0,     0,     0,     0,
-       0,    40,    41,     0,   297,     0,   343,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,   297,     0,   343,     0,     0,     0,
        0,   751,   344,    48,   299,   300,   301,   302,     2,   207,
        4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
@@ -2442,10 +2465,10 @@
        0,     0,     0,     0,   283,   284,    33,   285,     8,     9,
       10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
-      20,    21,    22,    23,    24,    25,    26,    27,     0,     0,
-      28,    29,    30,   286,    36,     0,    37,     0,    38,   287,
+      20,    21,    22,    23,    24,    25,    26,    27,  -299,     0,
+       0,     0,     0,   286,    36,     0,    37,     0,    38,   287,
       33,    40,    41,   288,     0,     0,   289,   290,   291,   292,
      293,   294,    43,    44,     0,   295,   296,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,    36,     0,
-       0,     0,     0,     0,     0,   208,    41,     0,   297,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,   297,  -299,
      343,     0,     0,     0,     0,   751,    47,    48,   299,   300,
      301,   302,     2,   207,     4,     5,     6,     7,     8,     9,
@@ -2453,25 +2476,25 @@
       20,    21,    22,    23,    24,    25,    26,    27,     0,     0,
       28,    29,    30,     0,     0,     0,     0,     0,   283,   284,
-      33,   285,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,   286,    36,     0,
-      37,     0,    38,   287,     0,    40,    41,   288,     0,     0,
+      33,   285,     8,     9,    10,    11,    12,    13,    14,    15,
+      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
+      26,    27,     0,     0,    28,    29,    30,   286,    36,     0,
+      37,     0,    38,   287,    33,    40,    41,   288,     0,     0,
      289,   290,   291,   292,   293,   294,    43,    44,     0,   295,
      296,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,   297,     0,   343,     0,     0,     0,     0,     0,
+       0,     0,    36,     0,     0,     0,     0,     0,     0,    40,
+      41,     0,   297,     0,   343,     0,     0,     0,     0,     0,
      344,    48,   299,   300,   301,   302,     2,   207,     4,     5,
        6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
       16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
       26,    27,     0,     0,    28,    29,    30,     0,     0,     0,
-       0,     0,   283,   284,    33,   285,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,   286,    36,     0,    37,     0,    38,   287,     0,   208,
+       0,     0,   283,   284,    33,   285,     8,     9,    10,    11,
+      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
+      22,    23,    24,    25,    26,    27,     0,     0,    28,    29,
+      30,   286,    36,     0,    37,     0,    38,   287,    33,   208,
       41,   288,     0,     0,   289,   290,   291,   292,   293,   294,
       43,    44,     0,   295,   296,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,   297,     0,   982,     0,
-       0,     0,     0,     0,   983,    48,   299,   300,   301,   302,
+       0,     0,     0,     0,     0,     0,    36,     0,     0,     0,
+       0,     0,     0,   208,    41,     0,   297,     0,   981,     0,
+       0,     0,     0,     0,   982,    48,   299,   300,   301,   302,
        2,   207,     4,     5,     6,     7,     8,     9,    10,    11,
       12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
@@ -2510,45 +2533,22 @@
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,    45,
-       0,    46,     0,     0,     0,     0,     0,    47,    48,   206,
-       2,   207,     4,     5,     6,     7,     8,     9,    10,    11,
+       0,    46,     0,     0,     0,  -528,     0,    47,    48,     1,
+       2,     3,     4,     5,     6,     7,     8,     9,    10,    11,
       12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
       22,    23,    24,    25,    26,    27,     0,     0,    28,    29,
-      30,     0,     0,     0,     0,     0,     0,     0,    33,     0,
+      30,    31,     0,     0,     0,    32,     0,     0,    33,    34,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,    36,     0,    37,     0,
-      38,    39,     0,   208,    41,    42,     0,     0,     0,     0,
+       0,     0,     0,    35,     0,     0,    36,     0,    37,     0,
+      38,    39,     0,    40,    41,    42,     0,     0,     0,     0,
        0,     0,     0,     0,    43,    44,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-      45,     0,   209,     0,     0,     0,     0,     0,    47,    48,
-       1,     2,   207,     4,     5,     6,     7,     8,     9,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,  -298,     0,    28,
-      29,    30,    31,     0,     0,     0,    32,     0,     0,    33,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,    36,     0,    37,
-       0,    38,     0,     0,    40,    41,     0,     0,  -298,     1,
-       2,   207,     4,     5,     6,     7,     8,     9,    10,    11,
-      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
-      22,    23,    24,    25,    26,    27,     0,     0,    28,    29,
-      30,    31,     0,    46,     0,    32,     0,     0,    33,    47,
-      48,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,    36,     0,    37,     0,
-      38,     0,     0,    40,    41,   206,     2,   207,     4,     5,
-       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
-      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,     0,     0,    28,    29,    30,     0,     0,     0,
-       0,     0,    46,     0,    33,     0,     0,     0,    47,    48,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,    36,     0,    37,     0,    38,     0,     0,   208,
-      41,     2,   207,     4,     5,     6,     7,     8,     9,    10,
+      45,     0,    46,     0,     0,     0,     0,     0,    47,    48,
+     206,     2,   207,     4,     5,     6,     7,     8,     9,    10,
       11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
       21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
-      29,    30,     0,     0,     0,     0,     0,     0,   209,    33,
-       0,     0,     0,     0,    47,    48,     0,     0,     0,     0,
+      29,    30,     0,     0,     0,     0,     0,     0,     0,    33,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,    36,     0,    37,
@@ -2558,87 +2558,91 @@
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,    45,     0,   209,     0,     0,     0,     0,     0,    47,
-      48,     2,   207,     4,     5,     6,     7,     8,     9,    10,
+      48,     1,     2,   207,     4,     5,     6,     7,     8,     9,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,  -298,     0,
+      28,    29,    30,    31,     0,     0,     0,    32,     0,     0,
+      33,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,    36,     0,
+      37,     0,    38,     0,     0,    40,    41,     0,     0,  -298,
+       1,     2,   207,     4,     5,     6,     7,     8,     9,    10,
       11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
       21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
-      29,    30,     0,     0,     0,     0,     0,     0,     0,    33,
+      29,    30,    31,     0,    46,     0,    32,     0,     0,    33,
+      47,    48,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,    36,     0,    37,
+       0,    38,     0,     0,    40,    41,   206,     2,   207,     4,
+       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
+      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
+      25,    26,    27,     0,     0,    28,    29,    30,     0,     0,
+       0,     0,     0,    46,     0,    33,     0,     0,     0,    47,
+      48,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,    36,     0,    37,     0,    38,     0,     0,
+     208,    41,     2,   207,     4,     5,     6,     7,     8,     9,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,     0,     0,
+      28,    29,    30,     0,     0,     0,     0,     0,     0,   209,
+      33,     0,     0,     0,     0,    47,    48,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,    36,     0,
+      37,     0,    38,    39,     0,   208,    41,    42,     0,     0,
+       0,     0,     0,     0,     0,     0,    43,    44,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,    36,     0,    37,
-       0,    38,     0,     0,    40,    41,     2,   207,     4,     5,
-       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
+       0,     0,    45,     0,   209,     0,     0,     0,     0,     0,
+      47,    48,     2,   207,     4,     5,     6,     7,     8,     9,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,     0,     0,
+      28,    29,    30,     0,     0,     0,     0,     0,     0,     0,
+      33,     0,     8,     9,    10,    11,    12,    13,    14,    15,
       16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,     0,     0,    28,    29,    30,     0,     0,     0,
-       0,     0,  -407,   671,    33,     0,     0,     0,     0,    47,
-      48,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+      26,    27,     0,     0,    28,    29,    30,     0,    36,     0,
+      37,     0,    38,     0,    33,    40,    41,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,    36,     0,    37,     0,    38,     0,     0,    40,
-      41,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,  1340,
+       0,     0,    36,     0,     0,     0,     0,     0,     0,    40,
+      41,     0,     0,     0,   671,     0,     0,     0,     0,     0,
+      47,    48,     2,   207,     4,     5,     6,     7,     8,     9,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,   258,     0,
+      28,    29,    30,     0,    47,    48,     0,     0,     0,     0,
+      33,     0,     8,     9,    10,    11,    12,    13,    14,    15,
+      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
+      26,    27,     0,     0,    28,    29,    30,     0,    36,     0,
+      37,     0,    38,     0,    33,    40,    41,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,  1335,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,   671,     0,
-       0,     0,     0,     0,    47,    48,     2,   207,     4,     5,
-       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
-      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,     0,     0,    28,    29,    30,     0,     0,     0,
-       0,     0,     0,     0,    33,     0,     8,     9,    10,    11,
-      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
-      22,    23,    24,    25,    26,    27,     0,     0,    28,    29,
-      30,     0,    36,     0,    37,     0,    38,     0,    33,    40,
-      41,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,  1342,
+       0,     0,    36,     0,     0,     0,     0,     0,     0,    40,
+      41,     0,     0,     0,   671,     0,     0,     0,     0,     0,
+      47,    48,     2,   207,     4,     5,     6,     7,     8,     9,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,    46,     0,
+      28,    29,    30,     0,    47,    48,     0,     0,     0,     0,
+      33,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,  1337,     0,     0,    36,     0,     0,     0,
-       0,     0,     0,    40,    41,     0,     0,     0,   671,     0,
-       0,     0,     0,     0,    47,    48,     2,   207,     4,     5,
-       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
-      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,    46,     0,    28,    29,    30,     0,    47,    48,
-       0,     0,     0,     0,    33,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,    36,     0,
+      37,     0,    38,     0,     0,   208,    41,     2,   207,     4,
+       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
+      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
+      25,    26,    27,     0,     0,    28,    29,    30,     0,     0,
+       0,     0,     0,     0,   271,    33,     0,     0,     0,     0,
+      47,    48,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,    36,     0,    37,     0,    38,     0,     0,
+      40,    41,     2,   207,     4,     5,     6,     7,     8,     9,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,     0,     0,
+      28,    29,    30,     0,     0,     0,     0,     0,     0,   671,
+      33,     0,     0,     0,     0,    47,    48,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,    36,     0,    37,     0,    38,     0,     0,   208,
-      41,     2,   207,     4,     5,     6,     7,     8,     9,    10,
+       0,     0,     0,     0,     0,     0,     0,     0,    36,     0,
+      37,     0,    38,     0,     0,   208,    41,     8,     9,    10,
       11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
       21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
-      29,    30,     0,     0,     0,     0,     0,     0,   271,    33,
-       0,     0,     0,     0,    47,    48,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,    36,     0,    37,
-       0,    38,     0,     0,    40,    41,     2,   207,     4,     5,
-       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
-      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,     0,     0,    28,    29,    30,     0,     0,     0,
-       0,     0,     0,   671,    33,     0,     0,     0,     0,    47,
-      48,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,    36,     0,    37,     0,    38,     0,     0,   208,
-      41,     8,     9,    10,    11,    12,    13,    14,    15,    16,
-      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
-      27,     0,     0,    28,    29,    30,     0,     0,     0,     0,
-       0,   283,   284,    33,   285,     0,     0,     0,   209,     0,
-       0,     0,     0,     0,    47,    48,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-     286,    36,     0,     0,     0,     0,   287,     0,    40,    41,
-     288,     0,     0,   289,   290,   291,   292,   293,   294,    43,
-      44,     0,   295,   296,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,   297,     0,   516,     0,     0,
-     172,     0,     0,    47,    48,   299,   300,   301,   302,     8,
-       9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
-      19,    20,    21,    22,    23,    24,    25,    26,    27,     0,
-       0,    28,    29,    30,     0,     0,     0,     0,     0,   283,
-     284,    33,   285,     8,     9,    10,    11,    12,    13,    14,
-      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
-      25,    26,    27,     0,     0,    28,    29,    30,   286,    36,
-       0,     0,     0,     0,   287,    33,    40,    41,   288,     0,
-       0,   289,   290,   291,   292,   293,   294,    43,    44,     0,
-     295,   296,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,    36,     0,     0,     0,     0,     0,     0,
-     208,    41,     0,   297,   -40,   298,     0,     0,     0,     0,
-       0,    47,    48,   299,   300,   301,   302,     8,     9,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
-      29,    30,     0,     0,     0,    47,    48,   283,   284,    33,
-     285,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+      29,    30,     0,     0,     0,     0,     0,   283,   284,    33,
+     285,     0,     0,     0,   209,     0,     0,     0,     0,     0,
+      47,    48,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,   286,    36,     0,     0,
        0,     0,   287,     0,    40,    41,   288,     0,     0,   289,
@@ -2646,21 +2650,21 @@
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,   297,     0,   298,     0,     0,     0,     0,     0,    47,
+       0,   297,     0,   516,     0,     0,   172,     0,     0,    47,
       48,   299,   300,   301,   302,     8,     9,    10,    11,    12,
       13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
       23,    24,    25,    26,    27,     0,     0,    28,    29,    30,
-       0,     0,     0,     0,     0,   283,   284,    33,   285,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,   286,    36,     0,     0,     0,     0,
-     287,     0,    40,    41,   288,     0,     0,   289,   290,   291,
+       0,     0,     0,     0,     0,   283,   284,    33,   285,     8,
+       9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
+      19,    20,    21,    22,    23,    24,    25,    26,    27,     0,
+       0,    28,    29,    30,   286,    36,     0,     0,     0,     0,
+     287,    33,    40,    41,   288,     0,     0,   289,   290,   291,
      292,   293,   294,    43,    44,     0,   295,   296,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,   297,
-       0,   343,     0,     0,     0,     0,     0,    47,    48,   299,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,    36,
+       0,     0,     0,     0,     0,     0,   208,    41,     0,   297,
+     -40,   298,     0,     0,     0,     0,     0,    47,    48,   299,
      300,   301,   302,     8,     9,    10,    11,    12,    13,    14,
       15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
       25,    26,    27,     0,     0,    28,    29,    30,     0,     0,
-       0,     0,     0,   283,   284,    33,   285,     0,     0,     0,
+       0,    47,    48,   283,   284,    33,   285,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
@@ -2669,124 +2673,125 @@
      294,    43,    44,     0,   295,   296,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,   297,     0,   378,
+       0,     0,     0,     0,     0,     0,     0,   297,     0,   298,
        0,     0,     0,     0,     0,    47,    48,   299,   300,   301,
-     302,   465,     2,   207,     4,     5,     6,     7,     8,     9,
-      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
-      20,    21,    22,    23,    24,    25,    26,    27,     0,     0,
-      28,    29,    30,     0,     0,     0,     0,     0,     0,     0,
-      33,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+     302,     8,     9,    10,    11,    12,    13,    14,    15,    16,
       17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
-      27,     0,     0,    28,    29,    30,     0,     0,    36,     0,
-      37,     0,    38,    33,   678,    40,    41,     0,     0,     0,
+      27,     0,     0,    28,    29,    30,     0,     0,     0,     0,
+       0,   283,   284,    33,   285,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+     286,    36,     0,     0,     0,     0,   287,     0,    40,    41,
+     288,     0,     0,   289,   290,   291,   292,   293,   294,    43,
+      44,     0,   295,   296,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,   297,     0,   343,     0,     0,
+       0,     0,     0,    47,    48,   299,   300,   301,   302,     8,
+       9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
+      19,    20,    21,    22,    23,    24,    25,    26,    27,     0,
+       0,    28,    29,    30,     0,     0,     0,     0,     0,   283,
+     284,    33,   285,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,   286,    36,
+       0,     0,     0,     0,   287,     0,    40,    41,   288,     0,
+       0,   289,   290,   291,   292,   293,   294,    43,    44,     0,
+     295,   296,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,   297,     0,   378,     0,     0,     0,     0,
+       0,    47,    48,   299,   300,   301,   302,     8,     9,    10,
+      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
+      21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
+      29,    30,     0,     0,     0,     0,     0,     0,     0,    33,
+       0,     0,     0,     0,     0,     0,     0,     8,     9,    10,
+      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
+      21,    22,    23,    24,    25,    26,    27,    36,     0,    28,
+      29,    30,    39,     0,    40,    41,    42,     0,     0,    33,
+       0,     0,     0,     0,     0,    43,    44,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,    36,     0,     0,
+       0,    45,    39,    46,   208,    41,    42,     0,     0,    47,
+      48,     0,     0,     0,     0,    43,    44,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,    45,     0,   271,     0,     0,     0,     0,     0,    47,
+      48,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
+      27,     0,     0,    28,    29,    30,     0,     0,     0,     0,
+       0,     0,     0,    33,   678,     0,     0,     0,     0,     0,
        0,     8,     9,    10,    11,    12,    13,    14,    15,    16,
       17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
       27,    36,     0,    28,    29,    30,     0,     0,    40,    41,
-       0,     0,     0,    33,   678,     0,     0,    -3,     0,     0,
+       0,     0,     0,    33,   678,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,    36,     0,     0,     0,     0,     0,   679,    40,    41,
-       0,   680,     0,    47,    48,     0,     8,     9,    10,    11,
+       0,  1078,     0,    47,    48,     0,     8,     9,    10,    11,
       12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
       22,    23,    24,    25,    26,    27,     0,     0,    28,    29,
-      30,     0,     0,     0,     0,     0,     0,   679,    33,   678,
-       0,  1073,     0,    47,    48,     0,     8,     9,    10,    11,
+      30,     0,     0,     0,     0,     0,     0,   679,    33,     0,
+       0,  1205,     0,    47,    48,     0,     8,     9,    10,    11,
       12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
       22,    23,    24,    25,    26,    27,    36,     0,    28,    29,
-      30,     0,     0,    40,    41,     0,     0,     0,    33,     8,
+      30,     0,     0,   208,    41,     0,     0,     0,    33,     8,
        9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
       19,    20,    21,    22,    23,    24,    25,    26,    27,     0,
        0,    28,    29,    30,     0,     0,    36,     0,     0,     0,
-       0,    33,   679,   208,    41,     0,  1200,     0,    47,    48,
+       0,    33,   271,    40,    41,     0,     0,     0,    47,    48,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,    36,
        0,     0,     0,     0,     0,     0,    40,    41,     0,     0,
-       0,     0,   271,     0,     0,     0,     0,     0,    47,    48,
+       0,     0,   339,     0,     0,     0,     0,     0,    47,    48,
        0,     0,     0,     0,     8,     9,    10,    11,    12,    13,
       14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
-      24,    25,    26,    27,     0,   339,    28,    29,    30,     0,
-       0,    47,    48,     0,     0,     0,    33,     8,     9,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
-      29,    30,     0,     0,    36,     0,     0,     0,     0,    33,
-       0,    40,    41,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,    36,     0,     0,
-       0,     0,     0,     0,    40,    41,     0,     0,     0,     0,
-     679,     0,     0,     0,     0,     0,    47,    48,     0,     0,
+      24,    25,    26,    27,     0,   679,    28,    29,    30,     0,
+       0,    47,    48,     0,     0,     0,    33,     0,     2,   207,
+       4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
+      14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
+      24,    25,    26,    27,    36,     0,    28,    29,    30,     0,
+       0,    40,    41,     0,     0,     0,    33,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,   671,     0,     0,     0,     0,     0,    47,
-      48,     2,   207,     4,     5,     6,     7,     8,     9,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
-      29,    30,     0,     0,     0,     0,     0,     0,     0,    33,
-       0,   283,   284,     0,   285,  1024,     0,  1025,     0,     0,
-    1026,  1027,  1028,  1029,  1030,  1031,  1032,  1033,     0,     0,
-    1511,  1034,     0,     0,     0,  1035,  1036,    36,    35,    37,
-     286,    38,     0,     0,    40,    41,  1037,     0,     0,     0,
-     288,     0,     0,   289,   290,   291,   292,   293,   294,    43,
-      44,     0,   295,   296,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,    36,     0,    37,     0,    38,     0,
+     671,    40,    41,     0,     0,     0,    47,    48,   283,   284,
+       0,   285,  1023,     0,  1024,     0,     0,  1025,  1026,  1027,
+    1028,  1029,  1030,  1031,  1032,     0,     0,     0,  1033,     0,
+       0,     0,  1034,  1035,     0,    35,     0,   286,     0,  -420,
+       0,     0,     0,  1036,     0,   175,   176,  1039,     0,     0,
+     289,   290,   291,   292,   293,   294,    43,    44,     0,   295,
+     296,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,  -420,     0,     0,   297,     0,   378,     0,     0,
-     172,     0,     0,    47,    48,   299,   300,   301,   302,     0,
-       0,   283,   284,  1038,   285,  1024,     0,  1025,  -134,     0,
-    1026,  1027,  1028,  1029,  1030,  1031,  1032,  1033,     0,     0,
-       0,  1034,     0,     0,     0,  1035,  1036,     0,    35,     0,
-     286,     0,     0,     0,     0,     0,  1037,     0,     0,     0,
-     288,     0,     0,   289,   290,   291,   292,   293,   294,    43,
-      44,     0,   295,   296,     0,     0,     0,     0,     0,     0,
+       0,     0,   297,     0,   378,     0,     0,   172,     0,     0,
+      47,    48,   299,   300,   301,   302,     0,     0,     0,     0,
+    1040,     0,     0,     0,     0,  -134,     2,   207,     4,     5,
+       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
+      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
+      26,    27,     0,     0,    28,    29,    30,     0,     0,     0,
+       0,     0,     0,     0,    33,     0,   283,   284,     0,   285,
+    1023,     0,  1024,  1388,  1389,  1025,  1026,  1027,  1028,  1029,
+    1030,  1031,  1032,     0,     0,  1516,  1033,     0,     0,     0,
+    1034,  1035,    36,    35,    37,   286,    38,     0,     0,    40,
+      41,  1036,     0,   175,   176,  1039,     0,     0,   289,   290,
+     291,   292,   293,   294,    43,    44,     0,   295,   296,     0,
+       0,     0,     0,  1299,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,   297,     0,   378,     0,     0,
-     172,     0,     0,    47,    48,   299,   300,   301,   302,     0,
-       0,     0,     0,  1038,     0,     0,     0,     0,  -134,     2,
-     207,     4,     5,     6,     7,     8,     9,    10,    11,    12,
-      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
-      23,    24,    25,    26,    27,     0,     0,    28,    29,    30,
-       0,     0,     0,     0,     0,     0,     0,    33,     0,   283,
-     284,     0,   285,  1024,     0,  1025,  1383,  1384,  1026,  1027,
-    1028,  1029,  1030,  1031,  1032,  1033,     0,     0,  1511,  1034,
-       0,     0,     0,  1035,  1036,    36,    35,    37,   286,    38,
-       0,     0,    40,    41,  1037,     0,     0,     0,   288,     0,
-       0,   289,   290,   291,   292,   293,   294,    43,    44,     0,
-     295,   296,     0,     0,     0,     0,  1294,     0,     0,     0,
+     297,     0,   378,     0,     0,   172,     0,     0,    47,    48,
+     299,   300,   301,   302,     0,     0,   283,   284,  1040,   285,
+    1023,     0,  1024,  1388,  1389,  1025,  1026,  1027,  1028,  1029,
+    1030,  1031,  1032,     0,     0,     0,  1033,     0,     0,     0,
+    1034,  1035,     0,    35,     0,   286,     0,     0,     0,     0,
+       0,  1036,     0,   175,   176,  1039,     0,     0,   289,   290,
+     291,   292,   293,   294,    43,    44,     0,   295,   296,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,   297,     0,   378,     0,     0,   172,     0,
-       0,    47,    48,   299,   300,   301,   302,     0,     0,   283,
-     284,  1038,   285,  1024,     0,  1025,  1383,  1384,  1026,  1027,
-    1028,  1029,  1030,  1031,  1032,  1033,     0,     0,     0,  1034,
-       0,     0,     0,  1035,  1036,     0,    35,     0,   286,     0,
-       0,     0,     0,     0,  1037,     0,     0,     0,   288,     0,
-       0,   289,   290,   291,   292,   293,   294,    43,    44,     0,
-     295,   296,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,   297,     0,   378,     0,     0,   172,     0,
-       0,    47,    48,   299,   300,   301,   302,     0,     0,   283,
-     284,  1038,   285,  1024,     0,  1025,     0,     0,  1026,  1027,
-    1028,  1029,  1030,  1031,  1032,  1033,     0,     0,     0,  1034,
-       0,     0,     0,  1035,  1036,     0,    35,     0,   286,     0,
-       0,     0,     0,     0,  1037,     0,     0,     0,   288,     0,
-       0,   289,   290,   291,   292,   293,   294,    43,    44,     0,
-     295,   296,     0,     0,     0,     0,     0,     0,   283,   284,
-       0,   285,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,   297,     0,   378,     0,     0,   172,     0,
-       0,    47,    48,   299,   300,   301,   302,   286,     0,     0,
-       0,  1038,     0,   287,     0,     0,     0,   288,     0,     0,
-     289,   290,   291,   292,   293,   294,    43,    44,     0,   295,
-     296,     0,     0,     0,     0,     0,     0,   283,   284,     0,
-     285,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,   297,     0,   378,     0,     0,   959,     0,     0,
-      47,    48,   299,   300,   301,   302,   286,     0,     0,     0,
-       0,     0,   287,     0,     0,     0,   288,     0,     0,   289,
-     290,   291,   292,   293,   294,    43,    44,     0,   295,   296,
-       0,     0,     0,     0,     0,     0,   283,   284,     0,   285,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,   297,     0,   378,     0,     0,     0,     0,     0,    47,
-      48,   299,   300,   301,   302,   286,     0,     0,     0,     0,
-       0,   287,     0,     0,     0,   288,     0,     0,   289,   290,
+     297,     0,   378,     0,     0,   172,     0,     0,    47,    48,
+     299,   300,   301,   302,     0,     0,   283,   284,  1040,   285,
+    1023,     0,  1024,     0,     0,  1025,  1026,  1027,  1028,  1029,
+    1030,  1031,  1032,     0,     0,     0,  1033,     0,     0,     0,
+    1034,  1035,     0,    35,     0,   286,     0,     0,     0,     0,
+       0,  1036,     0,   175,   176,  1039,     0,     0,   289,   290,
      291,   292,   293,   294,    43,    44,     0,   295,   296,     0,
        0,     0,     0,     0,     0,   283,   284,     0,   285,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-     505,     0,   378,     0,     0,     0,     0,     0,    47,    48,
-     299,   300,   301,   302,   286,     0,     0,     0,     0,     0,
+     297,     0,   378,     0,     0,   172,     0,     0,    47,    48,
+     299,   300,   301,   302,   286,     0,     0,     0,  1040,     0,
      287,     0,     0,     0,   288,     0,     0,   289,   290,   291,
      292,   293,   294,    43,    44,     0,   295,   296,     0,     0,
@@ -2812,43 +2817,41 @@
        0,     0,     0,     0,     0,     0,   297,     0,   378,     0,
        0,     0,     0,     0,   344,    48,   299,   300,   301,   302,
+       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
+      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
+       0,     0,    28,    29,    30,     0,     0,     0,     0,     0,
+       0,     0,    33,   206,     2,   207,     4,     5,     6,     7,
+       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
+      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
+      36,     0,    28,    29,    30,   112,     0,    40,    41,     0,
+       0,     0,    33,     0,     0,     0,     0,     0,    43,    44,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+      36,     0,    37,     0,    38,     0,     0,   208,    41,   465,
        2,   207,     4,     5,     6,     7,     8,     9,    10,    11,
       12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
-      22,    23,    24,    25,    26,    27,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,    33,     0,
+      22,    23,    24,    25,    26,    27,     0,     0,    28,    29,
+      30,     0,     0,     0,     0,     0,     0,     0,    33,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,    36,     0,    37,     0,
+      38,     0,     0,    40,    41,     2,   207,     4,     5,     6,
+       7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
+      27,     0,     0,    28,    29,    30,     0,     0,     0,     0,
+       0,     0,     0,    33,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
+       0,    36,     0,    37,     0,    38,     0,     0,   208,    41,
        8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
       18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
-       0,     0,    28,    29,    30,     0,    36,     0,    37,     0,
-      38,    39,    33,   175,   176,    42,     0,     0,     0,     0,
-       0,     0,     0,     0,    43,    44,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-      36,     0,     0,     0,     0,   112,     0,    40,    41,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,    43,    44,
-     206,     2,   207,     4,     5,     6,     7,     8,     9,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,     0,     0,    28,
-      29,    30,     0,     0,     0,     0,     0,     0,     0,    33,
+       0,     0,    28,    29,    30,   483,   484,   485,   486,     0,
+       0,     0,    33,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,    36,     0,    37,
-       0,    38,     0,     0,   208,    41,   465,     2,   207,     4,
-       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
-      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
-      25,    26,    27,     0,     0,    28,    29,    30,     0,     0,
-       0,     0,     0,     0,     0,    33,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,    36,     0,    37,     0,    38,     0,     0,
-      40,    41,     2,   207,     4,     5,     6,     7,     8,     9,
-      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
-      20,    21,    22,    23,    24,    25,    26,    27,     0,     0,
-      28,    29,    30,     0,     0,     0,     0,     0,     0,     0,
-      33,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
-       0,     0,     0,     0,     0,     0,     0,     0,    36,     0,
-      37,     0,    38,     0,     0,   208,    41
+      36,     0,     0,     0,     0,     0,     0,    40,    41
 };
 
 #define yypact_value_is_default(yystate) \
-  ((yystate) == (-1263))
+  ((yystate) == (-1328))
 
 #define yytable_value_is_error(yytable_value) \
@@ -2857,640 +2860,663 @@
 static const yytype_int16 yycheck[] =
 {
-       0,     1,    45,   118,    45,   240,   520,     0,   186,    45,
-     533,   512,   186,   186,   863,   205,   640,   220,   186,   107,
-       1,   743,   569,   743,   186,   743,   186,     0,   863,   169,
-     170,   616,   349,     0,    34,   598,    34,   257,   188,   596,
-       0,    34,   186,  1023,   491,    45,  1005,  1006,   495,   349,
-     282,    51,   596,   598,   686,     0,     1,    45,    51,  1304,
-     187,    34,  1006,    45,   596,    65,    45,    34,    68,   157,
-     728,    71,    65,   364,    34,    68,   596,   368,    71,   114,
-    1035,  1036,   689,   596,   121,    45,   187,   202,   266,    34,
-      71,    51,   266,   266,    84,    42,     0,   417,   266,   596,
-     137,   136,   114,    59,   266,    65,   266,   107,    68,    42,
-     596,    71,   262,   263,   297,   115,   436,   600,   118,   119,
-     631,   604,   266,    68,   444,    66,    71,   969,    30,     0,
-      34,    54,    47,    48,   114,   646,    47,    48,     0,     1,
-     267,   599,   625,   186,     0,   186,   629,   605,   148,   149,
-     186,   345,   108,  1113,  1109,   111,   149,   157,   158,  1404,
-    1383,   161,    42,    34,   630,   631,   267,   681,   161,   116,
-     487,   893,    34,   893,  1016,   893,  1438,    11,    34,    81,
-     646,   425,   426,    47,    48,   114,   186,   187,  1023,   149,
-      67,   114,   712,   704,   187,   112,   137,   417,   186,   712,
-     108,   161,   202,   111,   186,   120,   409,   186,   119,    71,
-     210,  1473,    68,  1475,   100,   712,   436,   210,   114,   136,
-     116,    75,   222,   266,   444,   266,   186,   187,   117,   222,
-     266,  1097,   480,  1456,   114,  1101,   116,   114,   704,   786,
-     240,    32,   425,   426,   462,   802,    42,    42,   134,   493,
-     210,   814,   252,   341,   252,   119,    75,   889,   802,   252,
-     260,  1205,   222,   219,    84,   265,   266,   267,   512,   814,
-     802,   503,   272,  1233,   267,  1235,  1236,   222,   405,   252,
-     395,    75,   802,   137,   257,   252,   480,   894,   912,   802,
-      51,  1271,   252,    84,    85,   586,   116,   297,   598,  1258,
-    1259,    42,  1488,   122,   405,   802,   266,   252,   423,    90,
-     310,   219,   119,   101,   429,  1259,   802,   273,   114,   114,
-     116,   116,   505,   898,   280,   900,   326,   510,    42,  1515,
-     513,   331,   576,   940,   121,   101,   627,   118,   331,   127,
-    1488,   341,  1191,   137,   133,   345,   804,   136,   252,   349,
-     350,   478,     3,   836,   115,   675,  1191,   121,   921,   115,
-    1508,   127,   121,   920,   364,   273,   222,  1515,   368,   114,
-     115,   331,   280,   114,  1032,   116,   920,   478,   137,   135,
-      75,   252,   630,   631,   567,  1459,   257,   148,   920,   349,
-     252,  1465,   348,    88,    89,   395,   252,   115,   646,   984,
-     114,    75,   116,    77,    78,   405,     0,   285,   121,   365,
-     115,  1485,   405,   369,    88,    89,  1490,   135,   229,   114,
-    1379,   116,   616,   423,   137,   425,   426,   621,   660,   429,
-     135,   431,   310,   311,   121,  1379,  1271,   248,  1387,   124,
-     125,   955,   116,   926,   417,   405,   664,  1427,   121,   210,
-     137,   121,   452,   244,  1434,   675,   704,   365,   116,   121,
-     118,   369,    75,   436,   137,   135,   967,   345,    93,    94,
-     470,   444,  1314,   135,   121,    88,    89,   135,   478,   240,
-     480,   701,   482,   930,  1108,   478,   114,   487,   116,   482,
-     137,   739,  1099,   493,   350,     3,   114,   814,   116,   731,
-     650,   641,   380,   116,   795,   505,  1486,   507,     0,   482,
-     510,   272,   512,   513,   814,   482,   121,   115,  1081,   114,
-     520,   116,   482,   121,   524,    95,    96,   487,   121,  1371,
-    1372,   121,   137,   648,  1483,   993,   994,   482,   114,  1488,
-     116,   121,    75,   114,   137,   739,   417,   137,   121,   310,
-     114,  1158,  1159,  1067,   681,    88,    89,   137,  1072,  1508,
-     130,   131,   135,   121,   782,   436,  1515,   117,   568,   569,
-     136,   121,   114,   444,   792,   121,   576,   121,   482,   137,
-     681,   121,   114,   116,   345,   803,   586,   587,   379,   115,
-     590,   137,  1427,   137,   114,   121,   596,   137,   598,  1434,
-       4,     5,     6,     7,     8,     9,     0,     1,   925,   480,
-     117,   482,   114,  1271,   121,   471,   616,   114,   122,    75,
-     482,   621,   115,   623,   128,   129,   482,   627,   121,   115,
-     630,   631,    88,    89,   115,   121,   596,   115,   598,    75,
-      34,    77,    78,    79,   892,   117,   646,   850,   648,   121,
-     115,  1486,    88,    89,    10,    11,    12,    13,    14,   120,
-     115,   617,   115,   115,   425,   426,   121,   870,    72,   121,
-      74,   549,   550,   551,    68,   117,   632,    71,   678,   121,
-      75,   681,   114,   587,   116,   115,    42,    82,  1346,   645,
-      85,   121,    87,    88,    89,     0,     1,   932,   892,   490,
-     115,   492,   675,   117,   704,   705,   706,   121,   114,   617,
-     116,   114,   712,   713,    70,   893,   856,   115,   115,   893,
-     893,   681,   114,   121,   632,   893,    31,    32,   701,    34,
-     115,   893,   493,   893,    84,   115,   121,   645,   114,   739,
-      45,   121,   115,   743,   744,   114,    51,   116,   121,   893,
-     115,   512,   712,   713,    59,   115,   121,  1005,   137,  1366,
-      65,   121,   618,    68,   158,  1288,    71,   114,   895,   116,
-    1492,   727,  1492,  1431,  1492,  1433,  1383,   115,   114,    84,
-      85,   115,   115,   121,  1002,  1003,   786,   121,   121,   114,
-     984,   114,   115,   116,   895,   795,    75,   797,    77,    78,
-      79,    67,   802,   108,   675,   115,   111,   997,   137,    88,
-      89,   121,   115,   118,   814,   576,    97,    98,   121,   727,
-      51,     4,     5,     6,     7,     8,     9,   115,   222,  1487,
-     701,   120,   121,   121,   119,   114,   692,   115,   116,  1057,
-    1058,   137,   802,   119,   149,   636,    61,    62,  1455,  1456,
-     706,   137,    35,   114,   814,   616,   161,   119,   252,   505,
-     621,   507,    75,   863,   510,  1097,    79,   513,   739,  1101,
-    1102,   114,   750,   120,   121,    88,    89,   114,  1018,    84,
-    1128,   186,   187,   123,   115,   885,    47,    48,     1,    72,
-     863,    74,   892,   893,   685,   895,   687,   202,  1114,  1115,
-     691,   114,   132,   116,   133,   210,    99,   907,   116,   122,
-     123,   552,   553,    75,   219,    77,    78,   222,   863,   117,
-     920,   921,   554,   555,   229,   925,    88,    89,   114,   117,
-     116,   931,   932,   893,  1128,   895,   122,   123,   115,   244,
-    1067,   797,   115,   248,   115,  1072,   115,   252,   253,   115,
-     931,   115,   114,   116,  1468,   955,   114,   119,   117,   863,
-     136,   266,   267,   560,   561,   925,  1067,   119,   273,   119,
-     121,  1072,   119,   114,  1089,   280,   114,   115,   116,   210,
-     136,   885,   115,  1215,   984,  1203,   931,   115,  1171,  1172,
-     117,  1174,   863,   556,   557,   558,   559,   117,  1181,   117,
-    1183,   863,   121,  1517,   135,  1005,  1006,   863,    31,   135,
-    1258,  1205,   114,   115,   116,     4,     5,     6,     7,     8,
-       9,   892,  1240,  1023,   135,    75,   331,    77,    78,  1247,
-    1248,  1249,    75,   115,    77,    78,   115,   431,    88,    89,
-     114,   272,   116,   348,   349,    88,    89,     3,   122,   123,
-    1023,   114,   115,   116,    10,    11,    12,    13,    14,   119,
-     365,   120,  1062,   115,   369,   856,   297,  1067,   121,   931,
-     114,   862,  1072,  1305,   379,   120,   119,  1309,  1023,   310,
-     120,  1081,   115,    72,   135,    74,    42,   115,   482,  1089,
-     395,   137,  1310,    61,    62,    63,   121,     1,   462,   115,
-     405,   114,    75,   116,    77,    78,   984,  1067,   115,   122,
-     123,   902,  1072,   121,    70,    88,    89,   115,   423,  1023,
-     115,   115,   115,   115,   429,     3,    31,   115,  1128,   115,
-     524,   987,    10,    11,    12,    13,    14,   115,   115,   115,
-     253,   114,   121,    75,   115,  1023,   119,    51,   137,    68,
-      82,   115,  1023,    85,   115,    87,    88,    89,   115,  1342,
-     465,  1023,   120,   115,    42,   470,   136,  1023,   959,  1169,
-    1170,   932,   135,   478,   115,    72,  1408,   482,    75,   117,
-     117,    78,   487,    80,   116,   490,   115,   492,   115,  1170,
-      87,  1191,    70,   587,    75,   121,    77,    78,    79,   115,
-     119,   135,   114,   107,   121,  1205,     3,    88,    89,  1209,
-     119,   115,   115,    10,    11,    12,    13,    14,  1191,    75,
-     115,   452,   527,   984,  1169,  1170,    82,   532,  1209,    85,
-     115,    87,    88,    89,   121,   115,   630,   631,   115,   121,
-     115,   135,   161,   114,   148,    42,  1191,  1362,   121,   114,
-     114,   114,   646,   157,   114,   117,   115,  1128,  1258,  1259,
-     116,   137,  1053,   120,  1209,   115,  1266,  1502,   120,   115,
-     119,  1271,   133,    70,   505,   580,   507,   863,   120,   510,
-     115,   117,   513,   137,   121,   117,   115,  1191,   115,   117,
-      50,   596,   117,   598,   117,   115,   117,   137,  1271,   117,
-     664,   117,   206,   222,  1304,   115,   210,   137,  1170,   120,
-     704,   137,   617,  1169,  1492,   137,   213,   120,  1492,  1492,
-    1191,  1266,   137,  1304,  1492,   115,  1271,   632,   135,  1191,
-    1492,   636,  1492,   120,  1205,  1191,   240,   117,    86,   117,
-     645,   260,   647,   648,   649,    86,   265,  1209,  1492,    90,
-      91,    92,   465,  1468,   117,   117,   117,   115,   117,  1304,
-     115,   117,  1362,   114,   114,   114,  1493,  1271,   272,    63,
-     115,   275,   115,   114,  1165,   116,   681,   118,   119,  1379,
-     685,   119,   687,   280,   114,    75,   691,    77,    78,    79,
-    1517,   137,  1493,   297,   699,   117,   117,   115,    88,    89,
-    1271,   117,   115,   101,  1404,  1361,   310,   712,   713,  1271,
-    1266,   114,   101,   114,   527,  1271,  1517,   137,   782,   532,
-     120,    45,   727,  1404,   114,   121,   116,  1427,   792,   115,
-     115,   350,   122,   123,  1434,   115,  1436,   341,  1438,   803,
-    1026,   345,  1304,   115,   135,   135,   115,   678,   115,  1492,
-     137,  1492,   101,  1361,  1427,   352,  1492,   354,   137,  1404,
-     364,  1434,   101,    57,   368,   664,    86,   580,  1468,   863,
-      90,    91,    92,  1473,   137,  1475,   137,   115,     0,     1,
-     115,   117,  1427,   137,   115,   115,  1486,   120,   117,  1434,
-     117,   885,  1492,  1493,   114,   137,   116,   802,   118,   119,
-    1493,   114,  1502,   137,   120,    99,    75,   115,   120,   814,
-      79,   430,    34,  1486,   115,   137,   115,  1517,   115,    88,
-      89,   425,   426,  1427,  1517,  1038,   562,   564,   563,    51,
-    1434,   565,  1492,   964,   647,   566,   649,   931,  1191,  1348,
-    1456,  1486,  1404,   440,  1527,   114,  1281,  1102,   452,    71,
-       0,   856,   471,   122,   123,  1309,  1427,   862,  1434,  1053,
-    1072,   465,   678,  1434,   678,  1427,   691,   908,   900,   580,
-     959,  1427,  1434,   856,   642,   928,   716,   568,  1434,  1209,
-     482,   727,  1486,   782,    34,   107,   699,   491,   893,   493,
-     895,   495,    -1,   792,   568,    -1,   568,   902,    -1,    -1,
-     194,   505,    -1,   507,   803,  1191,   510,    -1,   512,   513,
-      -1,  1005,  1006,    -1,    -1,  1486,    -1,    -1,    -1,    -1,
-     925,    71,    -1,   217,  1486,    -1,    -1,   149,    -1,  1023,
-    1486,    -1,    -1,   227,    -1,   157,   158,    -1,  1002,  1003,
-      -1,   946,    -1,    -1,    -1,    75,    10,    11,    12,    13,
-      14,    -1,    82,    -1,   959,    85,    -1,    87,    88,    89,
-     965,    -1,    -1,    -1,   969,   187,    -1,    -1,    -1,    -1,
-      -1,   590,   576,    -1,    -1,    -1,   907,    -1,    42,    -1,
-     202,    -1,   586,   205,   206,    -1,   116,   689,   210,    -1,
-      -1,    -1,    -1,  1057,  1058,    -1,    -1,    -1,    -1,   618,
-      -1,  1287,    -1,   297,   623,    -1,    70,    -1,   158,   231,
-      -1,  1016,   616,   235,    -1,   237,    -1,   621,    -1,    -1,
-      -1,    -1,    -1,   627,   246,    -1,    -1,    -1,    -1,    -1,
-     252,    -1,    -1,    -1,    -1,   257,    -1,    -1,    -1,    -1,
-      -1,  1502,    -1,    -1,    -1,   267,    -1,    -1,  1053,    -1,
-     114,    75,   116,   275,  1340,    79,    -1,  1343,   122,   123,
-      -1,    -1,  1067,    -1,    88,    89,    75,  1072,    77,    78,
-      79,    -1,    -1,   692,   678,  1169,  1170,    -1,   780,    88,
-      89,   231,    -1,    -1,  1089,    -1,    -1,   706,   190,    -1,
-     114,    -1,    -1,    -1,    -1,   197,    -1,  1191,   122,   123,
-      -1,  1387,   252,  1002,  1003,   114,  1392,   257,  1113,    -1,
-      -1,    -1,   716,   122,   123,  1209,    -1,    -1,    -1,   341,
-      -1,    -1,    -1,   345,    75,    -1,    77,    78,    79,   351,
-     727,  1062,    -1,   946,    -1,  1421,    -1,    88,    89,  1203,
-      -1,    -1,   364,    -1,    -1,    -1,   368,   441,    -1,    -1,
-     852,    -1,   965,    -1,    51,    -1,   969,    -1,  1057,  1058,
-    1165,    68,    -1,   114,  1258,  1259,    -1,   269,    65,    -1,
-      77,    68,  1266,   467,    71,    -1,  1240,  1271,   797,    -1,
-      -1,    -1,    -1,  1247,  1248,  1249,    75,    -1,    77,    78,
-      79,   795,   894,    -1,    -1,   417,    -1,    -1,    -1,    88,
-      89,   351,    -1,  1016,    -1,    -1,    -1,    -1,    -1,   431,
-    1304,   505,   119,    -1,   436,    -1,   510,    -1,    -1,   513,
-    1506,    -1,   444,    -1,   326,   114,  1512,   116,  1233,    -1,
-    1235,  1236,   334,   122,   123,   337,    -1,  1523,   940,    -1,
-     462,  1527,    -1,   465,    -1,    -1,  1310,    -1,    -1,    -1,
-      -1,    -1,   149,    -1,   161,    -1,    -1,    -1,   480,    -1,
-     482,    -1,    -1,    -1,   161,    -1,    -1,   417,    -1,   491,
-     972,    -1,    -1,   495,    -1,    10,    11,    12,    13,    14,
-      -1,   431,    -1,    -1,    -1,  1379,   436,    -1,    -1,     0,
-     187,    -1,    68,    -1,   444,   397,    -1,    -1,    -1,   401,
-    1113,    -1,   524,   907,    -1,    -1,    -1,    42,    84,  1314,
-    1404,    -1,   462,   210,    -1,   222,    -1,    -1,  1020,    -1,
-      -1,    -1,    -1,    34,    -1,   222,   930,   931,   932,    -1,
-     480,    -1,   482,  1427,    -1,    70,    -1,    -1,    -1,    -1,
-    1434,  1240,    -1,   119,    -1,    -1,    -1,   569,  1247,  1248,
-    1249,    -1,    -1,   260,    -1,    -1,  1361,  1362,   265,    -1,
-      71,    -1,    -1,    -1,   586,   587,  1371,  1372,   987,   663,
-      -1,    -1,    -1,   280,   524,   477,   598,    -1,   672,   114,
-     984,   116,   676,    -1,    -1,   161,    -1,   122,   123,    -1,
-      -1,    -1,  1486,    -1,   616,    -1,    -1,  1099,    -1,   621,
-      -1,    -1,    -1,    -1,  1409,   627,    -1,    -1,   630,   631,
-      -1,  1310,    -1,    75,    -1,    77,    78,    79,    -1,    -1,
-    1233,    -1,  1235,  1236,   646,    -1,    88,    89,    -1,    -1,
-      -1,    -1,    -1,    -1,   331,    -1,    -1,   587,    -1,    -1,
-      -1,    -1,   664,   350,    -1,    -1,   222,   158,    -1,    -1,
-      -1,    -1,   114,   675,   116,    -1,  1158,  1159,  1062,    -1,
-     122,   123,    -1,  1468,  1469,    -1,   568,   569,    -1,    -1,
-      -1,    -1,    75,  1478,    77,    78,    79,    -1,    -1,   701,
-     630,   631,   704,    -1,   260,    88,    89,  1492,  1493,   265,
-      -1,   713,    -1,    -1,   716,    -1,   646,    -1,    -1,    -1,
-      -1,  1314,    -1,    -1,    -1,  1436,    -1,  1438,   405,    -1,
-      -1,   114,  1517,   116,   664,    -1,    -1,   739,    -1,   122,
-     123,    -1,   744,   430,    75,   675,    77,    78,    79,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    88,    89,   446,
-      -1,   252,  1473,    -1,  1475,    -1,   257,    -1,    -1,   651,
-    1169,   701,    -1,   655,   704,    -1,    -1,    -1,  1371,  1372,
-     782,    -1,    -1,   114,   471,    -1,    -1,    -1,    -1,    -1,
-     792,   122,   123,   795,   350,    -1,   798,    -1,    -1,    -1,
-      -1,   803,    -1,    -1,    -1,    -1,     0,    -1,    -1,   739,
-      -1,   813,    -1,   887,    -1,    -1,  1409,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,  1209,    10,    11,    12,    13,
-      14,    10,    11,    12,    13,    14,    -1,    -1,    -1,    -1,
-      34,   102,   103,   104,   105,   106,   107,   108,   109,   110,
-     111,   112,   782,    -1,    -1,    -1,    -1,    -1,    42,    -1,
-     351,   863,   792,    42,    -1,    -1,    -1,  1266,   798,    -1,
-      -1,    -1,    -1,   803,   430,   136,  1469,    71,    -1,    -1,
-      -1,    -1,    -1,   885,  1366,  1478,    70,    -1,    -1,    -1,
-     892,    70,    -1,   895,    -1,    -1,    75,    -1,    77,    78,
-      79,  1383,    -1,   590,   786,    -1,    -1,    -1,    -1,    88,
-      89,    -1,    -1,    -1,    -1,   471,    -1,    -1,    -1,   921,
-    1304,    -1,    -1,    -1,    -1,    -1,   417,    -1,   930,   931,
-     114,   618,   116,   863,    -1,   114,   623,   116,   122,   123,
-     431,    -1,    -1,   122,   123,   436,    -1,     0,    -1,    -1,
-      -1,    -1,    -1,   444,    -1,   885,    -1,    -1,    -1,    -1,
-    1034,    -1,   892,    -1,   158,    -1,    10,    11,    12,    13,
-      14,   462,    -1,  1455,  1456,    -1,    -1,    -1,    -1,    -1,
-      -1,    34,   984,    -1,    -1,    -1,    -1,    -1,    -1,   480,
-      -1,   482,    -1,    -1,    -1,   997,    -1,    -1,    42,    -1,
-    1002,  1003,    -1,  1005,  1006,   692,    -1,    -1,    -1,    -1,
-      28,    29,    30,    -1,    -1,    -1,    -1,   899,    71,   706,
-    1404,  1023,    -1,    -1,    -1,    -1,    70,    -1,    -1,    -1,
-      -1,    75,    -1,   524,   590,    79,    -1,    -1,    -1,    -1,
-     727,    -1,    -1,    -1,    88,    89,    -1,    -1,    -1,    -1,
-      -1,    -1,  1436,    -1,  1438,  1057,  1058,    -1,   252,    -1,
-      -1,    -1,   618,   257,    -1,    -1,    -1,   623,    -1,    -1,
-     114,    -1,  1002,  1003,    -1,  1005,  1006,    -1,   122,   123,
-      -1,    -1,   100,    -1,   102,    -1,    -1,    -1,    -1,  1473,
-      -1,  1475,   974,  1023,    -1,    -1,   587,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   158,    -1,    -1,   990,   127,
-     797,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1502,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,  1128,  1057,  1058,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   692,    -1,    -1,   630,
-     631,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-     706,    -1,    -1,    -1,    -1,   646,    -1,   351,    -1,    -1,
-      -1,    -1,    -1,    -1,   182,    -1,    -1,    -1,  1170,    -1,
-      -1,    -1,   190,   664,   192,   193,    -1,    -1,    -1,   197,
-      -1,   199,   200,  1065,   675,    -1,    -1,    -1,    -1,  1191,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1128,   252,
-      -1,  1203,    -1,  1205,   257,    -1,  1280,  1209,    -1,    -1,
-     701,    -1,    -1,   704,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,  1104,   417,    -1,    -1,    -1,    10,    11,    12,
-      13,    14,    -1,    -1,    -1,    -1,    -1,   431,  1240,    -1,
-    1170,   797,   436,    -1,    -1,  1247,  1248,  1249,   739,    -1,
-     444,   269,    -1,    -1,    -1,    -1,  1258,  1259,    -1,    42,
-      -1,  1191,    -1,    -1,    -1,    -1,    -1,    -1,   462,  1271,
-      -1,    -1,    -1,  1203,    -1,  1205,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   480,    70,   482,    -1,
-      -1,   782,    75,    -1,    77,    78,    79,    -1,   351,    -1,
-     987,   792,  1304,    -1,    -1,    88,    89,   798,  1310,    -1,
-    1240,    -1,   803,    -1,    -1,    -1,    -1,  1247,  1248,  1249,
-      -1,    -1,    -1,    28,    29,    30,    -1,    -1,  1258,  1259,
-     524,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,
-     123,  1271,    -1,    10,    11,    12,    13,    14,    -1,    -1,
-      -1,    55,    -1,    57,    -1,    -1,    60,    61,    62,    -1,
-      64,  1435,    -1,  1437,   417,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,   863,    -1,    78,    42,    -1,  1379,   431,    -1,
-    1310,    -1,    -1,   436,    -1,    -1,    90,    91,    -1,    -1,
-      -1,   444,    -1,   587,   885,   100,    -1,   102,  1472,    -1,
-    1474,   892,  1404,    70,    -1,    -1,    -1,    -1,    75,   462,
-      77,    78,    79,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    88,    89,    -1,    -1,  1427,    -1,   480,    -1,   482,
-      -1,   987,  1434,    -1,    -1,    -1,   630,   631,    -1,    -1,
-      -1,    -1,  1516,    -1,  1518,    -1,    -1,   114,    -1,  1379,
-      -1,    -1,   646,    -1,    -1,   122,   123,  1531,  1532,    -1,
-      -1,    10,    11,    12,    13,    14,    -1,    -1,    -1,    -1,
-     664,   524,    -1,    -1,    -1,    -1,    -1,   182,    -1,    -1,
-      -1,   675,  1169,    -1,  1486,    -1,    -1,   192,   193,    -1,
-      -1,  1493,   197,    42,   199,   200,    -1,  1427,    -1,    -1,
-      -1,    -1,    -1,    -1,  1434,    -1,    -1,   701,    -1,    -1,
-     704,  1002,  1003,    -1,  1005,  1006,    -1,    -1,    -1,    -1,
-      -1,    70,    -1,    -1,    -1,    -1,    75,    -1,    77,    78,
-      79,    -1,  1023,    -1,   587,    -1,    -1,    -1,    -1,    88,
-      89,    -1,    -1,    -1,    -1,   739,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,   572,   573,  1486,    -1,    -1,    -1,
-      10,    11,    12,    13,    14,   114,  1057,  1058,    -1,    -1,
-      -1,    -1,    -1,   122,   123,    -1,    -1,   630,   631,  1266,
-      -1,   599,    -1,    -1,   602,   603,    -1,   605,   782,   607,
-     608,    -1,    42,   646,   612,   613,    -1,    -1,   792,    -1,
-      -1,    -1,    -1,    -1,   798,    -1,    -1,    -1,    -1,   803,
-      -1,   664,    -1,  1169,    -1,    10,    11,    12,    13,    14,
-      70,    -1,   675,    -1,    -1,    75,    -1,    77,    78,    79,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1128,    88,    89,
-     344,    -1,   346,    -1,    -1,    -1,    -1,    42,   701,    -1,
-      -1,   704,    -1,   357,   358,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,   114,    -1,   116,    -1,    -1,   863,
-      -1,    -1,   122,   123,    -1,    70,    -1,    -1,    -1,  1170,
-      75,    -1,    -1,    -1,    79,    -1,   739,    -1,    -1,    -1,
-      -1,   885,    -1,    88,    89,    -1,    -1,    -1,   892,    -1,
-    1191,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-    1266,    -1,  1203,    -1,  1205,    -1,    -1,    -1,    -1,   114,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,   122,   123,   782,
-     748,   749,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   792,
-      -1,    -1,    -1,    -1,    -1,   798,    -1,    -1,    -1,  1240,
-     803,    -1,    -1,    -1,    -1,    -1,  1247,  1248,  1249,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1258,  1259,    -1,
+       0,     1,     0,   186,    45,     1,   240,   186,   118,    45,
+     186,   533,   205,    45,   186,   186,   186,   520,     0,   186,
+     743,   187,   743,   743,    51,   220,   863,  1022,   863,   640,
+    1005,    31,    32,   968,    34,     0,    34,   169,   170,   349,
+     512,   598,   349,   616,   491,    45,    34,   598,   495,   664,
+     188,    51,    34,    51,   569,    45,   599,     0,   345,    59,
+     689,  1388,   605,     0,    45,    65,    45,    65,    68,    34,
+      68,    71,     0,    71,   364,    71,  1004,  1005,   368,  1309,
+    1015,  1118,    42,   266,    84,    85,   596,   266,   115,   187,
+     266,    34,   202,   229,   266,   266,   266,    34,   107,   266,
+     596,   267,   596,    66,  1034,  1035,    34,    30,   108,   417,
+      84,   111,   248,    51,   596,   596,   596,    45,   118,  1392,
+     596,   148,   114,    51,   262,   263,    42,    65,   436,   480,
+      68,    84,   100,    71,  1461,   282,   444,    65,   257,    32,
+      68,   686,   116,    71,   136,   186,   124,   125,   157,   149,
+     186,   149,   630,   631,   186,   114,   116,    54,    81,  1031,
+       0,   161,   297,   161,    47,    48,   134,   782,   646,   267,
+     893,    90,   893,   893,   137,     0,     1,   792,   681,  1409,
+     487,  1493,   631,   210,  1114,  1022,   186,   187,   803,   187,
+     101,    84,    85,   480,    34,    67,   186,   646,   114,   118,
+     116,  1238,   202,  1240,  1241,   186,   728,   186,  1520,    34,
+     210,   149,   210,   240,   409,  1488,   127,   114,   712,   219,
+    1493,   149,   222,   161,   222,   266,   704,   121,    68,   229,
+     266,   712,   114,   161,   266,  1210,   712,   120,   112,   405,
+    1513,   135,   114,    68,   244,   272,    71,  1520,   248,   187,
+     101,    42,   252,   253,   252,   704,    42,   814,   186,   187,
+     121,   804,   136,   814,   252,   894,   266,   267,  1443,   267,
+     252,   786,   210,   273,   135,   257,   127,    51,    42,   630,
+     631,  1276,   210,   310,   222,   395,   121,   252,   598,  1264,
+     425,   426,   802,   117,   222,   646,   586,   121,   417,    42,
+     135,   912,    42,  1478,   117,  1480,   802,   405,   802,   252,
+     939,   121,   478,   423,   257,   252,     1,   436,   345,   429,
+     802,   802,   802,    11,   252,   444,   802,   137,   114,   616,
+     116,   331,   341,   331,   621,  1263,  1264,   627,   266,    47,
+      48,   115,   114,   600,   889,    47,    48,   604,   348,   349,
+     114,   244,   116,   704,   133,   117,   503,   136,  1195,   121,
+    1195,   115,   114,   135,   921,   365,    51,   675,   625,   369,
+     505,   114,   629,   116,   114,   510,   116,    75,   513,   379,
+     478,   135,   222,   115,  1319,   119,  1001,  1002,   739,   121,
+      88,    89,   117,   331,   115,   395,   121,   222,   425,   426,
+     285,   425,   426,   331,  1276,   405,   121,   405,   115,  1384,
+     983,   119,   252,     3,   135,   121,   114,   119,   116,     3,
+      75,   349,   107,   423,   920,   310,   311,   252,   135,   429,
+     115,   137,   567,    88,    89,   417,   210,  1432,   920,  1276,
+     920,  1376,  1377,   114,  1439,   116,   121,  1062,  1063,   992,
+     993,   954,   739,   689,   436,     1,  1384,     0,     1,   462,
+     345,   116,   444,   148,   117,   465,   493,   405,   121,   493,
+     470,     0,   157,   121,   417,  1104,     0,   405,   478,  1351,
+     478,   114,   482,   930,   482,   512,   379,   487,   512,   137,
+     490,    34,   492,   436,   966,   380,  1491,   116,   272,   118,
+     482,   444,  1113,    10,   814,   795,    75,   814,   121,   641,
+     350,   136,   650,   660,   121,   681,   135,   482,   863,    88,
+      89,   206,   114,   297,   137,   210,  1493,   527,    71,  1086,
+     137,   114,   532,   116,  1163,  1164,   310,   480,   648,   482,
+     114,   892,    95,    96,   780,   482,  1513,   116,    75,   576,
+      77,    78,   576,  1520,   482,   240,   675,   121,   115,   487,
+     121,    88,    89,   117,  1436,   121,  1438,   121,    75,  1072,
+      77,    78,   121,   137,  1077,   114,   137,   130,   131,   836,
+     580,   137,   701,   681,   731,   121,   114,   272,   137,   616,
+     275,   114,   119,   116,   621,  1432,   596,   490,   598,   492,
+    1102,   137,  1439,   121,  1106,   892,     4,     5,     6,     7,
+       8,     9,   297,   121,   114,   115,   852,   617,   925,   137,
+    1492,    75,   114,    77,    78,   310,   114,   121,   121,   137,
+    1245,   471,   632,   115,    88,    89,   636,  1252,  1253,  1254,
+      93,    94,   482,   137,   137,   645,  1464,   647,   648,   649,
+     587,   115,  1470,  1004,  1491,   850,   341,   482,   894,   115,
+     345,   664,   116,   115,   549,   550,   551,   115,   596,   926,
+     598,   115,  1490,   121,    72,   870,    74,  1495,   452,   364,
+    1025,   681,   114,   368,   115,   685,   114,   687,   116,   114,
+     121,   691,   114,   675,   122,   123,   983,   120,   932,   699,
+    1315,   137,    75,   939,    77,    78,    79,   253,    67,   252,
+     893,   114,   712,   713,   893,    88,    89,   893,   114,   701,
+     116,   893,   893,   893,   856,   114,   893,   116,   115,   895,
+     114,   505,   675,   507,   121,   971,   510,   137,    75,   513,
+     425,   426,  1371,   636,   119,     4,     5,     6,     7,     8,
+       9,    88,    89,   681,   114,   122,   116,    72,   701,  1388,
+      75,   128,   129,    78,   137,    80,   114,   452,   116,   115,
+    1292,   114,    87,   116,  1497,   121,  1497,  1497,   618,   782,
+     465,   115,  1133,  1019,   712,   713,   114,   121,   116,   792,
+      97,    98,   685,   115,   687,   115,   739,   895,   691,   121,
+     803,   121,   802,   996,   137,   898,   491,   900,   493,   114,
+     495,   116,   137,    72,   814,    74,   119,   122,   123,   119,
+     505,   114,   507,   116,   114,   510,    84,   512,   513,   122,
+     123,  1460,  1461,   115,    75,    59,    77,    78,    79,   121,
+      10,    11,    12,    13,    14,   115,  1133,    88,    89,   115,
+    1195,   121,   692,   120,   121,   121,   856,    10,    11,    12,
+      13,    14,   862,   863,   115,   750,   706,   114,  1104,   115,
+     121,   505,    42,   507,   802,   121,   510,   115,   137,   513,
+     114,   863,   115,   121,   108,  1017,   814,   111,   121,    42,
+     132,   576,    84,   893,   123,   895,   137,   115,   213,    99,
+      70,   586,   902,   121,   678,   932,  1072,   115,   115,   115,
+     115,  1077,  1263,   121,   121,   121,   121,    70,   133,   465,
+     863,   115,   116,  1210,   117,   925,   863,  1163,  1164,    61,
+      62,   616,   114,   115,   116,   931,   621,   120,   121,   482,
+      47,    48,   627,   116,   114,   945,   116,   115,   885,   892,
+    1295,   117,   122,   123,   115,  1102,   983,   797,   958,  1106,
+    1107,  1119,  1120,   856,   964,   893,   115,   895,   968,   862,
+    1473,   114,   115,   116,  1072,   556,   557,   558,   559,  1077,
+     115,   527,   552,   553,  1094,   115,   532,     4,     5,     6,
+       7,     8,     9,   678,    75,   219,   115,   925,  1001,  1002,
+    1345,    82,   114,  1348,    85,   116,    87,    88,    89,   902,
+     114,   115,   116,   554,   555,  1015,   560,   561,    35,  1522,
+     117,   119,    75,   863,   119,  1025,    79,   121,  1028,  1029,
+    1030,   716,   119,   136,   580,    88,    89,   352,   863,   354,
+    1022,  1176,  1177,   136,  1179,   114,   117,  1392,   115,   273,
+    1185,   115,  1397,  1188,   117,    72,   117,    74,  1058,  1062,
+    1063,   114,   135,   116,    31,   958,   114,   115,   116,   122,
+     123,   121,  1072,  1220,    61,    62,    63,  1077,   135,  1022,
+     135,  1426,   115,   115,   119,  1022,   120,   115,    10,    11,
+      12,    13,    14,   120,  1094,    75,   120,   115,   983,    79,
+     121,   647,    75,   649,    77,    78,   931,   114,    88,    89,
+     795,   137,   135,     0,     1,    88,    89,   115,  1118,   121,
+      42,     3,   115,   115,   348,   440,   115,   115,    10,    11,
+      12,    13,    14,   907,   114,  1371,   121,  1022,   115,     0,
+       1,   365,   122,   123,  1072,   369,   986,    34,    70,  1077,
+     115,   115,  1388,   699,   115,   115,   115,   115,    45,   115,
+      42,   115,   115,  1310,    51,  1058,  1511,  1314,   115,   115,
+    1170,   120,  1517,    34,    31,   115,   115,   121,    65,  1175,
+     135,    68,  1022,  1528,    71,   136,   117,  1532,    70,   117,
+    1133,   115,   114,   135,   116,  1195,   115,  1022,   114,   119,
+     122,   123,   115,   121,   115,  1208,   115,    68,   115,   121,
+      71,   115,  1347,  1195,   115,   121,   121,   114,  1214,   114,
+     107,   114,   907,    75,  1460,  1461,   114,   135,   115,   114,
+      82,   118,   119,    85,   137,    87,    88,    89,  1238,   135,
+    1240,  1241,  1245,   135,   121,   930,   931,   932,   120,  1252,
+    1253,  1254,  1195,   115,   135,   115,   120,  1367,  1195,   115,
+     133,   148,   149,   117,   116,   120,  1413,  1210,   119,   137,
+     157,   158,   115,  1507,   161,    75,   117,  1170,    75,   121,
+      77,    78,    82,   117,   115,    85,   115,    87,    88,    89,
+     117,    88,    89,  1067,  1276,  1295,    75,   158,   983,   186,
+     187,   117,   117,    82,   115,   117,    85,   117,    87,    88,
+      89,   117,  1315,  1309,  1497,   202,   116,   114,  1497,  1319,
+     863,  1497,   119,   210,    50,  1497,  1497,  1497,   137,   137,
+    1497,   120,  1498,  1276,  1174,   222,   137,   116,    75,  1276,
+      77,    78,    79,   137,   137,  1345,   115,   120,  1348,  1174,
+    1175,    88,    89,   240,   135,  1195,  1522,   115,   120,    86,
+     117,   222,   117,  1473,   117,   252,  1366,  1367,   117,   117,
+    1195,   117,   115,   260,   115,   117,  1376,  1377,   265,   266,
+     267,   114,  1067,   114,   114,   272,    63,   115,   931,  1214,
+      75,   252,  1392,   617,    79,   115,   119,  1397,   114,   945,
+    1498,   137,   117,    88,    89,   117,    57,   115,   632,   101,
+     297,   117,   115,  1409,  1414,   101,   114,   114,   964,   137,
+     120,   645,   968,   310,  1522,   115,  1426,   115,   115,   114,
+     121,  1271,   115,    45,   135,   137,  1276,   122,   123,   326,
+     115,   137,   115,   101,   331,   101,  1271,   462,    99,   115,
+    1432,  1276,   115,   137,   341,   137,  1497,  1439,   345,   137,
+     117,  1497,   349,   350,   117,  1497,   115,   115,   120,  1015,
+       0,     1,   117,  1473,  1474,   137,   114,   364,   137,  1022,
+    1507,   368,   115,  1483,  1309,   120,   120,   115,  1488,  1432,
+     137,   115,   115,  1493,   562,  1432,  1439,  1497,  1498,   564,
+    1498,   563,  1439,  1040,    34,   565,   963,   566,   395,  1491,
+    1461,  1511,    75,  1513,    77,    78,    79,  1517,   405,  1195,
+    1520,    51,  1522,  1353,  1522,    88,    89,  1532,  1528,  1214,
+    1286,  1107,  1532,  1314,  1439,  1077,   423,  1058,   425,   426,
+     678,    71,   429,   194,   431,   678,   900,   691,  1491,     3,
+      75,   114,    77,    78,  1491,   908,    10,    11,    12,    13,
+      14,   580,   856,    88,    89,   452,   217,   958,   642,  1497,
+     431,   716,  1118,   928,  1214,   727,   227,   107,   568,    -1,
+     482,    -1,   568,   470,  1409,   568,    -1,    -1,    42,   114,
+      -1,   478,  1432,   480,   119,   482,    -1,    -1,    -1,  1439,
+     487,    -1,    -1,    -1,    -1,    -1,   493,  1432,    10,    11,
+      12,    13,    14,    -1,  1439,    -1,    70,    -1,   505,   149,
+     507,   482,    -1,   510,  1309,   512,   513,   157,   158,    -1,
+      -1,    -1,  1175,   520,    -1,    -1,    -1,   524,    -1,    -1,
+      42,    75,    -1,    77,    78,    79,   297,    -1,    -1,   664,
+      -1,  1491,  1195,    -1,    88,    89,    -1,   187,    -1,    -1,
+      -1,    -1,    -1,   524,    -1,    -1,  1491,  1441,    70,  1443,
+      -1,  1214,   202,    75,    -1,   205,   206,    79,    -1,    -1,
+     210,   568,   569,    -1,    -1,    -1,    88,    89,   122,   576,
+      -1,    -1,  1238,    -1,  1240,  1241,    -1,    -1,    -1,   586,
+     587,   231,    -1,   590,  1478,   235,  1480,   237,    -1,   596,
+      -1,   598,   114,    -1,    -1,    -1,   246,    -1,    -1,    -1,
+     122,   123,   252,    -1,  1409,    -1,   587,   257,    75,   616,
+      77,    78,    79,  1276,   621,    -1,   623,   267,    -1,    -1,
+     627,    88,    89,   630,   631,   275,    -1,    -1,    -1,    -1,
+      75,    -1,    77,    78,    79,    -1,  1441,    -1,  1443,   646,
+      -1,   648,    -1,    88,    89,    -1,  1309,   782,    -1,   630,
+     631,    -1,    -1,  1319,    -1,    -1,    -1,   792,    -1,    -1,
+      10,    11,    12,    13,    14,   646,    -1,    -1,   803,   114,
+     441,   678,    -1,  1478,   681,  1480,    -1,    -1,     0,    -1,
+      -1,    -1,    -1,    -1,  1028,  1029,  1030,    -1,    -1,    -1,
+      -1,   341,    42,    -1,    -1,   345,   467,   704,   705,   706,
+      -1,   351,  1507,    -1,    -1,   712,   713,    -1,    -1,    -1,
+    1376,  1377,    34,    -1,   364,    -1,    -1,    -1,   368,    -1,
+      70,    -1,    -1,   704,    -1,    -1,    -1,    10,    11,    12,
+      13,    14,   739,    -1,   505,    -1,   743,   744,    -1,   510,
+      -1,    -1,   513,     3,    -1,    -1,  1409,    -1,  1414,    71,
+      10,    11,    12,    13,    14,    -1,    -1,    -1,    -1,    42,
+      -1,    -1,    -1,    -1,   114,    -1,   116,   417,    -1,  1432,
+      -1,    -1,   122,   123,    -1,    -1,  1439,    -1,    -1,   786,
+      -1,   431,    42,    -1,    -1,    -1,   436,    70,   795,    -1,
+     797,    -1,    75,     0,   444,   802,    79,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    88,    89,   814,  1474,    68,
+      70,    -1,   462,    -1,    -1,   465,    -1,  1483,    77,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    34,  1491,    -1,
+     480,   114,   482,    -1,    -1,    -1,   158,    -1,    -1,   122,
+     123,   491,   190,    -1,    -1,   495,    -1,    -1,    75,   197,
+      77,    78,    79,    -1,    -1,    -1,   863,    -1,    -1,    -1,
+     119,    88,    89,    -1,    71,    68,  1001,  1002,    -1,    -1,
+      -1,    -1,    -1,    -1,   524,    -1,    -1,    -1,   885,    -1,
+      -1,    84,   863,    -1,    -1,   892,   893,   114,   895,   116,
+      -1,    -1,   663,    -1,    -1,   122,   123,    -1,    -1,    -1,
+     907,   672,   161,    -1,   885,   676,    -1,    -1,   135,   231,
+      -1,    -1,    -1,   920,   921,    -1,   119,    -1,   925,   569,
+      -1,   269,    -1,    -1,   931,   932,    -1,  1062,  1063,    -1,
+     252,    -1,    -1,    -1,    -1,   257,   586,   587,    -1,    -1,
+      75,    -1,    77,    78,    79,    -1,    -1,   954,   598,    -1,
+     931,   158,    -1,    88,    89,    -1,    -1,    -1,   161,    -1,
+      -1,    -1,    -1,   222,    -1,    -1,   616,    -1,    -1,    -1,
+      75,   621,    77,    78,    79,    -1,   983,   627,   326,   114,
+     630,   631,    -1,    88,    89,    68,   334,   122,   123,   337,
+      -1,    75,    -1,    77,    78,    79,   646,  1004,  1005,    -1,
+      -1,   260,    -1,    -1,    88,    89,   265,    -1,    -1,   114,
+      -1,   116,    -1,    -1,   664,  1022,    -1,   122,   123,   222,
+      -1,    -1,  1366,  1004,  1005,   675,    -1,    -1,    -1,   351,
+     114,    -1,   116,    -1,    -1,    -1,   119,    -1,   122,   123,
+      -1,  1022,    -1,    -1,    -1,   252,    -1,    -1,    -1,   397,
+     257,   701,    -1,   401,   704,    -1,    -1,   260,    -1,    -1,
+    1067,    -1,   265,   713,    -1,  1072,   716,    -1,    -1,    -1,
+    1077,    -1,    -1,  1208,    -1,    -1,    -1,    -1,   161,  1086,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1094,    -1,   739,
+      -1,   350,    -1,    -1,   744,   417,   102,   103,   104,   105,
+     106,   107,   108,   109,   110,   111,   112,    -1,    -1,   431,
+    1245,    -1,    -1,    -1,   436,    -1,   887,  1252,  1253,  1254,
+      -1,    -1,   444,    -1,    -1,    -1,  1133,    -1,    -1,   477,
+     136,    -1,   782,    -1,    -1,    -1,    -1,    -1,    -1,   222,
+     462,    -1,   792,    -1,   351,   795,    -1,   350,   798,    -1,
+      -1,    -1,    -1,   803,    -1,    -1,    -1,     0,   480,    -1,
+     482,    -1,    -1,   813,    -1,    -1,    -1,  1174,  1175,    -1,
+      75,   430,    77,    78,    79,    -1,    -1,   260,    -1,    -1,
+    1315,    -1,   265,    88,    89,    -1,    -1,   446,  1195,    -1,
+      -1,    34,    -1,  1174,  1175,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,   524,  1210,    -1,    -1,    -1,  1214,    -1,   114,
+     417,   116,   471,   863,  1195,    -1,    -1,   122,   123,    -1,
+     568,   569,    -1,    -1,   431,    -1,    -1,   430,    71,   436,
+      -1,    -1,    -1,  1214,    -1,   885,    -1,   444,    -1,    -1,
+      -1,    -1,   892,    -1,    -1,   895,    75,    -1,    77,    78,
+      79,    -1,    -1,    -1,    -1,   462,  1263,  1264,    -1,    88,
+      89,    -1,  1033,    -1,  1271,   587,    -1,   350,   471,  1276,
+      -1,   921,    -1,   480,    -1,   482,    -1,    -1,    -1,    -1,
+     930,   931,  1263,  1264,    -1,   114,    -1,    -1,    -1,    -1,
+    1271,    -1,    -1,   122,   123,  1276,    -1,    -1,    -1,    -1,
+      -1,    -1,  1309,   651,    -1,    -1,    86,   655,   630,   631,
+      90,    91,    92,    -1,    -1,   158,    -1,   524,    -1,    -1,
+      -1,    -1,    -1,    -1,   646,    -1,    -1,    -1,  1309,    -1,
+      -1,   590,    -1,   983,   114,    -1,   116,    -1,   118,   119,
+      -1,    -1,   664,    -1,    -1,    -1,   996,   430,    -1,    -1,
+      -1,  1001,  1002,   675,  1004,  1005,    -1,    -1,    -1,   618,
+    1367,    86,    -1,    -1,   623,    90,    91,    92,    -1,    -1,
+      -1,    -1,  1022,    -1,    -1,    -1,    -1,  1384,    -1,   701,
+     587,    -1,   704,    -1,    -1,    -1,    -1,   590,   471,   114,
+      -1,   116,    -1,   118,   119,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,  1409,  1384,    -1,    -1,    -1,    -1,    -1,   252,
+      -1,    -1,  1062,  1063,   257,   618,    -1,   739,    -1,    -1,
+     623,    -1,    -1,   630,   631,  1432,    -1,    -1,  1409,    -1,
+      -1,    -1,  1439,   692,  1441,    -1,  1443,    -1,   786,   646,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,   706,    -1,    -1,
+      -1,  1432,    -1,    -1,    -1,    -1,    -1,   664,  1439,    -1,
+     782,    -1,    -1,    -1,    -1,    -1,  1473,    -1,   675,    -1,
+     792,  1478,    -1,  1480,    -1,    -1,   798,    -1,    -1,    -1,
+      -1,   803,    -1,  1133,  1491,     0,    -1,    -1,    -1,   692,
+    1497,  1498,    -1,    -1,   701,    -1,    -1,   704,    -1,    -1,
+    1507,    -1,    -1,   706,    -1,    -1,    -1,   590,   351,    -1,
+    1491,    -1,    -1,    -1,  1285,  1522,    -1,    -1,    -1,    34,
+      -1,    -1,    -1,    -1,    -1,  1175,    -1,    -1,    -1,    -1,
+      -1,    -1,   739,    -1,    -1,   618,    -1,    -1,   797,    -1,
+     623,   863,    -1,    -1,    -1,  1195,    -1,    -1,    28,    29,
+      30,   899,    -1,    -1,    -1,    -1,    71,    -1,  1208,    -1,
+    1210,    -1,    -1,   885,  1214,    -1,    -1,    -1,    -1,    -1,
+     892,    -1,    -1,    -1,   417,   782,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,   792,    -1,    -1,   431,    -1,
+      -1,   798,    -1,   436,   797,  1245,   803,    -1,    -1,    -1,
+      -1,   444,  1252,  1253,  1254,    -1,    -1,    -1,    59,   692,
+      -1,    -1,    -1,  1263,  1264,    -1,    -1,    -1,    -1,   462,
+     100,    -1,   102,   706,    -1,   973,  1276,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,   480,    -1,   482,
+      -1,   989,    -1,   158,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   863,   108,    -1,  1309,
+     111,    -1,    -1,    -1,    -1,  1315,    -1,    -1,    -1,  1440,
+      -1,  1442,    -1,    -1,    -1,    -1,    -1,    -1,   885,  1001,
+    1002,   524,  1004,  1005,    -1,   892,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-    1271,    -1,    -1,    10,    11,    12,    13,    14,    15,    16,
-      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
-      27,    28,    29,    -1,    -1,    32,    33,    34,  1002,  1003,
-     863,  1005,  1006,    -1,    -1,    42,    -1,    -1,    -1,  1310,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1023,
-      -1,    -1,   885,    -1,    -1,    -1,    -1,    -1,    -1,   892,
-      -1,    -1,    -1,    70,    -1,    -1,    -1,    -1,    75,    -1,
-      77,    78,    79,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    88,    89,  1057,  1058,    -1,    -1,   572,   573,    -1,
+    1022,    -1,   182,    -1,    -1,    -1,  1477,    -1,  1479,    -1,
+      -1,    -1,   192,   193,   797,    -1,    -1,   197,    -1,   199,
+     200,    -1,  1070,    -1,    -1,    -1,    -1,   986,    -1,    -1,
+      -1,    -1,    -1,    -1,  1384,    -1,    -1,   252,    -1,    -1,
+    1062,  1063,   257,    -1,   587,    -1,    -1,    -1,    -1,    -1,
+    1521,    -1,  1523,    -1,    -1,    -1,    -1,    -1,    -1,  1409,
+      -1,  1109,    -1,    -1,    -1,  1536,  1537,    -1,   219,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,   899,    -1,    -1,    -1,    -1,   904,   114,  1379,   116,
-      -1,    -1,    -1,    -1,   599,   122,   123,   602,   603,    -1,
-     605,    -1,   607,   608,    -1,    -1,    -1,   612,   613,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,    28,    29,    30,
-      -1,    -1,    -1,    -1,  1128,    -1,  1427,    -1,    -1,    -1,
-      -1,    42,    51,  1434,    -1,    -1,    -1,    -1,    -1,  1002,
-    1003,     7,  1005,  1006,    10,    11,    12,    13,    14,    68,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,
-    1023,    -1,    -1,    -1,    -1,    -1,  1170,    -1,    -1,    -1,
-      81,    -1,    -1,    -1,    40,    41,    42,    43,    -1,   693,
-      -1,   695,    -1,    -1,    -1,  1486,    -1,  1191,   702,   703,
-      -1,    -1,    -1,   707,  1057,  1058,   115,    -1,    -1,  1203,
-     119,  1205,    -1,    69,    70,    -1,   720,    -1,    -1,    75,
-      -1,   725,    -1,    79,    -1,    -1,    82,    83,    84,    85,
-      86,    87,    88,    89,    -1,    91,    92,    -1,    -1,   148,
-      -1,  1059,    -1,   748,   749,    -1,  1240,    -1,   752,   158,
-      -1,    -1,   161,  1247,  1248,  1249,    -1,    -1,   114,    -1,
-     116,    -1,    -1,    -1,  1258,  1259,   122,   123,   124,   125,
-     126,   127,    -1,    -1,    68,  1128,    -1,  1271,    -1,    -1,
-      -1,    -1,    -1,    77,    -1,    79,    -1,    81,    -1,    -1,
-      -1,    -1,    -1,    -1,    88,    -1,    -1,    -1,    -1,    -1,
-      -1,   210,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,   222,    -1,    -1,  1310,  1170,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   119,    -1,   121,   122,   123,
-      -1,   240,    -1,    -1,    -1,    -1,    -1,    -1,  1191,    -1,
-      -1,   845,    -1,   847,   848,   849,    -1,    -1,    -1,    -1,
-    1203,    -1,  1205,    -1,    -1,    -1,   265,    -1,    -1,    -1,
-      -1,    -1,   866,   272,    -1,    -1,    -1,   161,    -1,  1187,
-      -1,    -1,    -1,    -1,    -1,    -1,   880,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,  1379,    -1,  1240,   297,    -1,
-      -1,    -1,    -1,    -1,  1247,  1248,  1249,    -1,    -1,   904,
-      -1,   310,    -1,    -1,    -1,  1258,  1259,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   919,    -1,    -1,  1271,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   222,    -1,
-     224,   225,   226,  1427,    -1,    -1,   345,    -1,    -1,    -1,
-    1434,   350,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1310,    -1,   963,
-      -1,    -1,    -1,    -1,   968,    -1,   260,    -1,    -1,   973,
-      -1,   265,    -1,    -1,   978,    -1,    -1,    -1,    -1,   983,
-      -1,   985,   986,    -1,    -1,   989,   280,    -1,    -1,    -1,
-      -1,    -1,  1486,    -1,   998,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,  1432,   986,    -1,    -1,    -1,   630,   631,  1439,
+      -1,    -1,    -1,    -1,  1001,  1002,    -1,  1004,  1005,    -1,
+      -1,    -1,    -1,   646,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,  1133,    -1,    -1,    -1,  1022,    -1,    -1,    -1,    -1,
+      -1,   664,   273,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,   675,    -1,    -1,    -1,   351,    -1,    -1,    -1,
+      -1,  1491,    -1,    -1,    -1,    55,    -1,    57,  1498,    -1,
+      60,    61,    62,  1175,    64,  1062,  1063,    -1,   701,    -1,
+      -1,   704,    -1,    -1,    -1,    -1,    -1,    -1,    78,    -1,
+      -1,    -1,    -1,  1195,    -1,    -1,    -1,    -1,    -1,    -1,
+      90,    91,    -1,    -1,    -1,    -1,  1208,    -1,  1210,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   739,   348,    -1,    -1,
+      -1,    -1,   417,   986,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,   365,  1174,   431,    -1,   369,    -1,
+      -1,   436,    -1,  1245,    -1,    -1,  1133,    -1,    -1,   444,
+    1252,  1253,  1254,    -1,    -1,    -1,    -1,    -1,    -1,   782,
+      -1,  1263,  1264,    -1,    -1,    -1,    -1,   462,    -1,   792,
+      -1,    -1,    -1,    -1,  1276,   798,    -1,    -1,    -1,    -1,
+     803,    -1,    -1,    -1,    -1,   480,    -1,   482,  1175,    -1,
+      -1,  1174,    10,    11,    12,    13,    14,    -1,    -1,    -1,
+      -1,    28,    29,    30,    -1,    -1,    -1,    -1,  1195,    -1,
+      -1,    -1,    -1,  1315,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,  1208,    -1,  1210,    42,    -1,    -1,    -1,    -1,   524,
+      -1,    -1,  1271,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+     863,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    70,    -1,    -1,    -1,    -1,    75,  1245,    77,
+      78,    79,   885,    -1,    -1,  1252,  1253,  1254,    -1,   892,
+      88,    89,    -1,   100,    -1,   102,  1263,  1264,    -1,    -1,
+      -1,    -1,  1384,    -1,    -1,    -1,    -1,    -1,  1271,  1276,
+      -1,    -1,   587,    -1,    -1,    -1,   114,    -1,   116,    -1,
+     127,    -1,    -1,    -1,   122,   123,    -1,    -1,    -1,    -1,
+      -1,  1174,   572,   573,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1315,    -1,
+    1432,    -1,    -1,    -1,    -1,   630,   631,  1439,    -1,   599,
+      -1,    -1,   602,   603,    -1,   605,    -1,   607,   608,    -1,
+      -1,   646,   612,   613,   344,   182,   346,    -1,    -1,    -1,
+      -1,    -1,    -1,   190,    -1,   192,   193,   357,   358,   664,
+     197,    -1,   199,   200,    -1,    -1,    -1,    -1,  1001,  1002,
+     675,  1004,  1005,    -1,    -1,    -1,   617,    -1,    -1,  1491,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1384,    -1,  1022,
+      -1,   632,    -1,    -1,    -1,    -1,   701,    -1,  1271,   704,
+      -1,    -1,    -1,    -1,   645,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-    1014,  1015,    -1,    -1,    -1,    -1,   425,   426,    -1,    -1,
-      -1,    -1,   431,    -1,    -1,    -1,  1379,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,  1040,   331,    -1,  1043,
-      -1,    -1,    -1,   452,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,  1059,    -1,   350,    -1,    -1,    -1,
-      -1,   355,   356,    -1,    -1,    -1,    -1,    -1,    -1,   363,
-      -1,   480,    -1,    -1,  1427,    -1,    -1,    -1,    -1,    -1,
-      -1,  1434,  1086,    -1,   493,    -1,    -1,    -1,  1092,  1093,
-      -1,    -1,    -1,    -1,    -1,    -1,   505,    -1,   507,    -1,
-      -1,   510,    -1,   512,   513,    -1,    -1,  1111,    -1,    -1,
-      -1,   405,  1116,    -1,    -1,   524,    -1,  1121,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1132,   423,
-      -1,    -1,    -1,  1486,   428,    -1,   430,    -1,    -1,    -1,
-      -1,  1145,    -1,  1147,  1148,  1149,  1150,    -1,    -1,    -1,
-      -1,    -1,   446,    -1,    -1,   449,   450,    -1,  1162,    -1,
-    1164,    -1,    -1,   457,  1168,    -1,    -1,   576,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,   471,   587,    -1,
-      -1,   590,  1187,    -1,   478,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,  1196,  1197,    -1,    -1,     7,    -1,    -1,    10,
-      11,    12,    13,    14,    -1,    -1,    -1,   616,    -1,    -1,
-      -1,    -1,   621,    46,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,   630,   631,    -1,    -1,    -1,    -1,    -1,    -1,    40,
-      41,    42,    43,    -1,    -1,    -1,    -1,   646,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,  1250,  1251,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,  1260,    -1,    69,    70,
-      93,    -1,    -1,    -1,    75,    -1,    -1,    -1,    79,   678,
-     103,    82,    83,    84,    85,    86,    87,    88,    89,    -1,
-      91,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   704,   590,   706,    -1,    -1,
-      -1,    -1,    -1,   114,    -1,   116,    -1,    40,    41,    -1,
-      43,   122,   123,   124,   125,   126,   127,    -1,  1322,    -1,
-    1324,  1325,  1326,    -1,   618,    -1,    -1,    -1,    -1,   623,
-     739,    -1,  1336,    -1,    -1,    -1,    69,    -1,    -1,   172,
-    1344,    -1,    75,    -1,    -1,    -1,    79,    -1,    -1,    82,
-      83,    84,    85,    86,    87,    88,    89,    -1,    91,    92,
-      -1,    -1,   195,    -1,    -1,  1369,  1370,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   209,    -1,    -1,    -1,
-      -1,   114,    -1,   116,    -1,   218,    -1,    -1,   797,   122,
-     123,   124,   125,   126,   127,   228,    -1,    -1,   692,    -1,
-      -1,    -1,   135,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-    1414,  1415,   706,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-     253,    -1,    -1,  1427,    -1,   258,    -1,    -1,    -1,    -1,
-    1434,    -1,    -1,   727,    -1,    -1,    -1,    -1,   271,    -1,
-      -1,    -1,    -1,    -1,   277,    -1,   279,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,  1467,    -1,   298,    -1,  1471,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   885,    -1,    -1,    -1,
-      -1,    -1,    -1,   892,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,   786,    -1,    -1,  1499,    -1,  1501,   907,    -1,
-      -1,    -1,    -1,   797,    -1,    -1,   339,    -1,    -1,    -1,
-     343,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-     814,    -1,    -1,   932,    -1,  1529,  1530,    -1,    -1,    -1,
-      -1,    -1,    -1,  1537,  1538,    -1,    -1,    -1,   371,    -1,
-      -1,    -1,   375,   376,    -1,   378,    -1,    -1,    -1,    -1,
-      -1,    -1,   385,   386,    -1,   388,   389,    -1,   391,    -1,
-     393,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   984,    -1,   410,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   418,    -1,    -1,    -1,   157,
-     158,    -1,    -1,    -1,    -1,    -1,  1005,  1006,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   442,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,   190,    -1,    -1,    -1,    -1,    -1,    -1,   197,
-      -1,   925,    -1,    -1,    -1,   468,    -1,    -1,    -1,    -1,
-      -1,   474,    -1,    -1,    -1,    -1,   479,    -1,    -1,    -1,
-      -1,    -1,    -1,  1062,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,   955,    10,    11,    12,    13,    14,    15,    16,    17,
-      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
-      28,    29,    -1,   516,    32,    33,    34,    -1,    -1,    -1,
-      -1,    -1,    -1,   987,    42,    -1,    -1,    -1,   531,    -1,
-      -1,   269,    -1,    -1,   998,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1128,
-      -1,    -1,    70,    -1,    -1,    -1,    -1,    75,    -1,    77,
-      78,    -1,    -1,    -1,    -1,   568,    -1,    -1,    -1,    -1,
-      88,    89,    -1,    -1,   577,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   326,    -1,
-    1169,    -1,    -1,    -1,   597,    -1,   334,   335,   116,   337,
-     338,    -1,    -1,  1067,   122,   123,    -1,   345,    -1,    -1,
-      -1,   349,    -1,    -1,    -1,    -1,    -1,  1081,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,  1205,    -1,    -1,    -1,
-     368,    -1,   635,    -1,    10,    11,    12,    13,    14,    15,
-      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,    28,    29,    -1,    -1,    32,    33,    34,   397,
-      -1,    -1,    -1,   401,    -1,    -1,    42,    -1,   671,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   679,    -1,    -1,  1258,
-    1259,    -1,    -1,    -1,    -1,    -1,    -1,  1266,    -1,    -1,
-      -1,    -1,    -1,   431,    70,    -1,    -1,    -1,    -1,    75,
-      -1,    77,    78,    79,    -1,  1169,    -1,   710,    -1,    -1,
-      -1,    -1,    88,    89,    -1,    -1,    -1,    -1,   721,   722,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   114,   477,
-     116,    -1,   480,    -1,    -1,    -1,   122,   123,    -1,    -1,
-     753,    -1,    -1,    -1,    -1,   758,    -1,    10,    11,    12,
-      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
-      23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
-      33,    34,   520,    -1,    -1,    -1,   524,    -1,    -1,    42,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-    1379,    -1,  1266,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   818,    -1,    70,    -1,    -1,
-      -1,    -1,   825,    -1,    77,    78,    -1,    -1,    -1,    -1,
-     568,   569,    -1,    -1,    -1,   838,    -1,   840,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   586,   587,
-     853,    -1,    -1,    -1,    -1,    -1,   859,  1436,   596,  1438,
-     598,   599,    -1,   116,    -1,   148,    -1,   605,   871,   122,
-     123,   874,    -1,    -1,    -1,   158,    -1,   615,   616,    -1,
-      -1,    -1,    -1,   621,    -1,    -1,   169,   170,    -1,    -1,
-      -1,    -1,   630,   631,  1473,    -1,  1475,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   646,    -1,
-      -1,    -1,    -1,   651,   652,    -1,    -1,   655,   656,    -1,
-      -1,    -1,    -1,  1502,   662,    -1,   283,    -1,   285,   286,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   295,   296,
-      -1,    -1,    -1,   681,    -1,    -1,    -1,    -1,    40,    41,
-      -1,    43,    -1,   310,   311,    -1,    -1,   240,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   704,   705,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    69,    -1,   982,
-      -1,   264,    -1,    75,    -1,    77,    78,    79,   345,    -1,
-      82,    83,    84,    85,    86,    87,    88,    89,    -1,    91,
-      92,   739,    -1,    -1,    -1,   743,   744,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,   114,   380,   116,    -1,   118,   119,    -1,    -1,
-     122,   123,   124,   125,   126,   127,    -1,    -1,    -1,    -1,
-    1043,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   786,    -1,
-      -1,    -1,    -1,  1517,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,   802,    -1,   804,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,  1077,    -1,   814,    -1,    -1,  1082,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1090,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   379,    -1,    10,    11,
-      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
-      22,    23,    24,    25,    26,    27,    28,    29,    30,    -1,
-      -1,  1124,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      42,    -1,  1135,    -1,    -1,  1138,    -1,  1140,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,   885,    -1,    -1,
-      -1,    -1,  1155,  1156,   892,   893,    -1,   895,    70,    -1,
-      -1,   899,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    81,
-      -1,    -1,  1175,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,   920,   921,    -1,    -1,    -1,    -1,    -1,   472,
-      -1,    -1,   549,   550,   551,   552,   553,   554,   555,   556,
-     557,   558,   559,   560,   561,   562,   563,   564,   565,   566,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,   955,  1221,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,  1229,    -1,    -1,   512,
-      -1,    -1,    -1,    -1,    -1,    -1,   974,   975,    -1,    -1,
-      -1,   524,    -1,    -1,    -1,    -1,   984,   530,    -1,    -1,
-     533,    -1,   990,   991,    -1,   993,   994,   995,    -1,    -1,
-      -1,    -1,    -1,   546,    -1,    -1,    -1,  1005,  1006,    -1,
-      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
-      20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
-      -1,    -1,    -1,   576,    -1,    -1,  1299,    -1,  1301,    -1,
-     583,    -1,    42,    -1,   587,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,  1317,    -1,  1319,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1065,    -1,  1067,
-      70,  1334,   689,    -1,  1072,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,  1081,    -1,    -1,  1349,  1350,    -1,    -1,
-     633,    -1,    -1,    -1,    -1,    -1,    -1,  1360,   641,    -1,
-    1363,    -1,    -1,    -1,    -1,    -1,  1104,  1105,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,  1385,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-    1128,  1394,    -1,   750,  1397,    -1,  1399,  1400,  1401,    -1,
-      -1,    -1,    -1,    10,    11,    12,    13,    14,    15,    16,
-      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
-      27,    28,    29,   780,    -1,    32,    33,    34,    35,    36,
-      37,    38,    -1,    -1,   717,    42,    -1,  1440,    -1,  1442,
-      -1,  1444,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   739,  1460,   741,    -1,
-      -1,    -1,    -1,    70,    -1,    -1,    -1,  1205,   751,    -1,
-      77,    78,    -1,    -1,   757,    -1,    -1,     3,     4,     5,
-       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
-      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,    28,    29,    -1,    -1,    32,    33,    34,    35,
-      -1,    -1,    -1,    39,   797,   798,    42,    43,    -1,    -1,
-    1258,  1259,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-     813,    -1,    -1,    -1,    -1,    -1,    -1,   894,    -1,    -1,
-      -1,    67,    -1,    -1,    70,    -1,    72,    -1,    74,    75,
-      -1,    77,    78,    79,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    88,    89,    -1,    -1,    -1,    -1,    -1,   852,
-      -1,    -1,    -1,   856,    -1,    -1,    -1,    40,    41,    -1,
-      43,    -1,    -1,   940,    -1,    -1,    -1,    -1,   114,    -1,
-     116,    -1,    -1,    -1,   120,    -1,   122,   123,    -1,    -1,
-      -1,    -1,   885,    -1,    -1,    -1,    69,    -1,    -1,   892,
-      -1,    -1,    75,    -1,    -1,   972,    79,    -1,    -1,    82,
-      83,    84,    85,    86,    87,    88,    89,   984,    91,    92,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,  1379,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   932,
-      -1,   114,    -1,   116,    -1,    -1,   119,    -1,    -1,   122,
-     123,   124,   125,   126,   127,    -1,  1023,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   959,    -1,    -1,    -1,
-      -1,   964,    -1,    -1,   967,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,   987,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   998,    -1,    -1,    -1,    -1,
-      -1,    -1,    40,    41,    -1,    43,    -1,    -1,    -1,    -1,
-    1468,    -1,    -1,    -1,    -1,  1018,    -1,  1020,    -1,    -1,
-      -1,    -1,  1099,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    69,  1035,  1036,  1492,  1493,    -1,    75,    -1,    -1,
-      -1,    79,    -1,    -1,    82,    83,    84,    85,    86,    87,
-      88,    89,  1055,    91,    92,    -1,    -1,    -1,    -1,  1517,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   114,    -1,   116,    -1,
-      -1,  1158,  1159,   121,   122,   123,   124,   125,   126,   127,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,  1109,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,  1128,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-    1143,  1144,     3,     4,     5,     6,     7,     8,     9,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,    28,    29,    -1,
-      -1,    32,    33,    34,    35,    -1,    -1,    -1,    39,    40,
-      41,    42,    43,    44,    -1,    46,    -1,    -1,    49,    50,
-      51,    52,    53,    54,    55,    56,    -1,    -1,    -1,    60,
-      -1,    -1,    -1,    64,    65,    -1,    67,    -1,    69,    70,
-      -1,    72,    -1,    74,    75,    -1,    77,    78,    79,    -1,
-      -1,    82,    83,    84,    85,    86,    87,    88,    89,    -1,
-      91,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,   114,    -1,   116,    -1,    -1,   119,    -1,
-      -1,   122,   123,   124,   125,   126,   127,    -1,    -1,    -1,
-      -1,   132,    -1,    -1,    -1,    -1,   137,    -1,    -1,    -1,
-      -1,    -1,  1285,    -1,    -1,  1288,    -1,    -1,    -1,  1366,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,  1383,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,     3,     4,     5,     6,     7,     8,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1062,
+    1063,    -1,   269,    -1,   739,  1432,    -1,    -1,    -1,    -1,
+      -1,    -1,  1439,    -1,     3,     4,     5,     6,     7,     8,
        9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
       19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
-      29,    -1,    -1,    32,    33,    34,    35,    -1,    -1,    -1,
-      39,    40,    41,    42,    43,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1455,  1456,
+      29,    -1,    -1,    32,    33,    34,    35,   782,   748,   749,
+      39,    40,    41,    42,    43,    -1,    -1,   792,    -1,    -1,
+      -1,    -1,    -1,   798,  1491,    -1,    -1,    -1,   803,    -1,
+    1133,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       69,    70,    -1,    72,    -1,    74,    75,    -1,    77,    78,
       79,    -1,    -1,    82,    83,    84,    85,    86,    87,    88,
       89,    -1,    91,    92,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,  1175,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    40,    41,   114,    43,   116,   863,    -1,
+      -1,    -1,  1195,   122,   123,   124,   125,   126,   127,    -1,
+      -1,    -1,    -1,    -1,    -1,  1208,    -1,  1210,   137,    -1,
+     885,    -1,    69,    -1,    -1,    -1,    -1,   892,    75,    -1,
+      -1,    -1,    79,    -1,    -1,    82,    83,    84,    85,    86,
+      87,    88,    89,    -1,    91,    92,    -1,    -1,    -1,    -1,
+      -1,    -1,  1245,    -1,    -1,    -1,    -1,    -1,    -1,  1252,
+    1253,  1254,   863,    -1,    -1,    -1,    -1,   114,    -1,   116,
+    1263,  1264,   119,    -1,   904,   122,   123,   124,   125,   126,
+     127,    -1,    -1,  1276,     3,     4,     5,     6,     7,     8,
+       9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
+      19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
+      29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,    -1,
+      -1,    -1,  1315,    42,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,   693,    -1,   695,  1001,  1002,    -1,  1004,
+    1005,    -1,   702,   703,    -1,    -1,    -1,   707,    -1,    -1,
+      -1,    70,    -1,    72,    -1,    74,    -1,  1022,    77,    78,
+     720,    -1,    -1,    -1,    -1,   725,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,   572,   573,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   114,    -1,   116,    -1,    -1,
+      -1,  1384,   752,    -1,    -1,    -1,    -1,  1062,  1063,    -1,
+     119,    -1,   599,    -1,    -1,   602,   603,    -1,   605,    -1,
+     607,   608,    -1,    -1,    -1,   612,   613,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,  1025,    -1,    -1,  1028,  1029,  1030,
+      -1,    -1,    -1,    -1,  1064,    -1,    -1,    -1,    -1,  1432,
+      -1,    -1,    -1,    -1,    -1,    -1,  1439,    51,    -1,    10,
+      11,    12,    13,    14,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    68,    -1,    -1,    -1,  1133,    10,
+      11,    12,    13,    14,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    42,    -1,    -1,    -1,   845,    -1,   847,   848,   849,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1491,    -1,
+      -1,    42,    -1,    -1,    -1,    -1,   866,    -1,    -1,    70,
+    1175,   115,    -1,    -1,    75,   119,    77,    78,    79,    -1,
+     880,    -1,    -1,    -1,    -1,    -1,    -1,    88,    89,    70,
+    1195,    -1,    -1,    -1,    75,    -1,    77,    78,    79,    -1,
+      -1,    -1,    -1,  1208,   148,  1210,    -1,    88,    89,    -1,
+      -1,   748,   749,   114,   158,   116,    -1,   161,    -1,   919,
+      -1,   122,   123,    -1,    -1,    -1,    -1,  1197,    -1,    -1,
+      -1,    -1,    -1,   114,    -1,   116,    -1,    -1,    -1,    -1,
+    1245,   122,   123,    -1,    -1,    -1,    -1,  1252,  1253,  1254,
+      -1,    -1,    -1,    -1,  1195,    -1,    -1,    -1,  1263,  1264,
+      -1,    -1,   962,    -1,    -1,    -1,   210,   967,    -1,    -1,
+      -1,  1276,   972,    -1,    -1,    -1,    -1,   977,   222,    -1,
+      -1,    -1,   982,    -1,   984,   985,    -1,    -1,   988,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   240,   997,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+    1315,    -1,    -1,  1013,  1014,    -1,    -1,    -1,    68,    -1,
+      -1,   265,    -1,    -1,    -1,    -1,    -1,    77,   272,    79,
+      -1,    81,    -1,    -1,    -1,    -1,    -1,    -1,    88,    -1,
+      -1,    -1,    -1,    -1,  1044,    -1,    -1,  1047,    -1,    -1,
+      -1,    -1,    -1,   297,  1295,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,   899,    -1,    -1,    -1,   310,   904,    -1,   119,
+      -1,   121,   122,   123,    -1,    -1,    -1,    -1,    -1,  1384,
+      10,    11,    12,    13,    14,    -1,    -1,    -1,    -1,    -1,
+      -1,  1091,    -1,    -1,    -1,    -1,    -1,  1097,  1098,    -1,
+      -1,   345,    -1,    -1,  1345,    -1,   350,  1348,    -1,    -1,
+      -1,   161,    42,    -1,    -1,    -1,  1116,    -1,    -1,    -1,
+      -1,  1121,    -1,    -1,    -1,  1366,  1126,  1432,    -1,    -1,
+      -1,    -1,    -1,    -1,  1439,    -1,    -1,  1137,    -1,    -1,
+      70,    -1,    -1,    -1,    -1,    75,    -1,    77,    78,    79,
+    1150,  1392,  1152,  1153,  1154,  1155,  1397,    -1,    88,    89,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1167,    -1,  1169,
+      -1,    -1,   222,  1173,   224,   225,   226,    -1,    -1,    -1,
+      -1,   425,   426,    -1,   114,  1426,  1491,   431,    -1,    -1,
+      -1,    -1,   122,   123,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,  1201,  1202,    -1,    -1,    -1,    -1,    -1,   452,    -1,
+     260,    -1,    -1,    -1,    -1,   265,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1064,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   480,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1488,    -1,   493,
+      -1,    -1,  1493,    -1,    -1,  1255,  1256,    -1,    -1,    -1,
+      -1,   505,    -1,   507,    -1,  1265,   510,    -1,   512,   513,
+    1511,    -1,  1513,    -1,    -1,    -1,  1517,    -1,    -1,  1520,
+     524,   331,    -1,    -1,    -1,    -1,    -1,  1528,    -1,    -1,
+      -1,  1532,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+     350,    -1,    -1,    -1,    -1,   355,   356,    -1,    -1,    -1,
+      -1,    -1,    -1,   363,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1327,    -1,  1329,
+    1330,  1331,   576,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,  1341,    -1,   587,    -1,    -1,   590,    -1,    -1,  1349,
+      -1,    -1,    -1,    -1,    46,   405,    -1,    -1,    -1,    -1,
+    1197,    -1,    10,    11,    12,    13,    14,    -1,    -1,    -1,
+      -1,    -1,   616,   423,  1374,  1375,    -1,   621,   428,    -1,
+     430,    -1,    -1,    -1,    -1,    -1,   630,   631,    -1,    -1,
+      -1,    -1,    -1,    -1,    42,    -1,   446,    -1,    -1,   449,
+     450,    93,   646,    -1,    -1,    -1,    -1,   457,    -1,    -1,
+      -1,   103,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1419,
+    1420,   471,    70,    -1,    -1,    -1,    -1,    75,   478,    77,
+      78,    79,  1432,    -1,   678,    -1,    -1,    -1,    -1,  1439,
+      88,    89,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+     704,    -1,   706,    -1,    -1,    -1,   114,    -1,    -1,    -1,
+      -1,    -1,  1472,    -1,   122,   123,  1476,    -1,    -1,    -1,
+     172,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,   739,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,   195,  1504,    -1,  1506,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,   209,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   218,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,  1534,  1535,   228,    -1,    -1,    -1,
+     590,    -1,  1542,  1543,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,   797,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,   253,    -1,    -1,    -1,    -1,   258,    -1,   618,    -1,
+      -1,    -1,    -1,   623,    -1,    -1,    -1,    -1,    -1,   271,
+      -1,    -1,    -1,    -1,    -1,   277,    -1,   279,    -1,    -1,
+     283,    -1,   285,   286,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,   295,   296,    -1,    -1,   298,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,   310,   311,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    40,    41,    -1,    43,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,   885,   692,    -1,    -1,    -1,    -1,   339,   892,    -1,
+      -1,   343,   345,    -1,    -1,    69,   706,    -1,    -1,    -1,
+      -1,    75,    -1,   907,    -1,    79,    -1,    -1,    82,    83,
+      84,    85,    86,    87,    88,    89,    -1,    91,    92,   371,
+      -1,    -1,    -1,   375,   376,    -1,   378,   380,   932,    -1,
+      -1,    -1,    -1,   385,   386,    -1,   388,   389,    -1,   391,
+     114,   393,   116,    -1,    -1,    -1,    -1,    -1,   122,   123,
+     124,   125,   126,   127,    -1,    -1,    -1,    -1,   410,    -1,
+      -1,   135,    -1,    -1,    -1,    -1,   418,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   786,    -1,    -1,   983,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,   797,    -1,    -1,
+     442,    40,    41,    -1,    43,    -1,    -1,    -1,    -1,    -1,
+    1004,  1005,    -1,    -1,   814,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   468,    -1,    -1,    -1,
+      69,    -1,   474,    -1,    -1,    -1,    75,   479,    77,    78,
+      79,    -1,    -1,    82,    83,    84,    85,    86,    87,    88,
+      89,    -1,    91,    92,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,  1067,   516,   114,    -1,   116,    -1,   118,
+     119,    -1,    -1,   122,   123,   124,   125,   126,   127,   531,
+      -1,    -1,    -1,    -1,     7,    -1,    -1,    10,    11,    12,
+      13,    14,    -1,    -1,    -1,    -1,   549,   550,   551,   552,
+     553,   554,   555,   556,   557,   558,   559,   560,   561,   562,
+     563,   564,   565,   566,    -1,   925,   568,    40,    41,    42,
+      43,    -1,    -1,    -1,    -1,   577,    -1,    -1,    -1,  1133,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,   954,   597,    69,    70,    -1,    -1,
+      -1,    -1,    75,    -1,    -1,    -1,    79,    -1,    -1,    82,
+      83,    84,    85,    86,    87,    88,    89,    -1,    91,    92,
+    1174,    -1,    -1,    -1,    -1,    -1,   986,    -1,    -1,    -1,
+      -1,    -1,    -1,   635,    -1,    -1,    -1,   997,    -1,    -1,
+      -1,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,
+     123,   124,   125,   126,   127,    -1,  1210,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   671,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,   679,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   689,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   710,  1263,
+    1264,    -1,  1072,    -1,    -1,    -1,    -1,  1271,    -1,   721,
+     722,    -1,    -1,    -1,    -1,    -1,  1086,    10,    11,    12,
+      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
+      23,    24,    25,    26,    27,    28,    29,   750,    -1,    -1,
+      -1,   753,    -1,    -1,    -1,    -1,   758,    -1,    -1,    42,
+      -1,    -1,    -1,   157,   158,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,   780,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,     7,    70,    -1,    10,
+      11,    12,    13,    14,    -1,    -1,   190,    -1,    -1,    -1,
+      -1,    -1,    -1,   197,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,  1174,    -1,   818,    -1,    -1,    40,
+      41,    42,    43,   825,    -1,    -1,    -1,    -1,    -1,    -1,
+    1384,    -1,    -1,    -1,    -1,    -1,   838,    -1,   840,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    69,    70,
+      -1,   853,    -1,    -1,    75,    -1,    -1,   859,    79,    -1,
+      -1,    82,    83,    84,    85,    86,    87,    88,    89,   871,
+      91,    92,   874,    -1,    -1,   269,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1441,    -1,  1443,
+      -1,   894,    -1,   114,    -1,   116,    -1,    -1,    -1,    -1,
+      -1,   122,   123,   124,   125,   126,   127,    -1,    -1,    -1,
+      -1,  1271,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,  1478,    -1,  1480,    -1,    -1,    -1,
+      -1,    -1,   326,    -1,    -1,    -1,   939,    -1,    -1,    -1,
+     334,   335,   148,   337,   338,    -1,    -1,    -1,    -1,    -1,
+      -1,   345,   158,  1507,    -1,   349,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,   169,   170,    -1,    -1,    -1,   971,    -1,
+      -1,    -1,    -1,    -1,   368,    -1,    -1,    -1,    -1,   981,
+     983,    -1,    10,    11,    12,    13,    14,    15,    16,    17,
+      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
+      28,    29,    -1,   397,    32,    33,    34,   401,    -1,    -1,
+      -1,    -1,    -1,    -1,    42,    -1,    -1,    -1,    -1,  1022,
+      -1,    -1,    -1,    -1,    40,    41,    -1,    43,    -1,    -1,
+      -1,    -1,    -1,    -1,   240,    -1,    -1,   431,    -1,    -1,
+      -1,    -1,    70,    -1,    -1,  1047,    -1,    75,    -1,    77,
+      78,    -1,    -1,    69,    -1,    -1,    -1,    -1,   264,    75,
+      88,    89,    -1,    79,    -1,    -1,    82,    83,    84,    85,
+      86,    87,    88,    89,    -1,    91,    92,    -1,    -1,    -1,
+    1082,    -1,    -1,   477,    -1,  1087,   480,    -1,   116,    -1,
+      -1,    -1,    -1,  1095,   122,   123,    -1,    -1,   114,    -1,
+     116,  1104,    -1,    -1,    -1,   121,   122,   123,   124,   125,
+     126,   127,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   520,  1129,    -1,    -1,
+     524,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1140,    -1,
+      -1,  1143,    -1,  1145,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1160,  1161,
+    1163,  1164,  1522,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,   379,   568,   569,    -1,    -1,  1180,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,   586,   587,    -1,    -1,    40,    41,    -1,    43,
+      -1,    -1,   596,    -1,   598,   599,    -1,    -1,    -1,    -1,
+      -1,   605,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,   615,   616,    -1,  1226,    69,    -1,   621,    -1,    -1,
+      -1,    75,  1234,    -1,    -1,    79,   630,   631,    82,    83,
+      84,    85,    86,    87,    88,    89,    -1,    91,    92,    -1,
+      -1,    -1,   646,    -1,    -1,    -1,    -1,   651,   652,    -1,
+      -1,   655,   656,    -1,    -1,    -1,   472,    -1,   662,    -1,
+     114,    -1,   116,    -1,    -1,   119,    -1,    -1,   122,   123,
+     124,   125,   126,   127,    -1,    -1,    -1,   681,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,  1304,    -1,  1306,    -1,   512,    -1,    -1,    -1,
+     704,   705,    -1,    -1,    -1,    -1,    -1,    -1,   524,    -1,
+    1322,    -1,  1324,    -1,   530,    -1,    -1,   533,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1339,    -1,    -1,
+     546,    -1,    -1,    -1,    -1,   739,    -1,    -1,    -1,   743,
+     744,    -1,  1354,  1355,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,  1365,    -1,    -1,  1368,    -1,  1371,    -1,
+     576,    -1,    -1,    -1,    -1,    -1,    -1,   583,    -1,    -1,
+      -1,   587,    -1,    -1,    -1,  1388,    -1,    -1,  1390,    -1,
+      -1,    -1,   786,    -1,    -1,    -1,    -1,  1399,    -1,    -1,
+    1402,    -1,  1404,  1405,  1406,    -1,    -1,    -1,   802,    -1,
+     804,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+     814,    -1,    -1,    -1,    -1,    -1,    -1,   633,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,   641,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,  1445,    -1,  1447,    -1,  1449,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,  1460,  1461,    -1,
+      -1,    -1,    -1,  1465,     4,     5,     6,     7,     8,     9,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
+      -1,   885,    32,    33,    34,    -1,    -1,    -1,   892,   893,
+      -1,   895,    42,    -1,    -1,   899,    -1,    -1,    -1,    -1,
+      -1,   717,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,   728,    -1,    -1,    -1,   920,   921,    -1,    -1,
+      70,    -1,    72,   739,    74,   741,    -1,    77,    78,    -1,
+      -1,    -1,    -1,    -1,    -1,   751,    -1,    -1,    -1,    -1,
+      -1,   757,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+     954,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,   115,   116,    -1,    -1,   973,
+     974,    -1,   122,   123,    -1,    -1,    -1,    -1,    -1,   983,
+      -1,   797,   798,    -1,    -1,   989,   990,    -1,   992,   993,
+     994,    -1,    -1,    -1,    -1,    -1,    -1,   813,    -1,    -1,
+    1004,  1005,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    10,    11,    12,    13,    14,    15,    16,    17,    18,
+      19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
+      29,    -1,    -1,    32,    33,    34,   852,    -1,    -1,    -1,
+     856,    -1,    -1,    42,    43,    -1,    -1,    -1,    -1,    -1,
+      -1,    40,    41,    -1,    43,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,  1070,    -1,  1072,   885,
+      -1,    70,    -1,  1077,    -1,    -1,   892,    -1,    77,    78,
+      69,    -1,  1086,    -1,    -1,    -1,    75,    -1,    -1,    -1,
+      79,    -1,    -1,    82,    83,    84,    85,    86,    87,    88,
+      89,    -1,    91,    92,    -1,  1109,  1110,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,   932,   116,    -1,    -1,
+      -1,   120,    -1,   122,   123,   114,    -1,   116,    -1,  1133,
       -1,    -1,    -1,   122,   123,   124,   125,   126,   127,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   137,     3,
+      -1,    -1,   958,    -1,    -1,    -1,    -1,   963,    40,    41,
+     966,    43,    44,    -1,    46,    -1,    -1,    49,    50,    51,
+      52,    53,    54,    55,    56,    -1,    -1,    59,    60,    -1,
+     986,    -1,    64,    65,    -1,    67,    -1,    69,    -1,    -1,
+      -1,   997,    -1,    75,    -1,    77,    78,    79,    -1,    -1,
+      82,    83,    84,    85,    86,    87,    88,    89,    -1,    91,
+      92,  1017,    -1,  1019,    -1,    -1,  1210,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1034,  1035,
+      -1,    -1,   114,    -1,   116,    -1,    -1,   119,    -1,    -1,
+     122,   123,   124,   125,   126,   127,    40,    41,    -1,    43,
+     132,    -1,    -1,    -1,  1060,   137,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1263,
+    1264,    -1,    -1,    -1,    -1,    69,    -1,    -1,    -1,    -1,
+      -1,    75,    -1,    -1,    -1,    79,    -1,    -1,    82,    83,
+      84,    85,    86,    87,    88,    89,    -1,    91,    92,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1114,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+     114,    -1,   116,    -1,    -1,    -1,    -1,  1133,   122,   123,
+     124,   125,   126,   127,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,  1148,  1149,    -1,    -1,     3,     4,     5,     6,
+       7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
+      27,    28,    29,    -1,    -1,    32,    33,    34,    35,    -1,
+      -1,    -1,    39,    40,    41,    42,    43,    44,    -1,    46,
+    1384,    -1,    49,    50,    51,    52,    53,    54,    55,    56,
+      -1,    -1,    -1,    60,    -1,    -1,    -1,    64,    65,    -1,
+      67,    -1,    69,    70,    -1,    72,    -1,    74,    75,    -1,
+      77,    78,    79,    -1,    -1,    82,    83,    84,    85,    86,
+      87,    88,    89,    -1,    91,    92,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,   114,    -1,   116,
+      -1,    -1,   119,    -1,    -1,   122,   123,   124,   125,   126,
+     127,    -1,    -1,    -1,    -1,   132,    -1,    -1,    -1,  1473,
+     137,    -1,    -1,    -1,  1290,    -1,  1292,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,  1497,  1498,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1522,     3,
        4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
       14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
       24,    25,    26,    27,    28,    29,    -1,    -1,    32,    33,
       34,    35,    -1,    -1,    -1,    39,    40,    41,    42,    43,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,  1502,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    69,    70,    -1,    72,    -1,
-      74,    75,    -1,    77,    78,    79,    -1,    -1,    82,    83,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
+      30,    -1,    -1,    -1,    -1,    69,    70,    -1,    72,    -1,
+      74,    75,    42,    77,    78,    79,    -1,    -1,    82,    83,
       84,    85,    86,    87,    88,    89,    -1,    91,    92,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-     114,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,   123,
+      70,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+     114,    81,   116,    -1,    -1,    -1,    -1,    -1,   122,   123,
      124,   125,   126,   127,     4,     5,     6,     7,     8,     9,
       10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
       20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
       -1,    -1,    32,    33,    34,    -1,    -1,    -1,    -1,    -1,
-      40,    41,    42,    43,    10,    11,    12,    13,    14,    15,
-      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-      26,    27,    28,    29,    -1,    -1,    32,    33,    34,    69,
-      70,    -1,    72,    -1,    74,    75,    42,    77,    78,    79,
+      40,    41,    42,    43,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,  1507,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    69,
+      70,    -1,    72,    -1,    74,    75,    -1,    77,    78,    79,
       -1,    -1,    82,    83,    84,    85,    86,    87,    88,    89,
       -1,    91,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,
-      -1,    77,    78,    -1,   114,    -1,   116,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,   114,    -1,   116,    -1,    -1,    -1,
       -1,   121,   122,   123,   124,   125,   126,   127,     4,     5,
        6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
@@ -3499,10 +3525,10 @@
       -1,    -1,    -1,    -1,    40,    41,    42,    43,    10,    11,
       12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
-      22,    23,    24,    25,    26,    27,    28,    29,    -1,    -1,
-      32,    33,    34,    69,    70,    -1,    72,    -1,    74,    75,
+      22,    23,    24,    25,    26,    27,    28,    29,    30,    -1,
+      -1,    -1,    -1,    69,    70,    -1,    72,    -1,    74,    75,
       42,    77,    78,    79,    -1,    -1,    82,    83,    84,    85,
       86,    87,    88,    89,    -1,    91,    92,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,
-      -1,    -1,    -1,    -1,    -1,    77,    78,    -1,   114,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   114,    81,
      116,    -1,    -1,    -1,    -1,   121,   122,   123,   124,   125,
      126,   127,     4,     5,     6,     7,     8,     9,    10,    11,
@@ -3510,24 +3536,24 @@
       22,    23,    24,    25,    26,    27,    28,    29,    -1,    -1,
       32,    33,    34,    -1,    -1,    -1,    -1,    -1,    40,    41,
-      42,    43,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    69,    70,    -1,
-      72,    -1,    74,    75,    -1,    77,    78,    79,    -1,    -1,
+      42,    43,    10,    11,    12,    13,    14,    15,    16,    17,
+      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
+      28,    29,    -1,    -1,    32,    33,    34,    69,    70,    -1,
+      72,    -1,    74,    75,    42,    77,    78,    79,    -1,    -1,
       82,    83,    84,    85,    86,    87,    88,    89,    -1,    91,
       92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    77,
+      78,    -1,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,
      122,   123,   124,   125,   126,   127,     4,     5,     6,     7,
        8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
       18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
       28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,
-      -1,    -1,    40,    41,    42,    43,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    69,    70,    -1,    72,    -1,    74,    75,    -1,    77,
+      -1,    -1,    40,    41,    42,    43,    10,    11,    12,    13,
+      14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
+      24,    25,    26,    27,    28,    29,    -1,    -1,    32,    33,
+      34,    69,    70,    -1,    72,    -1,    74,    75,    42,    77,
       78,    79,    -1,    -1,    82,    83,    84,    85,    86,    87,
       88,    89,    -1,    91,    92,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,   114,    -1,   116,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    -1,    -1,
+      -1,    -1,    -1,    77,    78,    -1,   114,    -1,   116,    -1,
       -1,    -1,    -1,    -1,   122,   123,   124,   125,   126,   127,
        4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
@@ -3567,12 +3593,12 @@
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   114,
-      -1,   116,    -1,    -1,    -1,    -1,    -1,   122,   123,     3,
+      -1,   116,    -1,    -1,    -1,   120,    -1,   122,   123,     3,
        4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
       14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
       24,    25,    26,    27,    28,    29,    -1,    -1,    32,    33,
-      34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,    -1,
+      34,    35,    -1,    -1,    -1,    39,    -1,    -1,    42,    43,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,    -1,
+      -1,    -1,    -1,    67,    -1,    -1,    70,    -1,    72,    -1,
       74,    75,    -1,    77,    78,    79,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    88,    89,    -1,    -1,    -1,    -1,
@@ -3582,30 +3608,7 @@
        3,     4,     5,     6,     7,     8,     9,    10,    11,    12,
       13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
-      23,    24,    25,    26,    27,    28,    29,    30,    -1,    32,
-      33,    34,    35,    -1,    -1,    -1,    39,    -1,    -1,    42,
+      23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
+      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,
-      -1,    74,    -1,    -1,    77,    78,    -1,    -1,    81,     3,
-       4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
-      14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
-      24,    25,    26,    27,    28,    29,    -1,    -1,    32,    33,
-      34,    35,    -1,   116,    -1,    39,    -1,    -1,    42,   122,
-     123,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,    -1,
-      74,    -1,    -1,    77,    78,     3,     4,     5,     6,     7,
-       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
-      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
-      28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,
-      -1,    -1,   116,    -1,    42,    -1,    -1,    -1,   122,   123,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    70,    -1,    72,    -1,    74,    -1,    -1,    77,
-      78,     4,     5,     6,     7,     8,     9,    10,    11,    12,
-      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
-      23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
-      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,   116,    42,
-      -1,    -1,    -1,    -1,   122,   123,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,
@@ -3615,87 +3618,91 @@
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,
-     123,     4,     5,     6,     7,     8,     9,    10,    11,    12,
+     123,     3,     4,     5,     6,     7,     8,     9,    10,    11,
+      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
+      22,    23,    24,    25,    26,    27,    28,    29,    30,    -1,
+      32,    33,    34,    35,    -1,    -1,    -1,    39,    -1,    -1,
+      42,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,
+      72,    -1,    74,    -1,    -1,    77,    78,    -1,    -1,    81,
+       3,     4,     5,     6,     7,     8,     9,    10,    11,    12,
       13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
       23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
-      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,
+      33,    34,    35,    -1,   116,    -1,    39,    -1,    -1,    42,
+     122,   123,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,
+      -1,    74,    -1,    -1,    77,    78,     3,     4,     5,     6,
+       7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
+      27,    28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,
+      -1,    -1,    -1,   116,    -1,    42,    -1,    -1,    -1,   122,
+     123,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    70,    -1,    72,    -1,    74,    -1,    -1,
+      77,    78,     4,     5,     6,     7,     8,     9,    10,    11,
+      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
+      22,    23,    24,    25,    26,    27,    28,    29,    -1,    -1,
+      32,    33,    34,    -1,    -1,    -1,    -1,    -1,    -1,   116,
+      42,    -1,    -1,    -1,    -1,   122,   123,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,
+      72,    -1,    74,    75,    -1,    77,    78,    79,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    88,    89,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,
-      -1,    74,    -1,    -1,    77,    78,     4,     5,     6,     7,
-       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
+      -1,    -1,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,
+     122,   123,     4,     5,     6,     7,     8,     9,    10,    11,
+      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
+      22,    23,    24,    25,    26,    27,    28,    29,    -1,    -1,
+      32,    33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      42,    -1,    10,    11,    12,    13,    14,    15,    16,    17,
       18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
-      28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,
-      -1,    -1,   115,   116,    42,    -1,    -1,    -1,    -1,   122,
-     123,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      28,    29,    -1,    -1,    32,    33,    34,    -1,    70,    -1,
+      72,    -1,    74,    -1,    42,    77,    78,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    70,    -1,    72,    -1,    74,    -1,    -1,    77,
-      78,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   101,
+      -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    77,
+      78,    -1,    -1,    -1,   116,    -1,    -1,    -1,    -1,    -1,
+     122,   123,     4,     5,     6,     7,     8,     9,    10,    11,
+      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
+      22,    23,    24,    25,    26,    27,    28,    29,   116,    -1,
+      32,    33,    34,    -1,   122,   123,    -1,    -1,    -1,    -1,
+      42,    -1,    10,    11,    12,    13,    14,    15,    16,    17,
+      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
+      28,    29,    -1,    -1,    32,    33,    34,    -1,    70,    -1,
+      72,    -1,    74,    -1,    42,    77,    78,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,   101,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   116,    -1,
-      -1,    -1,    -1,    -1,   122,   123,     4,     5,     6,     7,
-       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
-      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
-      28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    42,    -1,    10,    11,    12,    13,
-      14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
-      24,    25,    26,    27,    28,    29,    -1,    -1,    32,    33,
-      34,    -1,    70,    -1,    72,    -1,    74,    -1,    42,    77,
-      78,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   101,
+      -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,    77,
+      78,    -1,    -1,    -1,   116,    -1,    -1,    -1,    -1,    -1,
+     122,   123,     4,     5,     6,     7,     8,     9,    10,    11,
+      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
+      22,    23,    24,    25,    26,    27,    28,    29,   116,    -1,
+      32,    33,    34,    -1,   122,   123,    -1,    -1,    -1,    -1,
+      42,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,   101,    -1,    -1,    70,    -1,    -1,    -1,
-      -1,    -1,    -1,    77,    78,    -1,    -1,    -1,   116,    -1,
-      -1,    -1,    -1,    -1,   122,   123,     4,     5,     6,     7,
-       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
-      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
-      28,    29,   116,    -1,    32,    33,    34,    -1,   122,   123,
-      -1,    -1,    -1,    -1,    42,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,
+      72,    -1,    74,    -1,    -1,    77,    78,     4,     5,     6,
+       7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
+      27,    28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,
+      -1,    -1,    -1,    -1,   116,    42,    -1,    -1,    -1,    -1,
+     122,   123,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    70,    -1,    72,    -1,    74,    -1,    -1,
+      77,    78,     4,     5,     6,     7,     8,     9,    10,    11,
+      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
+      22,    23,    24,    25,    26,    27,    28,    29,    -1,    -1,
+      32,    33,    34,    -1,    -1,    -1,    -1,    -1,    -1,   116,
+      42,    -1,    -1,    -1,    -1,   122,   123,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    70,    -1,    72,    -1,    74,    -1,    -1,    77,
-      78,     4,     5,     6,     7,     8,     9,    10,    11,    12,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,
+      72,    -1,    74,    -1,    -1,    77,    78,    10,    11,    12,
       13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
       23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
-      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,   116,    42,
-      -1,    -1,    -1,    -1,   122,   123,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,
-      -1,    74,    -1,    -1,    77,    78,     4,     5,     6,     7,
-       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
-      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
-      28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,
-      -1,    -1,    -1,   116,    42,    -1,    -1,    -1,    -1,   122,
-     123,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    70,    -1,    72,    -1,    74,    -1,    -1,    77,
-      78,    10,    11,    12,    13,    14,    15,    16,    17,    18,
-      19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
-      29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,    -1,
-      -1,    40,    41,    42,    43,    -1,    -1,    -1,   116,    -1,
-      -1,    -1,    -1,    -1,   122,   123,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      69,    70,    -1,    -1,    -1,    -1,    75,    -1,    77,    78,
-      79,    -1,    -1,    82,    83,    84,    85,    86,    87,    88,
-      89,    -1,    91,    92,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   114,    -1,   116,    -1,    -1,
-     119,    -1,    -1,   122,   123,   124,   125,   126,   127,    10,
-      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
-      21,    22,    23,    24,    25,    26,    27,    28,    29,    -1,
-      -1,    32,    33,    34,    -1,    -1,    -1,    -1,    -1,    40,
-      41,    42,    43,    10,    11,    12,    13,    14,    15,    16,
-      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
-      27,    28,    29,    -1,    -1,    32,    33,    34,    69,    70,
-      -1,    -1,    -1,    -1,    75,    42,    77,    78,    79,    -1,
-      -1,    82,    83,    84,    85,    86,    87,    88,    89,    -1,
-      91,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    70,    -1,    -1,    -1,    -1,    -1,    -1,
-      77,    78,    -1,   114,   115,   116,    -1,    -1,    -1,    -1,
-      -1,   122,   123,   124,   125,   126,   127,    10,    11,    12,
-      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
-      23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
-      33,    34,    -1,    -1,    -1,   122,   123,    40,    41,    42,
-      43,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      33,    34,    -1,    -1,    -1,    -1,    -1,    40,    41,    42,
+      43,    -1,    -1,    -1,   116,    -1,    -1,    -1,    -1,    -1,
+     122,   123,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    69,    70,    -1,    -1,
       -1,    -1,    75,    -1,    77,    78,    79,    -1,    -1,    82,
@@ -3703,21 +3710,21 @@
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,
+      -1,   114,    -1,   116,    -1,    -1,   119,    -1,    -1,   122,
      123,   124,   125,   126,   127,    10,    11,    12,    13,    14,
       15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
       25,    26,    27,    28,    29,    -1,    -1,    32,    33,    34,
-      -1,    -1,    -1,    -1,    -1,    40,    41,    42,    43,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    69,    70,    -1,    -1,    -1,    -1,
-      75,    -1,    77,    78,    79,    -1,    -1,    82,    83,    84,
+      -1,    -1,    -1,    -1,    -1,    40,    41,    42,    43,    10,
+      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
+      21,    22,    23,    24,    25,    26,    27,    28,    29,    -1,
+      -1,    32,    33,    34,    69,    70,    -1,    -1,    -1,    -1,
+      75,    42,    77,    78,    79,    -1,    -1,    82,    83,    84,
       85,    86,    87,    88,    89,    -1,    91,    92,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,   114,
-      -1,   116,    -1,    -1,    -1,    -1,    -1,   122,   123,   124,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,
+      -1,    -1,    -1,    -1,    -1,    -1,    77,    78,    -1,   114,
+     115,   116,    -1,    -1,    -1,    -1,    -1,   122,   123,   124,
      125,   126,   127,    10,    11,    12,    13,    14,    15,    16,
       17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
       27,    28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,
-      -1,    -1,    -1,    40,    41,    42,    43,    -1,    -1,    -1,
+      -1,   122,   123,    40,    41,    42,    43,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
@@ -3728,16 +3735,51 @@
       -1,    -1,    -1,    -1,    -1,    -1,    -1,   114,    -1,   116,
       -1,    -1,    -1,    -1,    -1,   122,   123,   124,   125,   126,
-     127,     3,     4,     5,     6,     7,     8,     9,    10,    11,
-      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
-      22,    23,    24,    25,    26,    27,    28,    29,    -1,    -1,
-      32,    33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      42,    10,    11,    12,    13,    14,    15,    16,    17,    18,
+     127,    10,    11,    12,    13,    14,    15,    16,    17,    18,
       19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
-      29,    -1,    -1,    32,    33,    34,    -1,    -1,    70,    -1,
-      72,    -1,    74,    42,    43,    77,    78,    -1,    -1,    -1,
+      29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,    -1,
+      -1,    40,    41,    42,    43,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      69,    70,    -1,    -1,    -1,    -1,    75,    -1,    77,    78,
+      79,    -1,    -1,    82,    83,    84,    85,    86,    87,    88,
+      89,    -1,    91,    92,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,   114,    -1,   116,    -1,    -1,
+      -1,    -1,    -1,   122,   123,   124,   125,   126,   127,    10,
+      11,    12,    13,    14,    15,    16,    17,    18,    19,    20,
+      21,    22,    23,    24,    25,    26,    27,    28,    29,    -1,
+      -1,    32,    33,    34,    -1,    -1,    -1,    -1,    -1,    40,
+      41,    42,    43,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    69,    70,
+      -1,    -1,    -1,    -1,    75,    -1,    77,    78,    79,    -1,
+      -1,    82,    83,    84,    85,    86,    87,    88,    89,    -1,
+      91,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,   114,    -1,   116,    -1,    -1,    -1,    -1,
+      -1,   122,   123,   124,   125,   126,   127,    10,    11,    12,
+      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
+      23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
+      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    10,    11,    12,
+      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
+      23,    24,    25,    26,    27,    28,    29,    70,    -1,    32,
+      33,    34,    75,    -1,    77,    78,    79,    -1,    -1,    42,
+      -1,    -1,    -1,    -1,    -1,    88,    89,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    -1,
+      -1,   114,    75,   116,    77,    78,    79,    -1,    -1,   122,
+     123,    -1,    -1,    -1,    -1,    88,    89,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,
+     123,    10,    11,    12,    13,    14,    15,    16,    17,    18,
+      19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
+      29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    42,    43,    -1,    -1,    -1,    -1,    -1,
       -1,    10,    11,    12,    13,    14,    15,    16,    17,    18,
       19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
       29,    70,    -1,    32,    33,    34,    -1,    -1,    77,    78,
-      -1,    -1,    -1,    42,    43,    -1,    -1,   119,    -1,    -1,
+      -1,    -1,    -1,    42,    43,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
@@ -3746,5 +3788,5 @@
       14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
       24,    25,    26,    27,    28,    29,    -1,    -1,    32,    33,
-      34,    -1,    -1,    -1,    -1,    -1,    -1,   116,    42,    43,
+      34,    -1,    -1,    -1,    -1,    -1,    -1,   116,    42,    -1,
       -1,   120,    -1,   122,   123,    -1,    10,    11,    12,    13,
       14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
@@ -3754,5 +3796,5 @@
       21,    22,    23,    24,    25,    26,    27,    28,    29,    -1,
       -1,    32,    33,    34,    -1,    -1,    70,    -1,    -1,    -1,
-      -1,    42,   116,    77,    78,    -1,   120,    -1,   122,   123,
+      -1,    42,   116,    77,    78,    -1,    -1,    -1,   122,   123,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,
@@ -3762,88 +3804,54 @@
       16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
       26,    27,    28,    29,    -1,   116,    32,    33,    34,    -1,
-      -1,   122,   123,    -1,    -1,    -1,    42,    10,    11,    12,
-      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
-      23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
-      33,    34,    -1,    -1,    70,    -1,    -1,    -1,    -1,    42,
-      -1,    77,    78,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    -1,
-      -1,    -1,    -1,    -1,    77,    78,    -1,    -1,    -1,    -1,
-     116,    -1,    -1,    -1,    -1,    -1,   122,   123,    -1,    -1,
+      -1,   122,   123,    -1,    -1,    -1,    42,    -1,     4,     5,
+       6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
+      16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
+      26,    27,    28,    29,    70,    -1,    32,    33,    34,    -1,
+      -1,    77,    78,    -1,    -1,    -1,    42,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,
-     123,     4,     5,     6,     7,     8,     9,    10,    11,    12,
-      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
-      23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
-      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,
-      -1,    40,    41,    -1,    43,    44,    -1,    46,    -1,    -1,
-      49,    50,    51,    52,    53,    54,    55,    56,    -1,    -1,
-      59,    60,    -1,    -1,    -1,    64,    65,    70,    67,    72,
-      69,    74,    -1,    -1,    77,    78,    75,    -1,    -1,    -1,
-      79,    -1,    -1,    82,    83,    84,    85,    86,    87,    88,
-      89,    -1,    91,    92,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    70,    -1,    72,    -1,    74,    -1,
+     116,    77,    78,    -1,    -1,    -1,   122,   123,    40,    41,
+      -1,    43,    44,    -1,    46,    -1,    -1,    49,    50,    51,
+      52,    53,    54,    55,    56,    -1,    -1,    -1,    60,    -1,
+      -1,    -1,    64,    65,    -1,    67,    -1,    69,    -1,   115,
+      -1,    -1,    -1,    75,    -1,    77,    78,    79,    -1,    -1,
+      82,    83,    84,    85,    86,    87,    88,    89,    -1,    91,
+      92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,   115,    -1,    -1,   114,    -1,   116,    -1,    -1,
-     119,    -1,    -1,   122,   123,   124,   125,   126,   127,    -1,
-      -1,    40,    41,   132,    43,    44,    -1,    46,   137,    -1,
-      49,    50,    51,    52,    53,    54,    55,    56,    -1,    -1,
-      -1,    60,    -1,    -1,    -1,    64,    65,    -1,    67,    -1,
-      69,    -1,    -1,    -1,    -1,    -1,    75,    -1,    -1,    -1,
-      79,    -1,    -1,    82,    83,    84,    85,    86,    87,    88,
-      89,    -1,    91,    92,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,   114,    -1,   116,    -1,    -1,   119,    -1,    -1,
+     122,   123,   124,   125,   126,   127,    -1,    -1,    -1,    -1,
+     132,    -1,    -1,    -1,    -1,   137,     4,     5,     6,     7,
+       8,     9,    10,    11,    12,    13,    14,    15,    16,    17,
+      18,    19,    20,    21,    22,    23,    24,    25,    26,    27,
+      28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    42,    -1,    40,    41,    -1,    43,
+      44,    -1,    46,    47,    48,    49,    50,    51,    52,    53,
+      54,    55,    56,    -1,    -1,    59,    60,    -1,    -1,    -1,
+      64,    65,    70,    67,    72,    69,    74,    -1,    -1,    77,
+      78,    75,    -1,    77,    78,    79,    -1,    -1,    82,    83,
+      84,    85,    86,    87,    88,    89,    -1,    91,    92,    -1,
+      -1,    -1,    -1,   101,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,   114,    -1,   116,    -1,    -1,
-     119,    -1,    -1,   122,   123,   124,   125,   126,   127,    -1,
-      -1,    -1,    -1,   132,    -1,    -1,    -1,    -1,   137,     4,
-       5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
-      15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
-      25,    26,    27,    28,    29,    -1,    -1,    32,    33,    34,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,    -1,    40,
-      41,    -1,    43,    44,    -1,    46,    47,    48,    49,    50,
-      51,    52,    53,    54,    55,    56,    -1,    -1,    59,    60,
-      -1,    -1,    -1,    64,    65,    70,    67,    72,    69,    74,
-      -1,    -1,    77,    78,    75,    -1,    -1,    -1,    79,    -1,
-      -1,    82,    83,    84,    85,    86,    87,    88,    89,    -1,
-      91,    92,    -1,    -1,    -1,    -1,   101,    -1,    -1,    -1,
+     114,    -1,   116,    -1,    -1,   119,    -1,    -1,   122,   123,
+     124,   125,   126,   127,    -1,    -1,    40,    41,   132,    43,
+      44,    -1,    46,    47,    48,    49,    50,    51,    52,    53,
+      54,    55,    56,    -1,    -1,    -1,    60,    -1,    -1,    -1,
+      64,    65,    -1,    67,    -1,    69,    -1,    -1,    -1,    -1,
+      -1,    75,    -1,    77,    78,    79,    -1,    -1,    82,    83,
+      84,    85,    86,    87,    88,    89,    -1,    91,    92,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,   114,    -1,   116,    -1,    -1,   119,    -1,
-      -1,   122,   123,   124,   125,   126,   127,    -1,    -1,    40,
-      41,   132,    43,    44,    -1,    46,    47,    48,    49,    50,
-      51,    52,    53,    54,    55,    56,    -1,    -1,    -1,    60,
-      -1,    -1,    -1,    64,    65,    -1,    67,    -1,    69,    -1,
-      -1,    -1,    -1,    -1,    75,    -1,    -1,    -1,    79,    -1,
-      -1,    82,    83,    84,    85,    86,    87,    88,    89,    -1,
-      91,    92,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,   114,    -1,   116,    -1,    -1,   119,    -1,
-      -1,   122,   123,   124,   125,   126,   127,    -1,    -1,    40,
-      41,   132,    43,    44,    -1,    46,    -1,    -1,    49,    50,
-      51,    52,    53,    54,    55,    56,    -1,    -1,    -1,    60,
-      -1,    -1,    -1,    64,    65,    -1,    67,    -1,    69,    -1,
-      -1,    -1,    -1,    -1,    75,    -1,    -1,    -1,    79,    -1,
-      -1,    82,    83,    84,    85,    86,    87,    88,    89,    -1,
-      91,    92,    -1,    -1,    -1,    -1,    -1,    -1,    40,    41,
-      -1,    43,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,   114,    -1,   116,    -1,    -1,   119,    -1,
-      -1,   122,   123,   124,   125,   126,   127,    69,    -1,    -1,
-      -1,   132,    -1,    75,    -1,    -1,    -1,    79,    -1,    -1,
-      82,    83,    84,    85,    86,    87,    88,    89,    -1,    91,
-      92,    -1,    -1,    -1,    -1,    -1,    -1,    40,    41,    -1,
-      43,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,   114,    -1,   116,    -1,    -1,   119,    -1,    -1,
-     122,   123,   124,   125,   126,   127,    69,    -1,    -1,    -1,
-      -1,    -1,    75,    -1,    -1,    -1,    79,    -1,    -1,    82,
-      83,    84,    85,    86,    87,    88,    89,    -1,    91,    92,
-      -1,    -1,    -1,    -1,    -1,    -1,    40,    41,    -1,    43,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,   114,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,
-     123,   124,   125,   126,   127,    69,    -1,    -1,    -1,    -1,
-      -1,    75,    -1,    -1,    -1,    79,    -1,    -1,    82,    83,
+     114,    -1,   116,    -1,    -1,   119,    -1,    -1,   122,   123,
+     124,   125,   126,   127,    -1,    -1,    40,    41,   132,    43,
+      44,    -1,    46,    -1,    -1,    49,    50,    51,    52,    53,
+      54,    55,    56,    -1,    -1,    -1,    60,    -1,    -1,    -1,
+      64,    65,    -1,    67,    -1,    69,    -1,    -1,    -1,    -1,
+      -1,    75,    -1,    77,    78,    79,    -1,    -1,    82,    83,
       84,    85,    86,    87,    88,    89,    -1,    91,    92,    -1,
       -1,    -1,    -1,    -1,    -1,    40,    41,    -1,    43,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-     114,    -1,   116,    -1,    -1,    -1,    -1,    -1,   122,   123,
-     124,   125,   126,   127,    69,    -1,    -1,    -1,    -1,    -1,
+     114,    -1,   116,    -1,    -1,   119,    -1,    -1,   122,   123,
+     124,   125,   126,   127,    69,    -1,    -1,    -1,   132,    -1,
       75,    -1,    -1,    -1,    79,    -1,    -1,    82,    83,    84,
       85,    86,    87,    88,    89,    -1,    91,    92,    -1,    -1,
@@ -3869,39 +3877,37 @@
       -1,    -1,    -1,    -1,    -1,    -1,   114,    -1,   116,    -1,
       -1,    -1,    -1,    -1,   122,   123,   124,   125,   126,   127,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
+      -1,    -1,    32,    33,    34,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    42,     3,     4,     5,     6,     7,     8,     9,
+      10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
+      20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
+      70,    -1,    32,    33,    34,    75,    -1,    77,    78,    -1,
+      -1,    -1,    42,    -1,    -1,    -1,    -1,    -1,    88,    89,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      70,    -1,    72,    -1,    74,    -1,    -1,    77,    78,     3,
        4,     5,     6,     7,     8,     9,    10,    11,    12,    13,
       14,    15,    16,    17,    18,    19,    20,    21,    22,    23,
-      24,    25,    26,    27,    28,    29,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,    -1,
+      24,    25,    26,    27,    28,    29,    -1,    -1,    32,    33,
+      34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,    -1,
+      74,    -1,    -1,    77,    78,     4,     5,     6,     7,     8,
+       9,    10,    11,    12,    13,    14,    15,    16,    17,    18,
+      19,    20,    21,    22,    23,    24,    25,    26,    27,    28,
+      29,    -1,    -1,    32,    33,    34,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    42,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
+      -1,    70,    -1,    72,    -1,    74,    -1,    -1,    77,    78,
       10,    11,    12,    13,    14,    15,    16,    17,    18,    19,
       20,    21,    22,    23,    24,    25,    26,    27,    28,    29,
-      -1,    -1,    32,    33,    34,    -1,    70,    -1,    72,    -1,
-      74,    75,    42,    77,    78,    79,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    88,    89,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      70,    -1,    -1,    -1,    -1,    75,    -1,    77,    78,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    88,    89,
-       3,     4,     5,     6,     7,     8,     9,    10,    11,    12,
-      13,    14,    15,    16,    17,    18,    19,    20,    21,    22,
-      23,    24,    25,    26,    27,    28,    29,    -1,    -1,    32,
-      33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    42,
+      -1,    -1,    32,    33,    34,    35,    36,    37,    38,    -1,
+      -1,    -1,    42,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,    72,
-      -1,    74,    -1,    -1,    77,    78,     3,     4,     5,     6,
-       7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
-      17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
-      27,    28,    29,    -1,    -1,    32,    33,    34,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    42,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    70,    -1,    72,    -1,    74,    -1,    -1,
-      77,    78,     4,     5,     6,     7,     8,     9,    10,    11,
-      12,    13,    14,    15,    16,    17,    18,    19,    20,    21,
-      22,    23,    24,    25,    26,    27,    28,    29,    -1,    -1,
-      32,    33,    34,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      42,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
-      -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    70,    -1,
-      72,    -1,    74,    -1,    -1,    77,    78
+      70,    -1,    -1,    -1,    -1,    -1,    -1,    77,    78
 };
 
@@ -3959,5 +3965,5 @@
      232,   235,   139,   318,   114,   318,   172,   326,   235,   114,
      139,   279,   119,    35,    36,    37,    38,   233,   293,   294,
-     296,   139,   133,   136,   298,   139,   236,   241,   242,   279,
+     296,   139,   133,   136,   298,   139,    10,    75,    77,    78,
      322,   323,   324,   114,   146,   114,   156,   114,   156,   159,
      114,   156,   114,   114,   156,   156,   116,   172,   177,   181,
@@ -4003,66 +4009,66 @@
      170,   171,   265,   140,   140,   144,   230,   140,   140,   267,
      114,   157,   377,   140,   120,   235,   294,   172,   295,   140,
-     139,   139,   114,   140,   115,   323,   177,   178,   135,   137,
-     116,   146,   208,   209,   210,   115,   121,   115,   115,   115,
-     115,   172,   365,   366,   367,   235,   364,   319,   319,   119,
-     159,   172,   173,   176,   121,   139,   115,   121,   172,   139,
-     120,   170,   135,   271,   115,   115,   115,   352,   271,   115,
-     233,   370,   116,   122,   157,   172,   172,   235,   349,   271,
-     115,   115,   115,   115,   115,   115,   115,     7,   235,   343,
-     347,   358,   139,   139,   380,   139,   139,   140,   140,   140,
-     140,   284,   170,   171,   172,   317,   139,   285,   287,   120,
-     139,   219,   281,    43,    44,    46,    49,    50,    51,    52,
-      53,    54,    55,    56,    60,    64,    65,    75,   132,   178,
-     179,   180,   181,   182,   183,   185,   186,   198,   200,   201,
-     206,   220,   315,    31,   140,   136,   284,   139,   139,   115,
-     140,   181,   255,   137,   137,   326,   171,   235,   260,   261,
-     260,   281,   319,   120,   266,   379,   115,   121,   117,   117,
-     140,   235,   121,   380,   297,   115,   293,   223,   225,   233,
-     305,   306,   307,   308,   299,   115,   115,   135,   171,   114,
-     115,   135,   121,   144,   115,   115,   115,   364,   286,   121,
-     140,   176,    82,    85,    87,   144,   152,   153,   154,   151,
-     140,   152,   170,   140,   114,   356,   357,   140,   139,   140,
-     140,   140,   172,   115,   140,   114,   356,   357,   114,   362,
-     114,   362,   357,   234,     7,   122,   140,   172,   271,   271,
-     270,   274,   274,   275,   115,   121,   121,   115,   101,   127,
-     140,   140,   152,   285,   172,   121,   137,   220,   224,   235,
-     239,   114,   114,   179,   114,   114,    75,   137,    75,   137,
-      75,   122,   178,   114,   181,   173,   173,   135,   149,   137,
-     140,   139,   140,   219,   115,   172,   271,   271,   319,   115,
-     120,   259,   120,   139,   115,   139,   140,   316,   120,   139,
-     140,   140,   115,   119,   208,   117,   171,   137,   208,   210,
-     115,   114,   356,   357,   379,   173,   117,   140,   155,   116,
-     153,   155,   155,   121,   140,    90,   118,   117,   140,   115,
-     139,   115,   117,   117,   117,   140,   115,   139,   139,   139,
-     172,   172,   140,   117,   140,   140,   140,   140,   139,   139,
-     171,   171,   117,   117,   140,   281,   235,   177,   177,    50,
-     177,   139,   137,   137,   137,   177,   137,   177,    61,    62,
-      63,   202,   203,   204,   137,    66,   137,   319,   119,   183,
-     120,   137,   140,   140,   101,   276,   277,   115,   306,   121,
-     137,   121,   137,   120,   304,   135,   146,   115,   115,   135,
-     139,   120,   117,    86,   139,   153,   117,   116,   153,   116,
-     153,   117,   271,   117,   271,   271,   271,   140,   140,   117,
-     117,   115,   115,   117,   121,   101,   270,   101,   140,   117,
-     115,   115,   114,   115,   178,   199,   220,   137,   115,   114,
-     114,   181,   204,    61,    62,   172,   179,   150,   115,   115,
-     119,   139,   139,   305,   146,   211,   114,   137,   211,   271,
-     152,   139,   139,   140,   140,   140,   140,   117,   117,   139,
-     140,   117,   179,    47,    48,   119,   189,   190,   191,   177,
-     179,   140,   115,   178,   119,   191,   101,   139,   101,   139,
-     114,   114,   137,   120,   139,   279,   316,   120,   121,   135,
-     171,   115,   140,   140,   152,   152,   115,   115,   115,   115,
-     274,    45,   171,   187,   188,   317,   135,   139,   179,   189,
-     115,   137,   179,   137,   139,   115,   139,   115,   139,   101,
-     139,   101,   139,   137,   305,   146,   144,   212,   115,   137,
-     115,   117,   140,   140,   179,   101,   121,   135,   140,   213,
-     214,   220,   137,   178,   178,   213,   181,   205,   233,   373,
-     181,   205,   115,   139,   115,   139,   120,   115,   121,   117,
-     117,   171,   187,   190,   192,   193,   139,   137,   190,   194,
-     195,   140,   114,   157,   316,   364,   144,   140,   181,   205,
-     181,   205,   114,   137,   144,   179,   184,   120,   190,   220,
-     178,    59,   184,   197,   120,   190,   115,   235,   115,   140,
-     140,   299,   179,   184,   137,   196,   197,   184,   197,   181,
-     181,   115,   115,   115,   196,   140,   140,   181,   181,   140,
-     140
+     139,   139,   114,   140,   115,   323,   150,   135,   137,   116,
+     146,   208,   209,   210,   115,   121,   115,   115,   115,   115,
+     172,   365,   366,   367,   235,   364,   319,   319,   119,   159,
+     172,   173,   176,   121,   139,   115,   121,   172,   139,   120,
+     170,   135,   271,   115,   115,   115,   352,   271,   115,   233,
+     370,   116,   122,   157,   172,   172,   235,   349,   271,   115,
+     115,   115,   115,   115,   115,   115,     7,   235,   343,   347,
+     358,   139,   139,   380,   139,   139,   140,   140,   140,   140,
+     284,   170,   171,   172,   317,   139,   285,   287,   120,   139,
+     219,   281,    43,    44,    46,    49,    50,    51,    52,    53,
+      54,    55,    56,    60,    64,    65,    75,    77,    78,    79,
+     132,   145,   177,   178,   179,   180,   181,   182,   183,   185,
+     186,   198,   200,   201,   206,   220,   279,   315,    31,   140,
+     136,   284,   139,   139,   115,   140,   181,   255,   137,   137,
+     326,   171,   235,   260,   261,   260,   281,   319,   120,   266,
+     379,   115,   121,   117,   117,   140,   235,   121,   380,   297,
+     115,   293,   223,   225,   233,   305,   306,   307,   308,   299,
+     115,   115,   135,   171,   114,   115,   135,   121,   144,   115,
+     115,   115,   364,   286,   121,   140,   176,    82,    85,    87,
+     144,   152,   153,   154,   151,   140,   152,   170,   140,   114,
+     356,   357,   140,   139,   140,   140,   140,   172,   115,   140,
+     114,   356,   357,   114,   362,   114,   362,   357,   234,     7,
+     122,   140,   172,   271,   271,   270,   274,   274,   275,   115,
+     121,   121,   115,   101,   127,   140,   140,   152,   285,   172,
+     121,   137,   220,   224,   235,   239,   114,   114,   179,   114,
+     114,   137,   279,   137,   279,   122,   279,   178,   114,   181,
+     173,   173,   149,   137,   140,   139,   140,   135,   219,   115,
+     172,   271,   271,   319,   115,   120,   259,   120,   139,   115,
+     139,   140,   316,   120,   139,   140,   140,   115,   119,   208,
+     117,   171,   137,   208,   210,   115,   114,   356,   357,   379,
+     173,   117,   140,   155,   116,   153,   155,   155,   121,   140,
+      90,   118,   117,   140,   115,   139,   115,   117,   117,   117,
+     140,   115,   139,   139,   139,   172,   172,   140,   117,   140,
+     140,   140,   140,   139,   139,   171,   171,   117,   117,   140,
+     281,   235,   177,   177,    50,   177,   139,   137,   137,   177,
+     137,   137,   177,    61,    62,    63,   202,   203,   204,   137,
+      66,   137,   119,   183,   120,   319,   137,   140,   140,   101,
+     276,   277,   115,   306,   121,   137,   121,   137,   120,   304,
+     135,   146,   115,   115,   135,   139,   120,   117,    86,   139,
+     153,   117,   116,   153,   116,   153,   117,   271,   117,   271,
+     271,   271,   140,   140,   117,   117,   115,   115,   117,   121,
+     101,   270,   101,   140,   117,   115,   115,   114,   115,   178,
+     199,   220,   137,   115,   114,   114,   181,   204,    61,    62,
+     172,   150,   179,   115,   115,   119,   139,   139,   305,   146,
+     211,   114,   137,   211,   271,   152,   139,   139,   140,   140,
+     140,   140,   117,   117,   139,   140,   117,   179,    47,    48,
+     119,   189,   190,   191,   177,   179,   140,   115,   178,   119,
+     191,   101,   139,   101,   139,   114,   114,   137,   120,   139,
+     279,   316,   120,   121,   135,   171,   115,   140,   140,   152,
+     152,   115,   115,   115,   115,   274,    45,   171,   187,   188,
+     317,   135,   139,   179,   189,   115,   137,   179,   137,   139,
+     115,   139,   115,   139,   101,   139,   101,   139,   137,   305,
+     146,   144,   212,   115,   137,   115,   117,   140,   140,   179,
+     101,   121,   135,   140,   213,   214,   220,   137,   178,   178,
+     213,   181,   205,   233,   373,   181,   205,   115,   139,   115,
+     139,   120,   115,   121,   117,   117,   171,   187,   190,   192,
+     193,   139,   137,   190,   194,   195,   140,   114,   157,   316,
+     364,   144,   140,   181,   205,   181,   205,   114,   137,   144,
+     179,   184,   120,   190,   220,   178,    59,   184,   197,   120,
+     190,   115,   235,   115,   140,   140,   299,   179,   184,   137,
+     196,   197,   184,   197,   181,   181,   115,   115,   115,   196,
+     140,   140,   181,   181,   140,   140
 };
 
@@ -4901,5 +4907,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 306 "parser.yy"
+#line 305 "parser.yy"
     { typedefTable.enterScope(); }
     break;
@@ -4908,5 +4914,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 310 "parser.yy"
+#line 309 "parser.yy"
     { typedefTable.leaveScope(); }
     break;
@@ -4915,9 +4921,16 @@
 
 /* Line 1806 of yacc.c  */
+#line 316 "parser.yy"
+    { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); }
+    break;
+
+  case 5:
+
+/* Line 1806 of yacc.c  */
 #line 317 "parser.yy"
-    { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); }
-    break;
-
-  case 5:
+    { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); }
+    break;
+
+  case 6:
 
 /* Line 1806 of yacc.c  */
@@ -4926,5 +4939,5 @@
     break;
 
-  case 6:
+  case 7:
 
 /* Line 1806 of yacc.c  */
@@ -4933,15 +4946,8 @@
     break;
 
-  case 7:
+  case 8:
 
 /* Line 1806 of yacc.c  */
 #line 320 "parser.yy"
-    { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); }
-    break;
-
-  case 8:
-
-/* Line 1806 of yacc.c  */
-#line 321 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); }
     break;
@@ -4950,5 +4956,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 346 "parser.yy"
+#line 345 "parser.yy"
     { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].str) ); }
     break;
@@ -4957,5 +4963,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 350 "parser.yy"
+#line 349 "parser.yy"
     { (yyval.str) = (yyvsp[(1) - (1)].tok); }
     break;
@@ -4964,5 +4970,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 352 "parser.yy"
+#line 351 "parser.yy"
     {
 			appendStr( (yyvsp[(1) - (2)].str), (yyvsp[(2) - (2)].tok) );						// append 2nd juxtaposed string to 1st
@@ -4975,5 +4981,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 363 "parser.yy"
+#line 362 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); }
     break;
@@ -4982,5 +4988,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 365 "parser.yy"
+#line 364 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_constantZeroOne( *(yyvsp[(1) - (1)].tok) ) ); }
     break;
@@ -4989,5 +4995,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 368 "parser.yy"
+#line 367 "parser.yy"
     { (yyval.en) = (yyvsp[(2) - (3)].en); }
     break;
@@ -4996,5 +5002,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 370 "parser.yy"
+#line 369 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); }
     break;
@@ -5003,5 +5009,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 380 "parser.yy"
+#line 379 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); }
     break;
@@ -5010,5 +5016,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 382 "parser.yy"
+#line 381 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); }
     break;
@@ -5017,5 +5023,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 384 "parser.yy"
+#line 383 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); }
     break;
@@ -5024,5 +5030,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 386 "parser.yy"
+#line 385 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); }
     break;
@@ -5031,5 +5037,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 388 "parser.yy"
+#line 387 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (2)].en), build_field_name_REALFRACTIONconstant( *(yyvsp[(2) - (2)].tok) ) ) ); }
     break;
@@ -5038,5 +5044,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 390 "parser.yy"
+#line 389 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); }
     break;
@@ -5045,5 +5051,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 392 "parser.yy"
+#line 391 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); }
     break;
@@ -5052,5 +5058,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 394 "parser.yy"
+#line 393 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); }
     break;
@@ -5059,5 +5065,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 396 "parser.yy"
+#line 395 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); }
     break;
@@ -5066,5 +5072,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 398 "parser.yy"
+#line 397 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_compoundLiteral( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ) ); }
     break;
@@ -5073,5 +5079,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 400 "parser.yy"
+#line 399 "parser.yy"
     {
 			Token fn;
@@ -5084,5 +5090,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 410 "parser.yy"
+#line 409 "parser.yy"
     { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); }
     break;
@@ -5091,5 +5097,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 415 "parser.yy"
+#line 414 "parser.yy"
     { (yyval.en) = nullptr; }
     break;
@@ -5098,5 +5104,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 421 "parser.yy"
+#line 420 "parser.yy"
     { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); }
     break;
@@ -5105,5 +5111,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 427 "parser.yy"
+#line 426 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_REALDECIMALconstant( *(yyvsp[(1) - (2)].tok) ) ), maybeMoveBuild<Expression>( (yyvsp[(2) - (2)].en) ) ) ); }
     break;
@@ -5112,5 +5118,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 429 "parser.yy"
+#line 428 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_REALDECIMALconstant( *(yyvsp[(1) - (6)].tok) ) ), build_tuple( (yyvsp[(4) - (6)].en) ) ) ); }
     break;
@@ -5119,5 +5125,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 431 "parser.yy"
+#line 430 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), maybeMoveBuild<Expression>( (yyvsp[(3) - (3)].en) ) ) ); }
     break;
@@ -5126,5 +5132,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 433 "parser.yy"
+#line 432 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); }
     break;
@@ -5133,5 +5139,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 435 "parser.yy"
+#line 434 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), maybeMoveBuild<Expression>( (yyvsp[(3) - (3)].en) ) ) ); }
     break;
@@ -5140,5 +5146,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 437 "parser.yy"
+#line 436 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); }
     break;
@@ -5147,5 +5153,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 442 "parser.yy"
+#line 441 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_constantInteger( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); }
     break;
@@ -5154,5 +5160,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 444 "parser.yy"
+#line 443 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_field_name_FLOATINGconstant( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); }
     break;
@@ -5161,5 +5167,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 446 "parser.yy"
+#line 445 "parser.yy"
     {
 			if( (*(yyvsp[(1) - (2)].tok)) == "0" || (*(yyvsp[(1) - (2)].tok)) == "1" ) {
@@ -5174,5 +5180,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 457 "parser.yy"
+#line 456 "parser.yy"
     { (yyval.en) = nullptr; }
     break;
@@ -5181,5 +5187,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 459 "parser.yy"
+#line 458 "parser.yy"
     {
 			Expression * constant = build_field_name_REALFRACTIONconstant( *(yyvsp[(2) - (2)].tok) );
@@ -5191,5 +5197,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 470 "parser.yy"
+#line 469 "parser.yy"
     { (yyval.en) = (yyvsp[(1) - (1)].en); }
     break;
@@ -5198,5 +5204,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 472 "parser.yy"
+#line 471 "parser.yy"
     { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); }
     break;
@@ -5205,5 +5211,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 474 "parser.yy"
+#line 473 "parser.yy"
     { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); }
     break;
@@ -5212,5 +5218,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 479 "parser.yy"
+#line 478 "parser.yy"
     {
 			switch ( (yyvsp[(1) - (2)].op) ) {
@@ -5230,5 +5236,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 492 "parser.yy"
+#line 491 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); }
     break;
@@ -5237,5 +5243,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 494 "parser.yy"
+#line 493 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); }
     break;
@@ -5244,5 +5250,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 496 "parser.yy"
+#line 495 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); }
     break;
@@ -5251,5 +5257,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 498 "parser.yy"
+#line 497 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); }
     break;
@@ -5258,5 +5264,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 500 "parser.yy"
+#line 499 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); }
     break;
@@ -5265,5 +5271,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 502 "parser.yy"
+#line 501 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); }
     break;
@@ -5272,5 +5278,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 504 "parser.yy"
+#line 503 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); }
     break;
@@ -5279,5 +5285,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 506 "parser.yy"
+#line 505 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_offsetOf( (yyvsp[(3) - (6)].decl), build_varref( (yyvsp[(5) - (6)].tok) ) ) ); }
     break;
@@ -5286,5 +5292,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 508 "parser.yy"
+#line 507 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); }
     break;
@@ -5293,5 +5299,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 510 "parser.yy"
+#line 509 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); }
     break;
@@ -5300,5 +5306,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 512 "parser.yy"
+#line 511 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_attrtype( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].decl) ) ); }
     break;
@@ -5307,12 +5313,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 517 "parser.yy"
+    { (yyval.op) = OperKinds::PointTo; }
+    break;
+
+  case 73:
+
+/* Line 1806 of yacc.c  */
 #line 518 "parser.yy"
-    { (yyval.op) = OperKinds::PointTo; }
-    break;
-
-  case 73:
-
-/* Line 1806 of yacc.c  */
-#line 519 "parser.yy"
     { (yyval.op) = OperKinds::AddressOf; }
     break;
@@ -5321,26 +5327,26 @@
 
 /* Line 1806 of yacc.c  */
+#line 524 "parser.yy"
+    { (yyval.op) = OperKinds::UnPlus; }
+    break;
+
+  case 75:
+
+/* Line 1806 of yacc.c  */
 #line 525 "parser.yy"
-    { (yyval.op) = OperKinds::UnPlus; }
-    break;
-
-  case 75:
+    { (yyval.op) = OperKinds::UnMinus; }
+    break;
+
+  case 76:
 
 /* Line 1806 of yacc.c  */
 #line 526 "parser.yy"
-    { (yyval.op) = OperKinds::UnMinus; }
-    break;
-
-  case 76:
+    { (yyval.op) = OperKinds::Neg; }
+    break;
+
+  case 77:
 
 /* Line 1806 of yacc.c  */
 #line 527 "parser.yy"
-    { (yyval.op) = OperKinds::Neg; }
-    break;
-
-  case 77:
-
-/* Line 1806 of yacc.c  */
-#line 528 "parser.yy"
     { (yyval.op) = OperKinds::BitNeg; }
     break;
@@ -5349,5 +5355,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 534 "parser.yy"
+#line 533 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); }
     break;
@@ -5356,5 +5362,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 542 "parser.yy"
+#line 541 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5363,5 +5369,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 544 "parser.yy"
+#line 543 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5370,5 +5376,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 546 "parser.yy"
+#line 545 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5377,5 +5383,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 552 "parser.yy"
+#line 551 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5384,5 +5390,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 554 "parser.yy"
+#line 553 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5391,5 +5397,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 560 "parser.yy"
+#line 559 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5398,5 +5404,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 562 "parser.yy"
+#line 561 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5405,5 +5411,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 568 "parser.yy"
+#line 567 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5412,5 +5418,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 570 "parser.yy"
+#line 569 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5419,5 +5425,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 572 "parser.yy"
+#line 571 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5426,5 +5432,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 574 "parser.yy"
+#line 573 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5433,5 +5439,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 580 "parser.yy"
+#line 579 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5440,5 +5446,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 582 "parser.yy"
+#line 581 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5447,5 +5453,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 588 "parser.yy"
+#line 587 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5454,5 +5460,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 594 "parser.yy"
+#line 593 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5461,5 +5467,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 600 "parser.yy"
+#line 599 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5468,5 +5474,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 606 "parser.yy"
+#line 605 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); }
     break;
@@ -5475,5 +5481,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 612 "parser.yy"
+#line 611 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); }
     break;
@@ -5482,5 +5488,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 618 "parser.yy"
+#line 617 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); }
     break;
@@ -5489,5 +5495,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 621 "parser.yy"
+#line 620 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); }
     break;
@@ -5496,5 +5502,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 634 "parser.yy"
+#line 633 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5503,5 +5509,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 641 "parser.yy"
+#line 640 "parser.yy"
     { (yyval.en) = nullptr; }
     break;
@@ -5510,82 +5516,82 @@
 
 /* Line 1806 of yacc.c  */
+#line 645 "parser.yy"
+    { (yyval.op) = OperKinds::Assign; }
+    break;
+
+  case 117:
+
+/* Line 1806 of yacc.c  */
 #line 646 "parser.yy"
-    { (yyval.op) = OperKinds::Assign; }
-    break;
-
-  case 117:
+    { (yyval.op) = OperKinds::AtAssn; }
+    break;
+
+  case 118:
 
 /* Line 1806 of yacc.c  */
 #line 647 "parser.yy"
-    { (yyval.op) = OperKinds::AtAssn; }
-    break;
-
-  case 118:
+    { (yyval.op) = OperKinds::MulAssn; }
+    break;
+
+  case 119:
 
 /* Line 1806 of yacc.c  */
 #line 648 "parser.yy"
-    { (yyval.op) = OperKinds::MulAssn; }
-    break;
-
-  case 119:
+    { (yyval.op) = OperKinds::DivAssn; }
+    break;
+
+  case 120:
 
 /* Line 1806 of yacc.c  */
 #line 649 "parser.yy"
-    { (yyval.op) = OperKinds::DivAssn; }
-    break;
-
-  case 120:
+    { (yyval.op) = OperKinds::ModAssn; }
+    break;
+
+  case 121:
 
 /* Line 1806 of yacc.c  */
 #line 650 "parser.yy"
-    { (yyval.op) = OperKinds::ModAssn; }
-    break;
-
-  case 121:
+    { (yyval.op) = OperKinds::PlusAssn; }
+    break;
+
+  case 122:
 
 /* Line 1806 of yacc.c  */
 #line 651 "parser.yy"
-    { (yyval.op) = OperKinds::PlusAssn; }
-    break;
-
-  case 122:
+    { (yyval.op) = OperKinds::MinusAssn; }
+    break;
+
+  case 123:
 
 /* Line 1806 of yacc.c  */
 #line 652 "parser.yy"
-    { (yyval.op) = OperKinds::MinusAssn; }
-    break;
-
-  case 123:
+    { (yyval.op) = OperKinds::LSAssn; }
+    break;
+
+  case 124:
 
 /* Line 1806 of yacc.c  */
 #line 653 "parser.yy"
-    { (yyval.op) = OperKinds::LSAssn; }
-    break;
-
-  case 124:
+    { (yyval.op) = OperKinds::RSAssn; }
+    break;
+
+  case 125:
 
 /* Line 1806 of yacc.c  */
 #line 654 "parser.yy"
-    { (yyval.op) = OperKinds::RSAssn; }
-    break;
-
-  case 125:
+    { (yyval.op) = OperKinds::AndAssn; }
+    break;
+
+  case 126:
 
 /* Line 1806 of yacc.c  */
 #line 655 "parser.yy"
-    { (yyval.op) = OperKinds::AndAssn; }
-    break;
-
-  case 126:
+    { (yyval.op) = OperKinds::ERAssn; }
+    break;
+
+  case 127:
 
 /* Line 1806 of yacc.c  */
 #line 656 "parser.yy"
-    { (yyval.op) = OperKinds::ERAssn; }
-    break;
-
-  case 127:
-
-/* Line 1806 of yacc.c  */
-#line 657 "parser.yy"
     { (yyval.op) = OperKinds::OrAssn; }
     break;
@@ -5594,5 +5600,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 668 "parser.yy"
+#line 667 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_last( (yyvsp[(4) - (6)].en) ) ) ); }
     break;
@@ -5601,5 +5607,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 670 "parser.yy"
+#line 669 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_last( (yyvsp[(5) - (7)].en) ) ) ); }
     break;
@@ -5608,5 +5614,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 676 "parser.yy"
+#line 675 "parser.yy"
     { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); }
     break;
@@ -5615,5 +5621,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 682 "parser.yy"
+#line 681 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5622,5 +5628,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 687 "parser.yy"
+#line 686 "parser.yy"
     { (yyval.en) = nullptr; }
     break;
@@ -5629,5 +5635,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 696 "parser.yy"
+#line 695 "parser.yy"
     { (yyval.sn) = (yyvsp[(1) - (1)].sn); }
     break;
@@ -5636,5 +5642,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 703 "parser.yy"
+#line 702 "parser.yy"
     {
 			Token fn;
@@ -5647,7 +5653,7 @@
 
 /* Line 1806 of yacc.c  */
-#line 713 "parser.yy"
+#line 712 "parser.yy"
     {
-			(yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) );
+			(yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) );
 		}
     break;
@@ -5656,5 +5662,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 720 "parser.yy"
+#line 719 "parser.yy"
     { (yyval.sn) = new StatementNode( build_compound( (StatementNode *)0 ) ); }
     break;
@@ -5663,5 +5669,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 727 "parser.yy"
+#line 726 "parser.yy"
     { (yyval.sn) = new StatementNode( build_compound( (yyvsp[(5) - (7)].sn) ) ); }
     break;
@@ -5670,5 +5676,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 733 "parser.yy"
+#line 732 "parser.yy"
     { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } }
     break;
@@ -5677,5 +5683,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 738 "parser.yy"
+#line 737 "parser.yy"
     { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); }
     break;
@@ -5684,5 +5690,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 740 "parser.yy"
+#line 739 "parser.yy"
     {	// mark all fields in list
 			for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() )
@@ -5695,5 +5701,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 746 "parser.yy"
+#line 745 "parser.yy"
     { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); }
     break;
@@ -5702,5 +5708,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 753 "parser.yy"
+#line 752 "parser.yy"
     { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } }
     break;
@@ -5709,5 +5715,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 758 "parser.yy"
+#line 757 "parser.yy"
     { (yyval.sn) = new StatementNode( build_expr( (yyvsp[(1) - (2)].en) ) ); }
     break;
@@ -5716,5 +5722,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 764 "parser.yy"
+#line 763 "parser.yy"
     { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn), nullptr ) ); }
     break;
@@ -5723,5 +5729,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 766 "parser.yy"
+#line 765 "parser.yy"
     { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].sn), (yyvsp[(7) - (7)].sn) ) ); }
     break;
@@ -5730,5 +5736,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 768 "parser.yy"
+#line 767 "parser.yy"
     { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); }
     break;
@@ -5737,5 +5743,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 770 "parser.yy"
+#line 769 "parser.yy"
     {
 			StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) );
@@ -5752,5 +5758,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 780 "parser.yy"
+#line 779 "parser.yy"
     { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); }
     break;
@@ -5759,5 +5765,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 782 "parser.yy"
+#line 781 "parser.yy"
     {
 			StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) );
@@ -5769,5 +5775,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 792 "parser.yy"
+#line 791 "parser.yy"
     { (yyval.en) = (yyvsp[(1) - (1)].en); }
     break;
@@ -5776,5 +5782,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 794 "parser.yy"
+#line 793 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -5783,5 +5789,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 799 "parser.yy"
+#line 798 "parser.yy"
     { (yyval.sn) = new StatementNode( build_case( (yyvsp[(1) - (1)].en) ) ); }
     break;
@@ -5790,5 +5796,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 801 "parser.yy"
+#line 800 "parser.yy"
     { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_last( new StatementNode( build_case( (yyvsp[(3) - (3)].en) ) ) ) ); }
     break;
@@ -5797,12 +5803,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 804 "parser.yy"
+    { (yyval.sn) = (yyvsp[(2) - (3)].sn); }
+    break;
+
+  case 169:
+
+/* Line 1806 of yacc.c  */
 #line 805 "parser.yy"
-    { (yyval.sn) = (yyvsp[(2) - (3)].sn); }
-    break;
-
-  case 169:
-
-/* Line 1806 of yacc.c  */
-#line 806 "parser.yy"
     { (yyval.sn) = new StatementNode( build_default() ); }
     break;
@@ -5811,5 +5817,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 812 "parser.yy"
+#line 811 "parser.yy"
     { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) )); }
     break;
@@ -5818,5 +5824,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 816 "parser.yy"
+#line 815 "parser.yy"
     { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); }
     break;
@@ -5825,5 +5831,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 821 "parser.yy"
+#line 820 "parser.yy"
     { (yyval.sn) = nullptr; }
     break;
@@ -5832,5 +5838,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 827 "parser.yy"
+#line 826 "parser.yy"
     { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); }
     break;
@@ -5839,5 +5845,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 829 "parser.yy"
+#line 828 "parser.yy"
     { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(3) - (3)].sn) ) ) ) ) ); }
     break;
@@ -5846,5 +5852,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 834 "parser.yy"
+#line 833 "parser.yy"
     { (yyval.sn) = nullptr; }
     break;
@@ -5853,5 +5859,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 840 "parser.yy"
+#line 839 "parser.yy"
     { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); }
     break;
@@ -5860,5 +5866,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 842 "parser.yy"
+#line 841 "parser.yy"
     { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(2) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ) ) ) ); }
     break;
@@ -5867,5 +5873,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 844 "parser.yy"
+#line 843 "parser.yy"
     { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); }
     break;
@@ -5874,5 +5880,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 846 "parser.yy"
+#line 845 "parser.yy"
     { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_last( (yyvsp[(2) - (4)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(3) - (4)].sn)->set_last( (yyvsp[(4) - (4)].sn) ) ) ) ) ) ); }
     break;
@@ -5881,5 +5887,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 851 "parser.yy"
+#line 850 "parser.yy"
     { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); }
     break;
@@ -5888,5 +5894,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 857 "parser.yy"
+#line 856 "parser.yy"
     { (yyval.sn) = nullptr; }
     break;
@@ -5895,5 +5901,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 859 "parser.yy"
+#line 858 "parser.yy"
     { (yyval.sn) = nullptr; }
     break;
@@ -5902,5 +5908,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 864 "parser.yy"
+#line 863 "parser.yy"
     { (yyval.sn) = new StatementNode( build_while( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); }
     break;
@@ -5909,5 +5915,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 866 "parser.yy"
+#line 865 "parser.yy"
     { (yyval.sn) = new StatementNode( build_while( (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn), true ) ); }
     break;
@@ -5916,5 +5922,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 868 "parser.yy"
+#line 867 "parser.yy"
     { (yyval.sn) = new StatementNode( build_for( (yyvsp[(4) - (6)].fctl), (yyvsp[(6) - (6)].sn) ) ); }
     break;
@@ -5923,5 +5929,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 873 "parser.yy"
+#line 872 "parser.yy"
     { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); }
     break;
@@ -5930,5 +5936,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 875 "parser.yy"
+#line 874 "parser.yy"
     { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); }
     break;
@@ -5937,5 +5943,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 880 "parser.yy"
+#line 879 "parser.yy"
     { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Goto ) ); }
     break;
@@ -5944,5 +5950,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 884 "parser.yy"
+#line 883 "parser.yy"
     { (yyval.sn) = new StatementNode( build_computedgoto( (yyvsp[(3) - (4)].en) ) ); }
     break;
@@ -5951,5 +5957,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 887 "parser.yy"
+#line 886 "parser.yy"
     { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Continue ) ); }
     break;
@@ -5958,5 +5964,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 891 "parser.yy"
+#line 890 "parser.yy"
     { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Continue ) ); }
     break;
@@ -5965,5 +5971,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 894 "parser.yy"
+#line 893 "parser.yy"
     { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); }
     break;
@@ -5972,5 +5978,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 898 "parser.yy"
+#line 897 "parser.yy"
     { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Break ) ); }
     break;
@@ -5979,5 +5985,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 900 "parser.yy"
+#line 899 "parser.yy"
     { (yyval.sn) = new StatementNode( build_return( (yyvsp[(2) - (3)].en) ) ); }
     break;
@@ -5986,5 +5992,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 902 "parser.yy"
+#line 901 "parser.yy"
     { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); }
     break;
@@ -5993,5 +5999,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 904 "parser.yy"
+#line 903 "parser.yy"
     { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); }
     break;
@@ -6000,5 +6006,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 906 "parser.yy"
+#line 905 "parser.yy"
     { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (5)].en) ) ); }
     break;
@@ -6007,5 +6013,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 911 "parser.yy"
+#line 910 "parser.yy"
     { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), (yyvsp[(3) - (3)].sn), 0 ) ); }
     break;
@@ -6014,5 +6020,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 913 "parser.yy"
+#line 912 "parser.yy"
     { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), 0, (yyvsp[(3) - (3)].sn) ) ); }
     break;
@@ -6021,5 +6027,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 915 "parser.yy"
+#line 914 "parser.yy"
     { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (4)].sn), (yyvsp[(3) - (4)].sn), (yyvsp[(4) - (4)].sn) ) ); }
     break;
@@ -6028,5 +6034,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 922 "parser.yy"
+#line 921 "parser.yy"
     { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); }
     break;
@@ -6035,5 +6041,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 924 "parser.yy"
+#line 923 "parser.yy"
     { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); }
     break;
@@ -6042,5 +6048,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 926 "parser.yy"
+#line 925 "parser.yy"
     { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); }
     break;
@@ -6049,5 +6055,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 928 "parser.yy"
+#line 927 "parser.yy"
     { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); }
     break;
@@ -6056,5 +6062,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 933 "parser.yy"
+#line 932 "parser.yy"
     { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); }
     break;
@@ -6063,5 +6069,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 935 "parser.yy"
+#line 934 "parser.yy"
     { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); }
     break;
@@ -6070,5 +6076,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 937 "parser.yy"
+#line 936 "parser.yy"
     { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); }
     break;
@@ -6077,5 +6083,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 939 "parser.yy"
+#line 938 "parser.yy"
     { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); }
     break;
@@ -6084,5 +6090,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 944 "parser.yy"
+#line 943 "parser.yy"
     {
 			(yyval.sn) = new StatementNode( build_finally( (yyvsp[(2) - (2)].sn) ) );
@@ -6093,5 +6099,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 957 "parser.yy"
+#line 956 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6103,5 +6109,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 962 "parser.yy"
+#line 961 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -6110,5 +6116,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 964 "parser.yy"
+#line 963 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6120,5 +6126,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 973 "parser.yy"
+#line 972 "parser.yy"
     { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ) ); }
     break;
@@ -6127,5 +6133,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 975 "parser.yy"
+#line 974 "parser.yy"
     { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ) ); }
     break;
@@ -6134,5 +6140,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 977 "parser.yy"
+#line 976 "parser.yy"
     { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ) ); }
     break;
@@ -6141,5 +6147,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 979 "parser.yy"
+#line 978 "parser.yy"
     { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].en) ) ); }
     break;
@@ -6148,5 +6154,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 981 "parser.yy"
+#line 980 "parser.yy"
     { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].en), (yyvsp[(12) - (14)].label) ) ); }
     break;
@@ -6155,5 +6161,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 986 "parser.yy"
+#line 985 "parser.yy"
     { (yyval.flag) = false; }
     break;
@@ -6162,5 +6168,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 988 "parser.yy"
+#line 987 "parser.yy"
     { (yyval.flag) = true; }
     break;
@@ -6169,5 +6175,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 993 "parser.yy"
+#line 992 "parser.yy"
     { (yyval.en) = nullptr; }
     break;
@@ -6176,5 +6182,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1000 "parser.yy"
+#line 999 "parser.yy"
     { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); }
     break;
@@ -6183,5 +6189,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1005 "parser.yy"
+#line 1004 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_asmexpr( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ) ); }
     break;
@@ -6190,5 +6196,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1007 "parser.yy"
+#line 1006 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_asmexpr( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ) ); }
     break;
@@ -6197,5 +6203,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1012 "parser.yy"
+#line 1011 "parser.yy"
     { (yyval.en) = nullptr; }
     break;
@@ -6204,5 +6210,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1014 "parser.yy"
+#line 1013 "parser.yy"
     { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); }
     break;
@@ -6211,5 +6217,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1017 "parser.yy"
+#line 1016 "parser.yy"
     { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( (yyvsp[(3) - (3)].constant) ) ); }
     break;
@@ -6218,5 +6224,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1022 "parser.yy"
+#line 1021 "parser.yy"
     {
 			(yyval.label) = new LabelNode(); (yyval.label)->labels.push_back( *(yyvsp[(1) - (1)].tok) );
@@ -6228,5 +6234,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1027 "parser.yy"
+#line 1026 "parser.yy"
     {
 			(yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->labels.push_back( *(yyvsp[(3) - (3)].tok) );
@@ -6238,5 +6244,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1037 "parser.yy"
+#line 1036 "parser.yy"
     { (yyval.decl) = nullptr; }
     break;
@@ -6245,5 +6251,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1044 "parser.yy"
+#line 1043 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); }
     break;
@@ -6252,5 +6258,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1049 "parser.yy"
+#line 1048 "parser.yy"
     { (yyval.decl) = nullptr; }
     break;
@@ -6259,9 +6265,16 @@
 
 /* Line 1806 of yacc.c  */
-#line 1056 "parser.yy"
+#line 1055 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); }
     break;
 
   case 250:
+
+/* Line 1806 of yacc.c  */
+#line 1069 "parser.yy"
+    {}
+    break;
+
+  case 251:
 
 /* Line 1806 of yacc.c  */
@@ -6270,15 +6283,8 @@
     break;
 
-  case 251:
-
-/* Line 1806 of yacc.c  */
-#line 1071 "parser.yy"
-    {}
-    break;
-
   case 259:
 
 /* Line 1806 of yacc.c  */
-#line 1100 "parser.yy"
+#line 1099 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6290,5 +6296,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1107 "parser.yy"
+#line 1106 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6300,5 +6306,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1112 "parser.yy"
+#line 1111 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID );
@@ -6310,5 +6316,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1122 "parser.yy"
+#line 1121 "parser.yy"
     {
 			typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) );
@@ -6320,5 +6326,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1127 "parser.yy"
+#line 1126 "parser.yy"
     {
 			typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) );
@@ -6330,5 +6336,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1132 "parser.yy"
+#line 1131 "parser.yy"
     {
 			typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) );
@@ -6340,5 +6346,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1140 "parser.yy"
+#line 1139 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6350,5 +6356,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1145 "parser.yy"
+#line 1144 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6360,5 +6366,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1150 "parser.yy"
+#line 1149 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6370,5 +6376,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1155 "parser.yy"
+#line 1154 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6380,5 +6386,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1160 "parser.yy"
+#line 1159 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::ID );
@@ -6390,5 +6396,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1191 "parser.yy"
+#line 1190 "parser.yy"
     {
 			(yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true );
@@ -6399,5 +6405,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1195 "parser.yy"
+#line 1194 "parser.yy"
     {
 			(yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true );
@@ -6408,5 +6414,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1202 "parser.yy"
+#line 1201 "parser.yy"
     { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); }
     break;
@@ -6415,5 +6421,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1206 "parser.yy"
+#line 1205 "parser.yy"
     { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); }
     break;
@@ -6422,5 +6428,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1211 "parser.yy"
+#line 1210 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::TD );
@@ -6432,5 +6438,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1216 "parser.yy"
+#line 1215 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::TD );
@@ -6442,5 +6448,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1221 "parser.yy"
+#line 1220 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::TD );
@@ -6452,5 +6458,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1232 "parser.yy"
+#line 1231 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::TD );
@@ -6462,5 +6468,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1237 "parser.yy"
+#line 1236 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::TD );
@@ -6472,5 +6478,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1242 "parser.yy"
+#line 1241 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::TD );
@@ -6482,5 +6488,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1247 "parser.yy"
+#line 1246 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::TD );
@@ -6492,5 +6498,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1252 "parser.yy"
+#line 1251 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::TD );
@@ -6502,5 +6508,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1261 "parser.yy"
+#line 1260 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD );
@@ -6512,5 +6518,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1266 "parser.yy"
+#line 1265 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD );
@@ -6522,5 +6528,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1283 "parser.yy"
+#line 1282 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6532,5 +6538,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1288 "parser.yy"
+#line 1287 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -6542,5 +6548,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1310 "parser.yy"
+#line 1309 "parser.yy"
     { (yyval.decl) = nullptr; }
     break;
@@ -6549,5 +6555,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1322 "parser.yy"
+#line 1321 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
@@ -6556,40 +6562,40 @@
 
 /* Line 1806 of yacc.c  */
+#line 1331 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); }
+    break;
+
+  case 305:
+
+/* Line 1806 of yacc.c  */
 #line 1333 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); }
-    break;
-
-  case 305:
+    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); }
+    break;
+
+  case 306:
 
 /* Line 1806 of yacc.c  */
 #line 1335 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); }
-    break;
-
-  case 306:
+    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); }
+    break;
+
+  case 307:
 
 /* Line 1806 of yacc.c  */
 #line 1337 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); }
-    break;
-
-  case 307:
+    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); }
+    break;
+
+  case 308:
 
 /* Line 1806 of yacc.c  */
 #line 1339 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); }
-    break;
-
-  case 308:
+    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); }
+    break;
+
+  case 309:
 
 /* Line 1806 of yacc.c  */
 #line 1341 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); }
-    break;
-
-  case 309:
-
-/* Line 1806 of yacc.c  */
-#line 1343 "parser.yy"
     {
 			typedefTable.enterScope();
@@ -6600,5 +6606,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1347 "parser.yy"
+#line 1345 "parser.yy"
     {
 			typedefTable.leaveScope();
@@ -6610,355 +6616,355 @@
 
 /* Line 1806 of yacc.c  */
+#line 1354 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
+  case 313:
+
+/* Line 1806 of yacc.c  */
 #line 1356 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
+    break;
+
+  case 315:
+
+/* Line 1806 of yacc.c  */
+#line 1367 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
-  case 313:
-
-/* Line 1806 of yacc.c  */
-#line 1358 "parser.yy"
+  case 316:
+
+/* Line 1806 of yacc.c  */
+#line 1372 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); }
+    break;
+
+  case 317:
+
+/* Line 1806 of yacc.c  */
+#line 1374 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); }
+    break;
+
+  case 318:
+
+/* Line 1806 of yacc.c  */
+#line 1376 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); }
+    break;
+
+  case 319:
+
+/* Line 1806 of yacc.c  */
+#line 1378 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); }
+    break;
+
+  case 320:
+
+/* Line 1806 of yacc.c  */
+#line 1381 "parser.yy"
+    { (yyval.decl) = new DeclarationNode; (yyval.decl)->isInline = true; }
+    break;
+
+  case 321:
+
+/* Line 1806 of yacc.c  */
+#line 1383 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); }
+    break;
+
+  case 322:
+
+/* Line 1806 of yacc.c  */
+#line 1386 "parser.yy"
+    { (yyval.decl) = new DeclarationNode; (yyval.decl)->isNoreturn = true; }
+    break;
+
+  case 323:
+
+/* Line 1806 of yacc.c  */
+#line 1388 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); }
+    break;
+
+  case 324:
+
+/* Line 1806 of yacc.c  */
+#line 1393 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); }
+    break;
+
+  case 325:
+
+/* Line 1806 of yacc.c  */
+#line 1395 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); }
+    break;
+
+  case 326:
+
+/* Line 1806 of yacc.c  */
+#line 1397 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); }
+    break;
+
+  case 327:
+
+/* Line 1806 of yacc.c  */
+#line 1399 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); }
+    break;
+
+  case 328:
+
+/* Line 1806 of yacc.c  */
+#line 1401 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Long ); }
+    break;
+
+  case 329:
+
+/* Line 1806 of yacc.c  */
+#line 1403 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Short ); }
+    break;
+
+  case 330:
+
+/* Line 1806 of yacc.c  */
+#line 1405 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Signed ); }
+    break;
+
+  case 331:
+
+/* Line 1806 of yacc.c  */
+#line 1407 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Unsigned ); }
+    break;
+
+  case 332:
+
+/* Line 1806 of yacc.c  */
+#line 1409 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); }
+    break;
+
+  case 333:
+
+/* Line 1806 of yacc.c  */
+#line 1411 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); }
+    break;
+
+  case 334:
+
+/* Line 1806 of yacc.c  */
+#line 1413 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Complex ); }
+    break;
+
+  case 335:
+
+/* Line 1806 of yacc.c  */
+#line 1415 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Imaginary ); }
+    break;
+
+  case 336:
+
+/* Line 1806 of yacc.c  */
+#line 1417 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); }
+    break;
+
+  case 337:
+
+/* Line 1806 of yacc.c  */
+#line 1419 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Zero ); }
+    break;
+
+  case 338:
+
+/* Line 1806 of yacc.c  */
+#line 1421 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::One ); }
+    break;
+
+  case 340:
+
+/* Line 1806 of yacc.c  */
+#line 1428 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
+    break;
+
+  case 341:
+
+/* Line 1806 of yacc.c  */
+#line 1430 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
+  case 342:
+
+/* Line 1806 of yacc.c  */
+#line 1432 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
     break;
 
-  case 315:
-
-/* Line 1806 of yacc.c  */
-#line 1369 "parser.yy"
+  case 343:
+
+/* Line 1806 of yacc.c  */
+#line 1434 "parser.yy"
+    { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); }
+    break;
+
+  case 345:
+
+/* Line 1806 of yacc.c  */
+#line 1440 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
+    break;
+
+  case 347:
+
+/* Line 1806 of yacc.c  */
+#line 1447 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
+    break;
+
+  case 348:
+
+/* Line 1806 of yacc.c  */
+#line 1449 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
-  case 316:
-
-/* Line 1806 of yacc.c  */
-#line 1374 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); }
-    break;
-
-  case 317:
-
-/* Line 1806 of yacc.c  */
-#line 1376 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); }
-    break;
-
-  case 318:
-
-/* Line 1806 of yacc.c  */
-#line 1378 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); }
-    break;
-
-  case 319:
-
-/* Line 1806 of yacc.c  */
-#line 1380 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); }
-    break;
-
-  case 320:
-
-/* Line 1806 of yacc.c  */
-#line 1383 "parser.yy"
-    { (yyval.decl) = new DeclarationNode; (yyval.decl)->isInline = true; }
-    break;
-
-  case 321:
-
-/* Line 1806 of yacc.c  */
-#line 1385 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); }
-    break;
-
-  case 322:
-
-/* Line 1806 of yacc.c  */
-#line 1388 "parser.yy"
-    { (yyval.decl) = new DeclarationNode; (yyval.decl)->isNoreturn = true; }
-    break;
-
-  case 323:
-
-/* Line 1806 of yacc.c  */
-#line 1390 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); }
-    break;
-
-  case 324:
-
-/* Line 1806 of yacc.c  */
-#line 1395 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); }
-    break;
-
-  case 325:
-
-/* Line 1806 of yacc.c  */
-#line 1397 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); }
-    break;
-
-  case 326:
-
-/* Line 1806 of yacc.c  */
-#line 1399 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); }
-    break;
-
-  case 327:
-
-/* Line 1806 of yacc.c  */
-#line 1401 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); }
-    break;
-
-  case 328:
-
-/* Line 1806 of yacc.c  */
-#line 1403 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Long ); }
-    break;
-
-  case 329:
-
-/* Line 1806 of yacc.c  */
-#line 1405 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Short ); }
-    break;
-
-  case 330:
-
-/* Line 1806 of yacc.c  */
-#line 1407 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Signed ); }
-    break;
-
-  case 331:
-
-/* Line 1806 of yacc.c  */
-#line 1409 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Unsigned ); }
-    break;
-
-  case 332:
-
-/* Line 1806 of yacc.c  */
-#line 1411 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); }
-    break;
-
-  case 333:
-
-/* Line 1806 of yacc.c  */
-#line 1413 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); }
-    break;
-
-  case 334:
-
-/* Line 1806 of yacc.c  */
-#line 1415 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Complex ); }
-    break;
-
-  case 335:
-
-/* Line 1806 of yacc.c  */
-#line 1417 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Imaginary ); }
-    break;
-
-  case 336:
-
-/* Line 1806 of yacc.c  */
-#line 1419 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); }
-    break;
-
-  case 337:
-
-/* Line 1806 of yacc.c  */
-#line 1421 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Zero ); }
-    break;
-
-  case 338:
-
-/* Line 1806 of yacc.c  */
-#line 1423 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::One ); }
-    break;
-
-  case 340:
-
-/* Line 1806 of yacc.c  */
-#line 1430 "parser.yy"
+  case 349:
+
+/* Line 1806 of yacc.c  */
+#line 1451 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
+  case 350:
+
+/* Line 1806 of yacc.c  */
+#line 1456 "parser.yy"
+    { (yyval.decl) = (yyvsp[(3) - (4)].decl); }
+    break;
+
+  case 351:
+
+/* Line 1806 of yacc.c  */
+#line 1458 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); }
+    break;
+
+  case 352:
+
+/* Line 1806 of yacc.c  */
+#line 1460 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); }
+    break;
+
+  case 353:
+
+/* Line 1806 of yacc.c  */
+#line 1462 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); }
+    break;
+
+  case 355:
+
+/* Line 1806 of yacc.c  */
+#line 1468 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
     break;
 
-  case 341:
-
-/* Line 1806 of yacc.c  */
-#line 1432 "parser.yy"
+  case 356:
+
+/* Line 1806 of yacc.c  */
+#line 1470 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
-  case 342:
-
-/* Line 1806 of yacc.c  */
-#line 1434 "parser.yy"
+  case 357:
+
+/* Line 1806 of yacc.c  */
+#line 1472 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
     break;
 
-  case 343:
-
-/* Line 1806 of yacc.c  */
-#line 1436 "parser.yy"
-    { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); }
-    break;
-
-  case 345:
-
-/* Line 1806 of yacc.c  */
-#line 1442 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
-    break;
-
-  case 347:
-
-/* Line 1806 of yacc.c  */
-#line 1449 "parser.yy"
+  case 359:
+
+/* Line 1806 of yacc.c  */
+#line 1478 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
     break;
 
-  case 348:
-
-/* Line 1806 of yacc.c  */
-#line 1451 "parser.yy"
+  case 360:
+
+/* Line 1806 of yacc.c  */
+#line 1480 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
-  case 349:
-
-/* Line 1806 of yacc.c  */
-#line 1453 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 350:
-
-/* Line 1806 of yacc.c  */
-#line 1458 "parser.yy"
-    { (yyval.decl) = (yyvsp[(3) - (4)].decl); }
-    break;
-
-  case 351:
-
-/* Line 1806 of yacc.c  */
-#line 1460 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); }
-    break;
-
-  case 352:
-
-/* Line 1806 of yacc.c  */
-#line 1462 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); }
-    break;
-
-  case 353:
-
-/* Line 1806 of yacc.c  */
-#line 1464 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); }
-    break;
-
-  case 355:
-
-/* Line 1806 of yacc.c  */
-#line 1470 "parser.yy"
+  case 362:
+
+/* Line 1806 of yacc.c  */
+#line 1486 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
     break;
 
-  case 356:
-
-/* Line 1806 of yacc.c  */
-#line 1472 "parser.yy"
+  case 363:
+
+/* Line 1806 of yacc.c  */
+#line 1488 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
-  case 357:
-
-/* Line 1806 of yacc.c  */
-#line 1474 "parser.yy"
+  case 364:
+
+/* Line 1806 of yacc.c  */
+#line 1490 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
     break;
 
-  case 359:
-
-/* Line 1806 of yacc.c  */
-#line 1480 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
-    break;
-
-  case 360:
-
-/* Line 1806 of yacc.c  */
-#line 1482 "parser.yy"
+  case 365:
+
+/* Line 1806 of yacc.c  */
+#line 1495 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); }
+    break;
+
+  case 366:
+
+/* Line 1806 of yacc.c  */
+#line 1497 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
+    break;
+
+  case 367:
+
+/* Line 1806 of yacc.c  */
+#line 1499 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
-  case 362:
-
-/* Line 1806 of yacc.c  */
-#line 1488 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
-    break;
-
-  case 363:
-
-/* Line 1806 of yacc.c  */
-#line 1490 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 364:
-
-/* Line 1806 of yacc.c  */
-#line 1492 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
-    break;
-
-  case 365:
-
-/* Line 1806 of yacc.c  */
-#line 1497 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); }
-    break;
-
-  case 366:
-
-/* Line 1806 of yacc.c  */
-#line 1499 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
-    break;
-
-  case 367:
-
-/* Line 1806 of yacc.c  */
-#line 1501 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
   case 370:
 
 /* Line 1806 of yacc.c  */
+#line 1509 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), nullptr, nullptr, (yyvsp[(3) - (4)].decl), true ); }
+    break;
+
+  case 371:
+
+/* Line 1806 of yacc.c  */
 #line 1511 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), nullptr, nullptr, (yyvsp[(3) - (4)].decl), true ); }
-    break;
-
-  case 371:
-
-/* Line 1806 of yacc.c  */
-#line 1513 "parser.yy"
     {
 			typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) );
@@ -6970,26 +6976,26 @@
 
 /* Line 1806 of yacc.c  */
+#line 1516 "parser.yy"
+    { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); }
+    break;
+
+  case 373:
+
+/* Line 1806 of yacc.c  */
 #line 1518 "parser.yy"
-    { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); }
-    break;
-
-  case 373:
+    { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), nullptr, (yyvsp[(5) - (6)].decl), true ); }
+    break;
+
+  case 374:
 
 /* Line 1806 of yacc.c  */
 #line 1520 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), nullptr, (yyvsp[(5) - (6)].decl), true ); }
-    break;
-
-  case 374:
+    { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), nullptr, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); }
+    break;
+
+  case 375:
 
 /* Line 1806 of yacc.c  */
 #line 1522 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), nullptr, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); }
-    break;
-
-  case 375:
-
-/* Line 1806 of yacc.c  */
-#line 1524 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl); }
     break;
@@ -6998,12 +7004,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1527 "parser.yy"
+    { (yyval.aggKey) = DeclarationNode::Struct; }
+    break;
+
+  case 377:
+
+/* Line 1806 of yacc.c  */
 #line 1529 "parser.yy"
-    { (yyval.aggKey) = DeclarationNode::Struct; }
-    break;
-
-  case 377:
-
-/* Line 1806 of yacc.c  */
-#line 1531 "parser.yy"
     { (yyval.aggKey) = DeclarationNode::Union; }
     break;
@@ -7012,12 +7018,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1534 "parser.yy"
+    { (yyval.decl) = nullptr; }
+    break;
+
+  case 379:
+
+/* Line 1806 of yacc.c  */
 #line 1536 "parser.yy"
-    { (yyval.decl) = nullptr; }
-    break;
-
-  case 379:
-
-/* Line 1806 of yacc.c  */
-#line 1538 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl) ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); }
     break;
@@ -7026,5 +7032,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1544 "parser.yy"
+#line 1542 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); }
     break;
@@ -7033,5 +7039,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1547 "parser.yy"
+#line 1545 "parser.yy"
     {	// mark all fields in list
 			for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() )
@@ -7044,19 +7050,19 @@
 
 /* Line 1806 of yacc.c  */
+#line 1555 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); }
+    break;
+
+  case 386:
+
+/* Line 1806 of yacc.c  */
 #line 1557 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); }
-    break;
-
-  case 386:
+    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); }
+    break;
+
+  case 387:
 
 /* Line 1806 of yacc.c  */
 #line 1559 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); }
-    break;
-
-  case 387:
-
-/* Line 1806 of yacc.c  */
-#line 1561 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); }
     break;
@@ -7065,12 +7071,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1564 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
+    break;
+
+  case 389:
+
+/* Line 1806 of yacc.c  */
 #line 1566 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
-    break;
-
-  case 389:
-
-/* Line 1806 of yacc.c  */
-#line 1568 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); }
     break;
@@ -7079,12 +7085,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1571 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ }
+    break;
+
+  case 391:
+
+/* Line 1806 of yacc.c  */
 #line 1573 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ }
-    break;
-
-  case 391:
-
-/* Line 1806 of yacc.c  */
-#line 1575 "parser.yy"
     { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); }
     break;
@@ -7093,5 +7099,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1578 "parser.yy"
+#line 1576 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); }
     break;
@@ -7100,5 +7106,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1581 "parser.yy"
+#line 1579 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); }
     break;
@@ -7107,12 +7113,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1585 "parser.yy"
+    { (yyval.en) = nullptr; }
+    break;
+
+  case 396:
+
+/* Line 1806 of yacc.c  */
 #line 1587 "parser.yy"
-    { (yyval.en) = nullptr; }
-    break;
-
-  case 396:
-
-/* Line 1806 of yacc.c  */
-#line 1589 "parser.yy"
     { (yyval.en) = (yyvsp[(1) - (1)].en); }
     break;
@@ -7121,5 +7127,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1594 "parser.yy"
+#line 1592 "parser.yy"
     { (yyval.en) = (yyvsp[(2) - (2)].en); }
     break;
@@ -7128,12 +7134,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1601 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newEnum( nullptr, (yyvsp[(3) - (5)].decl) ); }
+    break;
+
+  case 400:
+
+/* Line 1806 of yacc.c  */
 #line 1603 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newEnum( nullptr, (yyvsp[(3) - (5)].decl) ); }
-    break;
-
-  case 400:
-
-/* Line 1806 of yacc.c  */
-#line 1605 "parser.yy"
     {
 			typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) );
@@ -7145,12 +7151,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1608 "parser.yy"
+    { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); }
+    break;
+
+  case 402:
+
+/* Line 1806 of yacc.c  */
 #line 1610 "parser.yy"
-    { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); }
-    break;
-
-  case 402:
-
-/* Line 1806 of yacc.c  */
-#line 1612 "parser.yy"
     { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); }
     break;
@@ -7159,12 +7165,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1615 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); }
+    break;
+
+  case 404:
+
+/* Line 1806 of yacc.c  */
 #line 1617 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); }
-    break;
-
-  case 404:
-
-/* Line 1806 of yacc.c  */
-#line 1619 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); }
     break;
@@ -7173,12 +7179,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1622 "parser.yy"
+    { (yyval.en) = nullptr; }
+    break;
+
+  case 406:
+
+/* Line 1806 of yacc.c  */
 #line 1624 "parser.yy"
-    { (yyval.en) = nullptr; }
-    break;
-
-  case 406:
-
-/* Line 1806 of yacc.c  */
-#line 1626 "parser.yy"
     { (yyval.en) = (yyvsp[(2) - (2)].en); }
     break;
@@ -7187,5 +7193,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1633 "parser.yy"
+#line 1631 "parser.yy"
     { (yyval.decl) = nullptr; }
     break;
@@ -7194,9 +7200,16 @@
 
 /* Line 1806 of yacc.c  */
+#line 1639 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
+    break;
+
+  case 412:
+
+/* Line 1806 of yacc.c  */
 #line 1641 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
-    break;
-
-  case 412:
+    { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); }
+    break;
+
+  case 413:
 
 /* Line 1806 of yacc.c  */
@@ -7205,12 +7218,12 @@
     break;
 
-  case 413:
-
-/* Line 1806 of yacc.c  */
-#line 1645 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); }
-    break;
-
   case 415:
+
+/* Line 1806 of yacc.c  */
+#line 1651 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
+    break;
+
+  case 416:
 
 /* Line 1806 of yacc.c  */
@@ -7219,40 +7232,40 @@
     break;
 
-  case 416:
+  case 417:
 
 /* Line 1806 of yacc.c  */
 #line 1655 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); }
+    break;
+
+  case 419:
+
+/* Line 1806 of yacc.c  */
+#line 1661 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
     break;
 
-  case 417:
-
-/* Line 1806 of yacc.c  */
-#line 1657 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); }
-    break;
-
-  case 419:
-
-/* Line 1806 of yacc.c  */
-#line 1663 "parser.yy"
+  case 420:
+
+/* Line 1806 of yacc.c  */
+#line 1666 "parser.yy"
+    { (yyval.decl) = nullptr; }
+    break;
+
+  case 423:
+
+/* Line 1806 of yacc.c  */
+#line 1673 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); }
+    break;
+
+  case 426:
+
+/* Line 1806 of yacc.c  */
+#line 1680 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
     break;
 
-  case 420:
-
-/* Line 1806 of yacc.c  */
-#line 1668 "parser.yy"
-    { (yyval.decl) = nullptr; }
-    break;
-
-  case 423:
-
-/* Line 1806 of yacc.c  */
-#line 1675 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); }
-    break;
-
-  case 426:
+  case 427:
 
 /* Line 1806 of yacc.c  */
@@ -7261,15 +7274,8 @@
     break;
 
-  case 427:
-
-/* Line 1806 of yacc.c  */
-#line 1684 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
-    break;
-
   case 429:
 
 /* Line 1806 of yacc.c  */
-#line 1693 "parser.yy"
+#line 1691 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); }
     break;
@@ -7278,12 +7284,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1694 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); }
+    break;
+
+  case 431:
+
+/* Line 1806 of yacc.c  */
 #line 1696 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); }
-    break;
-
-  case 431:
-
-/* Line 1806 of yacc.c  */
-#line 1698 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); }
     break;
@@ -7292,5 +7298,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1708 "parser.yy"
+#line 1706 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -7299,5 +7305,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1714 "parser.yy"
+#line 1712 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7309,5 +7315,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1719 "parser.yy"
+#line 1717 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7319,5 +7325,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1728 "parser.yy"
+#line 1726 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -7326,12 +7332,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1735 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); }
+    break;
+
+  case 443:
+
+/* Line 1806 of yacc.c  */
 #line 1737 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); }
-    break;
-
-  case 443:
-
-/* Line 1806 of yacc.c  */
-#line 1739 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); }
     break;
@@ -7340,5 +7346,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1764 "parser.yy"
+#line 1762 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -7347,5 +7353,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1772 "parser.yy"
+#line 1770 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -7354,47 +7360,47 @@
 
 /* Line 1806 of yacc.c  */
+#line 1775 "parser.yy"
+    { (yyval.in) = nullptr; }
+    break;
+
+  case 461:
+
+/* Line 1806 of yacc.c  */
 #line 1777 "parser.yy"
+    { (yyval.in) = (yyvsp[(2) - (2)].in); }
+    break;
+
+  case 462:
+
+/* Line 1806 of yacc.c  */
+#line 1779 "parser.yy"
+    { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); }
+    break;
+
+  case 463:
+
+/* Line 1806 of yacc.c  */
+#line 1783 "parser.yy"
+    { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); }
+    break;
+
+  case 464:
+
+/* Line 1806 of yacc.c  */
+#line 1784 "parser.yy"
+    { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); }
+    break;
+
+  case 465:
+
+/* Line 1806 of yacc.c  */
+#line 1789 "parser.yy"
     { (yyval.in) = nullptr; }
     break;
 
-  case 461:
-
-/* Line 1806 of yacc.c  */
-#line 1779 "parser.yy"
-    { (yyval.in) = (yyvsp[(2) - (2)].in); }
-    break;
-
-  case 462:
-
-/* Line 1806 of yacc.c  */
-#line 1781 "parser.yy"
-    { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); }
-    break;
-
-  case 463:
-
-/* Line 1806 of yacc.c  */
-#line 1785 "parser.yy"
-    { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); }
-    break;
-
-  case 464:
-
-/* Line 1806 of yacc.c  */
-#line 1786 "parser.yy"
-    { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); }
-    break;
-
-  case 465:
+  case 467:
 
 /* Line 1806 of yacc.c  */
 #line 1791 "parser.yy"
-    { (yyval.in) = nullptr; }
-    break;
-
-  case 467:
-
-/* Line 1806 of yacc.c  */
-#line 1793 "parser.yy"
     { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); }
     break;
@@ -7403,12 +7409,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1792 "parser.yy"
+    { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); }
+    break;
+
+  case 469:
+
+/* Line 1806 of yacc.c  */
 #line 1794 "parser.yy"
-    { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); }
-    break;
-
-  case 469:
-
-/* Line 1806 of yacc.c  */
-#line 1796 "parser.yy"
     { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_last( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); }
     break;
@@ -7417,5 +7423,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1812 "parser.yy"
+#line 1810 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); }
     break;
@@ -7424,5 +7430,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1818 "parser.yy"
+#line 1816 "parser.yy"
     { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_last( (yyvsp[(2) - (2)].en) ) ); }
     break;
@@ -7431,9 +7437,16 @@
 
 /* Line 1806 of yacc.c  */
-#line 1824 "parser.yy"
+#line 1822 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); }
     break;
 
   case 475:
+
+/* Line 1806 of yacc.c  */
+#line 1825 "parser.yy"
+    { (yyval.en) = (yyvsp[(3) - (5)].en); }
+    break;
+
+  case 476:
 
 /* Line 1806 of yacc.c  */
@@ -7442,22 +7455,15 @@
     break;
 
-  case 476:
+  case 477:
 
 /* Line 1806 of yacc.c  */
 #line 1829 "parser.yy"
-    { (yyval.en) = (yyvsp[(3) - (5)].en); }
-    break;
-
-  case 477:
+    { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); }
+    break;
+
+  case 478:
 
 /* Line 1806 of yacc.c  */
 #line 1831 "parser.yy"
-    { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); }
-    break;
-
-  case 478:
-
-/* Line 1806 of yacc.c  */
-#line 1833 "parser.yy"
     { (yyval.en) = (yyvsp[(4) - (6)].en); }
     break;
@@ -7466,40 +7472,40 @@
 
 /* Line 1806 of yacc.c  */
+#line 1855 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
+    break;
+
+  case 481:
+
+/* Line 1806 of yacc.c  */
 #line 1857 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
+  case 482:
+
+/* Line 1806 of yacc.c  */
+#line 1859 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
+    break;
+
+  case 484:
+
+/* Line 1806 of yacc.c  */
+#line 1865 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
     break;
 
-  case 481:
-
-/* Line 1806 of yacc.c  */
-#line 1859 "parser.yy"
+  case 485:
+
+/* Line 1806 of yacc.c  */
+#line 1867 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
-  case 482:
-
-/* Line 1806 of yacc.c  */
-#line 1861 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
-    break;
-
-  case 484:
-
-/* Line 1806 of yacc.c  */
-#line 1867 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
-    break;
-
-  case 485:
-
-/* Line 1806 of yacc.c  */
-#line 1869 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
   case 486:
 
 /* Line 1806 of yacc.c  */
-#line 1874 "parser.yy"
+#line 1872 "parser.yy"
     { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); }
     break;
@@ -7508,5 +7514,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1880 "parser.yy"
+#line 1878 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); }
     break;
@@ -7515,12 +7521,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1883 "parser.yy"
+    { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); }
+    break;
+
+  case 490:
+
+/* Line 1806 of yacc.c  */
 #line 1885 "parser.yy"
-    { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); }
-    break;
-
-  case 490:
-
-/* Line 1806 of yacc.c  */
-#line 1887 "parser.yy"
     { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); }
     break;
@@ -7529,26 +7535,26 @@
 
 /* Line 1806 of yacc.c  */
+#line 1891 "parser.yy"
+    { (yyval.tclass) = DeclarationNode::Otype; }
+    break;
+
+  case 493:
+
+/* Line 1806 of yacc.c  */
 #line 1893 "parser.yy"
-    { (yyval.tclass) = DeclarationNode::Otype; }
-    break;
-
-  case 493:
+    { (yyval.tclass) = DeclarationNode::Dtype; }
+    break;
+
+  case 494:
 
 /* Line 1806 of yacc.c  */
 #line 1895 "parser.yy"
-    { (yyval.tclass) = DeclarationNode::Dtype; }
-    break;
-
-  case 494:
+    { (yyval.tclass) = DeclarationNode::Ftype; }
+    break;
+
+  case 495:
 
 /* Line 1806 of yacc.c  */
 #line 1897 "parser.yy"
-    { (yyval.tclass) = DeclarationNode::Ftype; }
-    break;
-
-  case 495:
-
-/* Line 1806 of yacc.c  */
-#line 1899 "parser.yy"
     { (yyval.tclass) = DeclarationNode::Ttype; }
     break;
@@ -7557,12 +7563,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1902 "parser.yy"
+    { (yyval.decl) = nullptr; }
+    break;
+
+  case 497:
+
+/* Line 1806 of yacc.c  */
 #line 1904 "parser.yy"
-    { (yyval.decl) = nullptr; }
-    break;
-
-  case 497:
-
-/* Line 1806 of yacc.c  */
-#line 1906 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl) ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); }
     break;
@@ -7571,5 +7577,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1911 "parser.yy"
+#line 1909 "parser.yy"
     {
 			typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) );
@@ -7581,12 +7587,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1914 "parser.yy"
+    { (yyval.decl) = (yyvsp[(4) - (5)].decl); }
+    break;
+
+  case 500:
+
+/* Line 1806 of yacc.c  */
 #line 1916 "parser.yy"
-    { (yyval.decl) = (yyvsp[(4) - (5)].decl); }
-    break;
-
-  case 500:
-
-/* Line 1806 of yacc.c  */
-#line 1918 "parser.yy"
     { (yyval.decl) = nullptr; }
     break;
@@ -7595,5 +7601,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1923 "parser.yy"
+#line 1921 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); }
     break;
@@ -7602,12 +7608,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1924 "parser.yy"
+    { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); }
+    break;
+
+  case 504:
+
+/* Line 1806 of yacc.c  */
 #line 1926 "parser.yy"
-    { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); }
-    break;
-
-  case 504:
-
-/* Line 1806 of yacc.c  */
-#line 1928 "parser.yy"
     { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); }
     break;
@@ -7616,19 +7622,19 @@
 
 /* Line 1806 of yacc.c  */
+#line 1931 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (2)].decl); }
+    break;
+
+  case 506:
+
+/* Line 1806 of yacc.c  */
 #line 1933 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (2)].decl); }
-    break;
-
-  case 506:
+    { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); }
+    break;
+
+  case 507:
 
 /* Line 1806 of yacc.c  */
 #line 1935 "parser.yy"
-    { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); }
-    break;
-
-  case 507:
-
-/* Line 1806 of yacc.c  */
-#line 1937 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); }
     break;
@@ -7637,12 +7643,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 1940 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
+  case 509:
+
+/* Line 1806 of yacc.c  */
 #line 1942 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 509:
-
-/* Line 1806 of yacc.c  */
-#line 1944 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); }
     break;
@@ -7651,5 +7657,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1949 "parser.yy"
+#line 1947 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD );
@@ -7661,5 +7667,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1954 "parser.yy"
+#line 1952 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG );
@@ -7671,5 +7677,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1962 "parser.yy"
+#line 1960 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID );
@@ -7681,5 +7687,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1967 "parser.yy"
+#line 1965 "parser.yy"
     {
 			typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) );
@@ -7691,5 +7697,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1972 "parser.yy"
+#line 1970 "parser.yy"
     {
 			typedefTable.leaveTrait();
@@ -7702,5 +7708,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1982 "parser.yy"
+#line 1980 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); }
     break;
@@ -7709,5 +7715,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1992 "parser.yy"
+#line 1990 "parser.yy"
     {
 			typedefTable.addToEnclosingScope2( TypedefTable::ID );
@@ -7719,5 +7725,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 1997 "parser.yy"
+#line 1995 "parser.yy"
     {
 			typedefTable.addToEnclosingScope2( TypedefTable::ID );
@@ -7729,5 +7735,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2002 "parser.yy"
+#line 2000 "parser.yy"
     {
 			typedefTable.addToEnclosingScope2( *(yyvsp[(5) - (5)].tok), TypedefTable::ID );
@@ -7739,5 +7745,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2010 "parser.yy"
+#line 2008 "parser.yy"
     {
 			typedefTable.addToEnclosingScope2( TypedefTable::ID );
@@ -7749,5 +7755,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2015 "parser.yy"
+#line 2013 "parser.yy"
     {
 			typedefTable.addToEnclosingScope2( TypedefTable::ID );
@@ -7759,40 +7765,40 @@
 
 /* Line 1806 of yacc.c  */
+#line 2023 "parser.yy"
+    {}
+    break;
+
+  case 525:
+
+/* Line 1806 of yacc.c  */
 #line 2025 "parser.yy"
+    { parseTree = parseTree ? parseTree->appendList( (yyvsp[(1) - (1)].decl) ) : (yyvsp[(1) - (1)].decl);	}
+    break;
+
+  case 527:
+
+/* Line 1806 of yacc.c  */
+#line 2031 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (3)].decl) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); }
+    break;
+
+  case 528:
+
+/* Line 1806 of yacc.c  */
+#line 2036 "parser.yy"
+    { (yyval.decl) = nullptr; }
+    break;
+
+  case 532:
+
+/* Line 1806 of yacc.c  */
+#line 2044 "parser.yy"
     {}
     break;
 
-  case 525:
-
-/* Line 1806 of yacc.c  */
-#line 2027 "parser.yy"
-    { parseTree = parseTree ? parseTree->appendList( (yyvsp[(1) - (1)].decl) ) : (yyvsp[(1) - (1)].decl);	}
-    break;
-
-  case 527:
-
-/* Line 1806 of yacc.c  */
-#line 2033 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (3)].decl) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); }
-    break;
-
-  case 528:
-
-/* Line 1806 of yacc.c  */
-#line 2038 "parser.yy"
-    { (yyval.decl) = nullptr; }
-    break;
-
-  case 532:
+  case 533:
 
 /* Line 1806 of yacc.c  */
 #line 2046 "parser.yy"
-    {}
-    break;
-
-  case 533:
-
-/* Line 1806 of yacc.c  */
-#line 2048 "parser.yy"
     {
 			linkageStack.push( linkage );				// handle nested extern "C"/"Cforall"
@@ -7804,5 +7810,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2053 "parser.yy"
+#line 2051 "parser.yy"
     {
 			linkage = linkageStack.top();
@@ -7815,5 +7821,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2059 "parser.yy"
+#line 2057 "parser.yy"
     {	// mark all fields in list
 			for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() )
@@ -7826,5 +7832,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2074 "parser.yy"
+#line 2072 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7837,5 +7843,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2080 "parser.yy"
+#line 2078 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7848,5 +7854,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2089 "parser.yy"
+#line 2087 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7859,5 +7865,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2095 "parser.yy"
+#line 2093 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7870,5 +7876,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2101 "parser.yy"
+#line 2099 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7881,5 +7887,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2107 "parser.yy"
+#line 2105 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7892,5 +7898,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2113 "parser.yy"
+#line 2111 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7903,5 +7909,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2121 "parser.yy"
+#line 2119 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7914,5 +7920,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2127 "parser.yy"
+#line 2125 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7925,5 +7931,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2135 "parser.yy"
+#line 2133 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7936,5 +7942,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2141 "parser.yy"
+#line 2139 "parser.yy"
     {
 			typedefTable.addToEnclosingScope( TypedefTable::ID );
@@ -7947,5 +7953,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2156 "parser.yy"
+#line 2154 "parser.yy"
     { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); }
     break;
@@ -7954,12 +7960,12 @@
 
 /* Line 1806 of yacc.c  */
+#line 2159 "parser.yy"
+    { (yyval.constant) = nullptr; }
+    break;
+
+  case 553:
+
+/* Line 1806 of yacc.c  */
 #line 2161 "parser.yy"
-    { (yyval.constant) = nullptr; }
-    break;
-
-  case 553:
-
-/* Line 1806 of yacc.c  */
-#line 2163 "parser.yy"
     { (yyval.constant) = (yyvsp[(3) - (5)].constant); }
     break;
@@ -7968,5 +7974,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2168 "parser.yy"
+#line 2166 "parser.yy"
     { (yyval.decl) = nullptr; }
     break;
@@ -7975,5 +7981,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2175 "parser.yy"
+#line 2173 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -7982,34 +7988,34 @@
 
 /* Line 1806 of yacc.c  */
-#line 2181 "parser.yy"
+#line 2178 "parser.yy"
+    { (yyval.decl) = (yyvsp[(4) - (6)].decl); }
+    break;
+
+  case 560:
+
+/* Line 1806 of yacc.c  */
+#line 2184 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
+    break;
+
+  case 561:
+
+/* Line 1806 of yacc.c  */
+#line 2189 "parser.yy"
     { (yyval.decl) = nullptr; }
     break;
 
+  case 562:
+
+/* Line 1806 of yacc.c  */
+#line 2191 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newAttribute( (yyvsp[(1) - (1)].tok) ); }
+    break;
+
   case 563:
 
 /* Line 1806 of yacc.c  */
-#line 2192 "parser.yy"
-    { delete (yyvsp[(3) - (4)].en); }
-    break;
-
-  case 564:
-
-/* Line 1806 of yacc.c  */
-#line 2196 "parser.yy"
-    { delete (yyvsp[(1) - (1)].tok); }
-    break;
-
-  case 565:
-
-/* Line 1806 of yacc.c  */
-#line 2197 "parser.yy"
-    { delete (yyvsp[(1) - (1)].decl); }
-    break;
-
-  case 566:
-
-/* Line 1806 of yacc.c  */
-#line 2198 "parser.yy"
-    { delete (yyvsp[(1) - (1)].decl); }
+#line 2193 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newAttribute( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); }
     break;
 
@@ -8017,6 +8023,6 @@
 
 /* Line 1806 of yacc.c  */
-#line 2199 "parser.yy"
-    { delete (yyvsp[(1) - (1)].decl); }
+#line 2201 "parser.yy"
+    { (yyval.tok) = Token{ new string( "__const__" ) }; }
     break;
 
@@ -8024,16 +8030,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2234 "parser.yy"
+#line 2236 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
   case 570:
-
-/* Line 1806 of yacc.c  */
-#line 2237 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 571:
 
 /* Line 1806 of yacc.c  */
@@ -8042,8 +8041,15 @@
     break;
 
+  case 571:
+
+/* Line 1806 of yacc.c  */
+#line 2241 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
   case 572:
 
 /* Line 1806 of yacc.c  */
-#line 2244 "parser.yy"
+#line 2246 "parser.yy"
     {
 			typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) );
@@ -8055,5 +8061,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2249 "parser.yy"
+#line 2251 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8062,5 +8068,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2254 "parser.yy"
+#line 2256 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8069,5 +8075,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2256 "parser.yy"
+#line 2258 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8076,5 +8082,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2258 "parser.yy"
+#line 2260 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8083,16 +8089,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2263 "parser.yy"
+#line 2265 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
     break;
 
   case 578:
-
-/* Line 1806 of yacc.c  */
-#line 2265 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
-    break;
-
-  case 579:
 
 /* Line 1806 of yacc.c  */
@@ -8101,8 +8100,15 @@
     break;
 
+  case 579:
+
+/* Line 1806 of yacc.c  */
+#line 2269 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
+    break;
+
   case 580:
 
 /* Line 1806 of yacc.c  */
-#line 2269 "parser.yy"
+#line 2271 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8111,5 +8117,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2274 "parser.yy"
+#line 2276 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
     break;
@@ -8118,5 +8124,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2276 "parser.yy"
+#line 2278 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8125,5 +8131,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2285 "parser.yy"
+#line 2287 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
@@ -8132,5 +8138,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2288 "parser.yy"
+#line 2290 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
@@ -8139,5 +8145,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2293 "parser.yy"
+#line 2295 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); }
     break;
@@ -8146,5 +8152,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2295 "parser.yy"
+#line 2297 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
     break;
@@ -8153,5 +8159,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2297 "parser.yy"
+#line 2299 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8160,5 +8166,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2302 "parser.yy"
+#line 2304 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8167,5 +8173,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2304 "parser.yy"
+#line 2306 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8174,16 +8180,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2306 "parser.yy"
+#line 2308 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
 
   case 592:
-
-/* Line 1806 of yacc.c  */
-#line 2311 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
-    break;
-
-  case 593:
 
 /* Line 1806 of yacc.c  */
@@ -8192,8 +8191,15 @@
     break;
 
+  case 593:
+
+/* Line 1806 of yacc.c  */
+#line 2315 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
+    break;
+
   case 594:
 
 /* Line 1806 of yacc.c  */
-#line 2315 "parser.yy"
+#line 2317 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8202,5 +8208,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2330 "parser.yy"
+#line 2332 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); }
     break;
@@ -8209,5 +8215,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2332 "parser.yy"
+#line 2334 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); }
     break;
@@ -8216,5 +8222,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2334 "parser.yy"
+#line 2336 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8223,5 +8229,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2339 "parser.yy"
+#line 2341 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8230,5 +8236,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2341 "parser.yy"
+#line 2343 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8237,16 +8243,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2343 "parser.yy"
+#line 2345 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
 
   case 604:
-
-/* Line 1806 of yacc.c  */
-#line 2348 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
-    break;
-
-  case 605:
 
 /* Line 1806 of yacc.c  */
@@ -8255,8 +8254,15 @@
     break;
 
+  case 605:
+
+/* Line 1806 of yacc.c  */
+#line 2352 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
+    break;
+
   case 606:
 
 /* Line 1806 of yacc.c  */
-#line 2352 "parser.yy"
+#line 2354 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8265,16 +8271,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2367 "parser.yy"
+#line 2369 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
   case 609:
-
-/* Line 1806 of yacc.c  */
-#line 2370 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 610:
 
 /* Line 1806 of yacc.c  */
@@ -8283,8 +8282,15 @@
     break;
 
+  case 610:
+
+/* Line 1806 of yacc.c  */
+#line 2374 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
   case 612:
 
 /* Line 1806 of yacc.c  */
-#line 2378 "parser.yy"
+#line 2380 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8293,5 +8299,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2383 "parser.yy"
+#line 2385 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8300,5 +8306,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2385 "parser.yy"
+#line 2387 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8307,5 +8313,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2387 "parser.yy"
+#line 2389 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8314,16 +8320,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2392 "parser.yy"
+#line 2394 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
     break;
 
   case 617:
-
-/* Line 1806 of yacc.c  */
-#line 2394 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
-    break;
-
-  case 618:
 
 /* Line 1806 of yacc.c  */
@@ -8332,8 +8331,15 @@
     break;
 
+  case 618:
+
+/* Line 1806 of yacc.c  */
+#line 2398 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
+    break;
+
   case 619:
 
 /* Line 1806 of yacc.c  */
-#line 2398 "parser.yy"
+#line 2400 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8342,5 +8348,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2403 "parser.yy"
+#line 2405 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); }
     break;
@@ -8349,5 +8355,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2405 "parser.yy"
+#line 2407 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
     break;
@@ -8356,5 +8362,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2407 "parser.yy"
+#line 2409 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8363,16 +8369,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2417 "parser.yy"
+#line 2419 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
   case 625:
-
-/* Line 1806 of yacc.c  */
-#line 2420 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 626:
 
 /* Line 1806 of yacc.c  */
@@ -8381,8 +8380,15 @@
     break;
 
+  case 626:
+
+/* Line 1806 of yacc.c  */
+#line 2424 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
   case 627:
 
 /* Line 1806 of yacc.c  */
-#line 2427 "parser.yy"
+#line 2429 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8391,5 +8397,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2429 "parser.yy"
+#line 2431 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8398,5 +8404,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2431 "parser.yy"
+#line 2433 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8405,16 +8411,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2436 "parser.yy"
+#line 2438 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
     break;
 
   case 631:
-
-/* Line 1806 of yacc.c  */
-#line 2438 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
-    break;
-
-  case 632:
 
 /* Line 1806 of yacc.c  */
@@ -8423,8 +8422,15 @@
     break;
 
+  case 632:
+
+/* Line 1806 of yacc.c  */
+#line 2442 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
+    break;
+
   case 633:
 
 /* Line 1806 of yacc.c  */
-#line 2442 "parser.yy"
+#line 2444 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8433,5 +8439,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2447 "parser.yy"
+#line 2449 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); }
     break;
@@ -8440,5 +8446,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2449 "parser.yy"
+#line 2451 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
     break;
@@ -8447,5 +8453,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2451 "parser.yy"
+#line 2453 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8454,16 +8460,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2482 "parser.yy"
+#line 2484 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
     break;
 
   case 639:
-
-/* Line 1806 of yacc.c  */
-#line 2485 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 640:
 
 /* Line 1806 of yacc.c  */
@@ -8472,8 +8471,15 @@
     break;
 
+  case 640:
+
+/* Line 1806 of yacc.c  */
+#line 2489 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
   case 641:
 
 /* Line 1806 of yacc.c  */
-#line 2492 "parser.yy"
+#line 2494 "parser.yy"
     {
 			typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) );
@@ -8485,5 +8491,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2497 "parser.yy"
+#line 2499 "parser.yy"
     {
 			typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) );
@@ -8495,5 +8501,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2505 "parser.yy"
+#line 2507 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8502,5 +8508,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2507 "parser.yy"
+#line 2509 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8509,5 +8515,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2509 "parser.yy"
+#line 2511 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8516,5 +8522,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2514 "parser.yy"
+#line 2516 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
     break;
@@ -8523,5 +8529,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2516 "parser.yy"
+#line 2518 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
     break;
@@ -8530,5 +8536,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2521 "parser.yy"
+#line 2523 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); }
     break;
@@ -8537,16 +8543,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2523 "parser.yy"
+#line 2525 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
     break;
 
   case 651:
-
-/* Line 1806 of yacc.c  */
-#line 2538 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 652:
 
 /* Line 1806 of yacc.c  */
@@ -8555,8 +8554,15 @@
     break;
 
+  case 652:
+
+/* Line 1806 of yacc.c  */
+#line 2542 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
   case 653:
 
 /* Line 1806 of yacc.c  */
-#line 2545 "parser.yy"
+#line 2547 "parser.yy"
     { (yyval.decl) = DeclarationNode::newPointer( 0 ); }
     break;
@@ -8565,5 +8571,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2547 "parser.yy"
+#line 2549 "parser.yy"
     { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); }
     break;
@@ -8572,5 +8578,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2549 "parser.yy"
+#line 2551 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8579,5 +8585,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2551 "parser.yy"
+#line 2553 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8586,16 +8592,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2553 "parser.yy"
+#line 2555 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
 
   case 659:
-
-/* Line 1806 of yacc.c  */
-#line 2559 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
-    break;
-
-  case 660:
 
 /* Line 1806 of yacc.c  */
@@ -8604,8 +8603,15 @@
     break;
 
+  case 660:
+
+/* Line 1806 of yacc.c  */
+#line 2563 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
+    break;
+
   case 661:
 
 /* Line 1806 of yacc.c  */
-#line 2563 "parser.yy"
+#line 2565 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8614,5 +8620,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2568 "parser.yy"
+#line 2570 "parser.yy"
     { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); }
     break;
@@ -8621,5 +8627,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2570 "parser.yy"
+#line 2572 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
     break;
@@ -8628,5 +8634,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2572 "parser.yy"
+#line 2574 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8635,5 +8641,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2578 "parser.yy"
+#line 2580 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); }
     break;
@@ -8642,5 +8648,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2580 "parser.yy"
+#line 2582 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); }
     break;
@@ -8649,5 +8655,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2586 "parser.yy"
+#line 2588 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); }
     break;
@@ -8656,5 +8662,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2588 "parser.yy"
+#line 2590 "parser.yy"
     { (yyval.decl) = DeclarationNode::newVarArray( 0 ); }
     break;
@@ -8663,5 +8669,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2590 "parser.yy"
+#line 2592 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); }
     break;
@@ -8670,16 +8676,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2592 "parser.yy"
+#line 2594 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); }
     break;
 
   case 673:
-
-/* Line 1806 of yacc.c  */
-#line 2607 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 674:
 
 /* Line 1806 of yacc.c  */
@@ -8688,8 +8687,15 @@
     break;
 
+  case 674:
+
+/* Line 1806 of yacc.c  */
+#line 2611 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
   case 675:
 
 /* Line 1806 of yacc.c  */
-#line 2614 "parser.yy"
+#line 2616 "parser.yy"
     { (yyval.decl) = DeclarationNode::newPointer( 0 ); }
     break;
@@ -8698,5 +8704,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2616 "parser.yy"
+#line 2618 "parser.yy"
     { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); }
     break;
@@ -8705,5 +8711,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2618 "parser.yy"
+#line 2620 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8712,5 +8718,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2620 "parser.yy"
+#line 2622 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8719,16 +8725,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2622 "parser.yy"
+#line 2624 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
 
   case 681:
-
-/* Line 1806 of yacc.c  */
-#line 2628 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
-    break;
-
-  case 682:
 
 /* Line 1806 of yacc.c  */
@@ -8737,8 +8736,15 @@
     break;
 
+  case 682:
+
+/* Line 1806 of yacc.c  */
+#line 2632 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
+    break;
+
   case 683:
 
 /* Line 1806 of yacc.c  */
-#line 2632 "parser.yy"
+#line 2634 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8747,5 +8753,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2637 "parser.yy"
+#line 2639 "parser.yy"
     { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); }
     break;
@@ -8754,5 +8760,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2639 "parser.yy"
+#line 2641 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
     break;
@@ -8761,5 +8767,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2641 "parser.yy"
+#line 2643 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8768,5 +8774,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2648 "parser.yy"
+#line 2650 "parser.yy"
     { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
     break;
@@ -8775,5 +8781,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2659 "parser.yy"
+#line 2661 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); }
     break;
@@ -8782,5 +8788,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2662 "parser.yy"
+#line 2664 "parser.yy"
     { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); }
     break;
@@ -8789,5 +8795,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2664 "parser.yy"
+#line 2666 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); }
     break;
@@ -8796,5 +8802,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2667 "parser.yy"
+#line 2669 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); }
     break;
@@ -8803,5 +8809,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2669 "parser.yy"
+#line 2671 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); }
     break;
@@ -8810,16 +8816,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2671 "parser.yy"
+#line 2673 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); }
     break;
 
   case 697:
-
-/* Line 1806 of yacc.c  */
-#line 2685 "parser.yy"
-    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
-    break;
-
-  case 698:
 
 /* Line 1806 of yacc.c  */
@@ -8828,8 +8827,15 @@
     break;
 
+  case 698:
+
+/* Line 1806 of yacc.c  */
+#line 2689 "parser.yy"
+    { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
+    break;
+
   case 699:
 
 /* Line 1806 of yacc.c  */
-#line 2692 "parser.yy"
+#line 2694 "parser.yy"
     { (yyval.decl) = DeclarationNode::newPointer( 0 ); }
     break;
@@ -8838,5 +8844,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2694 "parser.yy"
+#line 2696 "parser.yy"
     { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); }
     break;
@@ -8845,5 +8851,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2696 "parser.yy"
+#line 2698 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8852,5 +8858,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2698 "parser.yy"
+#line 2700 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
     break;
@@ -8859,16 +8865,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2700 "parser.yy"
+#line 2702 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
 
   case 705:
-
-/* Line 1806 of yacc.c  */
-#line 2706 "parser.yy"
-    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
-    break;
-
-  case 706:
 
 /* Line 1806 of yacc.c  */
@@ -8877,8 +8876,15 @@
     break;
 
+  case 706:
+
+/* Line 1806 of yacc.c  */
+#line 2710 "parser.yy"
+    { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
+    break;
+
   case 707:
 
 /* Line 1806 of yacc.c  */
-#line 2710 "parser.yy"
+#line 2712 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8887,5 +8893,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2715 "parser.yy"
+#line 2717 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
     break;
@@ -8894,5 +8900,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2717 "parser.yy"
+#line 2719 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (3)].decl); }
     break;
@@ -8901,5 +8907,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2727 "parser.yy"
+#line 2729 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -8908,5 +8914,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2737 "parser.yy"
+#line 2739 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8915,5 +8921,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2739 "parser.yy"
+#line 2741 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
     break;
@@ -8922,5 +8928,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2741 "parser.yy"
+#line 2743 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8929,5 +8935,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2743 "parser.yy"
+#line 2745 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
     break;
@@ -8936,5 +8942,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2745 "parser.yy"
+#line 2747 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -8943,5 +8949,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2747 "parser.yy"
+#line 2749 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
     break;
@@ -8950,5 +8956,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2754 "parser.yy"
+#line 2756 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
     break;
@@ -8957,5 +8963,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2756 "parser.yy"
+#line 2758 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -8964,5 +8970,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2758 "parser.yy"
+#line 2760 "parser.yy"
     { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
     break;
@@ -8971,5 +8977,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2760 "parser.yy"
+#line 2762 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); }
     break;
@@ -8978,5 +8984,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2762 "parser.yy"
+#line 2764 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -8985,5 +8991,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2765 "parser.yy"
+#line 2767 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
     break;
@@ -8992,5 +8998,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2767 "parser.yy"
+#line 2769 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -8999,5 +9005,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2769 "parser.yy"
+#line 2771 "parser.yy"
     { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
     break;
@@ -9006,5 +9012,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2771 "parser.yy"
+#line 2773 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); }
     break;
@@ -9013,5 +9019,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2773 "parser.yy"
+#line 2775 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -9020,5 +9026,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2778 "parser.yy"
+#line 2780 "parser.yy"
     { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); }
     break;
@@ -9027,5 +9033,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2780 "parser.yy"
+#line 2782 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); }
     break;
@@ -9034,5 +9040,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2785 "parser.yy"
+#line 2787 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); }
     break;
@@ -9041,5 +9047,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2787 "parser.yy"
+#line 2789 "parser.yy"
     { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); }
     break;
@@ -9048,5 +9054,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2814 "parser.yy"
+#line 2816 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -9055,5 +9061,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2825 "parser.yy"
+#line 2827 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -9062,5 +9068,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2827 "parser.yy"
+#line 2829 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
     break;
@@ -9069,5 +9075,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2829 "parser.yy"
+#line 2831 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -9076,5 +9082,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2831 "parser.yy"
+#line 2833 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
     break;
@@ -9083,5 +9089,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2833 "parser.yy"
+#line 2835 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
     break;
@@ -9090,5 +9096,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2835 "parser.yy"
+#line 2837 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
     break;
@@ -9097,5 +9103,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2842 "parser.yy"
+#line 2844 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
     break;
@@ -9104,5 +9110,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2844 "parser.yy"
+#line 2846 "parser.yy"
     { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
     break;
@@ -9111,5 +9117,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2846 "parser.yy"
+#line 2848 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -9118,5 +9124,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2848 "parser.yy"
+#line 2850 "parser.yy"
     { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
     break;
@@ -9125,5 +9131,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2850 "parser.yy"
+#line 2852 "parser.yy"
     { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); }
     break;
@@ -9132,5 +9138,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2852 "parser.yy"
+#line 2854 "parser.yy"
     { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
     break;
@@ -9139,16 +9145,9 @@
 
 /* Line 1806 of yacc.c  */
-#line 2857 "parser.yy"
+#line 2859 "parser.yy"
     { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); }
     break;
 
   case 753:
-
-/* Line 1806 of yacc.c  */
-#line 2864 "parser.yy"
-    { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); }
-    break;
-
-  case 754:
 
 /* Line 1806 of yacc.c  */
@@ -9157,8 +9156,15 @@
     break;
 
+  case 754:
+
+/* Line 1806 of yacc.c  */
+#line 2868 "parser.yy"
+    { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); }
+    break;
+
   case 757:
 
 /* Line 1806 of yacc.c  */
-#line 2890 "parser.yy"
+#line 2892 "parser.yy"
     { (yyval.en) = nullptr; }
     break;
@@ -9167,5 +9173,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 2892 "parser.yy"
+#line 2894 "parser.yy"
     { (yyval.en) = (yyvsp[(2) - (2)].en); }
     break;
@@ -9174,5 +9180,5 @@
 
 /* Line 1806 of yacc.c  */
-#line 9177 "Parser/parser.cc"
+#line 9183 "Parser/parser.cc"
       default: break;
     }
@@ -9405,5 +9411,5 @@
 
 /* Line 2067 of yacc.c  */
-#line 2895 "parser.yy"
+#line 2897 "parser.yy"
 
 // ----end of grammar----
Index: src/Parser/parser.h
===================================================================
--- src/Parser/parser.h	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/Parser/parser.h	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -272,5 +272,5 @@
 
 /* Line 2068 of yacc.c  */
-#line 120 "parser.yy"
+#line 119 "parser.yy"
 
 	Token tok;
Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/Parser/parser.yy	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Dec 14 21:28:22 2016
-// Update Count     : 2090
+// Last Modified On : Wed Jan 18 15:51:25 2017
+// Update Count     : 2135
 //
 
@@ -32,5 +32,4 @@
 //
 // 1. designation with and without '=' (use ':' instead)
-// 2. attributes not allowed in parenthesis of declarator
 //
 // All of the syntactic extensions for GCC C are marked with the comment "GCC". The second extensions are for Cforall
@@ -136,5 +135,5 @@
 
 %type<tok> identifier  no_01_identifier  no_attr_identifier zero_one
-%type<tok> identifier_or_type_name  no_attr_identifier_or_type_name  no_01_identifier_or_type_name
+%type<tok> identifier_or_type_name  no_attr_identifier_or_type_name  no_01_identifier_or_type_name  attr_name
 %type<constant> string_literal
 %type<str> string_literal_list
@@ -253,5 +252,5 @@
 %type<decl> variable_abstract_ptr variable_array variable_declarator variable_function variable_ptr
 
-%type<decl> attribute_list_opt attribute_list attribute
+%type<decl> attribute_list_opt attribute_list attribute_name_list attribute attribute_name
 
 // initializers
@@ -709,8 +708,8 @@
 
 labeled_statement:
-		// labels cannot be identifiers 0 or 1
-	IDENTIFIER ':' attribute_list_opt statement
-		{
-			$$ = $4->add_label( $1 );
+		// labels cannot be identifiers 0 or 1 or ATTR_IDENTIFIER
+	identifier_or_type_name ':' attribute_list_opt statement
+		{
+			$$ = $4->add_label( $1, $3 );
 		}
 	;
@@ -877,5 +876,5 @@
 
 jump_statement:
-	GOTO IDENTIFIER ';'
+	GOTO identifier_or_type_name ';'
 		{ $$ = new StatementNode( build_branch( $2, BranchStmt::Goto ) ); }
 	| GOTO '*' comma_expression ';'						// GCC, computed goto
@@ -886,5 +885,5 @@
 		// A semantic check is required to ensure this statement appears only in the body of an iteration statement.
 		{ $$ = new StatementNode( build_branch( BranchStmt::Continue ) ); }
-	| CONTINUE IDENTIFIER ';'							// CFA, multi-level continue
+	| CONTINUE identifier_or_type_name ';'				// CFA, multi-level continue
 		// A semantic check is required to ensure this statement appears only in the body of an iteration statement, and
 		// the target of the transfer appears only at the start of an iteration statement.
@@ -893,5 +892,5 @@
 		// A semantic check is required to ensure this statement appears only in the body of an iteration statement.
 		{ $$ = new StatementNode( build_branch( BranchStmt::Break ) ); }
-	| BREAK IDENTIFIER ';'								// CFA, multi-level exit
+	| BREAK identifier_or_type_name ';'					// CFA, multi-level exit
 		// A semantic check is required to ensure this statement appears only in the body of an iteration statement, and
 		// the target of the transfer appears only at the start of an iteration statement.
@@ -1326,5 +1325,4 @@
 	type_qualifier_name
 	| attribute
-		//{ $$ = DeclarationNode::newQualifier( DeclarationNode::Attribute ); }
 	;
 
@@ -2177,25 +2175,29 @@
 
 attribute:												// GCC
-	ATTRIBUTE '(' '(' attribute_parameter_list ')' ')'
-	//		{ $$ = DeclarationNode::newQualifier( DeclarationNode::Attribute ); }
+	ATTRIBUTE '(' '(' attribute_name_list ')' ')'
+		{ $$ = $4; }
+	;
+
+attribute_name_list:									// GCC
+	attribute_name
+	| attribute_name_list ',' attribute_name
+		{ $$ = $1->addQualifiers( $3 ); } 
+	;
+
+attribute_name:											// GCC
+	// empty
 		{ $$ = nullptr; }
-	;
-
-attribute_parameter_list:								// GCC
-	attrib
-	| attribute_parameter_list ',' attrib
-	;
-
-attrib:													// GCC
-	// empty
-	| any_word
-	| any_word '(' comma_expression_opt ')'	{ delete $3; } // FIX ME: unimplemented
-	;
-
-any_word:												// GCC
-	identifier_or_type_name { delete $1; }				// FIX ME: unimplemented
-	| storage_class { delete $1; }						// FIX ME: unimplemented
-	| basic_type_name { delete $1; }					// FIX ME: unimplemented
-	| type_qualifier { delete $1; }						// FIX ME: unimplemented
+	| attr_name
+		{ $$ = DeclarationNode::newAttribute( $1 ); }
+	| attr_name '(' argument_expression_list ')'
+		{ $$ = DeclarationNode::newAttribute( $1, $3 ); }
+	;
+
+attr_name:												// GCC
+	IDENTIFIER
+	| TYPEDEFname
+	| TYPEGENname
+	| CONST
+		{ $$ = Token{ new string( "__const__" ) }; }
 	;
 
Index: src/ResolvExpr/Unify.cc
===================================================================
--- src/ResolvExpr/Unify.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/ResolvExpr/Unify.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -163,5 +163,5 @@
 			case TypeDecl::Ttype:
 			// ttype unifies with any tuple type
-			return dynamic_cast< TupleType * >( type );
+			return dynamic_cast< TupleType * >( type ) || Tuples::isTtype( type );
 		} // switch
 		return false;
@@ -488,10 +488,10 @@
 	}
 
-	template< typename Iterator >
-	std::unique_ptr<Type> combineTypes( Iterator begin, Iterator end ) {
+	template< typename Iterator, typename Func >
+	std::unique_ptr<Type> combineTypes( Iterator begin, Iterator end, Func & toType ) {
 		std::list< Type * > types;
 		for ( ; begin != end; ++begin ) {
 			// it's guaranteed that a ttype variable will be bound to a flat tuple, so ensure that this results in a flat tuple
-			flatten( (*begin)->get_type(), back_inserter( types ) );
+			flatten( toType( *begin ), back_inserter( types ) );
 		}
 		return std::unique_ptr<Type>( new TupleType( Type::Qualifiers(), types ) );
@@ -500,4 +500,5 @@
 	template< typename Iterator1, typename Iterator2 >
 	bool unifyDeclList( Iterator1 list1Begin, Iterator1 list1End, Iterator2 list2Begin, Iterator2 list2End, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, const OpenVarSet &openVars, const SymTab::Indexer &indexer ) {
+		auto get_type = [](DeclarationWithType * dwt){ return dwt->get_type(); };
 		for ( ; list1Begin != list1End && list2Begin != list2End; ++list1Begin, ++list2Begin ) {
 			Type * t1 = (*list1Begin)->get_type();
@@ -509,8 +510,8 @@
 			if ( isTtype1 && ! isTtype2 ) {
 				// combine all of the things in list2, then unify
-				return unifyExact( t1, combineTypes( list2Begin, list2End ).get(), env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
+				return unifyExact( t1, combineTypes( list2Begin, list2End, get_type ).get(), env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
 			} else if ( isTtype2 && ! isTtype1 ) {
 				// combine all of the things in list1, then unify
-				return unifyExact( combineTypes( list1Begin, list1End ).get(), t2, env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
+				return unifyExact( combineTypes( list1Begin, list1End, get_type ).get(), t2, env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
 			} else if ( ! unifyExact( t1, t2, env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer ) ) {
 				return false;
@@ -522,5 +523,5 @@
 			Type * t1 = (*list1Begin)->get_type();
 			if ( Tuples::isTtype( t1 ) ) {
-				return unifyExact( t1, combineTypes( list2Begin, list2End ).get(), env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
+				return unifyExact( t1, combineTypes( list2Begin, list2End, get_type ).get(), env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
 			} else return false;
 		} else if ( list2Begin != list2End ) {
@@ -528,5 +529,5 @@
 			Type * t2 = (*list2Begin)->get_type();
 			if ( Tuples::isTtype( t2 ) ) {
-				return unifyExact( combineTypes( list1Begin, list1End ).get(), t2, env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
+				return unifyExact( combineTypes( list1Begin, list1End, get_type ).get(), t2, env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
 			} else return false;
 		} else {
@@ -665,21 +666,54 @@
 	template< typename Iterator1, typename Iterator2 >
 	bool unifyList( Iterator1 list1Begin, Iterator1 list1End, Iterator2 list2Begin, Iterator2 list2End, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, const OpenVarSet &openVars, WidenMode widenMode, const SymTab::Indexer &indexer ) {
+		auto get_type = [](Type * t) { return t; };
 		for ( ; list1Begin != list1End && list2Begin != list2End; ++list1Begin, ++list2Begin ) {
-			Type *commonType = 0;
-			if ( ! unifyInexact( *list1Begin, *list2Begin, env, needAssertions, haveAssertions, openVars, widenMode, indexer, commonType ) ) {
+			Type * t1 = *list1Begin;
+			Type * t2 = *list2Begin;
+			bool isTtype1 = Tuples::isTtype( t1 );
+			bool isTtype2 = Tuples::isTtype( t2 );
+			// xxx - assumes ttype must be last parameter
+			// xxx - there may be a nice way to refactor this, but be careful because the argument positioning might matter in some cases.
+			if ( isTtype1 && ! isTtype2 ) {
+				// combine all of the things in list2, then unify
+				return unifyExact( t1, combineTypes( list2Begin, list2End, get_type ).get(), env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
+			} else if ( isTtype2 && ! isTtype1 ) {
+				// combine all of the things in list1, then unify
+				return unifyExact( combineTypes( list1Begin, list1End, get_type ).get(), t2, env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
+			} else if ( ! unifyExact( t1, t2, env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer ) ) {
 				return false;
-			}
-			delete commonType;
+			} // if
+
 		} // for
-		if ( list1Begin != list1End || list2Begin != list2End ) {
-			return false;
+		if ( list1Begin != list1End ) {
+			// try unifying empty tuple type with ttype
+			Type * t1 = *list1Begin;
+			if ( Tuples::isTtype( t1 ) ) {
+				return unifyExact( t1, combineTypes( list2Begin, list2End, get_type ).get(), env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
+			} else return false;
+		} else if ( list2Begin != list2End ) {
+			// try unifying empty tuple type with ttype
+			Type * t2 = *list2Begin;
+			if ( Tuples::isTtype( t2 ) ) {
+				return unifyExact( combineTypes( list1Begin, list1End, get_type ).get(), t2, env, needAssertions, haveAssertions, openVars, WidenMode( false, false ), indexer );
+			} else return false;
 		} else {
 			return true;
-		} //if
+		} // if
 	}
 
 	void Unify::visit(TupleType *tupleType) {
 		if ( TupleType *otherTuple = dynamic_cast< TupleType* >( type2 ) ) {
-			result = unifyList( tupleType->get_types().begin(), tupleType->get_types().end(), otherTuple->get_types().begin(), otherTuple->get_types().end(), env, needAssertions, haveAssertions, openVars, widenMode, indexer );
+			std::unique_ptr<TupleType> flat1( tupleType->clone() );
+			std::unique_ptr<TupleType> flat2( otherTuple->clone() );
+			std::list<Type *> types1, types2;
+
+			TtypeExpander expander( env );
+			flat1->acceptMutator( expander );
+			flat2->acceptMutator( expander );
+
+			flatten( flat1.get(), back_inserter( types1 ) );
+			flatten( flat2.get(), back_inserter( types2 ) );
+
+			result = unifyList( types1.begin(), types1.end(), types2.begin(), types2.end(), env, needAssertions, haveAssertions, openVars, widenMode, indexer );
 		} // if
 	}
Index: src/SynTree/Attribute.h
===================================================================
--- src/SynTree/Attribute.h	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/SynTree/Attribute.h	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Fri May 06 16:26:12 2016
-// Update Count     : 33
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Wed Jan 18 16:27:11 2017
+// Update Count     : 38
 //
 
@@ -23,21 +23,26 @@
 class Attribute {
   public:
-  Attribute( std::string name = "", const std::list< Expression * > & parameters = std::list< Expression * >() ) : name( name ), parameters( parameters ) {}
-  Attribute( const Attribute &other );
-  virtual ~Attribute();
+	Attribute( std::string name = "", const std::list< Expression * > & parameters = std::list< Expression * >() ) : name( name ), parameters( parameters ) {}
+	Attribute( const Attribute &other );
+	virtual ~Attribute();
 
-  std::string get_name() const { return name; }
-  void set_name( const std::string & newValue ) { name = newValue; }
-  std::list< Expression * > & get_parameters() { return parameters; }
-  bool empty() const { return name == ""; }
+	std::string get_name() const { return name; }
+	void set_name( const std::string & newValue ) { name = newValue; }
+	std::list< Expression * > & get_parameters() { return parameters; }
+	bool empty() const { return name == ""; }
 
-  Attribute * clone() const { return new Attribute( *this ); }
-  void print( std:: ostream &os, int indent = 0 ) const;
-
+	Attribute * clone() const { return new Attribute( *this ); }
+	void print( std:: ostream &os, int indent = 0 ) const;
   private:
-  std::string name;
-  // to keep things nice and tight, use NameExpr for special identifier parameters
-  std::list< Expression * > parameters;
+	std::string name;
+	// to keep things nice and tight, use NameExpr for special identifier parameters
+	std::list< Expression * > parameters;
 };
 
 #endif
+
+// Local Variables: //
+// tab-width: 4 //
+// mode: c++ //
+// compile-command: "make install" //
+// End: //
Index: src/SynTree/Expression.h
===================================================================
--- src/SynTree/Expression.h	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/SynTree/Expression.h	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Aug  6 08:52:53 2016
-// Update Count     : 35
+// Last Modified On : Sat Jan 14 14:37:54 2017
+// Update Count     : 37
 //
 
@@ -28,27 +28,27 @@
 class Expression {
   public:
-	Expression( Expression *_aname = nullptr );
-	Expression( const Expression &other );
+	Expression( Expression * _aname = nullptr );
+	Expression( const Expression & other );
 	virtual ~Expression();
 
 	Type *& get_result() { return result; }
-	void set_result( Type *newValue ) { result = newValue; }
+	void set_result( Type * newValue ) { result = newValue; }
 	bool has_result() const { return result != nullptr; }
 
-	TypeSubstitution *get_env() const { return env; }
-	void set_env( TypeSubstitution *newValue ) { env = newValue; }
-	Expression *get_argName() const { return argName; }
-	void set_argName( Expression *name ) { argName = name; }
+	TypeSubstitution * get_env() const { return env; }
+	void set_env( TypeSubstitution * newValue ) { env = newValue; }
+	Expression * get_argName() const { return argName; }
+	void set_argName( Expression * name ) { argName = name; }
 	bool get_extension() const { return extension; }
 	Expression * set_extension( bool exten ) { extension = exten; return this; }
 
-	virtual Expression *clone() const = 0;
-	virtual void accept( Visitor &v ) = 0;
-	virtual Expression *acceptMutator( Mutator &m ) = 0;
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual Expression * clone() const = 0;
+	virtual void accept( Visitor & v ) = 0;
+	virtual Expression * acceptMutator( Mutator & m ) = 0;
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   protected:
 	Type * result;
-	TypeSubstitution *env;
-	Expression* argName; // if expression is used as an argument, it can be "designated" by this name
+	TypeSubstitution * env;
+	Expression * argName; // if expression is used as an argument, it can be "designated" by this name
 	bool extension = false;
 };
@@ -61,12 +61,12 @@
 struct ParamEntry {
 	ParamEntry(): decl( 0 ), actualType( 0 ), formalType( 0 ), expr( 0 ), inferParams( new InferredParams ) {}
-	ParamEntry( UniqueId decl, Type *actualType, Type *formalType, Expression* expr ): decl( decl ), actualType( actualType ), formalType( formalType ), expr( expr ), inferParams( new InferredParams ) {}
-	ParamEntry( const ParamEntry &other );
+	ParamEntry( UniqueId decl, Type * actualType, Type * formalType, Expression* expr ): decl( decl ), actualType( actualType ), formalType( formalType ), expr( expr ), inferParams( new InferredParams ) {}
+	ParamEntry( const ParamEntry & other );
 	~ParamEntry();
-	ParamEntry &operator=( const ParamEntry &other );
+	ParamEntry & operator=( const ParamEntry & other );
 
 	UniqueId decl;
-	Type *actualType;
-	Type *formalType;
+	Type * actualType;
+	Type * formalType;
 	Expression* expr;
 	std::unique_ptr< InferredParams > inferParams;
@@ -77,19 +77,19 @@
 class ApplicationExpr : public Expression {
   public:
-	ApplicationExpr( Expression *function );
-	ApplicationExpr( const ApplicationExpr &other );
+	ApplicationExpr( Expression * function );
+	ApplicationExpr( const ApplicationExpr & other );
 	virtual ~ApplicationExpr();
 
-	Expression *get_function() const { return function; }
-	void set_function( Expression *newValue ) { function = newValue; }
+	Expression * get_function() const { return function; }
+	void set_function( Expression * newValue ) { function = newValue; }
 	std::list<Expression *>& get_args() { return args; }
-	InferredParams &get_inferParams() { return inferParams; }
-
-	virtual ApplicationExpr *clone() const { return new ApplicationExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *function;
+	InferredParams & get_inferParams() { return inferParams; }
+
+	virtual ApplicationExpr * clone() const { return new ApplicationExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * function;
 	std::list<Expression *> args;
 	InferredParams inferParams;
@@ -101,12 +101,12 @@
 class UntypedExpr : public Expression {
   public:
-	UntypedExpr( Expression *function, const std::list<Expression *> &args = std::list< Expression * >(), Expression *_aname = nullptr );
-	UntypedExpr( const UntypedExpr &other );
+	UntypedExpr( Expression * function, const std::list<Expression *> & args = std::list< Expression * >(), Expression *_aname = nullptr );
+	UntypedExpr( const UntypedExpr & other );
 	virtual ~UntypedExpr();
 
-	Expression *get_function() const { return function; }
-	void set_function( Expression *newValue ) { function = newValue; }
-
-	void set_args( std::list<Expression *> &listArgs ) { args = listArgs; }
+	Expression * get_function() const { return function; }
+	void set_function( Expression * newValue ) { function = newValue; }
+
+	void set_args( std::list<Expression *> & listArgs ) { args = listArgs; }
 	std::list<Expression*>::iterator begin_args() { return args.begin(); }
 	std::list<Expression*>::iterator end_args() { return args.end(); }
@@ -116,11 +116,11 @@
 	static UntypedExpr * createAssign( Expression * arg1, Expression * arg2 );
 
-	virtual UntypedExpr *clone() const { return new UntypedExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-	virtual void printArgs(std::ostream &os, int indent = 0) const;
-  private:
-	Expression *function;
+	virtual UntypedExpr * clone() const { return new UntypedExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+	virtual void printArgs(std::ostream & os, int indent = 0) const;
+  private:
+	Expression * function;
 	std::list<Expression*> args;
 };
@@ -130,14 +130,14 @@
   public:
 	NameExpr( std::string name, Expression *_aname = nullptr );
-	NameExpr( const NameExpr &other );
+	NameExpr( const NameExpr & other );
 	virtual ~NameExpr();
 
-	const std::string &get_name() const { return name; }
+	const std::string & get_name() const { return name; }
 	void set_name( std::string newValue ) { name = newValue; }
 
-	virtual NameExpr *clone() const { return new NameExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual NameExpr * clone() const { return new NameExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	std::string name;
@@ -147,20 +147,20 @@
 // function-call format.
 
-/// AddressExpr represents a address-of expression, e.g. &e
+/// AddressExpr represents a address-of expression, e.g. & e
 class AddressExpr : public Expression {
   public:
-	AddressExpr( Expression *arg, Expression *_aname = nullptr );
-	AddressExpr( const AddressExpr &other );
+	AddressExpr( Expression * arg, Expression *_aname = nullptr );
+	AddressExpr( const AddressExpr & other );
 	virtual ~AddressExpr();
 
-	Expression *get_arg() const { return arg; }
-	void set_arg(Expression *newValue ) { arg = newValue; }
-
-	virtual AddressExpr *clone() const { return new AddressExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *arg;
+	Expression * get_arg() const { return arg; }
+	void set_arg(Expression * newValue ) { arg = newValue; }
+
+	virtual AddressExpr * clone() const { return new AddressExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * arg;
 };
 
@@ -168,17 +168,17 @@
 class LabelAddressExpr : public Expression {
   public:
-	LabelAddressExpr( Expression *arg );
-	LabelAddressExpr( const LabelAddressExpr &other );
+	LabelAddressExpr( Expression * arg );
+	LabelAddressExpr( const LabelAddressExpr & other );
 	virtual ~LabelAddressExpr();
 
-	Expression *get_arg() const { return arg; }
-	void set_arg(Expression *newValue ) { arg = newValue; }
-
-	virtual LabelAddressExpr *clone() const { return new LabelAddressExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *arg;
+	Expression * get_arg() const { return arg; }
+	void set_arg(Expression * newValue ) { arg = newValue; }
+
+	virtual LabelAddressExpr * clone() const { return new LabelAddressExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * arg;
 };
 
@@ -186,18 +186,18 @@
 class CastExpr : public Expression {
   public:
-	CastExpr( Expression *arg, Expression *_aname = nullptr );
-	CastExpr( Expression *arg, Type *toType, Expression *_aname = nullptr );
-	CastExpr( const CastExpr &other );
+	CastExpr( Expression * arg, Expression *_aname = nullptr );
+	CastExpr( Expression * arg, Type * toType, Expression *_aname = nullptr );
+	CastExpr( const CastExpr & other );
 	virtual ~CastExpr();
 
-	Expression *get_arg() const { return arg; }
-	void set_arg(Expression *newValue ) { arg = newValue; }
-
-	virtual CastExpr *clone() const { return new CastExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *arg;
+	Expression * get_arg() const { return arg; }
+	void set_arg(Expression * newValue ) { arg = newValue; }
+
+	virtual CastExpr * clone() const { return new CastExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * arg;
 };
 
@@ -205,20 +205,20 @@
 class UntypedMemberExpr : public Expression {
   public:
-	UntypedMemberExpr( Expression *member, Expression *aggregate, Expression *_aname = nullptr );
-	UntypedMemberExpr( const UntypedMemberExpr &other );
+	UntypedMemberExpr( Expression * member, Expression * aggregate, Expression *_aname = nullptr );
+	UntypedMemberExpr( const UntypedMemberExpr & other );
 	virtual ~UntypedMemberExpr();
 
 	Expression * get_member() const { return member; }
 	void set_member( Expression * newValue ) { member = newValue; }
-	Expression *get_aggregate() const { return aggregate; }
-	void set_aggregate( Expression *newValue ) { aggregate = newValue; }
-
-	virtual UntypedMemberExpr *clone() const { return new UntypedMemberExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *member;
-	Expression *aggregate;
+	Expression * get_aggregate() const { return aggregate; }
+	void set_aggregate( Expression * newValue ) { aggregate = newValue; }
+
+	virtual UntypedMemberExpr * clone() const { return new UntypedMemberExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * member;
+	Expression * aggregate;
 };
 
@@ -226,20 +226,20 @@
 class MemberExpr : public Expression {
   public:
-	MemberExpr( DeclarationWithType *member, Expression *aggregate, Expression *_aname = nullptr );
-	MemberExpr( const MemberExpr &other );
+	MemberExpr( DeclarationWithType * member, Expression * aggregate, Expression *_aname = nullptr );
+	MemberExpr( const MemberExpr & other );
 	virtual ~MemberExpr();
 
-	DeclarationWithType *get_member() const { return member; }
-	void set_member( DeclarationWithType *newValue ) { member = newValue; }
-	Expression *get_aggregate() const { return aggregate; }
-	void set_aggregate( Expression *newValue ) { aggregate = newValue; }
-
-	virtual MemberExpr *clone() const { return new MemberExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	DeclarationWithType *member;
-	Expression *aggregate;
+	DeclarationWithType * get_member() const { return member; }
+	void set_member( DeclarationWithType * newValue ) { member = newValue; }
+	Expression * get_aggregate() const { return aggregate; }
+	void set_aggregate( Expression * newValue ) { aggregate = newValue; }
+
+	virtual MemberExpr * clone() const { return new MemberExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	DeclarationWithType * member;
+	Expression * aggregate;
 };
 
@@ -247,17 +247,17 @@
 class VariableExpr : public Expression {
   public:
-	VariableExpr( DeclarationWithType *var, Expression *_aname = nullptr );
-	VariableExpr( const VariableExpr &other );
+	VariableExpr( DeclarationWithType * var, Expression *_aname = nullptr );
+	VariableExpr( const VariableExpr & other );
 	virtual ~VariableExpr();
 
-	DeclarationWithType *get_var() const { return var; }
-	void set_var( DeclarationWithType *newValue ) { var = newValue; }
-
-	virtual VariableExpr *clone() const { return new VariableExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	DeclarationWithType *var;
+	DeclarationWithType * get_var() const { return var; }
+	void set_var( DeclarationWithType * newValue ) { var = newValue; }
+
+	virtual VariableExpr * clone() const { return new VariableExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	DeclarationWithType * var;
 };
 
@@ -266,14 +266,14 @@
   public:
 	ConstantExpr( Constant constant, Expression *_aname = nullptr );
-	ConstantExpr( const ConstantExpr &other );
+	ConstantExpr( const ConstantExpr & other );
 	virtual ~ConstantExpr();
 
-	Constant *get_constant() { return &constant; }
-	void set_constant( const Constant &newValue ) { constant = newValue; }
-
-	virtual ConstantExpr *clone() const { return new ConstantExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	Constant * get_constant() { return & constant; }
+	void set_constant( const Constant & newValue ) { constant = newValue; }
+
+	virtual ConstantExpr * clone() const { return new ConstantExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	Constant constant;
@@ -283,23 +283,23 @@
 class SizeofExpr : public Expression {
   public:
-	SizeofExpr( Expression *expr, Expression *_aname = nullptr );
-	SizeofExpr( const SizeofExpr &other );
-	SizeofExpr( Type *type, Expression *_aname = nullptr );
+	SizeofExpr( Expression * expr, Expression *_aname = nullptr );
+	SizeofExpr( const SizeofExpr & other );
+	SizeofExpr( Type * type, Expression *_aname = nullptr );
 	virtual ~SizeofExpr();
 
-	Expression *get_expr() const { return expr; }
-	void set_expr( Expression *newValue ) { expr = newValue; }
-	Type *get_type() const { return type; }
-	void set_type( Type *newValue ) { type = newValue; }
+	Expression * get_expr() const { return expr; }
+	void set_expr( Expression * newValue ) { expr = newValue; }
+	Type * get_type() const { return type; }
+	void set_type( Type * newValue ) { type = newValue; }
 	bool get_isType() const { return isType; }
 	void set_isType( bool newValue ) { isType = newValue; }
 
-	virtual SizeofExpr *clone() const { return new SizeofExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *expr;
-	Type *type;
+	virtual SizeofExpr * clone() const { return new SizeofExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * expr;
+	Type * type;
 	bool isType;
 };
@@ -308,23 +308,23 @@
 class AlignofExpr : public Expression {
   public:
-	AlignofExpr( Expression *expr, Expression *_aname = nullptr );
-	AlignofExpr( const AlignofExpr &other );
-	AlignofExpr( Type *type, Expression *_aname = nullptr );
+	AlignofExpr( Expression * expr, Expression *_aname = nullptr );
+	AlignofExpr( const AlignofExpr & other );
+	AlignofExpr( Type * type, Expression *_aname = nullptr );
 	virtual ~AlignofExpr();
 
-	Expression *get_expr() const { return expr; }
-	void set_expr( Expression *newValue ) { expr = newValue; }
-	Type *get_type() const { return type; }
-	void set_type( Type *newValue ) { type = newValue; }
+	Expression * get_expr() const { return expr; }
+	void set_expr( Expression * newValue ) { expr = newValue; }
+	Type * get_type() const { return type; }
+	void set_type( Type * newValue ) { type = newValue; }
 	bool get_isType() const { return isType; }
 	void set_isType( bool newValue ) { isType = newValue; }
 
-	virtual AlignofExpr *clone() const { return new AlignofExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *expr;
-	Type *type;
+	virtual AlignofExpr * clone() const { return new AlignofExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * expr;
+	Type * type;
 	bool isType;
 };
@@ -333,19 +333,19 @@
 class UntypedOffsetofExpr : public Expression {
   public:
-	UntypedOffsetofExpr( Type *type, const std::string &member, Expression *_aname = nullptr );
-	UntypedOffsetofExpr( const UntypedOffsetofExpr &other );
+	UntypedOffsetofExpr( Type * type, const std::string & member, Expression *_aname = nullptr );
+	UntypedOffsetofExpr( const UntypedOffsetofExpr & other );
 	virtual ~UntypedOffsetofExpr();
 
 	std::string get_member() const { return member; }
-	void set_member( const std::string &newValue ) { member = newValue; }
-	Type *get_type() const { return type; }
-	void set_type( Type *newValue ) { type = newValue; }
-
-	virtual UntypedOffsetofExpr *clone() const { return new UntypedOffsetofExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Type *type;
+	void set_member( const std::string & newValue ) { member = newValue; }
+	Type * get_type() const { return type; }
+	void set_type( Type * newValue ) { type = newValue; }
+
+	virtual UntypedOffsetofExpr * clone() const { return new UntypedOffsetofExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Type * type;
 	std::string member;
 };
@@ -354,20 +354,20 @@
 class OffsetofExpr : public Expression {
   public:
-	OffsetofExpr( Type *type, DeclarationWithType *member, Expression *_aname = nullptr );
-	OffsetofExpr( const OffsetofExpr &other );
+	OffsetofExpr( Type * type, DeclarationWithType * member, Expression *_aname = nullptr );
+	OffsetofExpr( const OffsetofExpr & other );
 	virtual ~OffsetofExpr();
 
-	Type *get_type() const { return type; }
-	void set_type( Type *newValue ) { type = newValue; }
-	DeclarationWithType *get_member() const { return member; }
-	void set_member( DeclarationWithType *newValue ) { member = newValue; }
-
-	virtual OffsetofExpr *clone() const { return new OffsetofExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Type *type;
-	DeclarationWithType *member;
+	Type * get_type() const { return type; }
+	void set_type( Type * newValue ) { type = newValue; }
+	DeclarationWithType * get_member() const { return member; }
+	void set_member( DeclarationWithType * newValue ) { member = newValue; }
+
+	virtual OffsetofExpr * clone() const { return new OffsetofExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Type * type;
+	DeclarationWithType * member;
 };
 
@@ -375,19 +375,19 @@
 class OffsetPackExpr : public Expression {
 public:
-	OffsetPackExpr( StructInstType *type_, Expression *aname_ = 0 );
-	OffsetPackExpr( const OffsetPackExpr &other );
+	OffsetPackExpr( StructInstType * type_, Expression * aname_ = 0 );
+	OffsetPackExpr( const OffsetPackExpr & other );
 	virtual ~OffsetPackExpr();
 
-	StructInstType *get_type() const { return type; }
-	void set_type( StructInstType *newValue ) { type = newValue; }
-
-	virtual OffsetPackExpr *clone() const { return new OffsetPackExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	StructInstType * get_type() const { return type; }
+	void set_type( StructInstType * newValue ) { type = newValue; }
+
+	virtual OffsetPackExpr * clone() const { return new OffsetPackExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+
+	virtual void print( std::ostream & os, int indent = 0 ) const;
 
 private:
-	StructInstType *type;
+	StructInstType * type;
 };
 
@@ -395,26 +395,26 @@
 class AttrExpr : public Expression {
   public:
-	AttrExpr(Expression *attr, Expression *expr, Expression *_aname = nullptr );
-	AttrExpr( const AttrExpr &other );
-	AttrExpr( Expression *attr, Type *type, Expression *_aname = nullptr );
+	AttrExpr(Expression * attr, Expression * expr, Expression *_aname = nullptr );
+	AttrExpr( const AttrExpr & other );
+	AttrExpr( Expression * attr, Type * type, Expression *_aname = nullptr );
 	virtual ~AttrExpr();
 
-	Expression *get_attr() const { return attr; }
-	void set_attr( Expression *newValue ) { attr = newValue; }
-	Expression *get_expr() const { return expr; }
-	void set_expr( Expression *newValue ) { expr = newValue; }
-	Type *get_type() const { return type; }
-	void set_type( Type *newValue ) { type = newValue; }
+	Expression * get_attr() const { return attr; }
+	void set_attr( Expression * newValue ) { attr = newValue; }
+	Expression * get_expr() const { return expr; }
+	void set_expr( Expression * newValue ) { expr = newValue; }
+	Type * get_type() const { return type; }
+	void set_type( Type * newValue ) { type = newValue; }
 	bool get_isType() const { return isType; }
 	void set_isType( bool newValue ) { isType = newValue; }
 
-	virtual AttrExpr *clone() const { return new AttrExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *attr;
-	Expression *expr;
-	Type *type;
+	virtual AttrExpr * clone() const { return new AttrExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * attr;
+	Expression * expr;
+	Type * type;
 	bool isType;
 };
@@ -423,21 +423,21 @@
 class LogicalExpr : public Expression {
   public:
-	LogicalExpr( Expression *arg1, Expression *arg2, bool andp = true, Expression *_aname = nullptr );
-	LogicalExpr( const LogicalExpr &other );
+	LogicalExpr( Expression * arg1, Expression * arg2, bool andp = true, Expression *_aname = nullptr );
+	LogicalExpr( const LogicalExpr & other );
 	virtual ~LogicalExpr();
 
 	bool get_isAnd() const { return isAnd; }
-	Expression *get_arg1() { return arg1; }
-	void set_arg1( Expression *newValue ) { arg1 = newValue; }
-	Expression *get_arg2() const { return arg2; }
-	void set_arg2( Expression *newValue ) { arg2 = newValue; }
-
-	virtual LogicalExpr *clone() const { return new LogicalExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *arg1;
-	Expression *arg2;
+	Expression * get_arg1() { return arg1; }
+	void set_arg1( Expression * newValue ) { arg1 = newValue; }
+	Expression * get_arg2() const { return arg2; }
+	void set_arg2( Expression * newValue ) { arg2 = newValue; }
+
+	virtual LogicalExpr * clone() const { return new LogicalExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * arg1;
+	Expression * arg2;
 	bool isAnd;
 };
@@ -446,23 +446,23 @@
 class ConditionalExpr : public Expression {
   public:
-	ConditionalExpr( Expression *arg1, Expression *arg2, Expression *arg3, Expression *_aname = nullptr );
-	ConditionalExpr( const ConditionalExpr &other );
+	ConditionalExpr( Expression * arg1, Expression * arg2, Expression * arg3, Expression *_aname = nullptr );
+	ConditionalExpr( const ConditionalExpr & other );
 	virtual ~ConditionalExpr();
 
-	Expression *get_arg1() const { return arg1; }
-	void set_arg1( Expression *newValue ) { arg1 = newValue; }
-	Expression *get_arg2() const { return arg2; }
-	void set_arg2( Expression *newValue ) { arg2 = newValue; }
-	Expression *get_arg3() const { return arg3; }
-	void set_arg3( Expression *newValue ) { arg3 = newValue; }
-
-	virtual ConditionalExpr *clone() const { return new ConditionalExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *arg1;
-	Expression *arg2;
-	Expression *arg3;
+	Expression * get_arg1() const { return arg1; }
+	void set_arg1( Expression * newValue ) { arg1 = newValue; }
+	Expression * get_arg2() const { return arg2; }
+	void set_arg2( Expression * newValue ) { arg2 = newValue; }
+	Expression * get_arg3() const { return arg3; }
+	void set_arg3( Expression * newValue ) { arg3 = newValue; }
+
+	virtual ConditionalExpr * clone() const { return new ConditionalExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * arg1;
+	Expression * arg2;
+	Expression * arg3;
 };
 
@@ -470,20 +470,20 @@
 class CommaExpr : public Expression {
   public:
-	CommaExpr( Expression *arg1, Expression *arg2, Expression *_aname = nullptr );
-	CommaExpr( const CommaExpr &other );
+	CommaExpr( Expression * arg1, Expression * arg2, Expression *_aname = nullptr );
+	CommaExpr( const CommaExpr & other );
 	virtual ~CommaExpr();
 
-	Expression *get_arg1() const { return arg1; }
-	void set_arg1( Expression *newValue ) { arg1 = newValue; }
-	Expression *get_arg2() const { return arg2; }
-	void set_arg2( Expression *newValue ) { arg2 = newValue; }
-
-	virtual CommaExpr *clone() const { return new CommaExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *arg1;
-	Expression *arg2;
+	Expression * get_arg1() const { return arg1; }
+	void set_arg1( Expression * newValue ) { arg1 = newValue; }
+	Expression * get_arg2() const { return arg2; }
+	void set_arg2( Expression * newValue ) { arg2 = newValue; }
+
+	virtual CommaExpr * clone() const { return new CommaExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * arg1;
+	Expression * arg2;
 };
 
@@ -491,17 +491,17 @@
 class TypeExpr : public Expression {
   public:
-	TypeExpr( Type *type );
-	TypeExpr( const TypeExpr &other );
+	TypeExpr( Type * type );
+	TypeExpr( const TypeExpr & other );
 	virtual ~TypeExpr();
 
-	Type *get_type() const { return type; }
-	void set_type( Type *newValue ) { type = newValue; }
-
-	virtual TypeExpr *clone() const { return new TypeExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Type *type;
+	Type * get_type() const { return type; }
+	void set_type( Type * newValue ) { type = newValue; }
+
+	virtual TypeExpr * clone() const { return new TypeExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Type * type;
 };
 
@@ -509,26 +509,26 @@
 class AsmExpr : public Expression {
   public:
-	AsmExpr( Expression *inout, ConstantExpr *constraint, Expression *operand ) : inout( inout ), constraint( constraint ), operand( operand ) {}
+	AsmExpr( Expression * inout, ConstantExpr * constraint, Expression * operand ) : inout( inout ), constraint( constraint ), operand( operand ) {}
 	AsmExpr( const AsmExpr & other );
 	virtual ~AsmExpr() { delete inout; delete constraint; delete operand; };
 
-	Expression *get_inout() const { return inout; }
-	void set_inout( Expression *newValue ) { inout = newValue; }
-
-	ConstantExpr *get_constraint() const { return constraint; }
-	void set_constraint( ConstantExpr *newValue ) { constraint = newValue; }
-
-	Expression *get_operand() const { return operand; }
-	void set_operand( Expression *newValue ) { operand = newValue; }
-
-	virtual AsmExpr *clone() const { return new AsmExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	Expression * get_inout() const { return inout; }
+	void set_inout( Expression * newValue ) { inout = newValue; }
+
+	ConstantExpr * get_constraint() const { return constraint; }
+	void set_constraint( ConstantExpr * newValue ) { constraint = newValue; }
+
+	Expression * get_operand() const { return operand; }
+	void set_operand( Expression * newValue ) { operand = newValue; }
+
+	virtual AsmExpr * clone() const { return new AsmExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	// https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/Machine-Constraints.html#Machine-Constraints
-	Expression *inout;
-	ConstantExpr *constraint;
-	Expression *operand;
+	Expression * inout;
+	ConstantExpr * constraint;
+	Expression * operand;
 };
 
@@ -541,6 +541,6 @@
 	virtual ~ImplicitCopyCtorExpr();
 
-	ApplicationExpr *get_callExpr() const { return callExpr; }
-	void set_callExpr( ApplicationExpr *newValue ) { callExpr = newValue; }
+	ApplicationExpr * get_callExpr() const { return callExpr; }
+	void set_callExpr( ApplicationExpr * newValue ) { callExpr = newValue; }
 
 	std::list< ObjectDecl * > & get_tempDecls() { return tempDecls; }
@@ -548,8 +548,8 @@
 	std::list< Expression * > & get_dtors() { return dtors; }
 
-	virtual ImplicitCopyCtorExpr *clone() const { return new ImplicitCopyCtorExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual ImplicitCopyCtorExpr * clone() const { return new ImplicitCopyCtorExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	ApplicationExpr * callExpr;
@@ -566,11 +566,11 @@
 	~ConstructorExpr();
 
-	Expression *get_callExpr() const { return callExpr; }
-	void set_callExpr( Expression *newValue ) { callExpr = newValue; }
-
-	virtual ConstructorExpr *clone() const { return new ConstructorExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	Expression * get_callExpr() const { return callExpr; }
+	void set_callExpr( Expression * newValue ) { callExpr = newValue; }
+
+	virtual ConstructorExpr * clone() const { return new ConstructorExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
 private:
 	Expression * callExpr;
@@ -581,5 +581,5 @@
   public:
 	CompoundLiteralExpr( Type * type, Initializer * initializer );
-	CompoundLiteralExpr( const CompoundLiteralExpr &other );
+	CompoundLiteralExpr( const CompoundLiteralExpr & other );
 	virtual ~CompoundLiteralExpr();
 
@@ -590,8 +590,8 @@
 	void set_initializer( Initializer * i ) { initializer = i; }
 
-	virtual CompoundLiteralExpr *clone() const { return new CompoundLiteralExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual CompoundLiteralExpr * clone() const { return new CompoundLiteralExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	Type * type;
@@ -606,13 +606,13 @@
 	virtual ~UntypedValofExpr();
 
-	Expression *get_value();
-	Statement *get_body() const { return body; }
-
-	virtual UntypedValofExpr *clone() const { return new UntypedValofExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Statement *body;
+	Expression * get_value();
+	Statement * get_body() const { return body; }
+
+	virtual UntypedValofExpr * clone() const { return new UntypedValofExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Statement * body;
 };
 
@@ -620,18 +620,18 @@
 class RangeExpr : public Expression {
   public:
-	RangeExpr( Expression *low, Expression *high );
-	RangeExpr( const RangeExpr &other );
+	RangeExpr( Expression * low, Expression * high );
+	RangeExpr( const RangeExpr & other );
 
 	Expression * get_low() const { return low; }
 	Expression * get_high() const { return high; }
-	RangeExpr * set_low( Expression *low ) { RangeExpr::low = low; return this; }
-	RangeExpr * set_high( Expression *high ) { RangeExpr::high = high; return this; }
-
-	virtual RangeExpr *clone() const { return new RangeExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
-  private:
-	Expression *low, *high;
+	RangeExpr * set_low( Expression * low ) { RangeExpr::low = low; return this; }
+	RangeExpr * set_high( Expression * high ) { RangeExpr::high = high; return this; }
+
+	virtual RangeExpr * clone() const { return new RangeExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
+  private:
+	Expression * low, * high;
 };
 
@@ -640,13 +640,13 @@
   public:
 	UntypedTupleExpr( const std::list< Expression * > & exprs, Expression *_aname = nullptr );
-	UntypedTupleExpr( const UntypedTupleExpr &other );
+	UntypedTupleExpr( const UntypedTupleExpr & other );
 	virtual ~UntypedTupleExpr();
 
 	std::list<Expression*>& get_exprs() { return exprs; }
 
-	virtual UntypedTupleExpr *clone() const { return new UntypedTupleExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual UntypedTupleExpr * clone() const { return new UntypedTupleExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	std::list<Expression*> exprs;
@@ -657,13 +657,13 @@
   public:
 	TupleExpr( const std::list< Expression * > & exprs, Expression *_aname = nullptr );
-	TupleExpr( const TupleExpr &other );
+	TupleExpr( const TupleExpr & other );
 	virtual ~TupleExpr();
 
 	std::list<Expression*>& get_exprs() { return exprs; }
 
-	virtual TupleExpr *clone() const { return new TupleExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual TupleExpr * clone() const { return new TupleExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	std::list<Expression*> exprs;
@@ -674,16 +674,16 @@
   public:
 	TupleIndexExpr( Expression * tuple, unsigned int index );
-	TupleIndexExpr( const TupleIndexExpr &other );
+	TupleIndexExpr( const TupleIndexExpr & other );
 	virtual ~TupleIndexExpr();
 
 	Expression * get_tuple() const { return tuple; }
 	int get_index() const { return index; }
-	TupleIndexExpr * set_tuple( Expression *newValue ) { tuple = newValue; return this; }
+	TupleIndexExpr * set_tuple( Expression * newValue ) { tuple = newValue; return this; }
 	TupleIndexExpr * set_index( unsigned int newValue ) { index = newValue; return this; }
 
-	virtual TupleIndexExpr *clone() const { return new TupleIndexExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual TupleIndexExpr * clone() const { return new TupleIndexExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	Expression * tuple;
@@ -695,16 +695,16 @@
   public:
 	MemberTupleExpr( Expression * member, Expression * aggregate, Expression * _aname = nullptr );
-	MemberTupleExpr( const MemberTupleExpr &other );
+	MemberTupleExpr( const MemberTupleExpr & other );
 	virtual ~MemberTupleExpr();
 
 	Expression * get_member() const { return member; }
 	Expression * get_aggregate() const { return aggregate; }
-	MemberTupleExpr * set_member( Expression *newValue ) { member = newValue; return this; }
-	MemberTupleExpr * set_aggregate( Expression *newValue ) { aggregate = newValue; return this; }
-
-	virtual MemberTupleExpr *clone() const { return new MemberTupleExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	MemberTupleExpr * set_member( Expression * newValue ) { member = newValue; return this; }
+	MemberTupleExpr * set_aggregate( Expression * newValue ) { aggregate = newValue; return this; }
+
+	virtual MemberTupleExpr * clone() const { return new MemberTupleExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	Expression * member;
@@ -716,5 +716,5 @@
   public:
 	TupleAssignExpr( const std::list< Expression * > & assigns, const std::list< ObjectDecl * > & tempDecls, Expression * _aname = nullptr );
-	TupleAssignExpr( const TupleAssignExpr &other );
+	TupleAssignExpr( const TupleAssignExpr & other );
 	virtual ~TupleAssignExpr();
 
@@ -722,8 +722,8 @@
 	StmtExpr * get_stmtExpr() const { return stmtExpr; }
 
-	virtual TupleAssignExpr *clone() const { return new TupleAssignExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual TupleAssignExpr * clone() const { return new TupleAssignExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
   private:
 	StmtExpr * stmtExpr = nullptr;
@@ -733,5 +733,5 @@
 class StmtExpr : public Expression {
 public:
-	StmtExpr( CompoundStmt *statements );
+	StmtExpr( CompoundStmt * statements );
 	StmtExpr( const StmtExpr & other );
 	virtual ~StmtExpr();
@@ -743,8 +743,8 @@
 	std::list< Expression * > & get_dtors() { return dtors; }
 
-	virtual StmtExpr *clone() const { return new StmtExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual StmtExpr * clone() const { return new StmtExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
 private:
 	CompoundStmt * statements;
@@ -770,8 +770,8 @@
 	int get_id() const { return id; }
 
-	virtual UniqueExpr *clone() const { return new UniqueExpr( *this ); }
-	virtual void accept( Visitor &v ) { v.visit( this ); }
-	virtual Expression *acceptMutator( Mutator &m ) { return m.mutate( this ); }
-	virtual void print( std::ostream &os, int indent = 0 ) const;
+	virtual UniqueExpr * clone() const { return new UniqueExpr( * this ); }
+	virtual void accept( Visitor & v ) { v.visit( this ); }
+	virtual Expression * acceptMutator( Mutator & m ) { return m.mutate( this ); }
+	virtual void print( std::ostream & os, int indent = 0 ) const;
 private:
 	Expression * expr;
Index: src/driver/cc1.cc
===================================================================
--- src/driver/cc1.cc	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/driver/cc1.cc	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -10,6 +10,6 @@
 // Created On       : Fri Aug 26 14:23:51 2005
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Jun 10 09:27:37 2016
-// Update Count     : 80
+// Last Modified On : Wed Jan 18 08:14:21 2017
+// Update Count     : 81
 //
 
@@ -169,5 +169,5 @@
 				i += 1;									// and the argument
 
-				// all other flags
+			// all other flags
 
 			} else if ( arg == "-o" ) {
@@ -178,5 +178,5 @@
 				nargs += 1;
 				// CPP flags with an argument
-				if ( arg == "-D" || arg == "-I" || arg == "-MF" || arg == "-MT" || arg == "-MQ" ||
+				if ( arg == "-D" || arg == "-U" || arg == "-I" || arg == "-MF" || arg == "-MT" || arg == "-MQ" ||
 					 arg == "-include" || arg == "-imacros" || arg == "-idirafter" || arg == "-iprefix" ||
 					 arg == "-iwithprefix" || arg == "-iwithprefixbefore" || arg == "-isystem" || arg == "-isysroot" ) {
Index: src/examples/thread.c
===================================================================
--- src/examples/thread.c	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
+++ src/examples/thread.c	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,68 @@
+// #include <kernel>
+#include <stdlib>
+#include <threads>
+
+// // Start coroutine routines
+// extern "C" {
+//       forall(dtype T | is_coroutine(T))
+//       void CtxInvokeCoroutine(T * this);
+
+//       forall(dtype T | is_coroutine(T))
+//       void CtxStart(T * this, void ( *invoke)(T *));
+
+// 	forall(dtype T | is_coroutine(T))
+//       void CtxInvokeThread(T * this);
+// }
+
+// struct MyThread {
+// 	thread_h t;
+// 	unsigned id;
+// 	unsigned count;
+// };
+
+// void ?{}( MyThread * this ) {
+// 	this->id = 0;
+// 	this->count = 10;
+// }
+
+// void ?{}( MyThread * this, unsigned id, unsigned count ) {
+// 	this->id = id;
+// 	this->count = count;
+// }
+
+// void ^?{}( MyThread * this ) {}
+
+// void main(MyThread* this) {
+// 	printf("Main called with %p\n", this);
+// 	printf("Thread %d : Suspending %d times\n", this->id, this->count);
+
+// 	for(int i = 0; i < this->count; i++) {
+// 		printf("Thread %d : Suspend No. %d\n", this->id, i + 1);
+// 		printf("Back to %p\n", &this->t.c);
+// 		suspend();
+// 	}
+// }
+
+// thread_h* get_thread(MyThread* this) {
+// 	return &this->t;
+// }
+
+// coroutine* get_coroutine(MyThread* this) {
+// 	return &this->t.c;
+// }
+
+int main() {
+	printf("Main is %p\n", this_coroutine());
+
+	// thread(MyThread) thread1;
+	// thread(MyThread) thread2;
+
+	// thread2.handle.id = 1;
+
+
+	// // kernel_run();
+
+	// printf("Kernel terminated correctly\n");
+
+	return 0;
+}
Index: src/libcfa/concurrency/CtxSwitch-i386.S
===================================================================
--- src/libcfa/concurrency/CtxSwitch-i386.S	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/CtxSwitch-i386.S	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -86,4 +86,13 @@
 	ret
 
+.text
+	.align 2
+.globl	CtxGet
+CtxGet:
+	movl %esp,SP_OFFSET(%eax)
+	movl %ebp,FP_OFFSET(%eax)
+
+	ret
+
 // Local Variables: //
 // compile-command: "make install" //
Index: src/libcfa/concurrency/CtxSwitch-x86_64.S
===================================================================
--- src/libcfa/concurrency/CtxSwitch-x86_64.S	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/CtxSwitch-x86_64.S	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -84,4 +84,13 @@
 	jmp *%r12
 
+.text
+	.align 2
+.globl	CtxGet
+CtxGet:
+	movq %rsp,SP_OFFSET(%rdi)
+	movq %rbp,FP_OFFSET(%rdi)
+
+	ret
+
 // Local Variables: //
 // mode: c //
Index: src/libcfa/concurrency/coroutines
===================================================================
--- src/libcfa/concurrency/coroutines	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/coroutines	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,120 @@
+//                              - *- Mode: CFA - *-
+//
+// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// coroutines --
+//
+// Author           : Thierry Delisle
+// Created On       : Mon Nov 28 12:27:26 2016
+// Last Modified By : Thierry Delisle
+// Last Modified On : Mon Nov 28 12:27:26 2016
+// Update Count     : 0
+//
+
+#ifndef COROUTINES_H
+#define COROUTINES_H
+
+#include "assert"
+#include "invoke.h"
+
+//-----------------------------------------------------------------------------
+// Coroutine trait
+// Anything that implements this trait can be resumed.
+// Anything that is resumed is a coroutine.
+trait is_coroutine(dtype T) {
+      void main(T * this);
+      coroutine * get_coroutine(T * this);
+};
+
+#define DECL_COROUTINE(X) static inline coroutine* get_coroutine(X* this) { return &this->c; } void main(X* this);
+
+//-----------------------------------------------------------------------------
+// Ctors and dtors
+void ?{}(coStack_t * this);
+void ?{}(coroutine * this);
+void ^?{}(coStack_t * this);
+void ^?{}(coroutine * this);
+
+//-----------------------------------------------------------------------------
+// Public coroutine API
+static inline void suspend();
+
+forall(dtype T | is_coroutine(T))
+static inline void resume(T * cor);
+
+forall(dtype T | is_coroutine(T))
+void prime(T * cor);
+
+//-----------------------------------------------------------------------------
+// PRIVATE exposed because of inline
+
+// Start coroutine routines
+extern "C" {
+      forall(dtype T | is_coroutine(T))
+      void CtxInvokeCoroutine(T * this);
+
+      forall(dtype T | is_coroutine(T))
+      void CtxStart(T * this, void ( *invoke)(T *));
+}
+
+// Get current coroutine
+extern coroutine * current_coroutine; //PRIVATE, never use directly
+static inline coroutine * this_coroutine(void) {
+	return current_coroutine;
+}
+
+// Private wrappers for context switch and stack creation
+extern void corCxtSw(coroutine * src, coroutine * dst);
+extern void create_stack( coStack_t * this, unsigned int storageSize );
+
+// Suspend implementation inlined for performance
+static inline void suspend() {
+      coroutine * src = this_coroutine();		// optimization
+
+	assertf( src->last != 0,
+		"Attempt to suspend coroutine %.256s (%p) that has never been resumed.\n"
+		"Possible cause is a suspend executed in a member called by a coroutine user rather than by the coroutine main.",
+		src->name, src );
+	assertf( src->last->notHalted,
+		"Attempt by coroutine %.256s (%p) to suspend back to terminated coroutine %.256s (%p).\n"
+		"Possible cause is terminated coroutine's main routine has already returned.",
+		src->name, src, src->last->name, src->last );
+
+	corCxtSw( src, src->last );
+}
+
+// Resume implementation inlined for performance
+forall(dtype T | is_coroutine(T))
+static inline void resume(T * cor) {
+	coroutine * src = this_coroutine();		// optimization
+	coroutine * dst = get_coroutine(cor);
+
+      if( unlikely(!dst->stack.base) ) {
+		create_stack(&dst->stack, dst->stack.size);
+		CtxStart(cor, CtxInvokeCoroutine);
+	}
+
+      // not resuming self ?
+	if ( src != dst ) {
+		assertf( dst->notHalted ,
+			"Attempt by coroutine %.256s (%p) to resume terminated coroutine %.256s (%p).\n"
+			"Possible cause is terminated coroutine's main routine has already returned.",
+			src->name, src, dst->name, dst );
+
+            // set last resumer
+		dst->last = src;
+	} // if
+
+      // always done for performance testing
+	corCxtSw( src, dst );
+}
+
+#endif //COROUTINES_H
+
+// Local Variables: //
+// mode: c //
+// tab-width: 4 //
+// End: //
Index: src/libcfa/concurrency/coroutines.c
===================================================================
--- src/libcfa/concurrency/coroutines.c	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/coroutines.c	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,173 @@
+//
+// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// coroutines.c --
+//
+// Author           : Thierry Delisle
+// Created On       : Mon Nov 28 12:27:26 2016
+// Last Modified By : Thierry Delisle
+// Last Modified On : Mon Nov 28 12:27:26 2016
+// Update Count     : 0
+//
+
+extern "C" {
+#include <stddef.h>
+#include <malloc.h>
+#include <errno.h>
+#include <string.h>
+#include <unistd.h>
+#include <sys/mman.h>
+}
+
+#include "coroutines"
+#include "libhdr.h"
+
+#define __CFA_INVOKE_PRIVATE__
+#include "invoke.h"
+
+//-----------------------------------------------------------------------------
+// Global state variables
+
+// minimum feasible stack size in bytes
+#define MinStackSize 1000
+static size_t pageSize = 0;				// architecture pagesize HACK, should go in proper runtime singleton
+
+//Current coroutine
+//Will need to be in TLS when multi-threading is added
+coroutine* current_coroutine;
+
+//-----------------------------------------------------------------------------
+// Coroutine ctors and dtors
+void ?{}(coStack_t* this) {
+	this->size		= 10240;	// size of stack
+	this->storage	= NULL;	// pointer to stack
+	this->limit		= NULL;	// stack grows towards stack limit
+	this->base		= NULL;	// base of stack
+	this->context	= NULL;	// address of cfa_context_t
+	this->top		= NULL;	// address of top of storage
+	this->userStack	= false;	
+}
+
+void ?{}(coStack_t* this, size_t size) {
+	this{};
+	this->size = size;
+
+	create_stack(this, this->size);
+}
+
+void ?{}(coroutine* this) {
+	this->name = "Anonymous Coroutine";
+	this->errno_ = 0;
+	this->state = Start;
+      this->notHalted = true;
+	this->starter = NULL;
+	this->last = NULL;
+}
+
+void ?{}(coroutine* this, size_t size) {
+	this{};
+	(&this->stack){size};
+}
+
+void ^?{}(coStack_t* this) {
+	if ( ! this->userStack ) {
+		LIB_DEBUG_DO(
+			if ( mprotect( this->storage, pageSize, PROT_READ | PROT_WRITE ) == -1 ) {
+				abortf( "(coStack_t *)%p.^?{}() : internal error, mprotect failure, error(%d) %s.", this, errno, strerror( errno ) );
+			}
+		);
+		free( this->storage );
+	}
+}
+
+void ^?{}(coroutine* this) {}
+
+// Part of the Public API
+// Not inline since only ever called once per coroutine
+forall(dtype T | is_coroutine(T))
+void prime(T* cor) {
+	coroutine* this = get_coroutine(cor);
+	assert(this->state == Start);
+
+	this->state = Primed;
+	resume(cor);
+}
+
+// We need to call suspend from invoke.c, so we expose this wrapper that
+// is not inline (We can't inline Cforall in C)
+void suspend_no_inline(void) {
+	LIB_DEBUG_PRINTF("Suspending back : to %p from %p\n", this_coroutine(), this_coroutine() ? this_coroutine()->last : (void*)-1);
+
+	suspend();
+}
+
+void corCxtSw(coroutine* src, coroutine* dst) {
+	// THREAD_GETMEM( This )->disableInterrupts();
+
+	// set state of current coroutine to inactive
+	src->state = Inactive;
+
+	// set new coroutine that task is executing
+	current_coroutine = dst;			
+
+	// context switch to specified coroutine
+	CtxSwitch( src->stack.context, dst->stack.context );
+	// when CtxSwitch returns we are back in the src coroutine		
+
+	// set state of new coroutine to active
+	src->state = Active;
+
+	// THREAD_GETMEM( This )->enableInterrupts();
+} //ctxSwitchDirect
+
+void create_stack( coStack_t* this, unsigned int storageSize ) {
+	//TEMP HACK do this on proper kernel startup
+	if(pageSize == 0ul) pageSize = sysconf( _SC_PAGESIZE );
+
+	size_t cxtSize = libCeiling( sizeof(machine_context_t), 8 ); // minimum alignment
+
+	if ( (intptr_t)this->storage == 0 ) {
+		this->userStack = false;
+		this->size = libCeiling( storageSize, 16 );
+		// use malloc/memalign because "new" raises an exception for out-of-memory
+		
+		// assume malloc has 8 byte alignment so add 8 to allow rounding up to 16 byte alignment
+		LIB_DEBUG_DO( this->storage = memalign( pageSize, cxtSize + this->size + pageSize ) );
+		LIB_NO_DEBUG_DO( this->storage = malloc( cxtSize + this->size + 8 ) );
+
+		LIB_DEBUG_DO(
+			if ( mprotect( this->storage, pageSize, PROT_NONE ) == -1 ) {
+				abortf( "(uMachContext &)%p.createContext() : internal error, mprotect failure, error(%d) %s.", this, (int)errno, strerror( (int)errno ) );
+			} // if
+		);
+
+		if ( (intptr_t)this->storage == 0 ) {
+			abortf( "Attempt to allocate %d bytes of storage for coroutine or task execution-state but insufficient memory available.", this->size );
+		} // if
+
+		LIB_DEBUG_DO( this->limit = (char *)this->storage + pageSize );
+		LIB_NO_DEBUG_DO( this->limit = (char *)libCeiling( (unsigned long)this->storage, 16 ) ); // minimum alignment
+
+	} else {
+		assertf( ((size_t)this->storage & (libAlign() - 1)) != 0ul, "Stack storage %p for task/coroutine must be aligned on %d byte boundary.", this->storage, (int)libAlign() );
+		this->userStack = true;
+		this->size = storageSize - cxtSize;
+
+		if ( this->size % 16 != 0u ) this->size -= 8;
+
+		this->limit = (char *)libCeiling( (unsigned long)this->storage, 16 ); // minimum alignment
+	} // if
+	assertf( this->size >= MinStackSize, "Stack size %d provides less than minimum of %d bytes for a stack.", this->size, MinStackSize );
+
+	this->base = (char *)this->limit + this->size;
+	this->context = this->base;
+	this->top = (char *)this->context + cxtSize;
+}
+
+// Local Variables: //
+// mode: c //
+// tab-width: 4 //
+// End: //
Index: src/libcfa/concurrency/invoke.c
===================================================================
--- src/libcfa/concurrency/invoke.c	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/invoke.c	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -14,4 +14,5 @@
 
 extern void __suspend_no_inline__F___1(void);
+extern void __scheduler_remove__F_P9sthread_h__1(struct thread_h*);
 
 void CtxInvokeCoroutine(
@@ -20,5 +21,5 @@
       void *this
 ) {
-      LIB_DEBUG_PRINTF("Invoke : Received %p (main %p, get_c %p)\n", this, main, get_coroutine);
+      // LIB_DEBUG_PRINTF("Invoke Coroutine : Received %p (main %p, get_c %p)\n", this, main, get_coroutine);
 
       struct coroutine* cor = get_coroutine( this );
@@ -31,4 +32,31 @@
 
       main( this );
+
+      //Final suspend, should never return
+      __suspend_no_inline__F___1();
+      assertf(false, "Resumed dead coroutine");
+}
+
+void CtxInvokeThread(
+      void (*main)(void *), 
+      struct thread_h *(*get_thread)(void *), 
+      void *this
+) {
+      // LIB_DEBUG_PRINTF("Invoke Thread : Received %p (main %p, get_t %p)\n", this, main, get_thread);
+
+      __suspend_no_inline__F___1();
+
+      struct thread_h* thrd = get_thread( this );
+      struct coroutine* cor = &thrd->c;
+      cor->state = Active;
+
+      // LIB_DEBUG_PRINTF("Invoke Thread : invoking main %p (args %p)\n", main, this);
+      main( this );
+
+      __scheduler_remove__F_P9sthread_h__1(thrd);
+
+      //Final suspend, should never return
+      __suspend_no_inline__F___1();
+      assertf(false, "Resumed dead thread");
 }
 
@@ -40,5 +68,5 @@
       void (*invoke)(void *)
 ) {
-      LIB_DEBUG_PRINTF("StartCoroutine : Passing in %p (main %p, get_c %p) to %p\n", this, main, get_coroutine, invoke);
+      // LIB_DEBUG_PRINTF("StartCoroutine : Passing in %p (main %p) to invoke (%p) from start (%p)\n", this, main, invoke, CtxStart);
 
       struct coStack_t* stack = &get_coroutine( this )->stack;
Index: src/libcfa/concurrency/invoke.h
===================================================================
--- src/libcfa/concurrency/invoke.h	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/invoke.h	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -35,4 +35,8 @@
       };
 
+      struct thread_h {
+            struct coroutine c;
+      };
+
 #endif //_INVOKE_H_
 #else //! defined(__CFA_INVOKE_PRIVATE__)
@@ -48,5 +52,6 @@
       // assembler routines that performs the context switch
       extern void CtxInvokeStub( void );
-      void CtxSwitch( void *from, void *to ) asm ("CtxSwitch");
+      void CtxSwitch( void * from, void * to ) asm ("CtxSwitch");
+      void CtxGet( void * this ) asm ("CtxGet");
 
 #endif //_INVOKE_PRIVATE_H_
Index: src/libcfa/concurrency/kernel
===================================================================
--- src/libcfa/concurrency/kernel	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/kernel	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,42 @@
+//                              -*- Mode: CFA -*-
+//
+// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// threads --
+//
+// Author           : Thierry Delisle
+// Created On       : Tue Jan 17 12:27:26 2016
+// Last Modified By : Thierry Delisle
+// Last Modified On : --
+// Update Count     : 0
+//
+
+#ifndef KERNEL_H
+#define KERNEL_H
+
+#include <stdbool.h>
+
+struct processor {
+	struct processorCtx_t * ctx;
+	unsigned int thread_index;
+	unsigned int thread_count;
+	struct thread_h * threads[10];
+	bool terminated;
+};
+
+void ?{}(processor * this);
+void ^?{}(processor * this);
+
+void scheduler_add( struct thread_h * thrd );
+void scheduler_remove( struct thread_h * thrd );
+void kernel_run( void );
+
+#endif //KERNEL_H
+
+// Local Variables: //
+// mode: c //
+// tab-width: 4 //
+// End: //
Index: src/libcfa/concurrency/kernel.c
===================================================================
--- src/libcfa/concurrency/kernel.c	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/kernel.c	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -0,0 +1,283 @@
+//                              -*- Mode: CFA -*-
+//
+// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// kernel.c --
+//
+// Author           : Thierry Delisle
+// Created On       : Tue Jan 17 12:27:26 2016
+// Last Modified By : Thierry Delisle
+// Last Modified On : --
+// Update Count     : 0
+//
+
+//Header
+#include "kernel"
+
+//C Includes
+#include <stddef.h>
+extern "C" {
+#include <sys/resource.h>
+}
+
+//CFA Includes
+#include "libhdr.h"
+#include "threads"
+
+//Private includes
+#define __CFA_INVOKE_PRIVATE__
+#include "invoke.h"
+
+processor * systemProcessor;
+thread_h * mainThread;
+
+void kernel_startup(void)  __attribute__((constructor(101)));
+void kernel_shutdown(void) __attribute__((destructor(101)));
+
+void ?{}(processor * this) {
+	this->ctx = NULL;
+	this->thread_index = 0;
+	this->thread_count = 10;
+	this->terminated = false;
+
+	for(int i = 0; i < 10; i++) {
+		this->threads[i] = NULL;
+	}
+
+	LIB_DEBUG_PRINTF("Processor : ctor for core %p (core spots %d)\n", this, this->thread_count);
+}
+
+void ^?{}(processor * this) {
+
+}
+
+//-----------------------------------------------------------------------------
+// Processor coroutine
+struct processorCtx_t {
+	processor * proc;
+	coroutine c;
+};
+
+DECL_COROUTINE(processorCtx_t)
+
+void ?{}(processorCtx_t * this, processor * proc) {
+	(&this->c){};
+	this->proc = proc;
+}
+
+void CtxInvokeProcessor(processor * proc) {
+	processorCtx_t proc_cor_storage = {proc};
+	resume( &proc_cor_storage );
+}
+
+//-----------------------------------------------------------------------------
+// Processor running routines
+void main(processorCtx_t * ctx);
+thread_h * nextThread(processor * this);
+void runThread(processor * this, thread_h * dst);
+void spin(processor * this, unsigned int * spin_count);
+
+void main(processorCtx_t * ctx) {
+	processor * this = ctx->proc;
+	LIB_DEBUG_PRINTF("Kernel : core %p starting\n", this);
+
+	thread_h * readyThread = NULL;
+	for( unsigned int spin_count = 0; ! this->terminated; spin_count++ ) {
+		
+		readyThread = nextThread(this);
+
+		if(readyThread) {
+			runThread(this, readyThread);
+			spin_count = 0;
+		} else {
+			spin(this, &spin_count);
+		}		
+	}
+
+	LIB_DEBUG_PRINTF("Kernel : core %p terminated\n", this);
+}
+
+thread_h * nextThread(processor * this) {
+	for(int i = 0; i < this->thread_count; i++) {
+		this->thread_index = (this->thread_index + 1) % this->thread_count;	
+		
+		thread_h * thrd = this->threads[this->thread_index];
+		if(thrd) return thrd;
+	}
+
+	return NULL;
+}
+
+void runThread(processor * this, thread_h * dst) {
+	coroutine * proc_ctx = get_coroutine(this->ctx);
+	coroutine * thrd_ctx = get_coroutine(dst);
+	thrd_ctx->last = proc_ctx;
+
+	// context switch to specified coroutine
+	// Which is now the current_coroutine
+	LIB_DEBUG_PRINTF("Kernel : switching to ctx %p (from %p, current %p)\n", thrd_ctx, proc_ctx, current_coroutine);
+	current_coroutine = thrd_ctx;
+	CtxSwitch( proc_ctx->stack.context, thrd_ctx->stack.context );
+	current_coroutine = proc_ctx;
+	LIB_DEBUG_PRINTF("Kernel : returned from ctx %p (to %p, current %p)\n", thrd_ctx, proc_ctx, current_coroutine);
+
+	// when CtxSwitch returns we are back in the processor coroutine
+}
+
+void spin(processor * this, unsigned int * spin_count) {
+	(*spin_count)++;
+}
+
+//-----------------------------------------------------------------------------
+// Kernel runner (Temporary)
+
+void scheduler_add( thread_h * thrd ) {
+	LIB_DEBUG_PRINTF("Kernel : scheduling %p on core %p (%d spots)\n", thrd, systemProcessor, systemProcessor->thread_count);
+	for(int i = 0; i < systemProcessor->thread_count; i++) {
+		if(systemProcessor->threads[i] == NULL) {
+			systemProcessor->threads[i] = thrd;
+			return;
+		}
+	}
+	assert(false);
+}
+
+void scheduler_remove( thread_h * thrd ) {
+	LIB_DEBUG_PRINTF("Kernel : unscheduling %p from core %p\n", thrd, systemProcessor);
+	for(int i = 0; i < systemProcessor->thread_count; i++) {
+		if(systemProcessor->threads[i] == thrd) {
+			systemProcessor->threads[i] = NULL;
+			break;
+		}
+	}
+	for(int i = 0; i < systemProcessor->thread_count; i++) {
+		if(systemProcessor->threads[i] != NULL) {
+			return;
+		}
+	}
+	LIB_DEBUG_PRINTF("Kernel : terminating core %p\n", systemProcessor);	
+	systemProcessor->terminated = true;
+}
+
+//-----------------------------------------------------------------------------
+// Kernel storage
+#define KERNEL_STORAGE(T,X) static char X##_storage[sizeof(T)]
+
+KERNEL_STORAGE(processorCtx_t, systemProcessorCtx);
+KERNEL_STORAGE(processor, systemProcessor);
+KERNEL_STORAGE(thread_h, mainThread);
+KERNEL_STORAGE(machine_context_t, mainThread_context);
+
+//-----------------------------------------------------------------------------
+// Main thread construction
+struct mainThread_info_t {
+	machine_context_t ctx;	
+	unsigned int size;		// size of stack
+	void *base;				// base of stack
+	void *storage;			// pointer to stack
+	void *limit;			// stack grows towards stack limit
+	void *context;			// address of cfa_context_t
+	void *top;				// address of top of storage
+};
+
+void ?{}( mainThread_info_t * this ) {
+	CtxGet( &this->ctx );
+	this->base = this->ctx.FP;
+	this->storage = this->ctx.SP;
+
+	rlimit r;
+	int ret = getrlimit( RLIMIT_STACK, &r);
+	this->size = r.rlim_cur;
+
+	this->limit = (void *)(((intptr_t)this->base) - this->size);
+	this->context = &mainThread_context_storage;
+	this->top = this->base;
+}
+
+void ?{}( coStack_t * this, mainThread_info_t * info) {
+	this->size = info->size;
+	this->storage = info->storage;
+	this->limit = info->limit;
+	this->base = info->base;
+	this->context = info->context;
+	this->top = info->top;
+	this->userStack = true;
+}
+
+void ?{}( coroutine * this, mainThread_info_t * info) {
+	(&this->stack){ info };	
+	this->name = "Main Thread";
+	this->errno_ = 0;
+	this->state = Inactive;
+	this->notHalted = true;
+}
+
+void ?{}( thread_h * this, mainThread_info_t * info) {
+	(&this->c){ info };
+}
+
+//-----------------------------------------------------------------------------
+// Kernel boot procedures
+void kernel_startup(void) {
+
+	// SKULLDUGGERY: the mainThread steals the process main thread 
+	// which will then be scheduled by the systemProcessor normally
+	LIB_DEBUG_PRINTF("Kernel : Starting\n");	
+
+	mainThread_info_t ctx;
+	LIB_DEBUG_PRINTF("Kernel :    base : %p\n", ctx.base );
+	LIB_DEBUG_PRINTF("Kernel :     top : %p\n", ctx.top );
+	LIB_DEBUG_PRINTF("Kernel :   limit : %p\n", ctx.limit );
+	LIB_DEBUG_PRINTF("Kernel :    size : %x\n", ctx.size );
+	LIB_DEBUG_PRINTF("Kernel : storage : %p\n", ctx.storage );
+	LIB_DEBUG_PRINTF("Kernel : context : %p\n", ctx.context );
+
+	// Start by initializing the main thread
+	mainThread = (thread_h *)&mainThread_storage;
+	LIB_DEBUG_PRINTF("Kernel : Main thread : %p\n", mainThread );
+	mainThread{ &ctx };
+
+	// // Initialize the system processor
+	systemProcessor = (processor *)&systemProcessor_storage;
+	systemProcessor{};
+
+	// Initialize the system processor ctx
+	// (the coroutine that contains the processing control flow)
+	systemProcessor->ctx = (processorCtx_t *)&systemProcessorCtx_storage;
+	systemProcessor->ctx{ systemProcessor };
+
+	scheduler_add(mainThread);
+
+	current_coroutine = &mainThread->c;
+
+	LIB_DEBUG_PRINTF("Kernel : Starting system processor\n");	
+	resume(systemProcessor->ctx);
+
+	LIB_DEBUG_PRINTF("Kernel : Started\n--------------------------------------------------\n\n");
+}
+void kernel_shutdown(void) {
+	LIB_DEBUG_PRINTF("\n--------------------------------------------------\nKernel : Shutting down");
+
+	LIB_DEBUG_PRINTF("Unscheduling main thread\n");
+	scheduler_remove(mainThread);
+
+	LIB_DEBUG_PRINTF("Suspending main\n");
+	suspend();
+
+	LIB_DEBUG_PRINTF("Kernel : Control return to initial process thread\n");
+
+	^(systemProcessor->ctx){};
+	^(systemProcessor){};
+
+	^(mainThread){};
+
+	LIB_DEBUG_PRINTF("Kernel : Shutdown complete\n");	
+}
+
+// Local Variables: //
+// mode: c //
+// tab-width: 4 //
+// End: //
Index: src/libcfa/concurrency/threads
===================================================================
--- src/libcfa/concurrency/threads	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/threads	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -9,7 +9,7 @@
 //
 // Author           : Thierry Delisle
-// Created On       : Mon Nov 28 12:27:26 2016
+// Created On       : Tue Jan 17 12:27:26 2016
 // Last Modified By : Thierry Delisle
-// Last Modified On : Mon Nov 28 12:27:26 2016
+// Last Modified On : --
 // Update Count     : 0
 //
@@ -18,6 +18,8 @@
 #define THREADS_H
 
-#include "assert"       //
+#include "assert"
 #include "invoke.h"
+
+#include "coroutines"
 
 //-----------------------------------------------------------------------------
@@ -25,89 +27,44 @@
 // Anything that implements this trait can be resumed.
 // Anything that is resumed is a coroutine.
-trait is_coroutine(dtype T) {
-      void co_main(T* this);
-      coroutine* get_coroutine(T* this);
+trait is_thread(dtype T /*| sized(T)*/) {
+      void main(T* this);
+      thread_h* get_thread(T* this);
+	/*void ?{}(T*);
+	void ^?{}(T*);*/
 };
+
+forall(otype T | is_thread(T) )
+static inline coroutine* get_coroutine(T* this) {
+	return &get_thread(this)->c;
+}
+
+static inline coroutine* get_coroutine(thread_h* this) {
+	return &this->c;
+}
 
 //-----------------------------------------------------------------------------
 // Ctors and dtors
-void ?{}(coStack_t* this);
-void ?{}(coroutine* this);
-void ^?{}(coStack_t* this);
-void ^?{}(coroutine* this);
+void ?{}(thread_h* this);
+void ^?{}(thread_h* this);
 
 //-----------------------------------------------------------------------------
-// Public coroutine API
-static inline void suspend();
+// thread runner
+// Structure that actually start and stop threads
+forall(otype T | is_thread(T) )
+struct thread {
+	T handle;
+};
 
-forall(dtype T | is_coroutine(T))
-static inline void resume(T* cor);
+forall(otype T | is_thread(T) )
+void ?{}( thread(T)* this );
 
-forall(dtype T | is_coroutine(T))
-void prime(T* cor);
+forall(otype T, ttype P | is_thread(T) | { void ?{}(T*, P); } )
+void ?{}( thread(T)* this, P params );
+
+forall(otype T | is_thread(T) )
+void ^?{}( thread(T)* this );
 
 //-----------------------------------------------------------------------------
 // PRIVATE exposed because of inline
-
-// Start coroutine routines
-extern "C" {
-      forall(dtype T | is_coroutine(T))
-      void CtxInvokeCoroutine(T* this);
-
-      forall(dtype T | is_coroutine(T))
-      void CtxStart(T* this, void (*invoke)(T*));
-}
-
-// Get current coroutine
-extern coroutine* current_coroutine; //PRIVATE, never use directly
-static inline coroutine* this_coroutine(void) {
-	return current_coroutine;
-}
-
-// Private wrappers for context switch and stack creation
-extern void corCxtSw(coroutine* src, coroutine* dst);
-extern void create_stack( coStack_t* this, unsigned int storageSize );
-
-// Suspend implementation inlined for performance
-static inline void suspend() {
-      coroutine* src = this_coroutine();		// optimization
-
-	assertf( src->last != 0,
-		"Attempt to suspend coroutine %.256s (%p) that has never been resumed.\n"
-		"Possible cause is a suspend executed in a member called by a coroutine user rather than by the coroutine main.",
-		src->name, src );
-	assertf( src->last->notHalted,
-		"Attempt by coroutine %.256s (%p) to suspend back to terminated coroutine %.256s (%p).\n"
-		"Possible cause is terminated coroutine's main routine has already returned.",
-		src->name, src, src->last->name, src->last );
-
-	corCxtSw( src, src->last );
-}
-
-// Resume implementation inlined for performance
-forall(dtype T | is_coroutine(T))
-static inline void resume(T* cor) {
-	coroutine* src = this_coroutine();		// optimization
-	coroutine* dst = get_coroutine(cor);
-
-      if( unlikely(!dst->stack.base) ) {
-		create_stack(&dst->stack, dst->stack.size);
-		CtxStart(cor, CtxInvokeCoroutine);
-	}
-
-      // not resuming self ?
-	if ( src != dst ) {
-		assertf( dst->notHalted ,
-			"Attempt by coroutine %.256s (%p) to resume terminated coroutine %.256s (%p).\n"
-			"Possible cause is terminated coroutine's main routine has already returned.",
-			src->name, src, dst->name, dst );
-
-            // set last resumer
-		dst->last = src;
-	} // if
-
-      // always done for performance testing
-	corCxtSw( src, dst );
-}
 
 #endif //THREADS_H
Index: src/libcfa/concurrency/threads.c
===================================================================
--- src/libcfa/concurrency/threads.c	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/libcfa/concurrency/threads.c	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -1,2 +1,3 @@
+//                              -*- Mode: CFA -*-
 //
 // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
@@ -8,20 +9,13 @@
 //
 // Author           : Thierry Delisle
-// Created On       : Mon Nov 28 12:27:26 2016
+// Created On       : Tue Jan 17 12:27:26 2016
 // Last Modified By : Thierry Delisle
-// Last Modified On : Mon Nov 28 12:27:26 2016
+// Last Modified On : --
 // Update Count     : 0
 //
 
-extern "C" {
-#include <stddef.h>
-#include <malloc.h>
-#include <errno.h>
-#include <string.h>
-#include <unistd.h>
-#include <sys/mman.h>
-}
+#include "threads"
 
-#include "threads"
+#include "kernel"
 #include "libhdr.h"
 
@@ -29,150 +23,71 @@
 #include "invoke.h"
 
-//-----------------------------------------------------------------------------
-// Global state variables
-
-// minimum feasible stack size in bytes
-#define MinStackSize 1000
-static size_t pageSize = 0;				// architecture pagesize HACK, should go in proper runtime singleton
-
-//Extra private desctructor for the main
-//FIXME the main should not actually allocate a stack
-//Since the main is never resumed the extra stack does not cause 
-//any problem but it is wasted memory
-void ?{}(coStack_t* this, size_t size);
-void ?{}(coroutine* this, size_t size);
-
-//Main coroutine
-//FIXME do not construct a stack for the main
-coroutine main_coroutine = { 1000 };
-
-//Current coroutine
-//Will need to be in TLS when multi-threading is added
-coroutine* current_coroutine = &main_coroutine;
+#include <stdlib>
 
 //-----------------------------------------------------------------------------
-// Coroutine ctors and dtors
-void ?{}(coStack_t* this) {
-	this->size		= 10240;	// size of stack
-	this->storage	= NULL;	// pointer to stack
-	this->limit		= NULL;	// stack grows towards stack limit
-	this->base		= NULL;	// base of stack
-	this->context	= NULL;	// address of cfa_context_t
-	this->top		= NULL;	// address of top of storage
-	this->userStack	= false;	
+// Forward declarations
+forall(otype T | is_thread(T) )
+void start( thread(T)* this );
+
+forall(otype T | is_thread(T) )
+void stop( thread(T)* this );
+
+//-----------------------------------------------------------------------------
+// Thread ctors and dtors
+
+void ?{}(thread_h* this) {
+	(&this->c){};
 }
 
-void ?{}(coStack_t* this, size_t size) {
-	this{};
-	this->size = size;
-
-	create_stack(this, this->size);
+void ^?{}(thread_h* this) {
+	^(&this->c){};
 }
 
-void ?{}(coroutine* this) {
-	this->name = "Anonymous Coroutine";
-	this->errno_ = 0;
-	this->state = Start;
-      this->notHalted = true;
-	this->starter = NULL;
-	this->last = NULL;
+forall(otype T | is_thread(T) )
+void ?{}( thread(T)* this ) {
+	printf("thread() ctor\n");
+	(&this->handle){};
+	start(this);
 }
 
-void ?{}(coroutine* this, size_t size) {
-	this{};
-	(&this->stack){size};
+forall(otype T, ttype P | is_thread(T) | { void ?{}(T*, P); } )
+void ?{}( thread(T)* this, P params ) {
+	(&this->handle){ params };
+	start(this);
 }
 
-void ^?{}(coStack_t* this) {
-	if ( ! this->userStack ) {
-		LIB_DEBUG_DO(
-			if ( mprotect( this->storage, pageSize, PROT_READ | PROT_WRITE ) == -1 ) {
-				abortf( "(coStack_t *)%p.^?{}() : internal error, mprotect failure, error(%d) %s.", this, errno, strerror( errno ) );
-			}
-		);
-		free( this->storage );
-	}
+forall(otype T | is_thread(T) )
+void ^?{}( thread(T)* this ) {
+	stop(this);
+	^(&this->handle){};
 }
 
-void ^?{}(coroutine* this) {}
-
-// Part of the Public API
-// Not inline since only ever called once per coroutine
-forall(dtype T | is_coroutine(T))
-void prime(T* cor) {
-	coroutine* this = get_coroutine(cor);
-	assert(this->state == Start);
-
-	this->state = Primed;
-	resume(cor);
+//-----------------------------------------------------------------------------
+// Starting and stopping threads
+extern "C" {
+      forall(dtype T | is_thread(T))
+      void CtxInvokeThread(T * this);
 }
 
-// We need to call suspend from invoke.c, so we expose this wrapper that
-// is not inline (We can't inline Cforall in C)
-void suspend_no_inline(void) {
-	suspend();
+forall(otype T | is_thread(T))
+void start( thread(T)* this ) {
+	T* handle  = &this->handle;
+	coroutine* thrd_c = get_coroutine(handle);
+	thread_h*  thrd_h = get_thread   (handle);
+	thrd_c->last = this_coroutine();
+	current_coroutine = thrd_c;
+
+	// LIB_DEBUG_PRINTF("Thread start : %p (t %p, c %p)\n", handle, thrd_c, thrd_h);
+
+	create_stack(&thrd_c->stack, thrd_c->stack.size);
+	CtxStart(handle, CtxInvokeThread);
+	CtxSwitch( thrd_c->last->stack.context, thrd_c->stack.context );
+
+	scheduler_add(thrd_h);
 }
 
-void corCxtSw(coroutine* src, coroutine* dst) {
-	// THREAD_GETMEM( This )->disableInterrupts();
+forall(otype T | is_thread(T) )
+void stop( thread(T)* this ) {
 
-	// set state of current coroutine to inactive
-	src->state = Inactive;
-
-	// set new coroutine that task is executing
-	current_coroutine = dst;			
-
-	// context switch to specified coroutine
-	CtxSwitch( src->stack.context, dst->stack.context );
-	// when CtxSwitch returns we are back in the src coroutine		
-
-	// set state of new coroutine to active
-	src->state = Active;
-
-	// THREAD_GETMEM( This )->enableInterrupts();
-} //ctxSwitchDirect
-
-void create_stack( coStack_t* this, unsigned int storageSize ) {
-	//TEMP HACK do this on proper kernel startup
-	if(pageSize == 0ul) pageSize = sysconf( _SC_PAGESIZE );
-
-	size_t cxtSize = libCeiling( sizeof(machine_context_t), 8 ); // minimum alignment
-
-	if ( (intptr_t)this->storage == 0 ) {
-		this->userStack = false;
-		this->size = libCeiling( storageSize, 16 );
-		// use malloc/memalign because "new" raises an exception for out-of-memory
-		
-		// assume malloc has 8 byte alignment so add 8 to allow rounding up to 16 byte alignment
-		LIB_DEBUG_DO( this->storage = memalign( pageSize, cxtSize + this->size + pageSize ) );
-		LIB_NO_DEBUG_DO( this->storage = malloc( cxtSize + this->size + 8 ) );
-
-		LIB_DEBUG_DO(
-			if ( mprotect( this->storage, pageSize, PROT_NONE ) == -1 ) {
-				abortf( "(uMachContext &)%p.createContext() : internal error, mprotect failure, error(%d) %s.", this, (int)errno, strerror( (int)errno ) );
-			} // if
-		);
-
-		if ( (intptr_t)this->storage == 0 ) {
-			abortf( "Attempt to allocate %d bytes of storage for coroutine or task execution-state but insufficient memory available.", this->size );
-		} // if
-
-		LIB_DEBUG_DO( this->limit = (char *)this->storage + pageSize );
-		LIB_NO_DEBUG_DO( this->limit = (char *)libCeiling( (unsigned long)this->storage, 16 ) ); // minimum alignment
-
-	} else {
-		assertf( ((size_t)this->storage & (libAlign() - 1)) != 0ul, "Stack storage %p for task/coroutine must be aligned on %d byte boundary.", this->storage, (int)libAlign() );
-		this->userStack = true;
-		this->size = storageSize - cxtSize;
-
-		if ( this->size % 16 != 0u ) this->size -= 8;
-
-		this->limit = (char *)libCeiling( (unsigned long)this->storage, 16 ); // minimum alignment
-	} // if
-	assertf( this->size >= MinStackSize, "Stack size %d provides less than minimum of %d bytes for a stack.", this->size, MinStackSize );
-
-	this->base = (char *)this->limit + this->size;
-	this->context = this->base;
-	this->top = (char *)this->context + cxtSize;
 }
 
Index: src/tests/.expect/32/declarationSpecifier.txt
===================================================================
--- src/tests/.expect/32/declarationSpecifier.txt	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/tests/.expect/32/declarationSpecifier.txt	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -1,7 +1,7 @@
-extern void *malloc(unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 volatile const short __x1__CVs_1;
@@ -629,9 +629,9 @@
 }
 static inline int invoke_main(int argc, char* argv[], char* envp[]) { (void)argc; (void)argv; (void)envp; return __main__Fi_iPPCc__1(argc, argv); }
-extern void *malloc(unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 static inline int invoke_main(int argc, char **argv, char **envp);
Index: src/tests/.expect/32/extension.txt
===================================================================
--- src/tests/.expect/32/extension.txt	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/tests/.expect/32/extension.txt	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -1,7 +1,7 @@
-extern void *malloc(unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 __extension__ int __a__i_1;
Index: src/tests/.expect/32/gccExtensions.txt
===================================================================
--- src/tests/.expect/32/gccExtensions.txt	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/tests/.expect/32/gccExtensions.txt	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -1,7 +1,7 @@
-extern void *malloc(unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 extern int __x__i_1 asm ( "xx" );
@@ -166,9 +166,9 @@
 }
 static inline int invoke_main(int argc, char* argv[], char* envp[]) { (void)argc; (void)argv; (void)envp; return __main__Fi_iPPCc__1(argc, argv); }
-extern void *malloc(unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 static inline int invoke_main(int argc, char **argv, char **envp);
Index: src/tests/.expect/64/declarationSpecifier.txt
===================================================================
--- src/tests/.expect/64/declarationSpecifier.txt	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/tests/.expect/64/declarationSpecifier.txt	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -1,7 +1,7 @@
-extern void *malloc(long unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 volatile const short __x1__CVs_1;
@@ -629,9 +629,9 @@
 }
 static inline int invoke_main(int argc, char* argv[], char* envp[]) { (void)argc; (void)argv; (void)envp; return __main__Fi_iPPCc__1(argc, argv); }
-extern void *malloc(long unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 static inline int invoke_main(int argc, char **argv, char **envp);
Index: src/tests/.expect/64/extension.txt
===================================================================
--- src/tests/.expect/64/extension.txt	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/tests/.expect/64/extension.txt	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -1,7 +1,7 @@
-extern void *malloc(long unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 __extension__ int __a__i_1;
Index: src/tests/.expect/64/gccExtensions.txt
===================================================================
--- src/tests/.expect/64/gccExtensions.txt	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/tests/.expect/64/gccExtensions.txt	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -1,7 +1,7 @@
-extern void *malloc(long unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 extern int __x__i_1 asm ( "xx" );
@@ -166,9 +166,9 @@
 }
 static inline int invoke_main(int argc, char* argv[], char* envp[]) { (void)argc; (void)argv; (void)envp; return __main__Fi_iPPCc__1(argc, argv); }
-extern void *malloc(long unsigned int __size);
-extern void free(void *__ptr);
-extern void abort(void);
-extern int atexit(void (*__func)(void));
-extern void exit(int __status);
+__attribute__ ((__malloc__,__nothrow__,__leaf__)) extern void *malloc(long unsigned int __size);
+__attribute__ ((__nothrow__,__leaf__)) extern void free(void *__ptr);
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void abort(void);
+__attribute__ ((__nonnull__(1),__nothrow__,__leaf__)) extern int atexit(void (*__func)(void));
+__attribute__ ((__noreturn__,__nothrow__,__leaf__)) extern void exit(int __status);
 extern int printf(const char *__restrict __format, ...);
 static inline int invoke_main(int argc, char **argv, char **envp);
Index: src/tests/coroutine.c
===================================================================
--- src/tests/coroutine.c	(revision 765aa76862409353ed37ea5a4b89c1c041c843f7)
+++ src/tests/coroutine.c	(revision 4a3386b40a240bd9769a705886c70d008e23008c)
@@ -1,4 +1,4 @@
 #include <fstream>
-#include <threads>
+#include <coroutines>
 
 struct Fibonacci {
@@ -15,5 +15,5 @@
 }
 
-void co_main(Fibonacci* this) {
+void main(Fibonacci* this) {
 #ifdef MORE_DEBUG
       sout | "Starting main of coroutine " | this | endl;
